diff --git a/corpus/statements.txt b/corpus/statements.txt index 6be3550..69eb484 100644 --- a/corpus/statements.txt +++ b/corpus/statements.txt @@ -95,7 +95,6 @@ fi (if_statement (bracket_command (string (command_substitution (command (command_name (word))))) - (word) (raw_string)) (command (command_name (word)) (word)))) diff --git a/grammar.js b/grammar.js index e5ec5d8..066f562 100644 --- a/grammar.js +++ b/grammar.js @@ -196,10 +196,10 @@ module.exports = grammar({ $.command_name, repeat(choice( $._expression, - seq('=~', choice( - $.regex, - $._expression - )) + seq( + choice('=~', '=='), + choice($.regex, $._expression) + ) )), repeat(choice( $.file_redirect, @@ -213,10 +213,10 @@ module.exports = grammar({ bracket_command: $ => { const args = repeat1(choice( $._expression, - seq('=~', choice( - $.regex, - $._expression - )) + seq( + choice('=~', '=='), + choice($.regex, $._expression) + ) )) return seq( @@ -427,8 +427,8 @@ module.exports = grammar({ seq('\\', noneOf('\\s')) ))), - regex: $ => /([^\s]|\\.)+/, - regex_without_right_brace: $ => /([^\s}]|\\.)+/, + regex: $ => /([^"\s]|\\.)([^\s]|\\.)*/, + regex_without_right_brace: $ => /([^"\s}]|\\.)([^\s}]|\\.)*/, _terminator: $ => choice(';', ';;', '\n', '&') } diff --git a/script/known-failures.txt b/script/known-failures.txt index 777604c..8d244a2 100644 --- a/script/known-failures.txt +++ b/script/known-failures.txt @@ -1,5 +1,4 @@ examples/bash-it/plugins/available/git.plugin.bash -examples/bash-it/plugins/available/fzf.plugin.bash examples/bash-it/plugins/available/extract.plugin.bash examples/bash-it/plugins/available/less-pretty-cat.plugin.bash examples/bash-it/plugins/available/z_autoenv.plugin.bash @@ -42,7 +41,6 @@ examples/bash-it/lib/search.bash examples/bash-it/test_lib/bats-support/src/lang.bash examples/bash-it/test_lib/bats-support/src/output.bash examples/bash-it/test_lib/bats-assert/src/assert.bash -examples/bash-it/test_lib/bats-core/test/test_helper.bash examples/bash-it/test_lib/bats-file/src/temp.bash examples/bash-it/themes/hawaii50/hawaii50.theme.bash examples/bash-it/themes/iterate/iterate.theme.bash diff --git a/src/grammar.json b/src/grammar.json index f3beeba..a5d05ac 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -698,8 +698,17 @@ "type": "SEQ", "members": [ { - "type": "STRING", - "value": "=~" + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "=~" + }, + { + "type": "STRING", + "value": "==" + } + ] }, { "type": "CHOICE", @@ -772,8 +781,17 @@ "type": "SEQ", "members": [ { - "type": "STRING", - "value": "=~" + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "=~" + }, + { + "type": "STRING", + "value": "==" + } + ] }, { "type": "CHOICE", @@ -819,8 +837,17 @@ "type": "SEQ", "members": [ { - "type": "STRING", - "value": "=~" + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "=~" + }, + { + "type": "STRING", + "value": "==" + } + ] }, { "type": "CHOICE", @@ -1489,8 +1516,17 @@ "value": "$" }, { - "type": "SYMBOL", - "name": "string" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "string" + }, + { + "type": "SYMBOL", + "name": "raw_string" + } + ] } ] }, @@ -1801,11 +1837,11 @@ }, "regex": { "type": "PATTERN", - "value": "([^\\s]|\\\\.)+" + "value": "([^\"\\s]|\\\\.)([^\\s]|\\\\.)*" }, "regex_without_right_brace": { "type": "PATTERN", - "value": "([^\\s}]|\\\\.)+" + "value": "([^\"\\s}]|\\\\.)([^\\s}]|\\\\.)*" }, "_terminator": { "type": "CHOICE", diff --git a/src/parser.c b/src/parser.c index b8295b6..0d752d1 100644 --- a/src/parser.c +++ b/src/parser.c @@ -7,9 +7,9 @@ #define LANGUAGE_VERSION 5 #define STATE_COUNT 4635 -#define SYMBOL_COUNT 135 +#define SYMBOL_COUNT 136 #define ALIAS_COUNT 5 -#define TOKEN_COUNT 85 +#define TOKEN_COUNT 86 #define EXTERNAL_TOKEN_COUNT 11 #define MAX_ALIAS_SEQUENCE_LENGTH 8 @@ -45,114 +45,115 @@ enum { anon_sym_AMP_AMP = 29, anon_sym_PIPE_PIPE = 30, anon_sym_EQ_TILDE = 31, - anon_sym_LBRACK = 32, - anon_sym_RBRACK = 33, - anon_sym_LBRACK_LBRACK = 34, - anon_sym_RBRACK_RBRACK = 35, - anon_sym_declare = 36, - anon_sym_typeset = 37, - anon_sym_export = 38, - anon_sym_readonly = 39, - anon_sym_local = 40, - anon_sym_unset = 41, - anon_sym_unsetenv = 42, - anon_sym_EQ = 43, - anon_sym_PLUS_EQ = 44, - anon_sym_LT = 45, - anon_sym_GT = 46, - anon_sym_GT_GT = 47, - anon_sym_AMP_GT = 48, - anon_sym_AMP_GT_GT = 49, - anon_sym_LT_AMP = 50, - anon_sym_GT_AMP = 51, - anon_sym_LT_LT = 52, - anon_sym_LT_LT_DASH = 53, - anon_sym_LT_LT_LT = 54, - sym__special_characters = 55, - anon_sym_DQUOTE = 56, - anon_sym_DOLLAR = 57, - sym__string_content = 58, - sym_raw_string = 59, - anon_sym_POUND = 60, - anon_sym_DOLLAR_LBRACE = 61, - 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, - anon_sym_LT_LPAREN = 70, - anon_sym_GT_LPAREN = 71, - sym_comment = 72, - aux_sym_SLASH_BSLASHw_PLUS_SLASH = 73, - anon_sym_STAR = 74, - anon_sym_AT = 75, - anon_sym_QMARK = 76, - anon_sym_0 = 77, - anon_sym__ = 78, - sym_word = 79, - sym_regex = 80, - 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_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_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, + anon_sym_EQ_EQ = 32, + anon_sym_LBRACK = 33, + anon_sym_RBRACK = 34, + anon_sym_LBRACK_LBRACK = 35, + anon_sym_RBRACK_RBRACK = 36, + anon_sym_declare = 37, + anon_sym_typeset = 38, + anon_sym_export = 39, + anon_sym_readonly = 40, + anon_sym_local = 41, + anon_sym_unset = 42, + anon_sym_unsetenv = 43, + anon_sym_EQ = 44, + anon_sym_PLUS_EQ = 45, + anon_sym_LT = 46, + anon_sym_GT = 47, + anon_sym_GT_GT = 48, + anon_sym_AMP_GT = 49, + anon_sym_AMP_GT_GT = 50, + anon_sym_LT_AMP = 51, + anon_sym_GT_AMP = 52, + anon_sym_LT_LT = 53, + anon_sym_LT_LT_DASH = 54, + anon_sym_LT_LT_LT = 55, + sym__special_characters = 56, + anon_sym_DQUOTE = 57, + anon_sym_DOLLAR = 58, + sym__string_content = 59, + sym_raw_string = 60, + anon_sym_POUND = 61, + anon_sym_DOLLAR_LBRACE = 62, + aux_sym_SLASH = 63, + anon_sym_COLON = 64, + anon_sym_COLON_QMARK = 65, + anon_sym_COLON_DASH = 66, + anon_sym_PERCENT = 67, + anon_sym_DASH = 68, + anon_sym_DOLLAR_LPAREN = 69, + anon_sym_BQUOTE = 70, + anon_sym_LT_LPAREN = 71, + anon_sym_GT_LPAREN = 72, + sym_comment = 73, + aux_sym_SLASH_BSLASHw_PLUS_SLASH = 74, + anon_sym_STAR = 75, + anon_sym_AT = 76, + anon_sym_QMARK = 77, + anon_sym_0 = 78, + anon_sym__ = 79, + sym_word = 80, + sym_regex = 81, + sym_regex_without_right_brace = 82, + anon_sym_SEMI = 83, + anon_sym_LF = 84, + anon_sym_AMP = 85, + sym_program = 86, + sym__terminated_statement = 87, + sym_for_statement = 88, + sym_while_statement = 89, + sym_do_group = 90, + sym_if_statement = 91, + sym_elif_clause = 92, + sym_else_clause = 93, + sym_case_statement = 94, + sym_case_item = 95, + sym_last_case_item = 96, + sym_function_definition = 97, + sym_compound_statement = 98, + sym_subshell = 99, + sym_pipeline = 100, + sym_list = 101, + sym_command = 102, + sym_command_name = 103, + sym_bracket_command = 104, + sym_variable_assignment = 105, + sym_declaration_command = 106, + sym_unset_command = 107, + sym__assignment = 108, + sym_subscript = 109, + sym_file_redirect = 110, + sym_heredoc_redirect = 111, + sym_heredoc = 112, + sym_herestring_redirect = 113, + sym_concatenation = 114, + sym_string = 115, + sym_array = 116, + sym_simple_expansion = 117, + sym_string_expansion = 118, + sym_expansion = 119, + sym_command_substitution = 120, + sym_process_substitution = 121, + aux_sym_program_repeat1 = 122, + aux_sym_for_statement_repeat1 = 123, + aux_sym_while_statement_repeat1 = 124, + aux_sym_if_statement_repeat1 = 125, + aux_sym_case_statement_repeat1 = 126, + aux_sym_case_item_repeat1 = 127, + aux_sym_command_repeat1 = 128, + aux_sym_command_repeat2 = 129, + aux_sym_declaration_command_repeat1 = 130, + aux_sym_unset_command_repeat1 = 131, + aux_sym_heredoc_repeat1 = 132, + aux_sym_concatenation_repeat1 = 133, + aux_sym_string_repeat1 = 134, + aux_sym_expansion_repeat1 = 135, + alias_sym_case_item = 136, + alias_sym_regex = 137, + alias_sym_special_variable_name = 138, + alias_sym_variable_name = 139, + alias_sym_word = 140, }; static const char *ts_symbol_names[] = { @@ -188,6 +189,7 @@ static const char *ts_symbol_names[] = { [anon_sym_AMP_AMP] = "&&", [anon_sym_PIPE_PIPE] = "||", [anon_sym_EQ_TILDE] = "=~", + [anon_sym_EQ_EQ] = "==", [anon_sym_LBRACK] = "[", [anon_sym_RBRACK] = "]", [anon_sym_LBRACK_LBRACK] = "[[", @@ -427,6 +429,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_EQ_EQ] = { + .visible = true, + .named = false, + }, [anon_sym_LBRACK] = { .visible = true, .named = false, @@ -2875,7 +2881,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(40); if (lookahead == '\\') - ADVANCE(151); + ADVANCE(152); if (lookahead == ']') ADVANCE(40); if (lookahead == '`') @@ -2926,10 +2932,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 149: ACCEPT_TOKEN(sym_word); + if (lookahead == '=') + ADVANCE(150); if (lookahead == '\\') ADVANCE(39); if (lookahead == '~') - ADVANCE(150); + ADVANCE(151); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -2937,16 +2945,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ' && (lookahead < '\"' || lookahead > '$') && (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && + (lookahead < ';' || lookahead > '>') && (lookahead < '[' || lookahead > ']') && lookahead != '`' && (lookahead < '{' || lookahead > '~')) ADVANCE(38); END_STATE(); case 150: - ACCEPT_TOKEN(anon_sym_EQ_TILDE); + ACCEPT_TOKEN(anon_sym_EQ_EQ); if (lookahead == '\\') ADVANCE(39); if (lookahead != 0 && @@ -2965,6 +2971,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(38); END_STATE(); case 151: + ACCEPT_TOKEN(anon_sym_EQ_TILDE); + 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 152: if (lookahead == '\n') SKIP(143); if (lookahead != 0 && @@ -2974,9 +2999,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ') ADVANCE(38); END_STATE(); - case 152: + case 153: if (lookahead == '\n') - ADVANCE(153); + ADVANCE(154); if (lookahead == '\"') ADVANCE(2); if (lookahead == '#') @@ -2984,19 +3009,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '$') ADVANCE(4); if (lookahead == '&') - ADVANCE(154); + ADVANCE(155); if (lookahead == '\'') ADVANCE(25); if (lookahead == ';') - ADVANCE(155); + ADVANCE(156); if (lookahead == '<') - ADVANCE(157); - if (lookahead == '>') ADVANCE(158); + if (lookahead == '>') + ADVANCE(159); if (lookahead == '[') ADVANCE(40); if (lookahead == '\\') - ADVANCE(159); + ADVANCE(160); if (lookahead == ']') ADVANCE(40); if (lookahead == '`') @@ -3010,42 +3035,42 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(152); + SKIP(153); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('_' <= lookahead && lookahead <= 'z')) - ADVANCE(160); + ADVANCE(161); if (lookahead != 0 && (lookahead < '&' || lookahead > ')')) ADVANCE(38); END_STATE(); - case 153: + case 154: ACCEPT_TOKEN(anon_sym_LF); END_STATE(); - case 154: + case 155: ACCEPT_TOKEN(anon_sym_AMP); if (lookahead == '&') ADVANCE(105); END_STATE(); - case 155: + case 156: ACCEPT_TOKEN(anon_sym_SEMI); if (lookahead == ';') - ADVANCE(156); - END_STATE(); - case 156: - ACCEPT_TOKEN(anon_sym_SEMI_SEMI); + ADVANCE(157); END_STATE(); case 157: - if (lookahead == '(') - ADVANCE(30); + ACCEPT_TOKEN(anon_sym_SEMI_SEMI); END_STATE(); case 158: if (lookahead == '(') - ADVANCE(33); + ADVANCE(30); END_STATE(); case 159: + if (lookahead == '(') + ADVANCE(33); + END_STATE(); + case 160: if (lookahead == '\n') - SKIP(152); + SKIP(153); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3053,7 +3078,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ') ADVANCE(38); END_STATE(); - case 160: + case 161: ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); if (lookahead == '\\') ADVANCE(39); @@ -3061,7 +3086,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(160); + ADVANCE(161); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3076,9 +3101,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '_' || lookahead > '}')) ADVANCE(38); END_STATE(); - case 161: + case 162: if (lookahead == '\n') - ADVANCE(153); + ADVANCE(154); if (lookahead == '\"') ADVANCE(2); if (lookahead == '#') @@ -3086,11 +3111,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '$') ADVANCE(4); if (lookahead == '&') - ADVANCE(162); + ADVANCE(163); if (lookahead == '\'') ADVANCE(25); if (lookahead == ';') - ADVANCE(155); + ADVANCE(156); if (lookahead == '<') ADVANCE(145); if (lookahead == '=') @@ -3100,7 +3125,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(40); if (lookahead == '\\') - ADVANCE(163); + ADVANCE(164); if (lookahead == ']') ADVANCE(40); if (lookahead == '`') @@ -3114,21 +3139,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(161); + SKIP(162); if (lookahead != 0 && (lookahead < '&' || lookahead > ')')) ADVANCE(38); END_STATE(); - case 162: + case 163: ACCEPT_TOKEN(anon_sym_AMP); if (lookahead == '&') ADVANCE(105); if (lookahead == '>') ADVANCE(23); END_STATE(); - case 163: + case 164: if (lookahead == '\n') - SKIP(161); + SKIP(162); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3136,54 +3161,54 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ') ADVANCE(38); END_STATE(); - case 164: + case 165: if (lookahead == '\"') ADVANCE(2); if (lookahead == '#') - ADVANCE(165); + ADVANCE(166); if (lookahead == '$') ADVANCE(4); if (lookahead == '\\') - ADVANCE(167); + ADVANCE(168); if (lookahead == '`') ADVANCE(19); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - ADVANCE(168); + ADVANCE(169); if (lookahead != 0) ADVANCE(15); 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); - END_STATE(); case 166: ACCEPT_TOKEN(sym__string_content); if (lookahead == '\n') ADVANCE(15); if (lookahead == '\\') + ADVANCE(167); + if (lookahead != 0 && + lookahead != '\"' && + lookahead != '$' && + 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); + ADVANCE(15); + if (lookahead == '\\') + ADVANCE(167); + if (lookahead == '\"' || + lookahead == '$' || + lookahead == '`') + ADVANCE(166); + if (lookahead != 0) + ADVANCE(166); + END_STATE(); + case 168: + ACCEPT_TOKEN(sym__string_content); + if (lookahead == '\n') + ADVANCE(169); if (lookahead == '\\') ADVANCE(14); if (lookahead == '\"' || @@ -3193,57 +3218,59 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0) ADVANCE(15); END_STATE(); - case 168: + case 169: ACCEPT_TOKEN(sym__string_content); if (lookahead == '#') - ADVANCE(165); + ADVANCE(166); if (lookahead == '\\') - ADVANCE(167); + ADVANCE(168); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - ADVANCE(168); + ADVANCE(169); if (lookahead != 0 && (lookahead < '\"' || lookahead > '$') && lookahead != '`') ADVANCE(15); END_STATE(); - case 169: + case 170: if (lookahead == '\"') ADVANCE(2); if (lookahead == '#') ADVANCE(3); if (lookahead == '$') - ADVANCE(170); + ADVANCE(171); + if (lookahead == '\'') + ADVANCE(25); if (lookahead == '*') ADVANCE(7); if (lookahead == '-') ADVANCE(8); if (lookahead == '0') - ADVANCE(171); + ADVANCE(172); if (lookahead == '?') ADVANCE(11); if (lookahead == '@') ADVANCE(12); if (lookahead == '\\') - SKIP(172); + SKIP(173); if (lookahead == '_') - ADVANCE(173); + ADVANCE(174); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(169); + SKIP(170); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(140); END_STATE(); - case 170: + case 171: ACCEPT_TOKEN(anon_sym_DOLLAR); END_STATE(); - case 171: + case 172: ACCEPT_TOKEN(anon_sym_0); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -3251,11 +3278,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(140); END_STATE(); - case 172: - if (lookahead == '\n') - SKIP(169); - END_STATE(); case 173: + if (lookahead == '\n') + SKIP(170); + END_STATE(); + case 174: ACCEPT_TOKEN(anon_sym__); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -3263,42 +3290,42 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(140); END_STATE(); - case 174: + case 175: if (lookahead == '#') ADVANCE(3); if (lookahead == '$') - ADVANCE(170); + ADVANCE(171); if (lookahead == '*') ADVANCE(7); if (lookahead == '-') ADVANCE(8); if (lookahead == '0') - ADVANCE(171); + ADVANCE(172); if (lookahead == '?') ADVANCE(11); if (lookahead == '@') ADVANCE(12); if (lookahead == '\\') - SKIP(175); + SKIP(176); if (lookahead == '_') - ADVANCE(173); + ADVANCE(174); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(174); + SKIP(175); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(140); END_STATE(); - case 175: - if (lookahead == '\n') - SKIP(174); - END_STATE(); case 176: if (lookahead == '\n') - ADVANCE(153); + SKIP(175); + END_STATE(); + case 177: + if (lookahead == '\n') + ADVANCE(154); if (lookahead == '\"') ADVANCE(2); if (lookahead == '#') @@ -3306,13 +3333,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '$') ADVANCE(4); if (lookahead == '&') - ADVANCE(162); + ADVANCE(163); if (lookahead == '\'') ADVANCE(25); if (lookahead == '(') ADVANCE(27); if (lookahead == ';') - ADVANCE(155); + ADVANCE(156); if (lookahead == '<') ADVANCE(145); if (lookahead == '=') @@ -3322,7 +3349,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(40); if (lookahead == '\\') - ADVANCE(177); + ADVANCE(178); if (lookahead == ']') ADVANCE(40); if (lookahead == '`') @@ -3336,14 +3363,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(176); + SKIP(177); if (lookahead != 0 && (lookahead < '&' || lookahead > ')')) ADVANCE(38); END_STATE(); - case 177: + case 178: if (lookahead == '\n') - SKIP(176); + SKIP(177); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3351,7 +3378,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ') ADVANCE(38); END_STATE(); - case 178: + case 179: if (lookahead == 0) ADVANCE(1); if (lookahead == '\"') @@ -3367,7 +3394,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '(') ADVANCE(27); if (lookahead == ';') - ADVANCE(179); + ADVANCE(180); if (lookahead == '<') ADVANCE(28); if (lookahead == '>') @@ -3375,7 +3402,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(35); if (lookahead == '\\') - ADVANCE(180); + ADVANCE(181); if (lookahead == ']') ADVANCE(40); if (lookahead == '`') @@ -3408,18 +3435,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(178); + SKIP(179); if ((lookahead < '&' || lookahead > ')') && (lookahead < '{' || lookahead > '}')) ADVANCE(38); END_STATE(); - case 179: - if (lookahead == ';') - ADVANCE(156); - END_STATE(); case 180: + if (lookahead == ';') + ADVANCE(157); + END_STATE(); + case 181: if (lookahead == '\n') - SKIP(178); + SKIP(179); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3427,9 +3454,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ') ADVANCE(38); END_STATE(); - case 181: + case 182: if (lookahead == '\n') - ADVANCE(153); + ADVANCE(154); if (lookahead == '\"') ADVANCE(2); if (lookahead == '#') @@ -3437,11 +3464,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '$') ADVANCE(4); if (lookahead == '&') - ADVANCE(162); + ADVANCE(163); if (lookahead == '\'') ADVANCE(25); if (lookahead == ';') - ADVANCE(155); + ADVANCE(156); if (lookahead == '<') ADVANCE(28); if (lookahead == '>') @@ -3449,7 +3476,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(40); if (lookahead == '\\') - ADVANCE(182); + ADVANCE(183); if (lookahead == ']') ADVANCE(40); if (lookahead == '`') @@ -3463,14 +3490,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(181); + SKIP(182); if (lookahead != 0 && (lookahead < '&' || lookahead > ')')) ADVANCE(38); END_STATE(); - case 182: + case 183: if (lookahead == '\n') - SKIP(181); + SKIP(182); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3478,9 +3505,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ') ADVANCE(38); END_STATE(); - case 183: + case 184: if (lookahead == '\n') - ADVANCE(153); + ADVANCE(154); if (lookahead == '\"') ADVANCE(2); if (lookahead == '#') @@ -3488,13 +3515,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '$') ADVANCE(4); if (lookahead == '&') - ADVANCE(162); + ADVANCE(163); if (lookahead == '\'') ADVANCE(25); if (lookahead == ')') ADVANCE(106); if (lookahead == ';') - ADVANCE(155); + ADVANCE(156); if (lookahead == '<') ADVANCE(145); if (lookahead == '=') @@ -3504,7 +3531,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(40); if (lookahead == '\\') - ADVANCE(184); + ADVANCE(185); if (lookahead == ']') ADVANCE(40); if (lookahead == '`') @@ -3518,14 +3545,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(183); + SKIP(184); if (lookahead != 0 && (lookahead < '&' || lookahead > ')')) ADVANCE(38); END_STATE(); - case 184: + case 185: if (lookahead == '\n') - SKIP(183); + SKIP(184); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3533,7 +3560,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ') ADVANCE(38); END_STATE(); - case 185: + case 186: if (lookahead == '\"') ADVANCE(2); if (lookahead == '#') @@ -3545,13 +3572,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '(') ADVANCE(27); if (lookahead == '<') - ADVANCE(157); - if (lookahead == '>') ADVANCE(158); + if (lookahead == '>') + ADVANCE(159); if (lookahead == '[') ADVANCE(40); if (lookahead == '\\') - ADVANCE(186); + ADVANCE(187); if (lookahead == ']') ADVANCE(40); if (lookahead == '`') @@ -3564,7 +3591,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(185); + SKIP(186); if (lookahead != 0 && (lookahead < '&' || lookahead > ')') && lookahead != ';' && @@ -3572,9 +3599,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '}')) ADVANCE(38); END_STATE(); - case 186: + case 187: if (lookahead == '\n') - SKIP(185); + SKIP(186); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3582,9 +3609,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ') ADVANCE(38); END_STATE(); - case 187: + case 188: if (lookahead == '\n') - ADVANCE(153); + ADVANCE(154); if (lookahead == '\"') ADVANCE(2); if (lookahead == '#') @@ -3592,13 +3619,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '$') ADVANCE(4); if (lookahead == '&') - ADVANCE(162); + ADVANCE(163); if (lookahead == '\'') ADVANCE(25); if (lookahead == ')') ADVANCE(106); if (lookahead == ';') - ADVANCE(155); + ADVANCE(156); if (lookahead == '<') ADVANCE(28); if (lookahead == '>') @@ -3606,7 +3633,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(40); if (lookahead == '\\') - ADVANCE(188); + ADVANCE(189); if (lookahead == ']') ADVANCE(40); if (lookahead == '`') @@ -3620,14 +3647,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(187); + SKIP(188); if (lookahead != 0 && (lookahead < '&' || lookahead > ')')) ADVANCE(38); END_STATE(); - case 188: + case 189: if (lookahead == '\n') - SKIP(187); + SKIP(188); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3635,34 +3662,34 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ') ADVANCE(38); END_STATE(); - case 189: + case 190: if (lookahead == '\n') - ADVANCE(153); + ADVANCE(154); if (lookahead == '#') ADVANCE(21); if (lookahead == '&') - ADVANCE(190); + ADVANCE(191); if (lookahead == ';') - ADVANCE(155); + ADVANCE(156); if (lookahead == '\\') - SKIP(191); + SKIP(192); if (lookahead == 'i') ADVANCE(126); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(189); - END_STATE(); - case 190: - ACCEPT_TOKEN(anon_sym_AMP); + SKIP(190); END_STATE(); case 191: - if (lookahead == '\n') - SKIP(189); + ACCEPT_TOKEN(anon_sym_AMP); END_STATE(); case 192: if (lookahead == '\n') - ADVANCE(153); + SKIP(190); + END_STATE(); + case 193: + if (lookahead == '\n') + ADVANCE(154); if (lookahead == '\"') ADVANCE(2); if (lookahead == '#') @@ -3670,21 +3697,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '$') ADVANCE(4); if (lookahead == '&') - ADVANCE(154); + ADVANCE(155); if (lookahead == '\'') ADVANCE(25); if (lookahead == ')') ADVANCE(106); if (lookahead == ';') - ADVANCE(155); + ADVANCE(156); if (lookahead == '<') - ADVANCE(157); - if (lookahead == '>') ADVANCE(158); + if (lookahead == '>') + ADVANCE(159); if (lookahead == '[') ADVANCE(40); if (lookahead == '\\') - ADVANCE(193); + ADVANCE(194); if (lookahead == ']') ADVANCE(40); if (lookahead == '`') @@ -3698,18 +3725,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(192); + SKIP(193); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('_' <= lookahead && lookahead <= 'z')) - ADVANCE(160); + ADVANCE(161); if (lookahead != 0 && (lookahead < '&' || lookahead > ')')) ADVANCE(38); END_STATE(); - case 193: + case 194: if (lookahead == '\n') - SKIP(192); + SKIP(193); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3717,9 +3744,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ') ADVANCE(38); END_STATE(); - case 194: + case 195: if (lookahead == '\n') - ADVANCE(153); + ADVANCE(154); if (lookahead == '\"') ADVANCE(2); if (lookahead == '#') @@ -3727,7 +3754,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '$') ADVANCE(4); if (lookahead == '&') - ADVANCE(162); + ADVANCE(163); if (lookahead == '\'') ADVANCE(25); if (lookahead == '(') @@ -3735,7 +3762,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ')') ADVANCE(106); if (lookahead == ';') - ADVANCE(155); + ADVANCE(156); if (lookahead == '<') ADVANCE(145); if (lookahead == '=') @@ -3745,7 +3772,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(40); if (lookahead == '\\') - ADVANCE(195); + ADVANCE(196); if (lookahead == ']') ADVANCE(40); if (lookahead == '`') @@ -3759,13 +3786,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(194); + SKIP(195); if (lookahead != 0) ADVANCE(38); END_STATE(); - case 195: + case 196: if (lookahead == '\n') - SKIP(194); + SKIP(195); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3773,13 +3800,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ') ADVANCE(38); END_STATE(); - case 196: + case 197: if (lookahead == '\"') - ADVANCE(197); + ADVANCE(2); if (lookahead == '#') - ADVANCE(200); + ADVANCE(198); if (lookahead == '$') - ADVANCE(202); + ADVANCE(200); if (lookahead == '\'') ADVANCE(205); if (lookahead == '<') @@ -3802,79 +3829,44 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(196); + SKIP(197); if (('&' <= lookahead && lookahead <= ')') || lookahead == ';' || lookahead == '|') - ADVANCE(199); + ADVANCE(203); if (lookahead != 0) ADVANCE(215); END_STATE(); - case 197: - ACCEPT_TOKEN(anon_sym_DQUOTE); - if (lookahead == '\\') - ADVANCE(198); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - 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); + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(198); END_STATE(); case 199: ACCEPT_TOKEN(sym_regex); if (lookahead == '\\') - ADVANCE(198); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') ADVANCE(199); - END_STATE(); - case 200: - ACCEPT_TOKEN(sym_regex); - if (lookahead == '\\') - ADVANCE(201); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(200); - END_STATE(); - case 201: - ACCEPT_TOKEN(sym_regex); - if (lookahead == '\\') - ADVANCE(201); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - ADVANCE(200); + ADVANCE(198); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n') - ADVANCE(200); + ADVANCE(198); END_STATE(); - case 202: + case 200: ACCEPT_TOKEN(anon_sym_DOLLAR); if (lookahead == '(') - ADVANCE(203); + ADVANCE(201); if (lookahead == '\\') - ADVANCE(198); + ADVANCE(202); if (lookahead == '{') ADVANCE(204); if (lookahead != 0 && @@ -3882,29 +3874,53 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(199); + ADVANCE(203); END_STATE(); - case 203: + case 201: ACCEPT_TOKEN(anon_sym_DOLLAR_LPAREN); if (lookahead == '\\') - ADVANCE(198); + ADVANCE(202); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(199); + ADVANCE(203); + END_STATE(); + case 202: + ACCEPT_TOKEN(sym_regex); + if (lookahead == '\\') + ADVANCE(202); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + ADVANCE(203); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n') + ADVANCE(203); + END_STATE(); + case 203: + ACCEPT_TOKEN(sym_regex); + if (lookahead == '\\') + ADVANCE(202); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(203); END_STATE(); case 204: ACCEPT_TOKEN(anon_sym_DOLLAR_LBRACE); if (lookahead == '\\') - ADVANCE(198); + ADVANCE(202); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(199); + ADVANCE(203); END_STATE(); case 205: ACCEPT_TOKEN(sym_regex); @@ -3923,13 +3939,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 206: ACCEPT_TOKEN(sym_raw_string); if (lookahead == '\\') - ADVANCE(198); + ADVANCE(202); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(199); + ADVANCE(203); END_STATE(); case 207: ACCEPT_TOKEN(sym_regex); @@ -3951,55 +3967,55 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '(') ADVANCE(209); if (lookahead == '\\') - ADVANCE(198); + ADVANCE(202); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(199); + ADVANCE(203); END_STATE(); case 209: ACCEPT_TOKEN(anon_sym_LT_LPAREN); if (lookahead == '\\') - ADVANCE(198); + ADVANCE(202); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(199); + ADVANCE(203); END_STATE(); case 210: ACCEPT_TOKEN(sym_regex); if (lookahead == '(') ADVANCE(211); if (lookahead == '\\') - ADVANCE(198); + ADVANCE(202); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(199); + ADVANCE(203); END_STATE(); case 211: ACCEPT_TOKEN(anon_sym_GT_LPAREN); if (lookahead == '\\') - ADVANCE(198); + ADVANCE(202); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(199); + ADVANCE(203); END_STATE(); case 212: ACCEPT_TOKEN(sym_regex); if (lookahead == '[') ADVANCE(212); if (lookahead == '\\') - ADVANCE(198); + ADVANCE(202); if (lookahead == ']') ADVANCE(212); if (lookahead == '{') @@ -4011,7 +4027,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(199); + ADVANCE(203); END_STATE(); case 213: ACCEPT_TOKEN(sym_regex); @@ -4020,7 +4036,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - ADVANCE(199); + ADVANCE(203); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n') @@ -4033,7 +4049,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - ADVANCE(199); + ADVANCE(203); if (('\"' <= lookahead && lookahead <= '$') || ('&' <= lookahead && lookahead <= ')') || lookahead == ';' || @@ -4042,7 +4058,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('[' <= lookahead && lookahead <= ']') || lookahead == '`' || ('{' <= lookahead && lookahead <= '}')) - ADVANCE(199); + ADVANCE(203); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n') @@ -4060,7 +4076,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('[' <= lookahead && lookahead <= ']') || lookahead == '`' || ('{' <= lookahead && lookahead <= '}')) - ADVANCE(199); + ADVANCE(203); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -4071,13 +4087,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 216: ACCEPT_TOKEN(anon_sym_BQUOTE); if (lookahead == '\\') - ADVANCE(198); + ADVANCE(202); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(199); + ADVANCE(203); END_STATE(); case 217: if (lookahead == '\"') @@ -4089,11 +4105,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\'') ADVANCE(25); if (lookahead == '<') - ADVANCE(157); + ADVANCE(158); if (lookahead == '=') ADVANCE(149); if (lookahead == '>') - ADVANCE(158); + ADVANCE(159); if (lookahead == '[') ADVANCE(40); if (lookahead == '\\') @@ -4137,11 +4153,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\'') ADVANCE(25); if (lookahead == '<') - ADVANCE(157); + ADVANCE(158); if (lookahead == '=') ADVANCE(149); if (lookahead == '>') - ADVANCE(158); + ADVANCE(159); if (lookahead == '[') ADVANCE(40); if (lookahead == '\\') @@ -4193,7 +4209,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '#') ADVANCE(3); if (lookahead == '$') - ADVANCE(170); + ADVANCE(171); if (lookahead == '*') ADVANCE(7); if (lookahead == '-') @@ -4285,11 +4301,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ':') ADVANCE(230); if (lookahead == '<') - ADVANCE(157); + ADVANCE(158); if (lookahead == '=') ADVANCE(233); if (lookahead == '>') - ADVANCE(158); + ADVANCE(159); if (lookahead == '[') ADVANCE(40); if (lookahead == '\\') @@ -4449,13 +4465,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '#') ADVANCE(21); if (lookahead == '$') - ADVANCE(170); + ADVANCE(171); if (lookahead == '*') ADVANCE(7); if (lookahead == '-') ADVANCE(8); if (lookahead == '0') - ADVANCE(171); + ADVANCE(172); if (lookahead == '?') ADVANCE(11); if (lookahead == '@') @@ -4463,7 +4479,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\\') SKIP(236); if (lookahead == '_') - ADVANCE(173); + ADVANCE(174); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -4492,9 +4508,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ')') ADVANCE(106); if (lookahead == '<') - ADVANCE(157); - if (lookahead == '>') ADVANCE(158); + if (lookahead == '>') + ADVANCE(159); if (lookahead == '[') ADVANCE(40); if (lookahead == '\\') @@ -4517,7 +4533,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('_' <= lookahead && lookahead <= 'z')) - ADVANCE(160); + ADVANCE(161); if (lookahead != 0 && (lookahead < '&' || lookahead > ')') && lookahead != ';' && @@ -4652,9 +4668,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\'') ADVANCE(25); if (lookahead == '<') - ADVANCE(157); - if (lookahead == '>') ADVANCE(158); + if (lookahead == '>') + ADVANCE(159); if (lookahead == '[') ADVANCE(40); if (lookahead == '\\') @@ -4677,7 +4693,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('_' <= lookahead && lookahead <= 'z')) - ADVANCE(160); + ADVANCE(161); if (lookahead != 0 && (lookahead < '&' || lookahead > ')') && lookahead != ';' && @@ -4865,15 +4881,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 253: if (lookahead == '\n') - ADVANCE(153); + ADVANCE(154); if (lookahead == '#') ADVANCE(21); if (lookahead == '&') - ADVANCE(162); + ADVANCE(163); if (lookahead == ')') ADVANCE(106); if (lookahead == ';') - ADVANCE(155); + ADVANCE(156); if (lookahead == '<') ADVANCE(254); if (lookahead == '>') @@ -4913,13 +4929,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 258: if (lookahead == '\n') - ADVANCE(153); + ADVANCE(154); if (lookahead == '#') ADVANCE(21); if (lookahead == '&') - ADVANCE(162); + ADVANCE(163); if (lookahead == ';') - ADVANCE(155); + ADVANCE(156); if (lookahead == '<') ADVANCE(254); if (lookahead == '>') @@ -5423,13 +5439,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 280: if (lookahead == '\n') - ADVANCE(153); + ADVANCE(154); if (lookahead == '#') ADVANCE(21); if (lookahead == '&') - ADVANCE(162); + ADVANCE(163); if (lookahead == ';') - ADVANCE(155); + ADVANCE(156); if (lookahead == '<') ADVANCE(281); if (lookahead == '>') @@ -5454,15 +5470,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 283: if (lookahead == '\n') - ADVANCE(153); + ADVANCE(154); if (lookahead == '#') ADVANCE(21); if (lookahead == '&') - ADVANCE(154); + ADVANCE(155); if (lookahead == ')') ADVANCE(106); if (lookahead == ';') - ADVANCE(155); + ADVANCE(156); if (lookahead == '\\') SKIP(284); if (lookahead == 'e') @@ -5552,15 +5568,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 287: if (lookahead == '\n') - ADVANCE(153); + ADVANCE(154); if (lookahead == '#') ADVANCE(21); if (lookahead == '&') - ADVANCE(162); + ADVANCE(163); if (lookahead == ')') ADVANCE(106); if (lookahead == ';') - ADVANCE(155); + ADVANCE(156); if (lookahead == '<') ADVANCE(254); if (lookahead == '>') @@ -5588,9 +5604,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\'') ADVANCE(25); if (lookahead == '<') - ADVANCE(157); - if (lookahead == '>') ADVANCE(158); + if (lookahead == '>') + ADVANCE(159); if (lookahead == '[') ADVANCE(40); if (lookahead == '\\') @@ -5641,11 +5657,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ':') ADVANCE(230); if (lookahead == '<') - ADVANCE(157); + ADVANCE(158); if (lookahead == '=') ADVANCE(233); if (lookahead == '>') - ADVANCE(158); + ADVANCE(159); if (lookahead == '[') ADVANCE(40); if (lookahead == '\\') @@ -5690,6 +5706,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(293); if (lookahead != 0 && + lookahead != '\"' && + lookahead != '#' && lookahead != '}') ADVANCE(297); END_STATE(); @@ -5854,9 +5872,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\'') ADVANCE(25); if (lookahead == '<') - ADVANCE(157); - if (lookahead == '>') ADVANCE(158); + if (lookahead == '>') + ADVANCE(159); if (lookahead == '[') ADVANCE(40); if (lookahead == '\\') @@ -5922,9 +5940,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ')') ADVANCE(106); if (lookahead == '<') - ADVANCE(157); - if (lookahead == '>') ADVANCE(158); + if (lookahead == '>') + ADVANCE(159); if (lookahead == '[') ADVANCE(40); if (lookahead == '\\') @@ -5961,7 +5979,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 313: if (lookahead == '\n') - ADVANCE(153); + ADVANCE(154); if (lookahead == '\"') ADVANCE(2); if (lookahead == '#') @@ -5969,15 +5987,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '$') ADVANCE(4); if (lookahead == '&') - ADVANCE(190); + ADVANCE(191); if (lookahead == '\'') ADVANCE(25); if (lookahead == ';') - ADVANCE(155); + ADVANCE(156); if (lookahead == '<') - ADVANCE(157); - if (lookahead == '>') ADVANCE(158); + if (lookahead == '>') + ADVANCE(159); if (lookahead == '[') ADVANCE(40); if (lookahead == '\\') @@ -6090,9 +6108,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\'') ADVANCE(25); if (lookahead == '<') - ADVANCE(157); - if (lookahead == '>') ADVANCE(158); + if (lookahead == '>') + ADVANCE(159); if (lookahead == '[') ADVANCE(40); if (lookahead == '\\') @@ -6214,15 +6232,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 323: if (lookahead == '\n') - ADVANCE(153); + ADVANCE(154); if (lookahead == '#') ADVANCE(21); if (lookahead == '&') - ADVANCE(162); + ADVANCE(163); if (lookahead == ')') ADVANCE(106); if (lookahead == ';') - ADVANCE(155); + ADVANCE(156); if (lookahead == '<') ADVANCE(281); if (lookahead == '>') @@ -6244,15 +6262,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 325: if (lookahead == '\n') - ADVANCE(153); + ADVANCE(154); if (lookahead == '#') ADVANCE(21); if (lookahead == '&') - ADVANCE(162); + ADVANCE(163); if (lookahead == ')') ADVANCE(106); if (lookahead == ';') - ADVANCE(155); + ADVANCE(156); if (lookahead == '<') ADVANCE(281); if (lookahead == '>') @@ -6358,13 +6376,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 335: if (lookahead == '\n') - ADVANCE(153); + ADVANCE(154); if (lookahead == '#') ADVANCE(21); if (lookahead == '&') - ADVANCE(154); - if (lookahead == ';') ADVANCE(155); + if (lookahead == ';') + ADVANCE(156); if (lookahead == '\\') SKIP(336); if (lookahead == '|') @@ -6419,7 +6437,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '(') ADVANCE(27); if (lookahead == ';') - ADVANCE(179); + ADVANCE(180); if (lookahead == '<') ADVANCE(28); if (lookahead == '>') @@ -6501,15 +6519,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 342: if (lookahead == '\n') - ADVANCE(153); + ADVANCE(154); if (lookahead == '#') ADVANCE(21); if (lookahead == '&') - ADVANCE(154); + ADVANCE(155); if (lookahead == ')') ADVANCE(106); if (lookahead == ';') - ADVANCE(155); + ADVANCE(156); if (lookahead == '\\') SKIP(343); if (lookahead == '|') @@ -6567,7 +6585,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 348: if (lookahead == '\n') - ADVANCE(153); + ADVANCE(154); if (lookahead == '\"') ADVANCE(2); if (lookahead == '#') @@ -6575,15 +6593,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '$') ADVANCE(4); if (lookahead == '&') - ADVANCE(154); + ADVANCE(155); if (lookahead == '\'') ADVANCE(25); if (lookahead == ';') - ADVANCE(155); + ADVANCE(156); if (lookahead == '<') - ADVANCE(157); - if (lookahead == '>') ADVANCE(158); + if (lookahead == '>') + ADVANCE(159); if (lookahead == '[') ADVANCE(40); if (lookahead == '\\') @@ -6607,7 +6625,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('_' <= lookahead && lookahead <= 'z')) - ADVANCE(160); + ADVANCE(161); if (lookahead != 0 && (lookahead < '&' || lookahead > ')')) ADVANCE(38); @@ -6632,7 +6650,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(160); + ADVANCE(161); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -6657,7 +6675,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z')) - ADVANCE(160); + ADVANCE(161); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -6682,7 +6700,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(160); + ADVANCE(161); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -6705,7 +6723,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(160); + ADVANCE(161); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -6722,7 +6740,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 354: if (lookahead == '\n') - ADVANCE(153); + ADVANCE(154); if (lookahead == '\"') ADVANCE(2); if (lookahead == '#') @@ -6730,11 +6748,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '$') ADVANCE(4); if (lookahead == '&') - ADVANCE(162); + ADVANCE(163); if (lookahead == '\'') ADVANCE(25); if (lookahead == ';') - ADVANCE(155); + ADVANCE(156); if (lookahead == '<') ADVANCE(145); if (lookahead == '=') @@ -6777,7 +6795,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 356: if (lookahead == '\n') - ADVANCE(153); + ADVANCE(154); if (lookahead == '\"') ADVANCE(2); if (lookahead == '#') @@ -6785,13 +6803,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '$') ADVANCE(4); if (lookahead == '&') - ADVANCE(162); + ADVANCE(163); if (lookahead == '\'') ADVANCE(25); if (lookahead == '(') ADVANCE(27); if (lookahead == ';') - ADVANCE(155); + ADVANCE(156); if (lookahead == '<') ADVANCE(145); if (lookahead == '=') @@ -6834,7 +6852,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 358: if (lookahead == '\n') - ADVANCE(153); + ADVANCE(154); if (lookahead == '\"') ADVANCE(2); if (lookahead == '#') @@ -6842,11 +6860,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '$') ADVANCE(4); if (lookahead == '&') - ADVANCE(162); + ADVANCE(163); if (lookahead == '\'') ADVANCE(25); if (lookahead == ';') - ADVANCE(155); + ADVANCE(156); if (lookahead == '<') ADVANCE(28); if (lookahead == '>') @@ -6887,13 +6905,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 360: if (lookahead == '\n') - ADVANCE(153); + ADVANCE(154); if (lookahead == '#') ADVANCE(21); if (lookahead == '&') - ADVANCE(162); + ADVANCE(163); if (lookahead == ';') - ADVANCE(155); + ADVANCE(156); if (lookahead == '<') ADVANCE(254); if (lookahead == '>') @@ -6915,13 +6933,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 362: if (lookahead == '\n') - ADVANCE(153); + ADVANCE(154); if (lookahead == '#') ADVANCE(21); if (lookahead == '&') - ADVANCE(162); + ADVANCE(163); if (lookahead == ';') - ADVANCE(155); + ADVANCE(156); if (lookahead == '<') ADVANCE(281); if (lookahead == '>') @@ -6943,13 +6961,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 364: if (lookahead == '\n') - ADVANCE(153); + ADVANCE(154); if (lookahead == '#') ADVANCE(21); if (lookahead == '&') - ADVANCE(154); - if (lookahead == ';') ADVANCE(155); + if (lookahead == ';') + ADVANCE(156); if (lookahead == '\\') SKIP(365); if (lookahead == 'e') @@ -6983,136 +7001,136 @@ 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 = 152, .external_lex_state = 3}, - [13] = {.lex_state = 152, .external_lex_state = 4}, + [12] = {.lex_state = 153, .external_lex_state = 3}, + [13] = {.lex_state = 153, .external_lex_state = 4}, [14] = {.lex_state = 141}, - [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}, + [15] = {.lex_state = 162, .external_lex_state = 5}, + [16] = {.lex_state = 165}, + [17] = {.lex_state = 170}, + [18] = {.lex_state = 162, .external_lex_state = 5}, + [19] = {.lex_state = 175, .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 = 176, .external_lex_state = 5}, + [23] = {.lex_state = 177, .external_lex_state = 5}, [24] = {.lex_state = 20}, - [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}, + [25] = {.lex_state = 179, .external_lex_state = 2}, + [26] = {.lex_state = 153, .external_lex_state = 4}, + [27] = {.lex_state = 162, .external_lex_state = 7}, + [28] = {.lex_state = 182, .external_lex_state = 8}, [29] = {.lex_state = 103}, [30] = {.lex_state = 141, .external_lex_state = 2}, - [31] = {.lex_state = 183, .external_lex_state = 7}, + [31] = {.lex_state = 184, .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 = 185, .external_lex_state = 9}, - [37] = {.lex_state = 187, .external_lex_state = 8}, + [36] = {.lex_state = 186, .external_lex_state = 9}, + [37] = {.lex_state = 188, .external_lex_state = 8}, [38] = {.lex_state = 103}, [39] = {.lex_state = 103}, - [40] = {.lex_state = 152, .external_lex_state = 4}, - [41] = {.lex_state = 181, .external_lex_state = 8}, + [40] = {.lex_state = 153, .external_lex_state = 4}, + [41] = {.lex_state = 182, .external_lex_state = 8}, [42] = {.lex_state = 103}, - [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}, + [43] = {.lex_state = 190, .external_lex_state = 10}, + [44] = {.lex_state = 165}, + [45] = {.lex_state = 170}, + [46] = {.lex_state = 190, .external_lex_state = 10}, + [47] = {.lex_state = 175, .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 = 189, .external_lex_state = 4}, + [51] = {.lex_state = 190, .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 = 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}, + [58] = {.lex_state = 193, .external_lex_state = 3}, + [59] = {.lex_state = 193, .external_lex_state = 4}, + [60] = {.lex_state = 184, .external_lex_state = 5}, + [61] = {.lex_state = 165}, + [62] = {.lex_state = 170}, + [63] = {.lex_state = 184, .external_lex_state = 5}, + [64] = {.lex_state = 175, .external_lex_state = 6}, [65] = {.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}, + [68] = {.lex_state = 195, .external_lex_state = 5}, + [69] = {.lex_state = 193, .external_lex_state = 4}, + [70] = {.lex_state = 184, .external_lex_state = 7}, + [71] = {.lex_state = 188, .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}, + [75] = {.lex_state = 197}, [76] = {.lex_state = 217, .external_lex_state = 11}, - [77] = {.lex_state = 164}, - [78] = {.lex_state = 169}, + [77] = {.lex_state = 165}, + [78] = {.lex_state = 170}, [79] = {.lex_state = 217, .external_lex_state = 11}, - [80] = {.lex_state = 174, .external_lex_state = 6}, + [80] = {.lex_state = 175, .external_lex_state = 6}, [81] = {.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}, + [86] = {.lex_state = 197}, [87] = {.lex_state = 219, .external_lex_state = 13}, - [88] = {.lex_state = 164}, - [89] = {.lex_state = 169}, + [88] = {.lex_state = 165}, + [89] = {.lex_state = 170}, [90] = {.lex_state = 219, .external_lex_state = 13}, - [91] = {.lex_state = 174, .external_lex_state = 6}, + [91] = {.lex_state = 175, .external_lex_state = 6}, [92] = {.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}, + [98] = {.lex_state = 153, .external_lex_state = 14}, + [99] = {.lex_state = 165}, + [100] = {.lex_state = 170}, + [101] = {.lex_state = 153, .external_lex_state = 14}, + [102] = {.lex_state = 175, .external_lex_state = 6}, [103] = {.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}, + [106] = {.lex_state = 193, .external_lex_state = 3}, + [107] = {.lex_state = 193, .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}, + [109] = {.lex_state = 153, .external_lex_state = 3}, + [110] = {.lex_state = 153, .external_lex_state = 10}, + [111] = {.lex_state = 165}, + [112] = {.lex_state = 170}, + [113] = {.lex_state = 153, .external_lex_state = 10}, + [114] = {.lex_state = 175, .external_lex_state = 6}, [115] = {.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}, + [118] = {.lex_state = 193, .external_lex_state = 4}, + [119] = {.lex_state = 193, .external_lex_state = 4}, + [120] = {.lex_state = 153, .external_lex_state = 4}, [121] = {.lex_state = 141, .external_lex_state = 15}, - [122] = {.lex_state = 164}, - [123] = {.lex_state = 169}, + [122] = {.lex_state = 165}, + [123] = {.lex_state = 170}, [124] = {.lex_state = 141, .external_lex_state = 15}, - [125] = {.lex_state = 174, .external_lex_state = 6}, + [125] = {.lex_state = 175, .external_lex_state = 6}, [126] = {.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}, + [131] = {.lex_state = 162, .external_lex_state = 5}, + [132] = {.lex_state = 162, .external_lex_state = 5}, [133] = {.lex_state = 223}, - [134] = {.lex_state = 164, .external_lex_state = 13}, - [135] = {.lex_state = 174, .external_lex_state = 6}, + [134] = {.lex_state = 165, .external_lex_state = 13}, + [135] = {.lex_state = 175, .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}, + [138] = {.lex_state = 165}, + [139] = {.lex_state = 162, .external_lex_state = 5}, + [140] = {.lex_state = 162, .external_lex_state = 5}, + [141] = {.lex_state = 162, .external_lex_state = 5}, [142] = {.lex_state = 103}, [143] = {.lex_state = 226, .external_lex_state = 16}, [144] = {.lex_state = 235, .external_lex_state = 6}, @@ -7130,10 +7148,10 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [159] = {.lex_state = 165}, + [160] = {.lex_state = 170}, [161] = {.lex_state = 143, .external_lex_state = 17}, - [162] = {.lex_state = 174, .external_lex_state = 6}, + [162] = {.lex_state = 175, .external_lex_state = 6}, [163] = {.lex_state = 20, .external_lex_state = 2}, [164] = {.lex_state = 20, .external_lex_state = 2}, [165] = {.lex_state = 20, .external_lex_state = 2}, @@ -7152,10 +7170,10 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [181] = {.lex_state = 165}, + [182] = {.lex_state = 170}, [183] = {.lex_state = 245, .external_lex_state = 17}, - [184] = {.lex_state = 174, .external_lex_state = 6}, + [184] = {.lex_state = 175, .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}, @@ -7169,43 +7187,43 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [198] = {.lex_state = 179, .external_lex_state = 2}, [199] = {.lex_state = 20, .external_lex_state = 2}, [200] = {.lex_state = 20}, - [201] = {.lex_state = 196}, + [201] = {.lex_state = 197}, [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}, + [205] = {.lex_state = 162, .external_lex_state = 5}, + [206] = {.lex_state = 162, .external_lex_state = 5}, [207] = {.lex_state = 253, .external_lex_state = 7}, - [208] = {.lex_state = 183, .external_lex_state = 7}, + [208] = {.lex_state = 184, .external_lex_state = 7}, [209] = {.lex_state = 258, .external_lex_state = 7}, - [210] = {.lex_state = 161, .external_lex_state = 7}, + [210] = {.lex_state = 162, .external_lex_state = 7}, [211] = {.lex_state = 20, .external_lex_state = 2}, [212] = {.lex_state = 103}, - [213] = {.lex_state = 161, .external_lex_state = 7}, + [213] = {.lex_state = 162, .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 = 260, .external_lex_state = 11}, - [220] = {.lex_state = 164}, - [221] = {.lex_state = 169}, + [220] = {.lex_state = 165}, + [221] = {.lex_state = 170}, [222] = {.lex_state = 260, .external_lex_state = 11}, - [223] = {.lex_state = 174, .external_lex_state = 6}, + [223] = {.lex_state = 175, .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 = 260, .external_lex_state = 11}, - [228] = {.lex_state = 187, .external_lex_state = 8}, + [228] = {.lex_state = 188, .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}, + [230] = {.lex_state = 182, .external_lex_state = 20}, + [231] = {.lex_state = 165}, + [232] = {.lex_state = 170}, + [233] = {.lex_state = 182, .external_lex_state = 20}, + [234] = {.lex_state = 175, .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}, @@ -7215,15 +7233,15 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [241] = {.lex_state = 103}, [242] = {.lex_state = 268, .external_lex_state = 2}, [243] = {.lex_state = 141}, - [244] = {.lex_state = 189, .external_lex_state = 4}, + [244] = {.lex_state = 190, .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}, + [246] = {.lex_state = 190, .external_lex_state = 10}, + [247] = {.lex_state = 190, .external_lex_state = 10}, + [248] = {.lex_state = 165}, + [249] = {.lex_state = 190, .external_lex_state = 10}, + [250] = {.lex_state = 190, .external_lex_state = 10}, + [251] = {.lex_state = 190, .external_lex_state = 10}, + [252] = {.lex_state = 190, .external_lex_state = 4}, [253] = {.lex_state = 103}, [254] = {.lex_state = 103}, [255] = {.lex_state = 226, .external_lex_state = 16}, @@ -7239,38 +7257,38 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [265] = {.lex_state = 103}, [266] = {.lex_state = 278, .external_lex_state = 21}, [267] = {.lex_state = 280, .external_lex_state = 7}, - [268] = {.lex_state = 185, .external_lex_state = 9}, + [268] = {.lex_state = 186, .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}, + [274] = {.lex_state = 193, .external_lex_state = 14}, + [275] = {.lex_state = 165}, + [276] = {.lex_state = 170}, + [277] = {.lex_state = 193, .external_lex_state = 14}, + [278] = {.lex_state = 175, .external_lex_state = 6}, [279] = {.lex_state = 20, .external_lex_state = 2}, [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}, + [283] = {.lex_state = 193, .external_lex_state = 3}, + [284] = {.lex_state = 193, .external_lex_state = 10}, + [285] = {.lex_state = 165}, + [286] = {.lex_state = 170}, + [287] = {.lex_state = 193, .external_lex_state = 10}, + [288] = {.lex_state = 175, .external_lex_state = 6}, [289] = {.lex_state = 20, .external_lex_state = 2}, [290] = {.lex_state = 20, .external_lex_state = 2}, [291] = {.lex_state = 20, .external_lex_state = 2}, - [292] = {.lex_state = 192, .external_lex_state = 4}, + [292] = {.lex_state = 193, .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}, + [294] = {.lex_state = 184, .external_lex_state = 5}, + [295] = {.lex_state = 184, .external_lex_state = 5}, + [296] = {.lex_state = 165}, + [297] = {.lex_state = 184, .external_lex_state = 5}, + [298] = {.lex_state = 184, .external_lex_state = 5}, + [299] = {.lex_state = 184, .external_lex_state = 5}, [300] = {.lex_state = 103}, [301] = {.lex_state = 226, .external_lex_state = 16}, [302] = {.lex_state = 235, .external_lex_state = 6}, @@ -7288,24 +7306,24 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [314] = {.lex_state = 285, .external_lex_state = 2}, [315] = {.lex_state = 20, .external_lex_state = 2}, [316] = {.lex_state = 20}, - [317] = {.lex_state = 196}, + [317] = {.lex_state = 197}, [318] = {.lex_state = 141}, [319] = {.lex_state = 141}, - [320] = {.lex_state = 183, .external_lex_state = 5}, - [321] = {.lex_state = 183, .external_lex_state = 5}, + [320] = {.lex_state = 184, .external_lex_state = 5}, + [321] = {.lex_state = 184, .external_lex_state = 5}, [322] = {.lex_state = 287, .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}, + [323] = {.lex_state = 184, .external_lex_state = 7}, + [324] = {.lex_state = 193, .external_lex_state = 4}, + [325] = {.lex_state = 188, .external_lex_state = 8}, [326] = {.lex_state = 20, .external_lex_state = 2}, - [327] = {.lex_state = 183, .external_lex_state = 7}, + [327] = {.lex_state = 184, .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}, + [334] = {.lex_state = 165}, [335] = {.lex_state = 217, .external_lex_state = 11}, [336] = {.lex_state = 217, .external_lex_state = 11}, [337] = {.lex_state = 217, .external_lex_state = 11}, @@ -7328,7 +7346,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [354] = {.lex_state = 141}, [355] = {.lex_state = 219, .external_lex_state = 13}, [356] = {.lex_state = 219, .external_lex_state = 13}, - [357] = {.lex_state = 164}, + [357] = {.lex_state = 165}, [358] = {.lex_state = 219, .external_lex_state = 13}, [359] = {.lex_state = 219, .external_lex_state = 13}, [360] = {.lex_state = 219, .external_lex_state = 13}, @@ -7344,15 +7362,15 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [373] = {.lex_state = 186, .external_lex_state = 9}, + [374] = {.lex_state = 193, .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}, + [376] = {.lex_state = 153, .external_lex_state = 14}, + [377] = {.lex_state = 153, .external_lex_state = 14}, + [378] = {.lex_state = 165}, + [379] = {.lex_state = 153, .external_lex_state = 14}, + [380] = {.lex_state = 153, .external_lex_state = 14}, + [381] = {.lex_state = 153, .external_lex_state = 14}, [382] = {.lex_state = 103}, [383] = {.lex_state = 226, .external_lex_state = 16}, [384] = {.lex_state = 235, .external_lex_state = 6}, @@ -7364,14 +7382,14 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [393] = {.lex_state = 153, .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}, + [395] = {.lex_state = 153, .external_lex_state = 10}, + [396] = {.lex_state = 153, .external_lex_state = 10}, + [397] = {.lex_state = 165}, + [398] = {.lex_state = 153, .external_lex_state = 10}, + [399] = {.lex_state = 153, .external_lex_state = 10}, + [400] = {.lex_state = 153, .external_lex_state = 10}, [401] = {.lex_state = 103}, [402] = {.lex_state = 226, .external_lex_state = 16}, [403] = {.lex_state = 235, .external_lex_state = 6}, @@ -7383,11 +7401,11 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [412] = {.lex_state = 153, .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}, + [416] = {.lex_state = 165}, [417] = {.lex_state = 141, .external_lex_state = 15}, [418] = {.lex_state = 141, .external_lex_state = 15}, [419] = {.lex_state = 141, .external_lex_state = 15}, @@ -7402,12 +7420,12 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [428] = {.lex_state = 249, .external_lex_state = 2}, [429] = {.lex_state = 103}, [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}, + [431] = {.lex_state = 162, .external_lex_state = 5}, + [432] = {.lex_state = 162, .external_lex_state = 5}, + [433] = {.lex_state = 165, .external_lex_state = 13}, + [434] = {.lex_state = 165, .external_lex_state = 13}, + [435] = {.lex_state = 165, .external_lex_state = 13}, + [436] = {.lex_state = 165}, [437] = {.lex_state = 103}, [438] = {.lex_state = 226, .external_lex_state = 16}, [439] = {.lex_state = 235, .external_lex_state = 6}, @@ -7417,17 +7435,17 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [446] = {.lex_state = 162, .external_lex_state = 5}, + [447] = {.lex_state = 165}, [448] = {.lex_state = 141}, [449] = {.lex_state = 289, .external_lex_state = 16}, - [450] = {.lex_state = 161, .external_lex_state = 5}, + [450] = {.lex_state = 162, .external_lex_state = 5}, [451] = {.lex_state = 291, .external_lex_state = 16}, [452] = {.lex_state = 291, .external_lex_state = 22}, - [453] = {.lex_state = 164}, - [454] = {.lex_state = 169}, + [453] = {.lex_state = 165}, + [454] = {.lex_state = 170}, [455] = {.lex_state = 291, .external_lex_state = 22}, - [456] = {.lex_state = 174, .external_lex_state = 6}, + [456] = {.lex_state = 175, .external_lex_state = 6}, [457] = {.lex_state = 293}, [458] = {.lex_state = 20, .external_lex_state = 2}, [459] = {.lex_state = 20, .external_lex_state = 2}, @@ -7437,32 +7455,32 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [466] = {.lex_state = 162, .external_lex_state = 5}, [467] = {.lex_state = 293}, [468] = {.lex_state = 291, .external_lex_state = 16}, - [469] = {.lex_state = 161, .external_lex_state = 5}, + [469] = {.lex_state = 162, .external_lex_state = 5}, [470] = {.lex_state = 293}, [471] = {.lex_state = 291, .external_lex_state = 16}, - [472] = {.lex_state = 185, .external_lex_state = 9}, + [472] = {.lex_state = 186, .external_lex_state = 9}, [473] = {.lex_state = 241, .external_lex_state = 2}, [474] = {.lex_state = 103}, [475] = {.lex_state = 103}, [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}, + [477] = {.lex_state = 190, .external_lex_state = 10}, + [478] = {.lex_state = 190, .external_lex_state = 10}, + [479] = {.lex_state = 190, .external_lex_state = 4}, [480] = {.lex_state = 103}, - [481] = {.lex_state = 192, .external_lex_state = 4}, - [482] = {.lex_state = 187, .external_lex_state = 8}, + [481] = {.lex_state = 193, .external_lex_state = 4}, + [482] = {.lex_state = 188, .external_lex_state = 8}, [483] = {.lex_state = 20, .external_lex_state = 2}, [484] = {.lex_state = 217, .external_lex_state = 12}, [485] = {.lex_state = 219}, [486] = {.lex_state = 103}, [487] = {.lex_state = 237, .external_lex_state = 23}, - [488] = {.lex_state = 164}, - [489] = {.lex_state = 169}, + [488] = {.lex_state = 165}, + [489] = {.lex_state = 170}, [490] = {.lex_state = 237, .external_lex_state = 23}, - [491] = {.lex_state = 174, .external_lex_state = 6}, + [491] = {.lex_state = 175, .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}, @@ -7471,10 +7489,10 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [500] = {.lex_state = 165}, + [501] = {.lex_state = 170}, [502] = {.lex_state = 237, .external_lex_state = 13}, - [503] = {.lex_state = 174, .external_lex_state = 6}, + [503] = {.lex_state = 175, .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}, @@ -7484,7 +7502,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [510] = {.lex_state = 141}, [511] = {.lex_state = 143, .external_lex_state = 17}, [512] = {.lex_state = 143, .external_lex_state = 17}, - [513] = {.lex_state = 164}, + [513] = {.lex_state = 165}, [514] = {.lex_state = 143, .external_lex_state = 17}, [515] = {.lex_state = 143, .external_lex_state = 17}, [516] = {.lex_state = 143, .external_lex_state = 17}, @@ -7501,10 +7519,10 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [530] = {.lex_state = 162, .external_lex_state = 5}, [531] = {.lex_state = 20, .external_lex_state = 2}, [532] = {.lex_state = 20}, - [533] = {.lex_state = 196}, + [533] = {.lex_state = 197}, [534] = {.lex_state = 141}, [535] = {.lex_state = 251, .external_lex_state = 19}, [536] = {.lex_state = 141}, @@ -7515,27 +7533,27 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [541] = {.lex_state = 300, .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}, + [544] = {.lex_state = 186, .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}, + [551] = {.lex_state = 165}, + [552] = {.lex_state = 170}, [553] = {.lex_state = 243, .external_lex_state = 23}, - [554] = {.lex_state = 174, .external_lex_state = 6}, + [554] = {.lex_state = 175, .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}, + [561] = {.lex_state = 165}, + [562] = {.lex_state = 170}, [563] = {.lex_state = 243, .external_lex_state = 13}, - [564] = {.lex_state = 174, .external_lex_state = 6}, + [564] = {.lex_state = 175, .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}, @@ -7543,7 +7561,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [569] = {.lex_state = 141}, [570] = {.lex_state = 245, .external_lex_state = 17}, [571] = {.lex_state = 245, .external_lex_state = 17}, - [572] = {.lex_state = 164}, + [572] = {.lex_state = 165}, [573] = {.lex_state = 245, .external_lex_state = 17}, [574] = {.lex_state = 245, .external_lex_state = 17}, [575] = {.lex_state = 245, .external_lex_state = 17}, @@ -7562,7 +7580,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [588] = {.lex_state = 20, .external_lex_state = 2}, [589] = {.lex_state = 20, .external_lex_state = 2}, [590] = {.lex_state = 20}, - [591] = {.lex_state = 196}, + [591] = {.lex_state = 197}, [592] = {.lex_state = 141}, [593] = {.lex_state = 141}, [594] = {.lex_state = 245, .external_lex_state = 17}, @@ -7570,21 +7588,21 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [596] = {.lex_state = 302, .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}, + [599] = {.lex_state = 162, .external_lex_state = 5}, [600] = {.lex_state = 103}, [601] = {.lex_state = 283, .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}, + [602] = {.lex_state = 188, .external_lex_state = 8}, + [603] = {.lex_state = 153, .external_lex_state = 4}, + [604] = {.lex_state = 182, .external_lex_state = 8}, [605] = {.lex_state = 141}, - [606] = {.lex_state = 161, .external_lex_state = 5}, - [607] = {.lex_state = 161, .external_lex_state = 5}, - [608] = {.lex_state = 183, .external_lex_state = 7}, + [606] = {.lex_state = 162, .external_lex_state = 5}, + [607] = {.lex_state = 162, .external_lex_state = 5}, + [608] = {.lex_state = 184, .external_lex_state = 7}, [609] = {.lex_state = 258, .external_lex_state = 5}, - [610] = {.lex_state = 164}, - [611] = {.lex_state = 169}, + [610] = {.lex_state = 165}, + [611] = {.lex_state = 170}, [612] = {.lex_state = 258, .external_lex_state = 5}, - [613] = {.lex_state = 174, .external_lex_state = 6}, + [613] = {.lex_state = 175, .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}, @@ -7597,14 +7615,14 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [623] = {.lex_state = 253, .external_lex_state = 7}, [624] = {.lex_state = 258, .external_lex_state = 7}, [625] = {.lex_state = 258, .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}, + [626] = {.lex_state = 162, .external_lex_state = 7}, + [627] = {.lex_state = 186, .external_lex_state = 9}, + [628] = {.lex_state = 162, .external_lex_state = 7}, [629] = {.lex_state = 307, .external_lex_state = 12}, [630] = {.lex_state = 309, .external_lex_state = 13}, [631] = {.lex_state = 260, .external_lex_state = 11}, [632] = {.lex_state = 260, .external_lex_state = 11}, - [633] = {.lex_state = 164}, + [633] = {.lex_state = 165}, [634] = {.lex_state = 260, .external_lex_state = 11}, [635] = {.lex_state = 260, .external_lex_state = 11}, [636] = {.lex_state = 260, .external_lex_state = 11}, @@ -7622,24 +7640,24 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [651] = {.lex_state = 188, .external_lex_state = 8}, [652] = {.lex_state = 311, .external_lex_state = 13}, - [653] = {.lex_state = 164}, - [654] = {.lex_state = 169}, + [653] = {.lex_state = 165}, + [654] = {.lex_state = 170}, [655] = {.lex_state = 311, .external_lex_state = 13}, - [656] = {.lex_state = 174, .external_lex_state = 6}, + [656] = {.lex_state = 175, .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}, + [663] = {.lex_state = 182, .external_lex_state = 20}, + [664] = {.lex_state = 182, .external_lex_state = 20}, + [665] = {.lex_state = 165}, + [666] = {.lex_state = 182, .external_lex_state = 20}, + [667] = {.lex_state = 182, .external_lex_state = 20}, + [668] = {.lex_state = 182, .external_lex_state = 20}, [669] = {.lex_state = 103}, [670] = {.lex_state = 226, .external_lex_state = 16}, [671] = {.lex_state = 235, .external_lex_state = 6}, @@ -7652,10 +7670,10 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [678] = {.lex_state = 103}, [679] = {.lex_state = 241, .external_lex_state = 2}, [680] = {.lex_state = 313, .external_lex_state = 10}, - [681] = {.lex_state = 164}, - [682] = {.lex_state = 169}, + [681] = {.lex_state = 165}, + [682] = {.lex_state = 170}, [683] = {.lex_state = 313, .external_lex_state = 10}, - [684] = {.lex_state = 174, .external_lex_state = 6}, + [684] = {.lex_state = 175, .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}, @@ -7663,57 +7681,57 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [689] = {.lex_state = 313, .external_lex_state = 4}, [690] = {.lex_state = 253, .external_lex_state = 7}, [691] = {.lex_state = 262, .external_lex_state = 2}, - [692] = {.lex_state = 152, .external_lex_state = 4}, - [693] = {.lex_state = 181, .external_lex_state = 8}, + [692] = {.lex_state = 153, .external_lex_state = 4}, + [693] = {.lex_state = 182, .external_lex_state = 8}, [694] = {.lex_state = 262, .external_lex_state = 2}, [695] = {.lex_state = 258, .external_lex_state = 7}, [696] = {.lex_state = 283, .external_lex_state = 4}, [697] = {.lex_state = 20, .external_lex_state = 2}, [698] = {.lex_state = 315, .external_lex_state = 2}, [699] = {.lex_state = 268, .external_lex_state = 2}, - [700] = {.lex_state = 152, .external_lex_state = 4}, + [700] = {.lex_state = 153, .external_lex_state = 4}, [701] = {.lex_state = 103}, [702] = {.lex_state = 103}, - [703] = {.lex_state = 181, .external_lex_state = 8}, + [703] = {.lex_state = 182, .external_lex_state = 8}, [704] = {.lex_state = 268, .external_lex_state = 2}, [705] = {.lex_state = 103}, - [706] = {.lex_state = 189, .external_lex_state = 10}, + [706] = {.lex_state = 190, .external_lex_state = 10}, [707] = {.lex_state = 317}, - [708] = {.lex_state = 189, .external_lex_state = 4}, - [709] = {.lex_state = 189, .external_lex_state = 10}, - [710] = {.lex_state = 189, .external_lex_state = 10}, + [708] = {.lex_state = 190, .external_lex_state = 4}, + [709] = {.lex_state = 190, .external_lex_state = 10}, + [710] = {.lex_state = 190, .external_lex_state = 10}, [711] = {.lex_state = 317}, - [712] = {.lex_state = 189, .external_lex_state = 4}, + [712] = {.lex_state = 190, .external_lex_state = 4}, [713] = {.lex_state = 289, .external_lex_state = 16}, - [714] = {.lex_state = 189, .external_lex_state = 10}, + [714] = {.lex_state = 190, .external_lex_state = 10}, [715] = {.lex_state = 293}, [716] = {.lex_state = 291, .external_lex_state = 16}, [717] = {.lex_state = 103}, [718] = {.lex_state = 226, .external_lex_state = 16}, [719] = {.lex_state = 226, .external_lex_state = 16}, [720] = {.lex_state = 226, .external_lex_state = 16}, - [721] = {.lex_state = 189, .external_lex_state = 10}, + [721] = {.lex_state = 190, .external_lex_state = 10}, [722] = {.lex_state = 293}, [723] = {.lex_state = 291, .external_lex_state = 16}, - [724] = {.lex_state = 189, .external_lex_state = 10}, + [724] = {.lex_state = 190, .external_lex_state = 10}, [725] = {.lex_state = 293}, [726] = {.lex_state = 291, .external_lex_state = 16}, - [727] = {.lex_state = 189, .external_lex_state = 10}, - [728] = {.lex_state = 189, .external_lex_state = 10}, + [727] = {.lex_state = 190, .external_lex_state = 10}, + [728] = {.lex_state = 190, .external_lex_state = 10}, [729] = {.lex_state = 103}, [730] = {.lex_state = 323, .external_lex_state = 7}, [731] = {.lex_state = 278, .external_lex_state = 21}, - [732] = {.lex_state = 152, .external_lex_state = 4}, - [733] = {.lex_state = 181, .external_lex_state = 8}, + [732] = {.lex_state = 153, .external_lex_state = 4}, + [733] = {.lex_state = 182, .external_lex_state = 8}, [734] = {.lex_state = 278, .external_lex_state = 21}, [735] = {.lex_state = 20}, [736] = {.lex_state = 141}, [737] = {.lex_state = 283, .external_lex_state = 4}, - [738] = {.lex_state = 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}, + [738] = {.lex_state = 188, .external_lex_state = 20}, + [739] = {.lex_state = 165}, + [740] = {.lex_state = 170}, + [741] = {.lex_state = 188, .external_lex_state = 20}, + [742] = {.lex_state = 175, .external_lex_state = 6}, [743] = {.lex_state = 20, .external_lex_state = 2}, [744] = {.lex_state = 20, .external_lex_state = 2}, [745] = {.lex_state = 20, .external_lex_state = 2}, @@ -7721,14 +7739,14 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [747] = {.lex_state = 103}, [748] = {.lex_state = 325, .external_lex_state = 7}, [749] = {.lex_state = 287, .external_lex_state = 7}, - [750] = {.lex_state = 185, .external_lex_state = 9}, + [750] = {.lex_state = 186, .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}, + [752] = {.lex_state = 193, .external_lex_state = 14}, + [753] = {.lex_state = 193, .external_lex_state = 14}, + [754] = {.lex_state = 165}, + [755] = {.lex_state = 193, .external_lex_state = 14}, + [756] = {.lex_state = 193, .external_lex_state = 14}, + [757] = {.lex_state = 193, .external_lex_state = 14}, [758] = {.lex_state = 103}, [759] = {.lex_state = 226, .external_lex_state = 16}, [760] = {.lex_state = 235, .external_lex_state = 6}, @@ -7740,14 +7758,14 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [769] = {.lex_state = 193, .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}, + [771] = {.lex_state = 193, .external_lex_state = 10}, + [772] = {.lex_state = 193, .external_lex_state = 10}, + [773] = {.lex_state = 165}, + [774] = {.lex_state = 193, .external_lex_state = 10}, + [775] = {.lex_state = 193, .external_lex_state = 10}, + [776] = {.lex_state = 193, .external_lex_state = 10}, [777] = {.lex_state = 103}, [778] = {.lex_state = 226, .external_lex_state = 16}, [779] = {.lex_state = 235, .external_lex_state = 6}, @@ -7759,38 +7777,38 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [788] = {.lex_state = 193, .external_lex_state = 4}, + [789] = {.lex_state = 184, .external_lex_state = 5}, + [790] = {.lex_state = 184, .external_lex_state = 5}, + [791] = {.lex_state = 184, .external_lex_state = 5}, [792] = {.lex_state = 289, .external_lex_state = 16}, - [793] = {.lex_state = 183, .external_lex_state = 5}, + [793] = {.lex_state = 184, .external_lex_state = 5}, [794] = {.lex_state = 293}, [795] = {.lex_state = 291, .external_lex_state = 16}, [796] = {.lex_state = 103}, [797] = {.lex_state = 226, .external_lex_state = 16}, [798] = {.lex_state = 226, .external_lex_state = 16}, [799] = {.lex_state = 226, .external_lex_state = 16}, - [800] = {.lex_state = 183, .external_lex_state = 5}, + [800] = {.lex_state = 184, .external_lex_state = 5}, [801] = {.lex_state = 293}, [802] = {.lex_state = 291, .external_lex_state = 16}, - [803] = {.lex_state = 183, .external_lex_state = 5}, + [803] = {.lex_state = 184, .external_lex_state = 5}, [804] = {.lex_state = 293}, [805] = {.lex_state = 291, .external_lex_state = 16}, - [806] = {.lex_state = 183, .external_lex_state = 5}, - [807] = {.lex_state = 183, .external_lex_state = 5}, + [806] = {.lex_state = 184, .external_lex_state = 5}, + [807] = {.lex_state = 184, .external_lex_state = 5}, [808] = {.lex_state = 103}, [809] = {.lex_state = 283, .external_lex_state = 4}, - [810] = {.lex_state = 192, .external_lex_state = 4}, - [811] = {.lex_state = 187, .external_lex_state = 8}, + [810] = {.lex_state = 193, .external_lex_state = 4}, + [811] = {.lex_state = 188, .external_lex_state = 8}, [812] = {.lex_state = 141}, - [813] = {.lex_state = 183, .external_lex_state = 5}, - [814] = {.lex_state = 183, .external_lex_state = 5}, + [813] = {.lex_state = 184, .external_lex_state = 5}, + [814] = {.lex_state = 184, .external_lex_state = 5}, [815] = {.lex_state = 287, .external_lex_state = 5}, - [816] = {.lex_state = 164}, - [817] = {.lex_state = 169}, + [816] = {.lex_state = 165}, + [817] = {.lex_state = 170}, [818] = {.lex_state = 287, .external_lex_state = 5}, - [819] = {.lex_state = 174, .external_lex_state = 6}, + [819] = {.lex_state = 175, .external_lex_state = 6}, [820] = {.lex_state = 20, .external_lex_state = 2}, [821] = {.lex_state = 20, .external_lex_state = 2}, [822] = {.lex_state = 20, .external_lex_state = 2}, @@ -7798,9 +7816,9 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [824] = {.lex_state = 287, .external_lex_state = 5}, [825] = {.lex_state = 287, .external_lex_state = 7}, [826] = {.lex_state = 287, .external_lex_state = 7}, - [827] = {.lex_state = 183, .external_lex_state = 7}, + [827] = {.lex_state = 184, .external_lex_state = 7}, [828] = {.lex_state = 285, .external_lex_state = 2}, - [829] = {.lex_state = 183, .external_lex_state = 7}, + [829] = {.lex_state = 184, .external_lex_state = 7}, [830] = {.lex_state = 217, .external_lex_state = 11}, [831] = {.lex_state = 217, .external_lex_state = 11}, [832] = {.lex_state = 217, .external_lex_state = 11}, @@ -7840,48 +7858,48 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [866] = {.lex_state = 291, .external_lex_state = 16}, [867] = {.lex_state = 219, .external_lex_state = 13}, [868] = {.lex_state = 219, .external_lex_state = 13}, - [869] = {.lex_state = 192, .external_lex_state = 3}, + [869] = {.lex_state = 193, .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}, + [871] = {.lex_state = 153, .external_lex_state = 14}, + [872] = {.lex_state = 153, .external_lex_state = 14}, + [873] = {.lex_state = 153, .external_lex_state = 14}, + [874] = {.lex_state = 153, .external_lex_state = 14}, + [875] = {.lex_state = 153, .external_lex_state = 14}, [876] = {.lex_state = 289, .external_lex_state = 16}, - [877] = {.lex_state = 152, .external_lex_state = 14}, + [877] = {.lex_state = 153, .external_lex_state = 14}, [878] = {.lex_state = 293}, [879] = {.lex_state = 291, .external_lex_state = 16}, [880] = {.lex_state = 103}, [881] = {.lex_state = 226, .external_lex_state = 16}, [882] = {.lex_state = 226, .external_lex_state = 16}, [883] = {.lex_state = 226, .external_lex_state = 16}, - [884] = {.lex_state = 152, .external_lex_state = 14}, + [884] = {.lex_state = 153, .external_lex_state = 14}, [885] = {.lex_state = 293}, [886] = {.lex_state = 291, .external_lex_state = 16}, - [887] = {.lex_state = 152, .external_lex_state = 14}, + [887] = {.lex_state = 153, .external_lex_state = 14}, [888] = {.lex_state = 293}, [889] = {.lex_state = 291, .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}, + [890] = {.lex_state = 153, .external_lex_state = 14}, + [891] = {.lex_state = 153, .external_lex_state = 14}, + [892] = {.lex_state = 153, .external_lex_state = 10}, + [893] = {.lex_state = 153, .external_lex_state = 10}, + [894] = {.lex_state = 153, .external_lex_state = 10}, [895] = {.lex_state = 289, .external_lex_state = 16}, - [896] = {.lex_state = 152, .external_lex_state = 10}, + [896] = {.lex_state = 153, .external_lex_state = 10}, [897] = {.lex_state = 293}, [898] = {.lex_state = 291, .external_lex_state = 16}, [899] = {.lex_state = 103}, [900] = {.lex_state = 226, .external_lex_state = 16}, [901] = {.lex_state = 226, .external_lex_state = 16}, [902] = {.lex_state = 226, .external_lex_state = 16}, - [903] = {.lex_state = 152, .external_lex_state = 10}, + [903] = {.lex_state = 153, .external_lex_state = 10}, [904] = {.lex_state = 293}, [905] = {.lex_state = 291, .external_lex_state = 16}, - [906] = {.lex_state = 152, .external_lex_state = 10}, + [906] = {.lex_state = 153, .external_lex_state = 10}, [907] = {.lex_state = 293}, [908] = {.lex_state = 291, .external_lex_state = 16}, - [909] = {.lex_state = 152, .external_lex_state = 10}, - [910] = {.lex_state = 152, .external_lex_state = 10}, + [909] = {.lex_state = 153, .external_lex_state = 10}, + [910] = {.lex_state = 153, .external_lex_state = 10}, [911] = {.lex_state = 141, .external_lex_state = 15}, [912] = {.lex_state = 141, .external_lex_state = 15}, [913] = {.lex_state = 141, .external_lex_state = 15}, @@ -7901,31 +7919,31 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [927] = {.lex_state = 291, .external_lex_state = 16}, [928] = {.lex_state = 141, .external_lex_state = 15}, [929] = {.lex_state = 141, .external_lex_state = 15}, - [930] = {.lex_state = 164}, + [930] = {.lex_state = 165}, [931] = {.lex_state = 289, .external_lex_state = 16}, - [932] = {.lex_state = 164, .external_lex_state = 13}, + [932] = {.lex_state = 165, .external_lex_state = 13}, [933] = {.lex_state = 293}, [934] = {.lex_state = 291, .external_lex_state = 16}, [935] = {.lex_state = 103}, [936] = {.lex_state = 226, .external_lex_state = 16}, [937] = {.lex_state = 226, .external_lex_state = 16}, [938] = {.lex_state = 226, .external_lex_state = 16}, - [939] = {.lex_state = 164, .external_lex_state = 13}, + [939] = {.lex_state = 165, .external_lex_state = 13}, [940] = {.lex_state = 293}, [941] = {.lex_state = 291, .external_lex_state = 16}, - [942] = {.lex_state = 164, .external_lex_state = 13}, + [942] = {.lex_state = 165, .external_lex_state = 13}, [943] = {.lex_state = 293}, [944] = {.lex_state = 291, .external_lex_state = 16}, - [945] = {.lex_state = 164, .external_lex_state = 13}, + [945] = {.lex_state = 165, .external_lex_state = 13}, [946] = {.lex_state = 260, .external_lex_state = 11}, [947] = {.lex_state = 260, .external_lex_state = 11}, [948] = {.lex_state = 260, .external_lex_state = 11}, - [949] = {.lex_state = 161, .external_lex_state = 5}, + [949] = {.lex_state = 162, .external_lex_state = 5}, [950] = {.lex_state = 327, .external_lex_state = 22}, - [951] = {.lex_state = 164}, - [952] = {.lex_state = 169}, + [951] = {.lex_state = 165}, + [952] = {.lex_state = 170}, [953] = {.lex_state = 327, .external_lex_state = 22}, - [954] = {.lex_state = 174, .external_lex_state = 6}, + [954] = {.lex_state = 175, .external_lex_state = 6}, [955] = {.lex_state = 20, .external_lex_state = 2}, [956] = {.lex_state = 20, .external_lex_state = 2}, [957] = {.lex_state = 20, .external_lex_state = 2}, @@ -7933,7 +7951,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [959] = {.lex_state = 141}, [960] = {.lex_state = 291, .external_lex_state = 22}, [961] = {.lex_state = 291, .external_lex_state = 22}, - [962] = {.lex_state = 164}, + [962] = {.lex_state = 165}, [963] = {.lex_state = 291, .external_lex_state = 22}, [964] = {.lex_state = 291, .external_lex_state = 22}, [965] = {.lex_state = 291, .external_lex_state = 22}, @@ -7949,27 +7967,27 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [978] = {.lex_state = 162, .external_lex_state = 5}, [979] = {.lex_state = 291, .external_lex_state = 16}, [980] = {.lex_state = 289, .external_lex_state = 16}, - [981] = {.lex_state = 161, .external_lex_state = 5}, + [981] = {.lex_state = 162, .external_lex_state = 5}, [982] = {.lex_state = 293}, [983] = {.lex_state = 291, .external_lex_state = 16}, - [984] = {.lex_state = 161, .external_lex_state = 5}, + [984] = {.lex_state = 162, .external_lex_state = 5}, [985] = {.lex_state = 293}, [986] = {.lex_state = 291, .external_lex_state = 16}, [987] = {.lex_state = 293}, [988] = {.lex_state = 291, .external_lex_state = 16}, [989] = {.lex_state = 291, .external_lex_state = 16}, - [990] = {.lex_state = 161, .external_lex_state = 5}, + [990] = {.lex_state = 162, .external_lex_state = 5}, [991] = {.lex_state = 291, .external_lex_state = 16}, [992] = {.lex_state = 241, .external_lex_state = 2}, [993] = {.lex_state = 241}, [994] = {.lex_state = 241, .external_lex_state = 15}, - [995] = {.lex_state = 164}, - [996] = {.lex_state = 169}, + [995] = {.lex_state = 165}, + [996] = {.lex_state = 170}, [997] = {.lex_state = 241, .external_lex_state = 15}, - [998] = {.lex_state = 174, .external_lex_state = 6}, + [998] = {.lex_state = 175, .external_lex_state = 6}, [999] = {.lex_state = 20, .external_lex_state = 2}, [1000] = {.lex_state = 20, .external_lex_state = 2}, [1001] = {.lex_state = 20, .external_lex_state = 2}, @@ -7977,24 +7995,24 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1003] = {.lex_state = 262, .external_lex_state = 2}, [1004] = {.lex_state = 300, .external_lex_state = 18}, [1005] = {.lex_state = 268, .external_lex_state = 2}, - [1006] = {.lex_state = 189, .external_lex_state = 4}, + [1006] = {.lex_state = 190, .external_lex_state = 4}, [1007] = {.lex_state = 103}, - [1008] = {.lex_state = 189, .external_lex_state = 4}, + [1008] = {.lex_state = 190, .external_lex_state = 4}, [1009] = {.lex_state = 103}, [1010] = {.lex_state = 103}, [1011] = {.lex_state = 278, .external_lex_state = 21}, [1012] = {.lex_state = 329, .external_lex_state = 18}, [1013] = {.lex_state = 103}, [1014] = {.lex_state = 285, .external_lex_state = 2}, - [1015] = {.lex_state = 192, .external_lex_state = 4}, - [1016] = {.lex_state = 187, .external_lex_state = 8}, + [1015] = {.lex_state = 193, .external_lex_state = 4}, + [1016] = {.lex_state = 188, .external_lex_state = 8}, [1017] = {.lex_state = 300, .external_lex_state = 18}, - [1018] = {.lex_state = 185, .external_lex_state = 9}, + [1018] = {.lex_state = 186, .external_lex_state = 9}, [1019] = {.lex_state = 237, .external_lex_state = 6}, [1020] = {.lex_state = 141}, [1021] = {.lex_state = 237, .external_lex_state = 23}, [1022] = {.lex_state = 237, .external_lex_state = 23}, - [1023] = {.lex_state = 164}, + [1023] = {.lex_state = 165}, [1024] = {.lex_state = 237, .external_lex_state = 23}, [1025] = {.lex_state = 237, .external_lex_state = 23}, [1026] = {.lex_state = 237, .external_lex_state = 23}, @@ -8013,7 +8031,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1039] = {.lex_state = 141}, [1040] = {.lex_state = 237, .external_lex_state = 13}, [1041] = {.lex_state = 237, .external_lex_state = 13}, - [1042] = {.lex_state = 164}, + [1042] = {.lex_state = 165}, [1043] = {.lex_state = 237, .external_lex_state = 13}, [1044] = {.lex_state = 237, .external_lex_state = 13}, [1045] = {.lex_state = 237, .external_lex_state = 13}, @@ -8058,10 +8076,10 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1084] = {.lex_state = 143, .external_lex_state = 17}, [1085] = {.lex_state = 143, .external_lex_state = 18}, [1086] = {.lex_state = 300, .external_lex_state = 17}, - [1087] = {.lex_state = 164}, - [1088] = {.lex_state = 169}, + [1087] = {.lex_state = 165}, + [1088] = {.lex_state = 170}, [1089] = {.lex_state = 300, .external_lex_state = 17}, - [1090] = {.lex_state = 174, .external_lex_state = 6}, + [1090] = {.lex_state = 175, .external_lex_state = 6}, [1091] = {.lex_state = 20, .external_lex_state = 2}, [1092] = {.lex_state = 20, .external_lex_state = 2}, [1093] = {.lex_state = 20, .external_lex_state = 2}, @@ -8077,10 +8095,10 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [1106] = {.lex_state = 165}, + [1107] = {.lex_state = 170}, [1108] = {.lex_state = 249, .external_lex_state = 15}, - [1109] = {.lex_state = 174, .external_lex_state = 6}, + [1109] = {.lex_state = 175, .external_lex_state = 6}, [1110] = {.lex_state = 20, .external_lex_state = 2}, [1111] = {.lex_state = 20, .external_lex_state = 2}, [1112] = {.lex_state = 20, .external_lex_state = 2}, @@ -8088,11 +8106,11 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1114] = {.lex_state = 103}, [1115] = {.lex_state = 331, .external_lex_state = 18}, [1116] = {.lex_state = 302, .external_lex_state = 18}, - [1117] = {.lex_state = 185, .external_lex_state = 9}, + [1117] = {.lex_state = 186, .external_lex_state = 9}, [1118] = {.lex_state = 141}, [1119] = {.lex_state = 243, .external_lex_state = 23}, [1120] = {.lex_state = 243, .external_lex_state = 23}, - [1121] = {.lex_state = 164}, + [1121] = {.lex_state = 165}, [1122] = {.lex_state = 243, .external_lex_state = 23}, [1123] = {.lex_state = 243, .external_lex_state = 23}, [1124] = {.lex_state = 243, .external_lex_state = 23}, @@ -8111,7 +8129,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1137] = {.lex_state = 141}, [1138] = {.lex_state = 243, .external_lex_state = 13}, [1139] = {.lex_state = 243, .external_lex_state = 13}, - [1140] = {.lex_state = 164}, + [1140] = {.lex_state = 165}, [1141] = {.lex_state = 243, .external_lex_state = 13}, [1142] = {.lex_state = 243, .external_lex_state = 13}, [1143] = {.lex_state = 243, .external_lex_state = 13}, @@ -8154,10 +8172,10 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1180] = {.lex_state = 245, .external_lex_state = 17}, [1181] = {.lex_state = 245, .external_lex_state = 17}, [1182] = {.lex_state = 302, .external_lex_state = 17}, - [1183] = {.lex_state = 164}, - [1184] = {.lex_state = 169}, + [1183] = {.lex_state = 165}, + [1184] = {.lex_state = 170}, [1185] = {.lex_state = 302, .external_lex_state = 17}, - [1186] = {.lex_state = 174, .external_lex_state = 6}, + [1186] = {.lex_state = 175, .external_lex_state = 6}, [1187] = {.lex_state = 20, .external_lex_state = 2}, [1188] = {.lex_state = 20, .external_lex_state = 2}, [1189] = {.lex_state = 20, .external_lex_state = 2}, @@ -8174,7 +8192,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1200] = {.lex_state = 141}, [1201] = {.lex_state = 258, .external_lex_state = 5}, [1202] = {.lex_state = 258, .external_lex_state = 5}, - [1203] = {.lex_state = 164}, + [1203] = {.lex_state = 165}, [1204] = {.lex_state = 258, .external_lex_state = 5}, [1205] = {.lex_state = 258, .external_lex_state = 5}, [1206] = {.lex_state = 258, .external_lex_state = 5}, @@ -8191,8 +8209,8 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1217] = {.lex_state = 241, .external_lex_state = 2}, [1218] = {.lex_state = 304, .external_lex_state = 24}, [1219] = {.lex_state = 253, .external_lex_state = 7}, - [1220] = {.lex_state = 169}, - [1221] = {.lex_state = 174, .external_lex_state = 6}, + [1220] = {.lex_state = 170}, + [1221] = {.lex_state = 175, .external_lex_state = 6}, [1222] = {.lex_state = 304, .external_lex_state = 24}, [1223] = {.lex_state = 141, .external_lex_state = 15}, [1224] = {.lex_state = 141, .external_lex_state = 15}, @@ -8224,7 +8242,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1250] = {.lex_state = 141}, [1251] = {.lex_state = 311, .external_lex_state = 13}, [1252] = {.lex_state = 311, .external_lex_state = 13}, - [1253] = {.lex_state = 164}, + [1253] = {.lex_state = 165}, [1254] = {.lex_state = 311, .external_lex_state = 13}, [1255] = {.lex_state = 311, .external_lex_state = 13}, [1256] = {.lex_state = 311, .external_lex_state = 13}, @@ -8239,31 +8257,31 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [1268] = {.lex_state = 188, .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}, + [1270] = {.lex_state = 182, .external_lex_state = 20}, + [1271] = {.lex_state = 182, .external_lex_state = 20}, + [1272] = {.lex_state = 182, .external_lex_state = 20}, [1273] = {.lex_state = 289, .external_lex_state = 16}, - [1274] = {.lex_state = 181, .external_lex_state = 20}, + [1274] = {.lex_state = 182, .external_lex_state = 20}, [1275] = {.lex_state = 293}, [1276] = {.lex_state = 291, .external_lex_state = 16}, [1277] = {.lex_state = 103}, [1278] = {.lex_state = 226, .external_lex_state = 16}, [1279] = {.lex_state = 226, .external_lex_state = 16}, [1280] = {.lex_state = 226, .external_lex_state = 16}, - [1281] = {.lex_state = 181, .external_lex_state = 20}, + [1281] = {.lex_state = 182, .external_lex_state = 20}, [1282] = {.lex_state = 293}, [1283] = {.lex_state = 291, .external_lex_state = 16}, - [1284] = {.lex_state = 181, .external_lex_state = 20}, + [1284] = {.lex_state = 182, .external_lex_state = 20}, [1285] = {.lex_state = 293}, [1286] = {.lex_state = 291, .external_lex_state = 16}, - [1287] = {.lex_state = 181, .external_lex_state = 20}, - [1288] = {.lex_state = 181, .external_lex_state = 20}, + [1287] = {.lex_state = 182, .external_lex_state = 20}, + [1288] = {.lex_state = 182, .external_lex_state = 20}, [1289] = {.lex_state = 141}, [1290] = {.lex_state = 313, .external_lex_state = 10}, [1291] = {.lex_state = 313, .external_lex_state = 10}, - [1292] = {.lex_state = 164}, + [1292] = {.lex_state = 165}, [1293] = {.lex_state = 313, .external_lex_state = 10}, [1294] = {.lex_state = 313, .external_lex_state = 10}, [1295] = {.lex_state = 313, .external_lex_state = 10}, @@ -8285,8 +8303,8 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1311] = {.lex_state = 262, .external_lex_state = 2}, [1312] = {.lex_state = 103}, [1313] = {.lex_state = 315, .external_lex_state = 2}, - [1314] = {.lex_state = 152, .external_lex_state = 4}, - [1315] = {.lex_state = 181, .external_lex_state = 8}, + [1314] = {.lex_state = 153, .external_lex_state = 4}, + [1315] = {.lex_state = 182, .external_lex_state = 8}, [1316] = {.lex_state = 315, .external_lex_state = 2}, [1317] = {.lex_state = 268, .external_lex_state = 2}, [1318] = {.lex_state = 283, .external_lex_state = 4}, @@ -8296,10 +8314,10 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1322] = {.lex_state = 103}, [1323] = {.lex_state = 283, .external_lex_state = 4}, [1324] = {.lex_state = 333, .external_lex_state = 13}, - [1325] = {.lex_state = 164}, - [1326] = {.lex_state = 169}, + [1325] = {.lex_state = 165}, + [1326] = {.lex_state = 170}, [1327] = {.lex_state = 333, .external_lex_state = 13}, - [1328] = {.lex_state = 174, .external_lex_state = 6}, + [1328] = {.lex_state = 175, .external_lex_state = 6}, [1329] = {.lex_state = 20, .external_lex_state = 2}, [1330] = {.lex_state = 20, .external_lex_state = 2}, [1331] = {.lex_state = 20, .external_lex_state = 2}, @@ -8312,23 +8330,23 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1338] = {.lex_state = 103}, [1339] = {.lex_state = 141}, [1340] = {.lex_state = 317}, - [1341] = {.lex_state = 189, .external_lex_state = 10}, + [1341] = {.lex_state = 190, .external_lex_state = 10}, [1342] = {.lex_state = 327, .external_lex_state = 22}, [1343] = {.lex_state = 327, .external_lex_state = 22}, [1344] = {.lex_state = 103, .external_lex_state = 16}, [1345] = {.lex_state = 291, .external_lex_state = 16}, - [1346] = {.lex_state = 189, .external_lex_state = 10}, + [1346] = {.lex_state = 190, .external_lex_state = 10}, [1347] = {.lex_state = 289, .external_lex_state = 16}, - [1348] = {.lex_state = 189, .external_lex_state = 10}, + [1348] = {.lex_state = 190, .external_lex_state = 10}, [1349] = {.lex_state = 293}, [1350] = {.lex_state = 291, .external_lex_state = 16}, - [1351] = {.lex_state = 189, .external_lex_state = 10}, + [1351] = {.lex_state = 190, .external_lex_state = 10}, [1352] = {.lex_state = 293}, [1353] = {.lex_state = 291, .external_lex_state = 16}, [1354] = {.lex_state = 293}, [1355] = {.lex_state = 291, .external_lex_state = 16}, [1356] = {.lex_state = 291, .external_lex_state = 16}, - [1357] = {.lex_state = 189, .external_lex_state = 10}, + [1357] = {.lex_state = 190, .external_lex_state = 10}, [1358] = {.lex_state = 291, .external_lex_state = 16}, [1359] = {.lex_state = 280, .external_lex_state = 7}, [1360] = {.lex_state = 278, .external_lex_state = 21}, @@ -8336,21 +8354,21 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1362] = {.lex_state = 278, .external_lex_state = 21}, [1363] = {.lex_state = 141}, [1364] = {.lex_state = 335, .external_lex_state = 10}, - [1365] = {.lex_state = 164}, - [1366] = {.lex_state = 169}, + [1365] = {.lex_state = 165}, + [1366] = {.lex_state = 170}, [1367] = {.lex_state = 335, .external_lex_state = 10}, - [1368] = {.lex_state = 174, .external_lex_state = 6}, + [1368] = {.lex_state = 175, .external_lex_state = 6}, [1369] = {.lex_state = 20, .external_lex_state = 2}, [1370] = {.lex_state = 20, .external_lex_state = 2}, [1371] = {.lex_state = 20, .external_lex_state = 2}, [1372] = {.lex_state = 283, .external_lex_state = 4}, [1373] = {.lex_state = 141}, - [1374] = {.lex_state = 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}, + [1374] = {.lex_state = 188, .external_lex_state = 20}, + [1375] = {.lex_state = 188, .external_lex_state = 20}, + [1376] = {.lex_state = 165}, + [1377] = {.lex_state = 188, .external_lex_state = 20}, + [1378] = {.lex_state = 188, .external_lex_state = 20}, + [1379] = {.lex_state = 188, .external_lex_state = 20}, [1380] = {.lex_state = 103}, [1381] = {.lex_state = 226, .external_lex_state = 16}, [1382] = {.lex_state = 235, .external_lex_state = 6}, @@ -8367,63 +8385,63 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1393] = {.lex_state = 20}, [1394] = {.lex_state = 141}, [1395] = {.lex_state = 287, .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}, + [1396] = {.lex_state = 193, .external_lex_state = 14}, + [1397] = {.lex_state = 193, .external_lex_state = 14}, + [1398] = {.lex_state = 193, .external_lex_state = 14}, + [1399] = {.lex_state = 193, .external_lex_state = 14}, + [1400] = {.lex_state = 193, .external_lex_state = 14}, [1401] = {.lex_state = 289, .external_lex_state = 16}, - [1402] = {.lex_state = 192, .external_lex_state = 14}, + [1402] = {.lex_state = 193, .external_lex_state = 14}, [1403] = {.lex_state = 293}, [1404] = {.lex_state = 291, .external_lex_state = 16}, [1405] = {.lex_state = 103}, [1406] = {.lex_state = 226, .external_lex_state = 16}, [1407] = {.lex_state = 226, .external_lex_state = 16}, [1408] = {.lex_state = 226, .external_lex_state = 16}, - [1409] = {.lex_state = 192, .external_lex_state = 14}, + [1409] = {.lex_state = 193, .external_lex_state = 14}, [1410] = {.lex_state = 293}, [1411] = {.lex_state = 291, .external_lex_state = 16}, - [1412] = {.lex_state = 192, .external_lex_state = 14}, + [1412] = {.lex_state = 193, .external_lex_state = 14}, [1413] = {.lex_state = 293}, [1414] = {.lex_state = 291, .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}, + [1415] = {.lex_state = 193, .external_lex_state = 14}, + [1416] = {.lex_state = 193, .external_lex_state = 14}, + [1417] = {.lex_state = 193, .external_lex_state = 10}, + [1418] = {.lex_state = 193, .external_lex_state = 10}, + [1419] = {.lex_state = 193, .external_lex_state = 10}, [1420] = {.lex_state = 289, .external_lex_state = 16}, - [1421] = {.lex_state = 192, .external_lex_state = 10}, + [1421] = {.lex_state = 193, .external_lex_state = 10}, [1422] = {.lex_state = 293}, [1423] = {.lex_state = 291, .external_lex_state = 16}, [1424] = {.lex_state = 103}, [1425] = {.lex_state = 226, .external_lex_state = 16}, [1426] = {.lex_state = 226, .external_lex_state = 16}, [1427] = {.lex_state = 226, .external_lex_state = 16}, - [1428] = {.lex_state = 192, .external_lex_state = 10}, + [1428] = {.lex_state = 193, .external_lex_state = 10}, [1429] = {.lex_state = 293}, [1430] = {.lex_state = 291, .external_lex_state = 16}, - [1431] = {.lex_state = 192, .external_lex_state = 10}, + [1431] = {.lex_state = 193, .external_lex_state = 10}, [1432] = {.lex_state = 293}, [1433] = {.lex_state = 291, .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}, + [1434] = {.lex_state = 193, .external_lex_state = 10}, + [1435] = {.lex_state = 193, .external_lex_state = 10}, + [1436] = {.lex_state = 184, .external_lex_state = 5}, [1437] = {.lex_state = 327, .external_lex_state = 22}, [1438] = {.lex_state = 327, .external_lex_state = 22}, [1439] = {.lex_state = 103, .external_lex_state = 16}, [1440] = {.lex_state = 291, .external_lex_state = 16}, - [1441] = {.lex_state = 183, .external_lex_state = 5}, + [1441] = {.lex_state = 184, .external_lex_state = 5}, [1442] = {.lex_state = 289, .external_lex_state = 16}, - [1443] = {.lex_state = 183, .external_lex_state = 5}, + [1443] = {.lex_state = 184, .external_lex_state = 5}, [1444] = {.lex_state = 293}, [1445] = {.lex_state = 291, .external_lex_state = 16}, - [1446] = {.lex_state = 183, .external_lex_state = 5}, + [1446] = {.lex_state = 184, .external_lex_state = 5}, [1447] = {.lex_state = 293}, [1448] = {.lex_state = 291, .external_lex_state = 16}, [1449] = {.lex_state = 293}, [1450] = {.lex_state = 291, .external_lex_state = 16}, [1451] = {.lex_state = 291, .external_lex_state = 16}, - [1452] = {.lex_state = 183, .external_lex_state = 5}, + [1452] = {.lex_state = 184, .external_lex_state = 5}, [1453] = {.lex_state = 291, .external_lex_state = 16}, [1454] = {.lex_state = 325, .external_lex_state = 7}, [1455] = {.lex_state = 287, .external_lex_state = 5}, @@ -8431,7 +8449,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1457] = {.lex_state = 141}, [1458] = {.lex_state = 287, .external_lex_state = 5}, [1459] = {.lex_state = 287, .external_lex_state = 5}, - [1460] = {.lex_state = 164}, + [1460] = {.lex_state = 165}, [1461] = {.lex_state = 287, .external_lex_state = 5}, [1462] = {.lex_state = 287, .external_lex_state = 5}, [1463] = {.lex_state = 287, .external_lex_state = 5}, @@ -8484,43 +8502,43 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1510] = {.lex_state = 291, .external_lex_state = 16}, [1511] = {.lex_state = 219, .external_lex_state = 13}, [1512] = {.lex_state = 291, .external_lex_state = 16}, - [1513] = {.lex_state = 192, .external_lex_state = 3}, + [1513] = {.lex_state = 193, .external_lex_state = 3}, [1514] = {.lex_state = 241}, - [1515] = {.lex_state = 152, .external_lex_state = 14}, + [1515] = {.lex_state = 153, .external_lex_state = 14}, [1516] = {.lex_state = 327, .external_lex_state = 22}, [1517] = {.lex_state = 327, .external_lex_state = 22}, [1518] = {.lex_state = 103, .external_lex_state = 16}, [1519] = {.lex_state = 291, .external_lex_state = 16}, - [1520] = {.lex_state = 152, .external_lex_state = 14}, + [1520] = {.lex_state = 153, .external_lex_state = 14}, [1521] = {.lex_state = 289, .external_lex_state = 16}, - [1522] = {.lex_state = 152, .external_lex_state = 14}, + [1522] = {.lex_state = 153, .external_lex_state = 14}, [1523] = {.lex_state = 293}, [1524] = {.lex_state = 291, .external_lex_state = 16}, - [1525] = {.lex_state = 152, .external_lex_state = 14}, + [1525] = {.lex_state = 153, .external_lex_state = 14}, [1526] = {.lex_state = 293}, [1527] = {.lex_state = 291, .external_lex_state = 16}, [1528] = {.lex_state = 293}, [1529] = {.lex_state = 291, .external_lex_state = 16}, [1530] = {.lex_state = 291, .external_lex_state = 16}, - [1531] = {.lex_state = 152, .external_lex_state = 14}, + [1531] = {.lex_state = 153, .external_lex_state = 14}, [1532] = {.lex_state = 291, .external_lex_state = 16}, - [1533] = {.lex_state = 152, .external_lex_state = 10}, + [1533] = {.lex_state = 153, .external_lex_state = 10}, [1534] = {.lex_state = 327, .external_lex_state = 22}, [1535] = {.lex_state = 327, .external_lex_state = 22}, [1536] = {.lex_state = 103, .external_lex_state = 16}, [1537] = {.lex_state = 291, .external_lex_state = 16}, - [1538] = {.lex_state = 152, .external_lex_state = 10}, + [1538] = {.lex_state = 153, .external_lex_state = 10}, [1539] = {.lex_state = 289, .external_lex_state = 16}, - [1540] = {.lex_state = 152, .external_lex_state = 10}, + [1540] = {.lex_state = 153, .external_lex_state = 10}, [1541] = {.lex_state = 293}, [1542] = {.lex_state = 291, .external_lex_state = 16}, - [1543] = {.lex_state = 152, .external_lex_state = 10}, + [1543] = {.lex_state = 153, .external_lex_state = 10}, [1544] = {.lex_state = 293}, [1545] = {.lex_state = 291, .external_lex_state = 16}, [1546] = {.lex_state = 293}, [1547] = {.lex_state = 291, .external_lex_state = 16}, [1548] = {.lex_state = 291, .external_lex_state = 16}, - [1549] = {.lex_state = 152, .external_lex_state = 10}, + [1549] = {.lex_state = 153, .external_lex_state = 10}, [1550] = {.lex_state = 291, .external_lex_state = 16}, [1551] = {.lex_state = 141, .external_lex_state = 15}, [1552] = {.lex_state = 327, .external_lex_state = 22}, @@ -8540,23 +8558,23 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1566] = {.lex_state = 291, .external_lex_state = 16}, [1567] = {.lex_state = 141, .external_lex_state = 15}, [1568] = {.lex_state = 291, .external_lex_state = 16}, - [1569] = {.lex_state = 164, .external_lex_state = 13}, + [1569] = {.lex_state = 165, .external_lex_state = 13}, [1570] = {.lex_state = 327, .external_lex_state = 22}, [1571] = {.lex_state = 327, .external_lex_state = 22}, [1572] = {.lex_state = 103, .external_lex_state = 16}, [1573] = {.lex_state = 291, .external_lex_state = 16}, - [1574] = {.lex_state = 164, .external_lex_state = 13}, + [1574] = {.lex_state = 165, .external_lex_state = 13}, [1575] = {.lex_state = 289, .external_lex_state = 16}, - [1576] = {.lex_state = 164, .external_lex_state = 13}, + [1576] = {.lex_state = 165, .external_lex_state = 13}, [1577] = {.lex_state = 293}, [1578] = {.lex_state = 291, .external_lex_state = 16}, - [1579] = {.lex_state = 164, .external_lex_state = 13}, + [1579] = {.lex_state = 165, .external_lex_state = 13}, [1580] = {.lex_state = 293}, [1581] = {.lex_state = 291, .external_lex_state = 16}, [1582] = {.lex_state = 293}, [1583] = {.lex_state = 291, .external_lex_state = 16}, [1584] = {.lex_state = 291, .external_lex_state = 16}, - [1585] = {.lex_state = 164, .external_lex_state = 13}, + [1585] = {.lex_state = 165, .external_lex_state = 13}, [1586] = {.lex_state = 291, .external_lex_state = 16}, [1587] = {.lex_state = 307, .external_lex_state = 12}, [1588] = {.lex_state = 226, .external_lex_state = 22}, @@ -8564,14 +8582,14 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [1593] = {.lex_state = 162, .external_lex_state = 5}, [1594] = {.lex_state = 327, .external_lex_state = 22}, [1595] = {.lex_state = 327, .external_lex_state = 22}, - [1596] = {.lex_state = 164}, + [1596] = {.lex_state = 165}, [1597] = {.lex_state = 327, .external_lex_state = 22}, [1598] = {.lex_state = 327, .external_lex_state = 22}, [1599] = {.lex_state = 327, .external_lex_state = 22}, - [1600] = {.lex_state = 161, .external_lex_state = 5}, + [1600] = {.lex_state = 162, .external_lex_state = 5}, [1601] = {.lex_state = 103}, [1602] = {.lex_state = 226, .external_lex_state = 16}, [1603] = {.lex_state = 235, .external_lex_state = 6}, @@ -8600,7 +8618,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1626] = {.lex_state = 291, .external_lex_state = 22}, [1627] = {.lex_state = 293}, [1628] = {.lex_state = 291, .external_lex_state = 16}, - [1629] = {.lex_state = 161, .external_lex_state = 5}, + [1629] = {.lex_state = 162, .external_lex_state = 5}, [1630] = {.lex_state = 291, .external_lex_state = 16}, [1631] = {.lex_state = 291, .external_lex_state = 22}, [1632] = {.lex_state = 291, .external_lex_state = 22}, @@ -8608,20 +8626,20 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1634] = {.lex_state = 327, .external_lex_state = 22}, [1635] = {.lex_state = 103, .external_lex_state = 16}, [1636] = {.lex_state = 291, .external_lex_state = 16}, - [1637] = {.lex_state = 161, .external_lex_state = 5}, + [1637] = {.lex_state = 162, .external_lex_state = 5}, [1638] = {.lex_state = 291, .external_lex_state = 16}, - [1639] = {.lex_state = 161, .external_lex_state = 5}, + [1639] = {.lex_state = 162, .external_lex_state = 5}, [1640] = {.lex_state = 291, .external_lex_state = 16}, - [1641] = {.lex_state = 161, .external_lex_state = 5}, + [1641] = {.lex_state = 162, .external_lex_state = 5}, [1642] = {.lex_state = 291, .external_lex_state = 16}, - [1643] = {.lex_state = 161, .external_lex_state = 5}, + [1643] = {.lex_state = 162, .external_lex_state = 5}, [1644] = {.lex_state = 291, .external_lex_state = 16}, [1645] = {.lex_state = 241, .external_lex_state = 2}, [1646] = {.lex_state = 241}, [1647] = {.lex_state = 141}, [1648] = {.lex_state = 241, .external_lex_state = 15}, [1649] = {.lex_state = 241, .external_lex_state = 15}, - [1650] = {.lex_state = 164}, + [1650] = {.lex_state = 165}, [1651] = {.lex_state = 241, .external_lex_state = 15}, [1652] = {.lex_state = 241, .external_lex_state = 15}, [1653] = {.lex_state = 241, .external_lex_state = 15}, @@ -8645,9 +8663,9 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1671] = {.lex_state = 268, .external_lex_state = 2}, [1672] = {.lex_state = 103}, [1673] = {.lex_state = 317}, - [1674] = {.lex_state = 189, .external_lex_state = 4}, + [1674] = {.lex_state = 190, .external_lex_state = 4}, [1675] = {.lex_state = 317}, - [1676] = {.lex_state = 189, .external_lex_state = 4}, + [1676] = {.lex_state = 190, .external_lex_state = 4}, [1677] = {.lex_state = 103}, [1678] = {.lex_state = 337, .external_lex_state = 18}, [1679] = {.lex_state = 278, .external_lex_state = 21}, @@ -8724,7 +8742,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1750] = {.lex_state = 141}, [1751] = {.lex_state = 300, .external_lex_state = 17}, [1752] = {.lex_state = 300, .external_lex_state = 17}, - [1753] = {.lex_state = 164}, + [1753] = {.lex_state = 165}, [1754] = {.lex_state = 300, .external_lex_state = 17}, [1755] = {.lex_state = 300, .external_lex_state = 17}, [1756] = {.lex_state = 300, .external_lex_state = 17}, @@ -8745,7 +8763,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1771] = {.lex_state = 141}, [1772] = {.lex_state = 249, .external_lex_state = 15}, [1773] = {.lex_state = 249, .external_lex_state = 15}, - [1774] = {.lex_state = 164}, + [1774] = {.lex_state = 165}, [1775] = {.lex_state = 249, .external_lex_state = 15}, [1776] = {.lex_state = 249, .external_lex_state = 15}, [1777] = {.lex_state = 249, .external_lex_state = 15}, @@ -8829,7 +8847,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1855] = {.lex_state = 141}, [1856] = {.lex_state = 302, .external_lex_state = 17}, [1857] = {.lex_state = 302, .external_lex_state = 17}, - [1858] = {.lex_state = 164}, + [1858] = {.lex_state = 165}, [1859] = {.lex_state = 302, .external_lex_state = 17}, [1860] = {.lex_state = 302, .external_lex_state = 17}, [1861] = {.lex_state = 302, .external_lex_state = 17}, @@ -8913,23 +8931,23 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1939] = {.lex_state = 291, .external_lex_state = 16}, [1940] = {.lex_state = 311, .external_lex_state = 13}, [1941] = {.lex_state = 311, .external_lex_state = 13}, - [1942] = {.lex_state = 181, .external_lex_state = 20}, + [1942] = {.lex_state = 182, .external_lex_state = 20}, [1943] = {.lex_state = 327, .external_lex_state = 22}, [1944] = {.lex_state = 327, .external_lex_state = 22}, [1945] = {.lex_state = 103, .external_lex_state = 16}, [1946] = {.lex_state = 291, .external_lex_state = 16}, - [1947] = {.lex_state = 181, .external_lex_state = 20}, + [1947] = {.lex_state = 182, .external_lex_state = 20}, [1948] = {.lex_state = 289, .external_lex_state = 16}, - [1949] = {.lex_state = 181, .external_lex_state = 20}, + [1949] = {.lex_state = 182, .external_lex_state = 20}, [1950] = {.lex_state = 293}, [1951] = {.lex_state = 291, .external_lex_state = 16}, - [1952] = {.lex_state = 181, .external_lex_state = 20}, + [1952] = {.lex_state = 182, .external_lex_state = 20}, [1953] = {.lex_state = 293}, [1954] = {.lex_state = 291, .external_lex_state = 16}, [1955] = {.lex_state = 293}, [1956] = {.lex_state = 291, .external_lex_state = 16}, [1957] = {.lex_state = 291, .external_lex_state = 16}, - [1958] = {.lex_state = 181, .external_lex_state = 20}, + [1958] = {.lex_state = 182, .external_lex_state = 20}, [1959] = {.lex_state = 291, .external_lex_state = 16}, [1960] = {.lex_state = 313, .external_lex_state = 10}, [1961] = {.lex_state = 313, .external_lex_state = 10}, @@ -8963,7 +8981,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1989] = {.lex_state = 137}, [1990] = {.lex_state = 333, .external_lex_state = 13}, [1991] = {.lex_state = 333, .external_lex_state = 13}, - [1992] = {.lex_state = 164}, + [1992] = {.lex_state = 165}, [1993] = {.lex_state = 333, .external_lex_state = 13}, [1994] = {.lex_state = 333, .external_lex_state = 13}, [1995] = {.lex_state = 333, .external_lex_state = 13}, @@ -8989,21 +9007,21 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [2015] = {.lex_state = 103}, [2016] = {.lex_state = 283, .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}, + [2018] = {.lex_state = 190, .external_lex_state = 10}, + [2019] = {.lex_state = 190, .external_lex_state = 10}, + [2020] = {.lex_state = 190, .external_lex_state = 10}, [2021] = {.lex_state = 291, .external_lex_state = 16}, [2022] = {.lex_state = 327, .external_lex_state = 22}, [2023] = {.lex_state = 327, .external_lex_state = 22}, [2024] = {.lex_state = 103, .external_lex_state = 16}, [2025] = {.lex_state = 291, .external_lex_state = 16}, - [2026] = {.lex_state = 189, .external_lex_state = 10}, + [2026] = {.lex_state = 190, .external_lex_state = 10}, [2027] = {.lex_state = 291, .external_lex_state = 16}, - [2028] = {.lex_state = 189, .external_lex_state = 10}, + [2028] = {.lex_state = 190, .external_lex_state = 10}, [2029] = {.lex_state = 291, .external_lex_state = 16}, - [2030] = {.lex_state = 189, .external_lex_state = 10}, + [2030] = {.lex_state = 190, .external_lex_state = 10}, [2031] = {.lex_state = 291, .external_lex_state = 16}, - [2032] = {.lex_state = 189, .external_lex_state = 10}, + [2032] = {.lex_state = 190, .external_lex_state = 10}, [2033] = {.lex_state = 291, .external_lex_state = 16}, [2034] = {.lex_state = 283, .external_lex_state = 4}, [2035] = {.lex_state = 335, .external_lex_state = 10}, @@ -9012,7 +9030,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [2038] = {.lex_state = 141}, [2039] = {.lex_state = 335, .external_lex_state = 10}, [2040] = {.lex_state = 335, .external_lex_state = 10}, - [2041] = {.lex_state = 164}, + [2041] = {.lex_state = 165}, [2042] = {.lex_state = 335, .external_lex_state = 10}, [2043] = {.lex_state = 335, .external_lex_state = 10}, [2044] = {.lex_state = 335, .external_lex_state = 10}, @@ -9027,86 +9045,86 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [2053] = {.lex_state = 249, .external_lex_state = 2}, [2054] = {.lex_state = 103}, [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}, + [2056] = {.lex_state = 188, .external_lex_state = 20}, + [2057] = {.lex_state = 188, .external_lex_state = 20}, + [2058] = {.lex_state = 188, .external_lex_state = 20}, [2059] = {.lex_state = 289, .external_lex_state = 16}, - [2060] = {.lex_state = 187, .external_lex_state = 20}, + [2060] = {.lex_state = 188, .external_lex_state = 20}, [2061] = {.lex_state = 293}, [2062] = {.lex_state = 291, .external_lex_state = 16}, [2063] = {.lex_state = 103}, [2064] = {.lex_state = 226, .external_lex_state = 16}, [2065] = {.lex_state = 226, .external_lex_state = 16}, [2066] = {.lex_state = 226, .external_lex_state = 16}, - [2067] = {.lex_state = 187, .external_lex_state = 20}, + [2067] = {.lex_state = 188, .external_lex_state = 20}, [2068] = {.lex_state = 293}, [2069] = {.lex_state = 291, .external_lex_state = 16}, - [2070] = {.lex_state = 187, .external_lex_state = 20}, + [2070] = {.lex_state = 188, .external_lex_state = 20}, [2071] = {.lex_state = 293}, [2072] = {.lex_state = 291, .external_lex_state = 16}, - [2073] = {.lex_state = 187, .external_lex_state = 20}, - [2074] = {.lex_state = 187, .external_lex_state = 20}, + [2073] = {.lex_state = 188, .external_lex_state = 20}, + [2074] = {.lex_state = 188, .external_lex_state = 20}, [2075] = {.lex_state = 325, .external_lex_state = 7}, [2076] = {.lex_state = 141}, [2077] = {.lex_state = 342, .external_lex_state = 10}, - [2078] = {.lex_state = 164}, - [2079] = {.lex_state = 169}, + [2078] = {.lex_state = 165}, + [2079] = {.lex_state = 170}, [2080] = {.lex_state = 342, .external_lex_state = 10}, - [2081] = {.lex_state = 174, .external_lex_state = 6}, + [2081] = {.lex_state = 175, .external_lex_state = 6}, [2082] = {.lex_state = 20, .external_lex_state = 2}, [2083] = {.lex_state = 20, .external_lex_state = 2}, [2084] = {.lex_state = 20, .external_lex_state = 2}, - [2085] = {.lex_state = 192, .external_lex_state = 14}, + [2085] = {.lex_state = 193, .external_lex_state = 14}, [2086] = {.lex_state = 327, .external_lex_state = 22}, [2087] = {.lex_state = 327, .external_lex_state = 22}, [2088] = {.lex_state = 103, .external_lex_state = 16}, [2089] = {.lex_state = 291, .external_lex_state = 16}, - [2090] = {.lex_state = 192, .external_lex_state = 14}, + [2090] = {.lex_state = 193, .external_lex_state = 14}, [2091] = {.lex_state = 289, .external_lex_state = 16}, - [2092] = {.lex_state = 192, .external_lex_state = 14}, + [2092] = {.lex_state = 193, .external_lex_state = 14}, [2093] = {.lex_state = 293}, [2094] = {.lex_state = 291, .external_lex_state = 16}, - [2095] = {.lex_state = 192, .external_lex_state = 14}, + [2095] = {.lex_state = 193, .external_lex_state = 14}, [2096] = {.lex_state = 293}, [2097] = {.lex_state = 291, .external_lex_state = 16}, [2098] = {.lex_state = 293}, [2099] = {.lex_state = 291, .external_lex_state = 16}, [2100] = {.lex_state = 291, .external_lex_state = 16}, - [2101] = {.lex_state = 192, .external_lex_state = 14}, + [2101] = {.lex_state = 193, .external_lex_state = 14}, [2102] = {.lex_state = 291, .external_lex_state = 16}, - [2103] = {.lex_state = 192, .external_lex_state = 10}, + [2103] = {.lex_state = 193, .external_lex_state = 10}, [2104] = {.lex_state = 327, .external_lex_state = 22}, [2105] = {.lex_state = 327, .external_lex_state = 22}, [2106] = {.lex_state = 103, .external_lex_state = 16}, [2107] = {.lex_state = 291, .external_lex_state = 16}, - [2108] = {.lex_state = 192, .external_lex_state = 10}, + [2108] = {.lex_state = 193, .external_lex_state = 10}, [2109] = {.lex_state = 289, .external_lex_state = 16}, - [2110] = {.lex_state = 192, .external_lex_state = 10}, + [2110] = {.lex_state = 193, .external_lex_state = 10}, [2111] = {.lex_state = 293}, [2112] = {.lex_state = 291, .external_lex_state = 16}, - [2113] = {.lex_state = 192, .external_lex_state = 10}, + [2113] = {.lex_state = 193, .external_lex_state = 10}, [2114] = {.lex_state = 293}, [2115] = {.lex_state = 291, .external_lex_state = 16}, [2116] = {.lex_state = 293}, [2117] = {.lex_state = 291, .external_lex_state = 16}, [2118] = {.lex_state = 291, .external_lex_state = 16}, - [2119] = {.lex_state = 192, .external_lex_state = 10}, + [2119] = {.lex_state = 193, .external_lex_state = 10}, [2120] = {.lex_state = 291, .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}, + [2121] = {.lex_state = 184, .external_lex_state = 5}, + [2122] = {.lex_state = 184, .external_lex_state = 5}, + [2123] = {.lex_state = 184, .external_lex_state = 5}, [2124] = {.lex_state = 291, .external_lex_state = 16}, [2125] = {.lex_state = 327, .external_lex_state = 22}, [2126] = {.lex_state = 327, .external_lex_state = 22}, [2127] = {.lex_state = 103, .external_lex_state = 16}, [2128] = {.lex_state = 291, .external_lex_state = 16}, - [2129] = {.lex_state = 183, .external_lex_state = 5}, + [2129] = {.lex_state = 184, .external_lex_state = 5}, [2130] = {.lex_state = 291, .external_lex_state = 16}, - [2131] = {.lex_state = 183, .external_lex_state = 5}, + [2131] = {.lex_state = 184, .external_lex_state = 5}, [2132] = {.lex_state = 291, .external_lex_state = 16}, - [2133] = {.lex_state = 183, .external_lex_state = 5}, + [2133] = {.lex_state = 184, .external_lex_state = 5}, [2134] = {.lex_state = 291, .external_lex_state = 16}, - [2135] = {.lex_state = 183, .external_lex_state = 5}, + [2135] = {.lex_state = 184, .external_lex_state = 5}, [2136] = {.lex_state = 291, .external_lex_state = 16}, [2137] = {.lex_state = 287, .external_lex_state = 5}, [2138] = {.lex_state = 287, .external_lex_state = 5}, @@ -9159,38 +9177,38 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [2185] = {.lex_state = 291, .external_lex_state = 16}, [2186] = {.lex_state = 219, .external_lex_state = 13}, [2187] = {.lex_state = 291, .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}, + [2188] = {.lex_state = 193, .external_lex_state = 3}, + [2189] = {.lex_state = 153, .external_lex_state = 14}, + [2190] = {.lex_state = 153, .external_lex_state = 14}, + [2191] = {.lex_state = 153, .external_lex_state = 14}, [2192] = {.lex_state = 291, .external_lex_state = 16}, [2193] = {.lex_state = 327, .external_lex_state = 22}, [2194] = {.lex_state = 327, .external_lex_state = 22}, [2195] = {.lex_state = 103, .external_lex_state = 16}, [2196] = {.lex_state = 291, .external_lex_state = 16}, - [2197] = {.lex_state = 152, .external_lex_state = 14}, + [2197] = {.lex_state = 153, .external_lex_state = 14}, [2198] = {.lex_state = 291, .external_lex_state = 16}, - [2199] = {.lex_state = 152, .external_lex_state = 14}, + [2199] = {.lex_state = 153, .external_lex_state = 14}, [2200] = {.lex_state = 291, .external_lex_state = 16}, - [2201] = {.lex_state = 152, .external_lex_state = 14}, + [2201] = {.lex_state = 153, .external_lex_state = 14}, [2202] = {.lex_state = 291, .external_lex_state = 16}, - [2203] = {.lex_state = 152, .external_lex_state = 14}, + [2203] = {.lex_state = 153, .external_lex_state = 14}, [2204] = {.lex_state = 291, .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}, + [2205] = {.lex_state = 153, .external_lex_state = 10}, + [2206] = {.lex_state = 153, .external_lex_state = 10}, + [2207] = {.lex_state = 153, .external_lex_state = 10}, [2208] = {.lex_state = 291, .external_lex_state = 16}, [2209] = {.lex_state = 327, .external_lex_state = 22}, [2210] = {.lex_state = 327, .external_lex_state = 22}, [2211] = {.lex_state = 103, .external_lex_state = 16}, [2212] = {.lex_state = 291, .external_lex_state = 16}, - [2213] = {.lex_state = 152, .external_lex_state = 10}, + [2213] = {.lex_state = 153, .external_lex_state = 10}, [2214] = {.lex_state = 291, .external_lex_state = 16}, - [2215] = {.lex_state = 152, .external_lex_state = 10}, + [2215] = {.lex_state = 153, .external_lex_state = 10}, [2216] = {.lex_state = 291, .external_lex_state = 16}, - [2217] = {.lex_state = 152, .external_lex_state = 10}, + [2217] = {.lex_state = 153, .external_lex_state = 10}, [2218] = {.lex_state = 291, .external_lex_state = 16}, - [2219] = {.lex_state = 152, .external_lex_state = 10}, + [2219] = {.lex_state = 153, .external_lex_state = 10}, [2220] = {.lex_state = 291, .external_lex_state = 16}, [2221] = {.lex_state = 141, .external_lex_state = 15}, [2222] = {.lex_state = 141, .external_lex_state = 15}, @@ -9208,21 +9226,21 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [2234] = {.lex_state = 291, .external_lex_state = 16}, [2235] = {.lex_state = 141, .external_lex_state = 15}, [2236] = {.lex_state = 291, .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}, + [2237] = {.lex_state = 165, .external_lex_state = 13}, + [2238] = {.lex_state = 165, .external_lex_state = 13}, + [2239] = {.lex_state = 165, .external_lex_state = 13}, [2240] = {.lex_state = 291, .external_lex_state = 16}, [2241] = {.lex_state = 327, .external_lex_state = 22}, [2242] = {.lex_state = 327, .external_lex_state = 22}, [2243] = {.lex_state = 103, .external_lex_state = 16}, [2244] = {.lex_state = 291, .external_lex_state = 16}, - [2245] = {.lex_state = 164, .external_lex_state = 13}, + [2245] = {.lex_state = 165, .external_lex_state = 13}, [2246] = {.lex_state = 291, .external_lex_state = 16}, - [2247] = {.lex_state = 164, .external_lex_state = 13}, + [2247] = {.lex_state = 165, .external_lex_state = 13}, [2248] = {.lex_state = 291, .external_lex_state = 16}, - [2249] = {.lex_state = 164, .external_lex_state = 13}, + [2249] = {.lex_state = 165, .external_lex_state = 13}, [2250] = {.lex_state = 291, .external_lex_state = 16}, - [2251] = {.lex_state = 164, .external_lex_state = 13}, + [2251] = {.lex_state = 165, .external_lex_state = 13}, [2252] = {.lex_state = 291, .external_lex_state = 16}, [2253] = {.lex_state = 226, .external_lex_state = 22}, [2254] = {.lex_state = 226, .external_lex_state = 16}, @@ -9265,17 +9283,17 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [2291] = {.lex_state = 291, .external_lex_state = 16}, [2292] = {.lex_state = 291, .external_lex_state = 22}, [2293] = {.lex_state = 291, .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}, + [2294] = {.lex_state = 162, .external_lex_state = 5}, + [2295] = {.lex_state = 162, .external_lex_state = 5}, + [2296] = {.lex_state = 162, .external_lex_state = 5}, + [2297] = {.lex_state = 162, .external_lex_state = 5}, [2298] = {.lex_state = 291, .external_lex_state = 16}, - [2299] = {.lex_state = 161, .external_lex_state = 5}, + [2299] = {.lex_state = 162, .external_lex_state = 5}, [2300] = {.lex_state = 291, .external_lex_state = 16}, - [2301] = {.lex_state = 161, .external_lex_state = 5}, + [2301] = {.lex_state = 162, .external_lex_state = 5}, [2302] = {.lex_state = 291, .external_lex_state = 16}, - [2303] = {.lex_state = 161, .external_lex_state = 5}, - [2304] = {.lex_state = 161, .external_lex_state = 5}, + [2303] = {.lex_state = 162, .external_lex_state = 5}, + [2304] = {.lex_state = 162, .external_lex_state = 5}, [2305] = {.lex_state = 241, .external_lex_state = 2}, [2306] = {.lex_state = 241, .external_lex_state = 15}, [2307] = {.lex_state = 241, .external_lex_state = 15}, @@ -9313,10 +9331,10 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [2339] = {.lex_state = 337, .external_lex_state = 18}, [2340] = {.lex_state = 141}, [2341] = {.lex_state = 344, .external_lex_state = 13}, - [2342] = {.lex_state = 164}, - [2343] = {.lex_state = 169}, + [2342] = {.lex_state = 165}, + [2343] = {.lex_state = 170}, [2344] = {.lex_state = 344, .external_lex_state = 13}, - [2345] = {.lex_state = 174, .external_lex_state = 6}, + [2345] = {.lex_state = 175, .external_lex_state = 6}, [2346] = {.lex_state = 20, .external_lex_state = 2}, [2347] = {.lex_state = 20, .external_lex_state = 2}, [2348] = {.lex_state = 20, .external_lex_state = 2}, @@ -9419,10 +9437,10 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [2445] = {.lex_state = 331, .external_lex_state = 18}, [2446] = {.lex_state = 141}, [2447] = {.lex_state = 346, .external_lex_state = 13}, - [2448] = {.lex_state = 164}, - [2449] = {.lex_state = 169}, + [2448] = {.lex_state = 165}, + [2449] = {.lex_state = 170}, [2450] = {.lex_state = 346, .external_lex_state = 13}, - [2451] = {.lex_state = 174, .external_lex_state = 6}, + [2451] = {.lex_state = 175, .external_lex_state = 6}, [2452] = {.lex_state = 20, .external_lex_state = 2}, [2453] = {.lex_state = 20, .external_lex_state = 2}, [2454] = {.lex_state = 20, .external_lex_state = 2}, @@ -9563,21 +9581,21 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [2589] = {.lex_state = 291, .external_lex_state = 16}, [2590] = {.lex_state = 311, .external_lex_state = 13}, [2591] = {.lex_state = 291, .external_lex_state = 16}, - [2592] = {.lex_state = 181, .external_lex_state = 20}, - [2593] = {.lex_state = 181, .external_lex_state = 20}, - [2594] = {.lex_state = 181, .external_lex_state = 20}, + [2592] = {.lex_state = 182, .external_lex_state = 20}, + [2593] = {.lex_state = 182, .external_lex_state = 20}, + [2594] = {.lex_state = 182, .external_lex_state = 20}, [2595] = {.lex_state = 291, .external_lex_state = 16}, [2596] = {.lex_state = 327, .external_lex_state = 22}, [2597] = {.lex_state = 327, .external_lex_state = 22}, [2598] = {.lex_state = 103, .external_lex_state = 16}, [2599] = {.lex_state = 291, .external_lex_state = 16}, - [2600] = {.lex_state = 181, .external_lex_state = 20}, + [2600] = {.lex_state = 182, .external_lex_state = 20}, [2601] = {.lex_state = 291, .external_lex_state = 16}, - [2602] = {.lex_state = 181, .external_lex_state = 20}, + [2602] = {.lex_state = 182, .external_lex_state = 20}, [2603] = {.lex_state = 291, .external_lex_state = 16}, - [2604] = {.lex_state = 181, .external_lex_state = 20}, + [2604] = {.lex_state = 182, .external_lex_state = 20}, [2605] = {.lex_state = 291, .external_lex_state = 16}, - [2606] = {.lex_state = 181, .external_lex_state = 20}, + [2606] = {.lex_state = 182, .external_lex_state = 20}, [2607] = {.lex_state = 291, .external_lex_state = 16}, [2608] = {.lex_state = 313, .external_lex_state = 10}, [2609] = {.lex_state = 327, .external_lex_state = 22}, @@ -9614,10 +9632,10 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [2640] = {.lex_state = 348, .external_lex_state = 3}, [2641] = {.lex_state = 348, .external_lex_state = 4}, [2642] = {.lex_state = 354, .external_lex_state = 5}, - [2643] = {.lex_state = 164}, - [2644] = {.lex_state = 169}, + [2643] = {.lex_state = 165}, + [2644] = {.lex_state = 170}, [2645] = {.lex_state = 354, .external_lex_state = 5}, - [2646] = {.lex_state = 174, .external_lex_state = 6}, + [2646] = {.lex_state = 175, .external_lex_state = 6}, [2647] = {.lex_state = 20, .external_lex_state = 2}, [2648] = {.lex_state = 20, .external_lex_state = 2}, [2649] = {.lex_state = 20, .external_lex_state = 2}, @@ -9662,17 +9680,17 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [2688] = {.lex_state = 103}, [2689] = {.lex_state = 283, .external_lex_state = 4}, [2690] = {.lex_state = 103}, - [2691] = {.lex_state = 189, .external_lex_state = 10}, - [2692] = {.lex_state = 189, .external_lex_state = 10}, - [2693] = {.lex_state = 189, .external_lex_state = 10}, - [2694] = {.lex_state = 189, .external_lex_state = 10}, + [2691] = {.lex_state = 190, .external_lex_state = 10}, + [2692] = {.lex_state = 190, .external_lex_state = 10}, + [2693] = {.lex_state = 190, .external_lex_state = 10}, + [2694] = {.lex_state = 190, .external_lex_state = 10}, [2695] = {.lex_state = 291, .external_lex_state = 16}, - [2696] = {.lex_state = 189, .external_lex_state = 10}, + [2696] = {.lex_state = 190, .external_lex_state = 10}, [2697] = {.lex_state = 291, .external_lex_state = 16}, - [2698] = {.lex_state = 189, .external_lex_state = 10}, + [2698] = {.lex_state = 190, .external_lex_state = 10}, [2699] = {.lex_state = 291, .external_lex_state = 16}, - [2700] = {.lex_state = 189, .external_lex_state = 10}, - [2701] = {.lex_state = 189, .external_lex_state = 10}, + [2700] = {.lex_state = 190, .external_lex_state = 10}, + [2701] = {.lex_state = 190, .external_lex_state = 10}, [2702] = {.lex_state = 335, .external_lex_state = 10}, [2703] = {.lex_state = 335, .external_lex_state = 10}, [2704] = {.lex_state = 335, .external_lex_state = 10}, @@ -9692,30 +9710,30 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [2718] = {.lex_state = 291, .external_lex_state = 16}, [2719] = {.lex_state = 335, .external_lex_state = 10}, [2720] = {.lex_state = 335, .external_lex_state = 10}, - [2721] = {.lex_state = 187, .external_lex_state = 20}, + [2721] = {.lex_state = 188, .external_lex_state = 20}, [2722] = {.lex_state = 327, .external_lex_state = 22}, [2723] = {.lex_state = 327, .external_lex_state = 22}, [2724] = {.lex_state = 103, .external_lex_state = 16}, [2725] = {.lex_state = 291, .external_lex_state = 16}, - [2726] = {.lex_state = 187, .external_lex_state = 20}, + [2726] = {.lex_state = 188, .external_lex_state = 20}, [2727] = {.lex_state = 289, .external_lex_state = 16}, - [2728] = {.lex_state = 187, .external_lex_state = 20}, + [2728] = {.lex_state = 188, .external_lex_state = 20}, [2729] = {.lex_state = 293}, [2730] = {.lex_state = 291, .external_lex_state = 16}, - [2731] = {.lex_state = 187, .external_lex_state = 20}, + [2731] = {.lex_state = 188, .external_lex_state = 20}, [2732] = {.lex_state = 293}, [2733] = {.lex_state = 291, .external_lex_state = 16}, [2734] = {.lex_state = 293}, [2735] = {.lex_state = 291, .external_lex_state = 16}, [2736] = {.lex_state = 291, .external_lex_state = 16}, - [2737] = {.lex_state = 187, .external_lex_state = 20}, + [2737] = {.lex_state = 188, .external_lex_state = 20}, [2738] = {.lex_state = 291, .external_lex_state = 16}, [2739] = {.lex_state = 342, .external_lex_state = 10}, [2740] = {.lex_state = 342, .external_lex_state = 10}, [2741] = {.lex_state = 141}, [2742] = {.lex_state = 342, .external_lex_state = 10}, [2743] = {.lex_state = 342, .external_lex_state = 10}, - [2744] = {.lex_state = 164}, + [2744] = {.lex_state = 165}, [2745] = {.lex_state = 342, .external_lex_state = 10}, [2746] = {.lex_state = 342, .external_lex_state = 10}, [2747] = {.lex_state = 342, .external_lex_state = 10}, @@ -9730,49 +9748,49 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [2756] = {.lex_state = 249, .external_lex_state = 2}, [2757] = {.lex_state = 103}, [2758] = {.lex_state = 241, .external_lex_state = 2}, - [2759] = {.lex_state = 192, .external_lex_state = 14}, - [2760] = {.lex_state = 192, .external_lex_state = 14}, - [2761] = {.lex_state = 192, .external_lex_state = 14}, + [2759] = {.lex_state = 193, .external_lex_state = 14}, + [2760] = {.lex_state = 193, .external_lex_state = 14}, + [2761] = {.lex_state = 193, .external_lex_state = 14}, [2762] = {.lex_state = 291, .external_lex_state = 16}, [2763] = {.lex_state = 327, .external_lex_state = 22}, [2764] = {.lex_state = 327, .external_lex_state = 22}, [2765] = {.lex_state = 103, .external_lex_state = 16}, [2766] = {.lex_state = 291, .external_lex_state = 16}, - [2767] = {.lex_state = 192, .external_lex_state = 14}, + [2767] = {.lex_state = 193, .external_lex_state = 14}, [2768] = {.lex_state = 291, .external_lex_state = 16}, - [2769] = {.lex_state = 192, .external_lex_state = 14}, + [2769] = {.lex_state = 193, .external_lex_state = 14}, [2770] = {.lex_state = 291, .external_lex_state = 16}, - [2771] = {.lex_state = 192, .external_lex_state = 14}, + [2771] = {.lex_state = 193, .external_lex_state = 14}, [2772] = {.lex_state = 291, .external_lex_state = 16}, - [2773] = {.lex_state = 192, .external_lex_state = 14}, + [2773] = {.lex_state = 193, .external_lex_state = 14}, [2774] = {.lex_state = 291, .external_lex_state = 16}, - [2775] = {.lex_state = 192, .external_lex_state = 10}, - [2776] = {.lex_state = 192, .external_lex_state = 10}, - [2777] = {.lex_state = 192, .external_lex_state = 10}, + [2775] = {.lex_state = 193, .external_lex_state = 10}, + [2776] = {.lex_state = 193, .external_lex_state = 10}, + [2777] = {.lex_state = 193, .external_lex_state = 10}, [2778] = {.lex_state = 291, .external_lex_state = 16}, [2779] = {.lex_state = 327, .external_lex_state = 22}, [2780] = {.lex_state = 327, .external_lex_state = 22}, [2781] = {.lex_state = 103, .external_lex_state = 16}, [2782] = {.lex_state = 291, .external_lex_state = 16}, - [2783] = {.lex_state = 192, .external_lex_state = 10}, + [2783] = {.lex_state = 193, .external_lex_state = 10}, [2784] = {.lex_state = 291, .external_lex_state = 16}, - [2785] = {.lex_state = 192, .external_lex_state = 10}, + [2785] = {.lex_state = 193, .external_lex_state = 10}, [2786] = {.lex_state = 291, .external_lex_state = 16}, - [2787] = {.lex_state = 192, .external_lex_state = 10}, + [2787] = {.lex_state = 193, .external_lex_state = 10}, [2788] = {.lex_state = 291, .external_lex_state = 16}, - [2789] = {.lex_state = 192, .external_lex_state = 10}, + [2789] = {.lex_state = 193, .external_lex_state = 10}, [2790] = {.lex_state = 291, .external_lex_state = 16}, - [2791] = {.lex_state = 183, .external_lex_state = 5}, - [2792] = {.lex_state = 183, .external_lex_state = 5}, - [2793] = {.lex_state = 183, .external_lex_state = 5}, - [2794] = {.lex_state = 183, .external_lex_state = 5}, + [2791] = {.lex_state = 184, .external_lex_state = 5}, + [2792] = {.lex_state = 184, .external_lex_state = 5}, + [2793] = {.lex_state = 184, .external_lex_state = 5}, + [2794] = {.lex_state = 184, .external_lex_state = 5}, [2795] = {.lex_state = 291, .external_lex_state = 16}, - [2796] = {.lex_state = 183, .external_lex_state = 5}, + [2796] = {.lex_state = 184, .external_lex_state = 5}, [2797] = {.lex_state = 291, .external_lex_state = 16}, - [2798] = {.lex_state = 183, .external_lex_state = 5}, + [2798] = {.lex_state = 184, .external_lex_state = 5}, [2799] = {.lex_state = 291, .external_lex_state = 16}, - [2800] = {.lex_state = 183, .external_lex_state = 5}, - [2801] = {.lex_state = 183, .external_lex_state = 5}, + [2800] = {.lex_state = 184, .external_lex_state = 5}, + [2801] = {.lex_state = 184, .external_lex_state = 5}, [2802] = {.lex_state = 287, .external_lex_state = 5}, [2803] = {.lex_state = 327, .external_lex_state = 22}, [2804] = {.lex_state = 327, .external_lex_state = 22}, @@ -9813,28 +9831,28 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [2839] = {.lex_state = 291, .external_lex_state = 16}, [2840] = {.lex_state = 219, .external_lex_state = 13}, [2841] = {.lex_state = 219, .external_lex_state = 13}, - [2842] = {.lex_state = 152, .external_lex_state = 14}, - [2843] = {.lex_state = 152, .external_lex_state = 14}, - [2844] = {.lex_state = 152, .external_lex_state = 14}, - [2845] = {.lex_state = 152, .external_lex_state = 14}, + [2842] = {.lex_state = 153, .external_lex_state = 14}, + [2843] = {.lex_state = 153, .external_lex_state = 14}, + [2844] = {.lex_state = 153, .external_lex_state = 14}, + [2845] = {.lex_state = 153, .external_lex_state = 14}, [2846] = {.lex_state = 291, .external_lex_state = 16}, - [2847] = {.lex_state = 152, .external_lex_state = 14}, + [2847] = {.lex_state = 153, .external_lex_state = 14}, [2848] = {.lex_state = 291, .external_lex_state = 16}, - [2849] = {.lex_state = 152, .external_lex_state = 14}, + [2849] = {.lex_state = 153, .external_lex_state = 14}, [2850] = {.lex_state = 291, .external_lex_state = 16}, - [2851] = {.lex_state = 152, .external_lex_state = 14}, - [2852] = {.lex_state = 152, .external_lex_state = 14}, - [2853] = {.lex_state = 152, .external_lex_state = 10}, - [2854] = {.lex_state = 152, .external_lex_state = 10}, - [2855] = {.lex_state = 152, .external_lex_state = 10}, - [2856] = {.lex_state = 152, .external_lex_state = 10}, + [2851] = {.lex_state = 153, .external_lex_state = 14}, + [2852] = {.lex_state = 153, .external_lex_state = 14}, + [2853] = {.lex_state = 153, .external_lex_state = 10}, + [2854] = {.lex_state = 153, .external_lex_state = 10}, + [2855] = {.lex_state = 153, .external_lex_state = 10}, + [2856] = {.lex_state = 153, .external_lex_state = 10}, [2857] = {.lex_state = 291, .external_lex_state = 16}, - [2858] = {.lex_state = 152, .external_lex_state = 10}, + [2858] = {.lex_state = 153, .external_lex_state = 10}, [2859] = {.lex_state = 291, .external_lex_state = 16}, - [2860] = {.lex_state = 152, .external_lex_state = 10}, + [2860] = {.lex_state = 153, .external_lex_state = 10}, [2861] = {.lex_state = 291, .external_lex_state = 16}, - [2862] = {.lex_state = 152, .external_lex_state = 10}, - [2863] = {.lex_state = 152, .external_lex_state = 10}, + [2862] = {.lex_state = 153, .external_lex_state = 10}, + [2863] = {.lex_state = 153, .external_lex_state = 10}, [2864] = {.lex_state = 141, .external_lex_state = 15}, [2865] = {.lex_state = 141, .external_lex_state = 15}, [2866] = {.lex_state = 141, .external_lex_state = 15}, @@ -9846,17 +9864,17 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [2872] = {.lex_state = 291, .external_lex_state = 16}, [2873] = {.lex_state = 141, .external_lex_state = 15}, [2874] = {.lex_state = 141, .external_lex_state = 15}, - [2875] = {.lex_state = 164, .external_lex_state = 13}, - [2876] = {.lex_state = 164, .external_lex_state = 13}, - [2877] = {.lex_state = 164, .external_lex_state = 13}, - [2878] = {.lex_state = 164, .external_lex_state = 13}, + [2875] = {.lex_state = 165, .external_lex_state = 13}, + [2876] = {.lex_state = 165, .external_lex_state = 13}, + [2877] = {.lex_state = 165, .external_lex_state = 13}, + [2878] = {.lex_state = 165, .external_lex_state = 13}, [2879] = {.lex_state = 291, .external_lex_state = 16}, - [2880] = {.lex_state = 164, .external_lex_state = 13}, + [2880] = {.lex_state = 165, .external_lex_state = 13}, [2881] = {.lex_state = 291, .external_lex_state = 16}, - [2882] = {.lex_state = 164, .external_lex_state = 13}, + [2882] = {.lex_state = 165, .external_lex_state = 13}, [2883] = {.lex_state = 291, .external_lex_state = 16}, - [2884] = {.lex_state = 164, .external_lex_state = 13}, - [2885] = {.lex_state = 164, .external_lex_state = 13}, + [2884] = {.lex_state = 165, .external_lex_state = 13}, + [2885] = {.lex_state = 165, .external_lex_state = 13}, [2886] = {.lex_state = 226, .external_lex_state = 16}, [2887] = {.lex_state = 226, .external_lex_state = 16}, [2888] = {.lex_state = 327, .external_lex_state = 22}, @@ -9893,9 +9911,9 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [2919] = {.lex_state = 291, .external_lex_state = 16}, [2920] = {.lex_state = 291, .external_lex_state = 22}, [2921] = {.lex_state = 291, .external_lex_state = 16}, - [2922] = {.lex_state = 161, .external_lex_state = 5}, - [2923] = {.lex_state = 161, .external_lex_state = 5}, - [2924] = {.lex_state = 161, .external_lex_state = 5}, + [2922] = {.lex_state = 162, .external_lex_state = 5}, + [2923] = {.lex_state = 162, .external_lex_state = 5}, + [2924] = {.lex_state = 162, .external_lex_state = 5}, [2925] = {.lex_state = 241, .external_lex_state = 15}, [2926] = {.lex_state = 327, .external_lex_state = 22}, [2927] = {.lex_state = 327, .external_lex_state = 22}, @@ -9933,7 +9951,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [2959] = {.lex_state = 141}, [2960] = {.lex_state = 344, .external_lex_state = 13}, [2961] = {.lex_state = 344, .external_lex_state = 13}, - [2962] = {.lex_state = 164}, + [2962] = {.lex_state = 165}, [2963] = {.lex_state = 344, .external_lex_state = 13}, [2964] = {.lex_state = 344, .external_lex_state = 13}, [2965] = {.lex_state = 344, .external_lex_state = 13}, @@ -10033,7 +10051,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [3059] = {.lex_state = 141}, [3060] = {.lex_state = 346, .external_lex_state = 13}, [3061] = {.lex_state = 346, .external_lex_state = 13}, - [3062] = {.lex_state = 164}, + [3062] = {.lex_state = 165}, [3063] = {.lex_state = 346, .external_lex_state = 13}, [3064] = {.lex_state = 346, .external_lex_state = 13}, [3065] = {.lex_state = 346, .external_lex_state = 13}, @@ -10170,17 +10188,17 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [3196] = {.lex_state = 291, .external_lex_state = 16}, [3197] = {.lex_state = 311, .external_lex_state = 13}, [3198] = {.lex_state = 291, .external_lex_state = 16}, - [3199] = {.lex_state = 181, .external_lex_state = 20}, - [3200] = {.lex_state = 181, .external_lex_state = 20}, - [3201] = {.lex_state = 181, .external_lex_state = 20}, - [3202] = {.lex_state = 181, .external_lex_state = 20}, + [3199] = {.lex_state = 182, .external_lex_state = 20}, + [3200] = {.lex_state = 182, .external_lex_state = 20}, + [3201] = {.lex_state = 182, .external_lex_state = 20}, + [3202] = {.lex_state = 182, .external_lex_state = 20}, [3203] = {.lex_state = 291, .external_lex_state = 16}, - [3204] = {.lex_state = 181, .external_lex_state = 20}, + [3204] = {.lex_state = 182, .external_lex_state = 20}, [3205] = {.lex_state = 291, .external_lex_state = 16}, - [3206] = {.lex_state = 181, .external_lex_state = 20}, + [3206] = {.lex_state = 182, .external_lex_state = 20}, [3207] = {.lex_state = 291, .external_lex_state = 16}, - [3208] = {.lex_state = 181, .external_lex_state = 20}, - [3209] = {.lex_state = 181, .external_lex_state = 20}, + [3208] = {.lex_state = 182, .external_lex_state = 20}, + [3209] = {.lex_state = 182, .external_lex_state = 20}, [3210] = {.lex_state = 313, .external_lex_state = 10}, [3211] = {.lex_state = 313, .external_lex_state = 10}, [3212] = {.lex_state = 313, .external_lex_state = 10}, @@ -10198,7 +10216,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [3224] = {.lex_state = 313, .external_lex_state = 10}, [3225] = {.lex_state = 291, .external_lex_state = 16}, [3226] = {.lex_state = 283, .external_lex_state = 4}, - [3227] = {.lex_state = 185, .external_lex_state = 9}, + [3227] = {.lex_state = 186, .external_lex_state = 9}, [3228] = {.lex_state = 358, .external_lex_state = 8}, [3229] = {.lex_state = 103}, [3230] = {.lex_state = 103}, @@ -10206,10 +10224,10 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [3232] = {.lex_state = 219}, [3233] = {.lex_state = 103}, [3234] = {.lex_state = 348, .external_lex_state = 14}, - [3235] = {.lex_state = 164}, - [3236] = {.lex_state = 169}, + [3235] = {.lex_state = 165}, + [3236] = {.lex_state = 170}, [3237] = {.lex_state = 348, .external_lex_state = 14}, - [3238] = {.lex_state = 174, .external_lex_state = 6}, + [3238] = {.lex_state = 175, .external_lex_state = 6}, [3239] = {.lex_state = 20, .external_lex_state = 2}, [3240] = {.lex_state = 20, .external_lex_state = 2}, [3241] = {.lex_state = 20, .external_lex_state = 2}, @@ -10218,10 +10236,10 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [3244] = {.lex_state = 103}, [3245] = {.lex_state = 348, .external_lex_state = 3}, [3246] = {.lex_state = 348, .external_lex_state = 10}, - [3247] = {.lex_state = 164}, - [3248] = {.lex_state = 169}, + [3247] = {.lex_state = 165}, + [3248] = {.lex_state = 170}, [3249] = {.lex_state = 348, .external_lex_state = 10}, - [3250] = {.lex_state = 174, .external_lex_state = 6}, + [3250] = {.lex_state = 175, .external_lex_state = 6}, [3251] = {.lex_state = 20, .external_lex_state = 2}, [3252] = {.lex_state = 20, .external_lex_state = 2}, [3253] = {.lex_state = 20, .external_lex_state = 2}, @@ -10231,7 +10249,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [3257] = {.lex_state = 141}, [3258] = {.lex_state = 354, .external_lex_state = 5}, [3259] = {.lex_state = 354, .external_lex_state = 5}, - [3260] = {.lex_state = 164}, + [3260] = {.lex_state = 165}, [3261] = {.lex_state = 354, .external_lex_state = 5}, [3262] = {.lex_state = 354, .external_lex_state = 5}, [3263] = {.lex_state = 354, .external_lex_state = 5}, @@ -10252,7 +10270,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [3278] = {.lex_state = 20, .external_lex_state = 2}, [3279] = {.lex_state = 339, .external_lex_state = 2}, [3280] = {.lex_state = 20}, - [3281] = {.lex_state = 196}, + [3281] = {.lex_state = 197}, [3282] = {.lex_state = 141}, [3283] = {.lex_state = 141}, [3284] = {.lex_state = 354, .external_lex_state = 5}, @@ -10289,15 +10307,15 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [3315] = {.lex_state = 291, .external_lex_state = 16}, [3316] = {.lex_state = 333, .external_lex_state = 13}, [3317] = {.lex_state = 291, .external_lex_state = 16}, - [3318] = {.lex_state = 178, .external_lex_state = 2}, + [3318] = {.lex_state = 179, .external_lex_state = 2}, [3319] = {.lex_state = 137}, - [3320] = {.lex_state = 178, .external_lex_state = 2}, + [3320] = {.lex_state = 179, .external_lex_state = 2}, [3321] = {.lex_state = 137}, [3322] = {.lex_state = 283, .external_lex_state = 4}, [3323] = {.lex_state = 283, .external_lex_state = 4}, - [3324] = {.lex_state = 189, .external_lex_state = 10}, - [3325] = {.lex_state = 189, .external_lex_state = 10}, - [3326] = {.lex_state = 189, .external_lex_state = 10}, + [3324] = {.lex_state = 190, .external_lex_state = 10}, + [3325] = {.lex_state = 190, .external_lex_state = 10}, + [3326] = {.lex_state = 190, .external_lex_state = 10}, [3327] = {.lex_state = 335, .external_lex_state = 10}, [3328] = {.lex_state = 327, .external_lex_state = 22}, [3329] = {.lex_state = 327, .external_lex_state = 22}, @@ -10316,21 +10334,21 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [3342] = {.lex_state = 291, .external_lex_state = 16}, [3343] = {.lex_state = 335, .external_lex_state = 10}, [3344] = {.lex_state = 291, .external_lex_state = 16}, - [3345] = {.lex_state = 187, .external_lex_state = 20}, - [3346] = {.lex_state = 187, .external_lex_state = 20}, - [3347] = {.lex_state = 187, .external_lex_state = 20}, + [3345] = {.lex_state = 188, .external_lex_state = 20}, + [3346] = {.lex_state = 188, .external_lex_state = 20}, + [3347] = {.lex_state = 188, .external_lex_state = 20}, [3348] = {.lex_state = 291, .external_lex_state = 16}, [3349] = {.lex_state = 327, .external_lex_state = 22}, [3350] = {.lex_state = 327, .external_lex_state = 22}, [3351] = {.lex_state = 103, .external_lex_state = 16}, [3352] = {.lex_state = 291, .external_lex_state = 16}, - [3353] = {.lex_state = 187, .external_lex_state = 20}, + [3353] = {.lex_state = 188, .external_lex_state = 20}, [3354] = {.lex_state = 291, .external_lex_state = 16}, - [3355] = {.lex_state = 187, .external_lex_state = 20}, + [3355] = {.lex_state = 188, .external_lex_state = 20}, [3356] = {.lex_state = 291, .external_lex_state = 16}, - [3357] = {.lex_state = 187, .external_lex_state = 20}, + [3357] = {.lex_state = 188, .external_lex_state = 20}, [3358] = {.lex_state = 291, .external_lex_state = 16}, - [3359] = {.lex_state = 187, .external_lex_state = 20}, + [3359] = {.lex_state = 188, .external_lex_state = 20}, [3360] = {.lex_state = 291, .external_lex_state = 16}, [3361] = {.lex_state = 342, .external_lex_state = 10}, [3362] = {.lex_state = 342, .external_lex_state = 10}, @@ -10351,31 +10369,31 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [3377] = {.lex_state = 291, .external_lex_state = 16}, [3378] = {.lex_state = 342, .external_lex_state = 10}, [3379] = {.lex_state = 342, .external_lex_state = 10}, - [3380] = {.lex_state = 192, .external_lex_state = 14}, - [3381] = {.lex_state = 192, .external_lex_state = 14}, - [3382] = {.lex_state = 192, .external_lex_state = 14}, - [3383] = {.lex_state = 192, .external_lex_state = 14}, + [3380] = {.lex_state = 193, .external_lex_state = 14}, + [3381] = {.lex_state = 193, .external_lex_state = 14}, + [3382] = {.lex_state = 193, .external_lex_state = 14}, + [3383] = {.lex_state = 193, .external_lex_state = 14}, [3384] = {.lex_state = 291, .external_lex_state = 16}, - [3385] = {.lex_state = 192, .external_lex_state = 14}, + [3385] = {.lex_state = 193, .external_lex_state = 14}, [3386] = {.lex_state = 291, .external_lex_state = 16}, - [3387] = {.lex_state = 192, .external_lex_state = 14}, + [3387] = {.lex_state = 193, .external_lex_state = 14}, [3388] = {.lex_state = 291, .external_lex_state = 16}, - [3389] = {.lex_state = 192, .external_lex_state = 14}, - [3390] = {.lex_state = 192, .external_lex_state = 14}, - [3391] = {.lex_state = 192, .external_lex_state = 10}, - [3392] = {.lex_state = 192, .external_lex_state = 10}, - [3393] = {.lex_state = 192, .external_lex_state = 10}, - [3394] = {.lex_state = 192, .external_lex_state = 10}, + [3389] = {.lex_state = 193, .external_lex_state = 14}, + [3390] = {.lex_state = 193, .external_lex_state = 14}, + [3391] = {.lex_state = 193, .external_lex_state = 10}, + [3392] = {.lex_state = 193, .external_lex_state = 10}, + [3393] = {.lex_state = 193, .external_lex_state = 10}, + [3394] = {.lex_state = 193, .external_lex_state = 10}, [3395] = {.lex_state = 291, .external_lex_state = 16}, - [3396] = {.lex_state = 192, .external_lex_state = 10}, + [3396] = {.lex_state = 193, .external_lex_state = 10}, [3397] = {.lex_state = 291, .external_lex_state = 16}, - [3398] = {.lex_state = 192, .external_lex_state = 10}, + [3398] = {.lex_state = 193, .external_lex_state = 10}, [3399] = {.lex_state = 291, .external_lex_state = 16}, - [3400] = {.lex_state = 192, .external_lex_state = 10}, - [3401] = {.lex_state = 192, .external_lex_state = 10}, - [3402] = {.lex_state = 183, .external_lex_state = 5}, - [3403] = {.lex_state = 183, .external_lex_state = 5}, - [3404] = {.lex_state = 183, .external_lex_state = 5}, + [3400] = {.lex_state = 193, .external_lex_state = 10}, + [3401] = {.lex_state = 193, .external_lex_state = 10}, + [3402] = {.lex_state = 184, .external_lex_state = 5}, + [3403] = {.lex_state = 184, .external_lex_state = 5}, + [3404] = {.lex_state = 184, .external_lex_state = 5}, [3405] = {.lex_state = 287, .external_lex_state = 5}, [3406] = {.lex_state = 287, .external_lex_state = 5}, [3407] = {.lex_state = 287, .external_lex_state = 5}, @@ -10398,18 +10416,18 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [3424] = {.lex_state = 219, .external_lex_state = 13}, [3425] = {.lex_state = 219, .external_lex_state = 13}, [3426] = {.lex_state = 219, .external_lex_state = 13}, - [3427] = {.lex_state = 152, .external_lex_state = 14}, - [3428] = {.lex_state = 152, .external_lex_state = 14}, - [3429] = {.lex_state = 152, .external_lex_state = 14}, - [3430] = {.lex_state = 152, .external_lex_state = 10}, - [3431] = {.lex_state = 152, .external_lex_state = 10}, - [3432] = {.lex_state = 152, .external_lex_state = 10}, + [3427] = {.lex_state = 153, .external_lex_state = 14}, + [3428] = {.lex_state = 153, .external_lex_state = 14}, + [3429] = {.lex_state = 153, .external_lex_state = 14}, + [3430] = {.lex_state = 153, .external_lex_state = 10}, + [3431] = {.lex_state = 153, .external_lex_state = 10}, + [3432] = {.lex_state = 153, .external_lex_state = 10}, [3433] = {.lex_state = 141, .external_lex_state = 15}, [3434] = {.lex_state = 141, .external_lex_state = 15}, [3435] = {.lex_state = 141, .external_lex_state = 15}, - [3436] = {.lex_state = 164, .external_lex_state = 13}, - [3437] = {.lex_state = 164, .external_lex_state = 13}, - [3438] = {.lex_state = 164, .external_lex_state = 13}, + [3436] = {.lex_state = 165, .external_lex_state = 13}, + [3437] = {.lex_state = 165, .external_lex_state = 13}, + [3438] = {.lex_state = 165, .external_lex_state = 13}, [3439] = {.lex_state = 327, .external_lex_state = 22}, [3440] = {.lex_state = 327, .external_lex_state = 22}, [3441] = {.lex_state = 327, .external_lex_state = 22}, @@ -10637,9 +10655,9 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [3663] = {.lex_state = 291, .external_lex_state = 16}, [3664] = {.lex_state = 311, .external_lex_state = 13}, [3665] = {.lex_state = 311, .external_lex_state = 13}, - [3666] = {.lex_state = 181, .external_lex_state = 20}, - [3667] = {.lex_state = 181, .external_lex_state = 20}, - [3668] = {.lex_state = 181, .external_lex_state = 20}, + [3666] = {.lex_state = 182, .external_lex_state = 20}, + [3667] = {.lex_state = 182, .external_lex_state = 20}, + [3668] = {.lex_state = 182, .external_lex_state = 20}, [3669] = {.lex_state = 313, .external_lex_state = 10}, [3670] = {.lex_state = 313, .external_lex_state = 10}, [3671] = {.lex_state = 313, .external_lex_state = 10}, @@ -10654,10 +10672,10 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [3680] = {.lex_state = 358, .external_lex_state = 8}, [3681] = {.lex_state = 241}, [3682] = {.lex_state = 358, .external_lex_state = 20}, - [3683] = {.lex_state = 164}, - [3684] = {.lex_state = 169}, + [3683] = {.lex_state = 165}, + [3684] = {.lex_state = 170}, [3685] = {.lex_state = 358, .external_lex_state = 20}, - [3686] = {.lex_state = 174, .external_lex_state = 6}, + [3686] = {.lex_state = 175, .external_lex_state = 6}, [3687] = {.lex_state = 20, .external_lex_state = 2}, [3688] = {.lex_state = 20, .external_lex_state = 2}, [3689] = {.lex_state = 20, .external_lex_state = 2}, @@ -10665,12 +10683,12 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [3691] = {.lex_state = 103}, [3692] = {.lex_state = 362, .external_lex_state = 7}, [3693] = {.lex_state = 360, .external_lex_state = 7}, - [3694] = {.lex_state = 185, .external_lex_state = 9}, + [3694] = {.lex_state = 186, .external_lex_state = 9}, [3695] = {.lex_state = 348, .external_lex_state = 3}, [3696] = {.lex_state = 141}, [3697] = {.lex_state = 348, .external_lex_state = 14}, [3698] = {.lex_state = 348, .external_lex_state = 14}, - [3699] = {.lex_state = 164}, + [3699] = {.lex_state = 165}, [3700] = {.lex_state = 348, .external_lex_state = 14}, [3701] = {.lex_state = 348, .external_lex_state = 14}, [3702] = {.lex_state = 348, .external_lex_state = 14}, @@ -10689,7 +10707,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [3715] = {.lex_state = 141}, [3716] = {.lex_state = 348, .external_lex_state = 10}, [3717] = {.lex_state = 348, .external_lex_state = 10}, - [3718] = {.lex_state = 164}, + [3718] = {.lex_state = 165}, [3719] = {.lex_state = 348, .external_lex_state = 10}, [3720] = {.lex_state = 348, .external_lex_state = 10}, [3721] = {.lex_state = 348, .external_lex_state = 10}, @@ -10733,10 +10751,10 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [3759] = {.lex_state = 354, .external_lex_state = 5}, [3760] = {.lex_state = 354, .external_lex_state = 7}, [3761] = {.lex_state = 360, .external_lex_state = 5}, - [3762] = {.lex_state = 164}, - [3763] = {.lex_state = 169}, + [3762] = {.lex_state = 165}, + [3763] = {.lex_state = 170}, [3764] = {.lex_state = 360, .external_lex_state = 5}, - [3765] = {.lex_state = 174, .external_lex_state = 6}, + [3765] = {.lex_state = 175, .external_lex_state = 6}, [3766] = {.lex_state = 20, .external_lex_state = 2}, [3767] = {.lex_state = 20, .external_lex_state = 2}, [3768] = {.lex_state = 20, .external_lex_state = 2}, @@ -10746,8 +10764,8 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [3772] = {.lex_state = 360, .external_lex_state = 7}, [3773] = {.lex_state = 354, .external_lex_state = 7}, [3774] = {.lex_state = 339, .external_lex_state = 2}, - [3775] = {.lex_state = 152, .external_lex_state = 4}, - [3776] = {.lex_state = 181, .external_lex_state = 8}, + [3775] = {.lex_state = 153, .external_lex_state = 4}, + [3776] = {.lex_state = 182, .external_lex_state = 8}, [3777] = {.lex_state = 354, .external_lex_state = 7}, [3778] = {.lex_state = 317}, [3779] = {.lex_state = 283, .external_lex_state = 4}, @@ -10773,15 +10791,15 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [3799] = {.lex_state = 333, .external_lex_state = 13}, [3800] = {.lex_state = 291, .external_lex_state = 16}, [3801] = {.lex_state = 141}, - [3802] = {.lex_state = 152, .external_lex_state = 4}, - [3803] = {.lex_state = 181, .external_lex_state = 8}, - [3804] = {.lex_state = 178, .external_lex_state = 2}, - [3805] = {.lex_state = 178, .external_lex_state = 2}, + [3802] = {.lex_state = 153, .external_lex_state = 4}, + [3803] = {.lex_state = 182, .external_lex_state = 8}, + [3804] = {.lex_state = 179, .external_lex_state = 2}, + [3805] = {.lex_state = 179, .external_lex_state = 2}, [3806] = {.lex_state = 141}, - [3807] = {.lex_state = 152, .external_lex_state = 4}, - [3808] = {.lex_state = 181, .external_lex_state = 8}, - [3809] = {.lex_state = 178, .external_lex_state = 2}, - [3810] = {.lex_state = 178, .external_lex_state = 2}, + [3807] = {.lex_state = 153, .external_lex_state = 4}, + [3808] = {.lex_state = 182, .external_lex_state = 8}, + [3809] = {.lex_state = 179, .external_lex_state = 2}, + [3810] = {.lex_state = 179, .external_lex_state = 2}, [3811] = {.lex_state = 335, .external_lex_state = 10}, [3812] = {.lex_state = 335, .external_lex_state = 10}, [3813] = {.lex_state = 335, .external_lex_state = 10}, @@ -10798,17 +10816,17 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [3824] = {.lex_state = 291, .external_lex_state = 16}, [3825] = {.lex_state = 335, .external_lex_state = 10}, [3826] = {.lex_state = 291, .external_lex_state = 16}, - [3827] = {.lex_state = 187, .external_lex_state = 20}, - [3828] = {.lex_state = 187, .external_lex_state = 20}, - [3829] = {.lex_state = 187, .external_lex_state = 20}, - [3830] = {.lex_state = 187, .external_lex_state = 20}, + [3827] = {.lex_state = 188, .external_lex_state = 20}, + [3828] = {.lex_state = 188, .external_lex_state = 20}, + [3829] = {.lex_state = 188, .external_lex_state = 20}, + [3830] = {.lex_state = 188, .external_lex_state = 20}, [3831] = {.lex_state = 291, .external_lex_state = 16}, - [3832] = {.lex_state = 187, .external_lex_state = 20}, + [3832] = {.lex_state = 188, .external_lex_state = 20}, [3833] = {.lex_state = 291, .external_lex_state = 16}, - [3834] = {.lex_state = 187, .external_lex_state = 20}, + [3834] = {.lex_state = 188, .external_lex_state = 20}, [3835] = {.lex_state = 291, .external_lex_state = 16}, - [3836] = {.lex_state = 187, .external_lex_state = 20}, - [3837] = {.lex_state = 187, .external_lex_state = 20}, + [3836] = {.lex_state = 188, .external_lex_state = 20}, + [3837] = {.lex_state = 188, .external_lex_state = 20}, [3838] = {.lex_state = 342, .external_lex_state = 10}, [3839] = {.lex_state = 327, .external_lex_state = 22}, [3840] = {.lex_state = 327, .external_lex_state = 22}, @@ -10827,12 +10845,12 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [3853] = {.lex_state = 291, .external_lex_state = 16}, [3854] = {.lex_state = 342, .external_lex_state = 10}, [3855] = {.lex_state = 291, .external_lex_state = 16}, - [3856] = {.lex_state = 192, .external_lex_state = 14}, - [3857] = {.lex_state = 192, .external_lex_state = 14}, - [3858] = {.lex_state = 192, .external_lex_state = 14}, - [3859] = {.lex_state = 192, .external_lex_state = 10}, - [3860] = {.lex_state = 192, .external_lex_state = 10}, - [3861] = {.lex_state = 192, .external_lex_state = 10}, + [3856] = {.lex_state = 193, .external_lex_state = 14}, + [3857] = {.lex_state = 193, .external_lex_state = 14}, + [3858] = {.lex_state = 193, .external_lex_state = 14}, + [3859] = {.lex_state = 193, .external_lex_state = 10}, + [3860] = {.lex_state = 193, .external_lex_state = 10}, + [3861] = {.lex_state = 193, .external_lex_state = 10}, [3862] = {.lex_state = 287, .external_lex_state = 5}, [3863] = {.lex_state = 287, .external_lex_state = 5}, [3864] = {.lex_state = 287, .external_lex_state = 5}, @@ -10978,7 +10996,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [4004] = {.lex_state = 141}, [4005] = {.lex_state = 358, .external_lex_state = 20}, [4006] = {.lex_state = 358, .external_lex_state = 20}, - [4007] = {.lex_state = 164}, + [4007] = {.lex_state = 165}, [4008] = {.lex_state = 358, .external_lex_state = 20}, [4009] = {.lex_state = 358, .external_lex_state = 20}, [4010] = {.lex_state = 358, .external_lex_state = 20}, @@ -11064,7 +11082,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [4090] = {.lex_state = 141}, [4091] = {.lex_state = 360, .external_lex_state = 5}, [4092] = {.lex_state = 360, .external_lex_state = 5}, - [4093] = {.lex_state = 164}, + [4093] = {.lex_state = 165}, [4094] = {.lex_state = 360, .external_lex_state = 5}, [4095] = {.lex_state = 360, .external_lex_state = 5}, [4096] = {.lex_state = 360, .external_lex_state = 5}, @@ -11093,17 +11111,17 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [4119] = {.lex_state = 291, .external_lex_state = 16}, [4120] = {.lex_state = 333, .external_lex_state = 13}, [4121] = {.lex_state = 333, .external_lex_state = 13}, - [4122] = {.lex_state = 178, .external_lex_state = 2}, + [4122] = {.lex_state = 179, .external_lex_state = 2}, [4123] = {.lex_state = 141}, - [4124] = {.lex_state = 152, .external_lex_state = 4}, - [4125] = {.lex_state = 181, .external_lex_state = 8}, - [4126] = {.lex_state = 178, .external_lex_state = 2}, - [4127] = {.lex_state = 178, .external_lex_state = 2}, - [4128] = {.lex_state = 178, .external_lex_state = 2}, + [4124] = {.lex_state = 153, .external_lex_state = 4}, + [4125] = {.lex_state = 182, .external_lex_state = 8}, + [4126] = {.lex_state = 179, .external_lex_state = 2}, + [4127] = {.lex_state = 179, .external_lex_state = 2}, + [4128] = {.lex_state = 179, .external_lex_state = 2}, [4129] = {.lex_state = 141}, - [4130] = {.lex_state = 152, .external_lex_state = 4}, - [4131] = {.lex_state = 181, .external_lex_state = 8}, - [4132] = {.lex_state = 178, .external_lex_state = 2}, + [4130] = {.lex_state = 153, .external_lex_state = 4}, + [4131] = {.lex_state = 182, .external_lex_state = 8}, + [4132] = {.lex_state = 179, .external_lex_state = 2}, [4133] = {.lex_state = 335, .external_lex_state = 10}, [4134] = {.lex_state = 335, .external_lex_state = 10}, [4135] = {.lex_state = 335, .external_lex_state = 10}, @@ -11115,9 +11133,9 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [4141] = {.lex_state = 291, .external_lex_state = 16}, [4142] = {.lex_state = 335, .external_lex_state = 10}, [4143] = {.lex_state = 335, .external_lex_state = 10}, - [4144] = {.lex_state = 187, .external_lex_state = 20}, - [4145] = {.lex_state = 187, .external_lex_state = 20}, - [4146] = {.lex_state = 187, .external_lex_state = 20}, + [4144] = {.lex_state = 188, .external_lex_state = 20}, + [4145] = {.lex_state = 188, .external_lex_state = 20}, + [4146] = {.lex_state = 188, .external_lex_state = 20}, [4147] = {.lex_state = 342, .external_lex_state = 10}, [4148] = {.lex_state = 342, .external_lex_state = 10}, [4149] = {.lex_state = 342, .external_lex_state = 10}, @@ -11210,10 +11228,10 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [4236] = {.lex_state = 362, .external_lex_state = 7}, [4237] = {.lex_state = 141}, [4238] = {.lex_state = 364, .external_lex_state = 10}, - [4239] = {.lex_state = 164}, - [4240] = {.lex_state = 169}, + [4239] = {.lex_state = 165}, + [4240] = {.lex_state = 170}, [4241] = {.lex_state = 364, .external_lex_state = 10}, - [4242] = {.lex_state = 174, .external_lex_state = 6}, + [4242] = {.lex_state = 175, .external_lex_state = 6}, [4243] = {.lex_state = 20, .external_lex_state = 2}, [4244] = {.lex_state = 20, .external_lex_state = 2}, [4245] = {.lex_state = 20, .external_lex_state = 2}, @@ -11293,14 +11311,14 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [4319] = {.lex_state = 333, .external_lex_state = 13}, [4320] = {.lex_state = 333, .external_lex_state = 13}, [4321] = {.lex_state = 333, .external_lex_state = 13}, - [4322] = {.lex_state = 178, .external_lex_state = 2}, + [4322] = {.lex_state = 179, .external_lex_state = 2}, [4323] = {.lex_state = 141}, - [4324] = {.lex_state = 152, .external_lex_state = 4}, - [4325] = {.lex_state = 181, .external_lex_state = 8}, - [4326] = {.lex_state = 178, .external_lex_state = 2}, + [4324] = {.lex_state = 153, .external_lex_state = 4}, + [4325] = {.lex_state = 182, .external_lex_state = 8}, + [4326] = {.lex_state = 179, .external_lex_state = 2}, [4327] = {.lex_state = 141}, - [4328] = {.lex_state = 152, .external_lex_state = 4}, - [4329] = {.lex_state = 181, .external_lex_state = 8}, + [4328] = {.lex_state = 153, .external_lex_state = 4}, + [4329] = {.lex_state = 182, .external_lex_state = 8}, [4330] = {.lex_state = 335, .external_lex_state = 10}, [4331] = {.lex_state = 335, .external_lex_state = 10}, [4332] = {.lex_state = 335, .external_lex_state = 10}, @@ -11360,7 +11378,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [4386] = {.lex_state = 141}, [4387] = {.lex_state = 364, .external_lex_state = 10}, [4388] = {.lex_state = 364, .external_lex_state = 10}, - [4389] = {.lex_state = 164}, + [4389] = {.lex_state = 165}, [4390] = {.lex_state = 364, .external_lex_state = 10}, [4391] = {.lex_state = 364, .external_lex_state = 10}, [4392] = {.lex_state = 364, .external_lex_state = 10}, @@ -11437,8 +11455,8 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [4463] = {.lex_state = 291, .external_lex_state = 16}, [4464] = {.lex_state = 360, .external_lex_state = 5}, [4465] = {.lex_state = 291, .external_lex_state = 16}, - [4466] = {.lex_state = 178, .external_lex_state = 2}, - [4467] = {.lex_state = 178, .external_lex_state = 2}, + [4466] = {.lex_state = 179, .external_lex_state = 2}, + [4467] = {.lex_state = 179, .external_lex_state = 2}, [4468] = {.lex_state = 342, .external_lex_state = 10}, [4469] = {.lex_state = 342, .external_lex_state = 10}, [4470] = {.lex_state = 342, .external_lex_state = 10}, @@ -12076,6 +12094,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_process_substitution] = STATE(79), [aux_sym_command_repeat2] = STATE(85), [anon_sym_EQ_TILDE] = ACTIONS(122), + [anon_sym_EQ_EQ] = ACTIONS(122), [sym__special_characters] = ACTIONS(124), [anon_sym_DQUOTE] = ACTIONS(126), [anon_sym_DOLLAR] = ACTIONS(128), @@ -12098,6 +12117,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_process_substitution] = STATE(90), [aux_sym_command_repeat2] = STATE(96), [anon_sym_EQ_TILDE] = ACTIONS(142), + [anon_sym_EQ_EQ] = ACTIONS(142), [sym__special_characters] = ACTIONS(144), [anon_sym_DQUOTE] = ACTIONS(146), [anon_sym_DOLLAR] = ACTIONS(148), @@ -12203,6 +12223,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(228), [anon_sym_PIPE_PIPE] = ACTIONS(228), [anon_sym_EQ_TILDE] = ACTIONS(228), + [anon_sym_EQ_EQ] = ACTIONS(228), [anon_sym_LT] = ACTIONS(228), [anon_sym_GT] = ACTIONS(228), [anon_sym_GT_GT] = ACTIONS(228), @@ -12242,67 +12263,69 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(182), }, [17] = { - [sym_string] = STATE(141), + [sym_string] = STATE(140), [anon_sym_DQUOTE] = ACTIONS(42), [anon_sym_DOLLAR] = ACTIONS(242), + [sym_raw_string] = ACTIONS(244), [anon_sym_POUND] = ACTIONS(242), [anon_sym_DASH] = ACTIONS(242), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(244), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(246), [anon_sym_STAR] = ACTIONS(242), [anon_sym_AT] = ACTIONS(242), [anon_sym_QMARK] = ACTIONS(242), - [anon_sym_0] = ACTIONS(246), - [anon_sym__] = ACTIONS(246), + [anon_sym_0] = ACTIONS(248), + [anon_sym__] = ACTIONS(248), }, [18] = { [aux_sym_concatenation_repeat1] = STATE(131), - [sym_file_descriptor] = ACTIONS(248), + [sym_file_descriptor] = ACTIONS(250), [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), + [anon_sym_PIPE] = ACTIONS(252), + [anon_sym_SEMI_SEMI] = ACTIONS(252), + [anon_sym_PIPE_AMP] = ACTIONS(252), + [anon_sym_AMP_AMP] = ACTIONS(252), + [anon_sym_PIPE_PIPE] = ACTIONS(252), + [anon_sym_EQ_TILDE] = ACTIONS(252), + [anon_sym_EQ_EQ] = ACTIONS(252), + [anon_sym_LT] = ACTIONS(252), + [anon_sym_GT] = ACTIONS(252), + [anon_sym_GT_GT] = ACTIONS(252), + [anon_sym_AMP_GT] = ACTIONS(252), + [anon_sym_AMP_GT_GT] = ACTIONS(252), + [anon_sym_LT_AMP] = ACTIONS(252), + [anon_sym_GT_AMP] = ACTIONS(252), + [anon_sym_LT_LT] = ACTIONS(252), + [anon_sym_LT_LT_DASH] = ACTIONS(252), + [anon_sym_LT_LT_LT] = ACTIONS(252), + [sym__special_characters] = ACTIONS(252), + [anon_sym_DQUOTE] = ACTIONS(252), + [anon_sym_DOLLAR] = ACTIONS(252), + [sym_raw_string] = ACTIONS(252), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(252), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(252), + [anon_sym_BQUOTE] = ACTIONS(252), + [anon_sym_LT_LPAREN] = ACTIONS(252), + [anon_sym_GT_LPAREN] = ACTIONS(252), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(250), - [anon_sym_SEMI] = ACTIONS(250), - [anon_sym_LF] = ACTIONS(250), - [anon_sym_AMP] = ACTIONS(250), + [sym_word] = ACTIONS(252), + [anon_sym_SEMI] = ACTIONS(252), + [anon_sym_LF] = ACTIONS(252), + [anon_sym_AMP] = ACTIONS(252), }, [19] = { [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_variable_name] = ACTIONS(254), + [anon_sym_DOLLAR] = ACTIONS(256), + [anon_sym_POUND] = ACTIONS(258), + [anon_sym_DASH] = ACTIONS(256), [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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(260), + [anon_sym_STAR] = ACTIONS(256), + [anon_sym_AT] = ACTIONS(256), + [anon_sym_QMARK] = ACTIONS(256), + [anon_sym_0] = ACTIONS(262), + [anon_sym__] = ACTIONS(262), }, [20] = { [sym_for_statement] = STATE(167), @@ -12330,22 +12353,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(264), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(268), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -12353,17 +12376,17 @@ 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(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__special_characters] = ACTIONS(286), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(300), + [sym_word] = ACTIONS(302), }, [21] = { [sym_for_statement] = STATE(189), @@ -12391,22 +12414,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(304), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(306), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(308), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_LBRACK_LBRACK] = ACTIONS(312), + [anon_sym_declare] = ACTIONS(314), + [anon_sym_typeset] = ACTIONS(314), + [anon_sym_export] = ACTIONS(314), + [anon_sym_readonly] = ACTIONS(314), + [anon_sym_local] = ACTIONS(314), + [anon_sym_unset] = ACTIONS(316), + [anon_sym_unsetenv] = ACTIONS(316), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -12414,17 +12437,17 @@ 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(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__special_characters] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [anon_sym_DOLLAR] = ACTIONS(322), + [sym_raw_string] = ACTIONS(324), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), + [anon_sym_BQUOTE] = ACTIONS(330), + [anon_sym_LT_LPAREN] = ACTIONS(332), + [anon_sym_GT_LPAREN] = ACTIONS(332), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(332), + [sym_word] = ACTIONS(334), }, [22] = { [sym_for_statement] = STATE(194), @@ -12452,22 +12475,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(264), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(268), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -12475,107 +12498,108 @@ 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(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__special_characters] = ACTIONS(286), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(300), + [sym_word] = ACTIONS(302), }, [23] = { [aux_sym_concatenation_repeat1] = STATE(131), - [sym_file_descriptor] = ACTIONS(248), + [sym_file_descriptor] = ACTIONS(250), [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), + [anon_sym_PIPE] = ACTIONS(252), + [anon_sym_SEMI_SEMI] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(336), + [anon_sym_PIPE_AMP] = ACTIONS(252), + [anon_sym_AMP_AMP] = ACTIONS(252), + [anon_sym_PIPE_PIPE] = ACTIONS(252), + [anon_sym_EQ_TILDE] = ACTIONS(252), + [anon_sym_EQ_EQ] = ACTIONS(252), + [anon_sym_LT] = ACTIONS(252), + [anon_sym_GT] = ACTIONS(252), + [anon_sym_GT_GT] = ACTIONS(252), + [anon_sym_AMP_GT] = ACTIONS(252), + [anon_sym_AMP_GT_GT] = ACTIONS(252), + [anon_sym_LT_AMP] = ACTIONS(252), + [anon_sym_GT_AMP] = ACTIONS(252), + [anon_sym_LT_LT] = ACTIONS(252), + [anon_sym_LT_LT_DASH] = ACTIONS(252), + [anon_sym_LT_LT_LT] = ACTIONS(252), + [sym__special_characters] = ACTIONS(252), + [anon_sym_DQUOTE] = ACTIONS(252), + [anon_sym_DOLLAR] = ACTIONS(252), + [sym_raw_string] = ACTIONS(252), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(252), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(252), + [anon_sym_BQUOTE] = ACTIONS(252), + [anon_sym_LT_LPAREN] = ACTIONS(252), + [anon_sym_GT_LPAREN] = ACTIONS(252), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(250), - [anon_sym_SEMI] = ACTIONS(250), - [anon_sym_LF] = ACTIONS(250), - [anon_sym_AMP] = ACTIONS(250), + [sym_word] = ACTIONS(252), + [anon_sym_SEMI] = ACTIONS(252), + [anon_sym_LF] = ACTIONS(252), + [anon_sym_AMP] = ACTIONS(252), }, [24] = { - [ts_builtin_sym_end] = ACTIONS(336), + [ts_builtin_sym_end] = ACTIONS(338), [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_file_descriptor] = ACTIONS(340), + [sym_variable_name] = ACTIONS(340), + [ts_builtin_sym_end] = ACTIONS(340), + [anon_sym_for] = ACTIONS(342), + [anon_sym_while] = ACTIONS(342), + [anon_sym_if] = ACTIONS(342), + [anon_sym_case] = ACTIONS(342), + [anon_sym_SEMI_SEMI] = ACTIONS(340), + [anon_sym_function] = ACTIONS(342), + [anon_sym_LPAREN] = ACTIONS(340), + [anon_sym_LBRACK] = ACTIONS(342), + [anon_sym_LBRACK_LBRACK] = ACTIONS(340), + [anon_sym_declare] = ACTIONS(342), + [anon_sym_typeset] = ACTIONS(342), + [anon_sym_export] = ACTIONS(342), + [anon_sym_readonly] = ACTIONS(342), + [anon_sym_local] = ACTIONS(342), + [anon_sym_unset] = ACTIONS(342), + [anon_sym_unsetenv] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(342), + [anon_sym_GT] = ACTIONS(342), + [anon_sym_GT_GT] = ACTIONS(340), + [anon_sym_AMP_GT] = ACTIONS(342), + [anon_sym_AMP_GT_GT] = ACTIONS(340), + [anon_sym_LT_AMP] = ACTIONS(340), + [anon_sym_GT_AMP] = ACTIONS(340), + [sym__special_characters] = ACTIONS(344), + [anon_sym_DQUOTE] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(342), + [sym_raw_string] = ACTIONS(340), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(340), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(340), + [anon_sym_BQUOTE] = ACTIONS(340), + [anon_sym_LT_LPAREN] = ACTIONS(340), + [anon_sym_GT_LPAREN] = ACTIONS(340), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(342), + [sym_word] = ACTIONS(344), }, [26] = { - [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_PIPE] = ACTIONS(346), + [anon_sym_SEMI_SEMI] = ACTIONS(348), + [anon_sym_PIPE_AMP] = ACTIONS(346), + [anon_sym_AMP_AMP] = ACTIONS(350), + [anon_sym_PIPE_PIPE] = ACTIONS(350), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(346), - [anon_sym_LF] = ACTIONS(346), - [anon_sym_AMP] = ACTIONS(346), + [anon_sym_SEMI] = ACTIONS(348), + [anon_sym_LF] = ACTIONS(348), + [anon_sym_AMP] = ACTIONS(348), }, [27] = { [sym_file_redirect] = STATE(207), @@ -12590,67 +12614,68 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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_file_descriptor] = ACTIONS(352), + [anon_sym_PIPE] = ACTIONS(354), + [anon_sym_SEMI_SEMI] = ACTIONS(354), + [anon_sym_PIPE_AMP] = ACTIONS(354), + [anon_sym_AMP_AMP] = ACTIONS(354), + [anon_sym_PIPE_PIPE] = ACTIONS(354), + [anon_sym_EQ_TILDE] = ACTIONS(356), + [anon_sym_EQ_EQ] = ACTIONS(356), + [anon_sym_LT] = ACTIONS(358), + [anon_sym_GT] = ACTIONS(358), + [anon_sym_GT_GT] = ACTIONS(358), + [anon_sym_AMP_GT] = ACTIONS(358), + [anon_sym_AMP_GT_GT] = ACTIONS(358), + [anon_sym_LT_AMP] = ACTIONS(358), + [anon_sym_GT_AMP] = ACTIONS(358), + [anon_sym_LT_LT] = ACTIONS(360), + [anon_sym_LT_LT_DASH] = ACTIONS(360), + [anon_sym_LT_LT_LT] = ACTIONS(362), + [sym__special_characters] = ACTIONS(364), + [anon_sym_DQUOTE] = ACTIONS(366), + [anon_sym_DOLLAR] = ACTIONS(368), + [sym_raw_string] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(368), - [anon_sym_SEMI] = ACTIONS(352), - [anon_sym_LF] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(352), + [sym_word] = ACTIONS(370), + [anon_sym_SEMI] = ACTIONS(354), + [anon_sym_LF] = ACTIONS(354), + [anon_sym_AMP] = ACTIONS(354), }, [28] = { - [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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(346), + [anon_sym_SEMI_SEMI] = ACTIONS(348), + [anon_sym_PIPE_AMP] = ACTIONS(346), + [anon_sym_AMP_AMP] = ACTIONS(350), + [anon_sym_PIPE_PIPE] = ACTIONS(350), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(382), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(382), + [anon_sym_LT_AMP] = ACTIONS(382), + [anon_sym_GT_AMP] = ACTIONS(382), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(382), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(382), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(382), + [anon_sym_BQUOTE] = ACTIONS(382), + [anon_sym_LT_LPAREN] = ACTIONS(382), + [anon_sym_GT_LPAREN] = ACTIONS(382), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(380), - [anon_sym_SEMI] = ACTIONS(346), - [anon_sym_LF] = ACTIONS(346), - [anon_sym_AMP] = ACTIONS(346), + [sym_word] = ACTIONS(382), + [anon_sym_SEMI] = ACTIONS(348), + [anon_sym_LF] = ACTIONS(348), + [anon_sym_AMP] = ACTIONS(348), }, [29] = { [sym__assignment] = STATE(37), @@ -12659,60 +12684,61 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), }, [30] = { - [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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [31] = { - [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_file_descriptor] = ACTIONS(250), + [anon_sym_PIPE] = ACTIONS(252), + [anon_sym_RPAREN] = ACTIONS(252), + [anon_sym_SEMI_SEMI] = ACTIONS(252), + [anon_sym_PIPE_AMP] = ACTIONS(252), + [anon_sym_AMP_AMP] = ACTIONS(252), + [anon_sym_PIPE_PIPE] = ACTIONS(252), + [anon_sym_EQ_TILDE] = ACTIONS(252), + [anon_sym_EQ_EQ] = ACTIONS(252), + [anon_sym_LT] = ACTIONS(252), + [anon_sym_GT] = ACTIONS(252), + [anon_sym_GT_GT] = ACTIONS(252), + [anon_sym_AMP_GT] = ACTIONS(252), + [anon_sym_AMP_GT_GT] = ACTIONS(252), + [anon_sym_LT_AMP] = ACTIONS(252), + [anon_sym_GT_AMP] = ACTIONS(252), + [anon_sym_LT_LT] = ACTIONS(252), + [anon_sym_LT_LT_DASH] = ACTIONS(252), + [anon_sym_LT_LT_LT] = ACTIONS(252), + [sym__special_characters] = ACTIONS(252), + [anon_sym_DQUOTE] = ACTIONS(252), + [anon_sym_DOLLAR] = ACTIONS(252), + [sym_raw_string] = ACTIONS(252), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(252), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(252), + [anon_sym_BQUOTE] = ACTIONS(252), + [anon_sym_LT_LPAREN] = ACTIONS(252), + [anon_sym_GT_LPAREN] = ACTIONS(252), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(250), - [anon_sym_SEMI] = ACTIONS(250), - [anon_sym_LF] = ACTIONS(250), - [anon_sym_AMP] = ACTIONS(250), + [sym_word] = ACTIONS(252), + [anon_sym_SEMI] = ACTIONS(252), + [anon_sym_LF] = ACTIONS(252), + [anon_sym_AMP] = ACTIONS(252), }, [32] = { [sym__terminated_statement] = STATE(25), @@ -12743,7 +12769,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_command_repeat1] = STATE(33), [sym_file_descriptor] = ACTIONS(10), [sym_variable_name] = ACTIONS(12), - [ts_builtin_sym_end] = ACTIONS(384), + [ts_builtin_sym_end] = ACTIONS(386), [anon_sym_for] = ACTIONS(16), [anon_sym_while] = ACTIONS(18), [anon_sym_if] = ACTIONS(20), @@ -12792,7 +12818,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_process_substitution] = STATE(18), [aux_sym_command_repeat1] = STATE(215), [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(386), + [sym_variable_name] = ACTIONS(388), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -12800,7 +12826,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(388), + [sym__special_characters] = ACTIONS(390), [anon_sym_DQUOTE] = ACTIONS(42), [anon_sym_DOLLAR] = ACTIONS(44), [sym_raw_string] = ACTIONS(46), @@ -12810,7 +12836,7 @@ 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(390), + [sym_word] = ACTIONS(392), }, [34] = { [sym_concatenation] = STATE(218), @@ -12820,17 +12846,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(217), [sym_command_substitution] = STATE(217), [sym_process_substitution] = STATE(217), - [sym__special_characters] = ACTIONS(392), + [sym__special_characters] = ACTIONS(394), [anon_sym_DQUOTE] = ACTIONS(208), [anon_sym_DOLLAR] = ACTIONS(210), - [sym_raw_string] = ACTIONS(394), + [sym_raw_string] = ACTIONS(396), [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(396), + [sym_word] = ACTIONS(398), }, [35] = { [sym_concatenation] = STATE(227), @@ -12840,17 +12866,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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__special_characters] = ACTIONS(400), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_DOLLAR] = ACTIONS(404), + [sym_raw_string] = ACTIONS(406), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(408), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(410), + [anon_sym_BQUOTE] = ACTIONS(412), + [anon_sym_LT_LPAREN] = ACTIONS(414), + [anon_sym_GT_LPAREN] = ACTIONS(414), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(414), + [sym_word] = ACTIONS(416), }, [36] = { [sym_concatenation] = STATE(228), @@ -12861,121 +12887,121 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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__empty_value] = ACTIONS(418), + [anon_sym_LPAREN] = ACTIONS(420), + [sym__special_characters] = ACTIONS(422), + [anon_sym_DQUOTE] = ACTIONS(424), + [anon_sym_DOLLAR] = ACTIONS(426), + [sym_raw_string] = ACTIONS(428), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(430), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(432), + [anon_sym_BQUOTE] = ACTIONS(434), + [anon_sym_LT_LPAREN] = ACTIONS(436), + [anon_sym_GT_LPAREN] = ACTIONS(436), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(436), + [sym_word] = ACTIONS(438), }, [37] = { - [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_file_descriptor] = ACTIONS(440), + [sym_variable_name] = ACTIONS(440), + [anon_sym_PIPE] = ACTIONS(442), + [anon_sym_RPAREN] = ACTIONS(442), + [anon_sym_SEMI_SEMI] = ACTIONS(442), + [anon_sym_PIPE_AMP] = ACTIONS(442), + [anon_sym_AMP_AMP] = ACTIONS(442), + [anon_sym_PIPE_PIPE] = ACTIONS(442), + [anon_sym_LT] = ACTIONS(442), + [anon_sym_GT] = ACTIONS(442), + [anon_sym_GT_GT] = ACTIONS(442), + [anon_sym_AMP_GT] = ACTIONS(442), + [anon_sym_AMP_GT_GT] = ACTIONS(442), + [anon_sym_LT_AMP] = ACTIONS(442), + [anon_sym_GT_AMP] = ACTIONS(442), + [sym__special_characters] = ACTIONS(442), + [anon_sym_DQUOTE] = ACTIONS(442), + [anon_sym_DOLLAR] = ACTIONS(442), + [sym_raw_string] = ACTIONS(442), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(442), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(442), + [anon_sym_BQUOTE] = ACTIONS(442), + [anon_sym_LT_LPAREN] = ACTIONS(442), + [anon_sym_GT_LPAREN] = ACTIONS(442), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(440), - [anon_sym_SEMI] = ACTIONS(440), - [anon_sym_LF] = ACTIONS(440), - [anon_sym_AMP] = ACTIONS(440), + [sym_word] = ACTIONS(442), + [anon_sym_SEMI] = ACTIONS(442), + [anon_sym_LF] = ACTIONS(442), + [anon_sym_AMP] = ACTIONS(442), }, [38] = { - [anon_sym_in] = ACTIONS(442), + [anon_sym_in] = ACTIONS(444), [sym_comment] = ACTIONS(56), }, [39] = { [sym_do_group] = STATE(240), - [anon_sym_do] = ACTIONS(444), + [anon_sym_do] = ACTIONS(446), [sym_comment] = ACTIONS(56), }, [40] = { - [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_PIPE] = ACTIONS(346), + [anon_sym_SEMI_SEMI] = ACTIONS(448), + [anon_sym_PIPE_AMP] = ACTIONS(346), + [anon_sym_AMP_AMP] = ACTIONS(350), + [anon_sym_PIPE_PIPE] = ACTIONS(350), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(446), - [anon_sym_LF] = ACTIONS(446), - [anon_sym_AMP] = ACTIONS(446), + [anon_sym_SEMI] = ACTIONS(448), + [anon_sym_LF] = ACTIONS(448), + [anon_sym_AMP] = ACTIONS(448), }, [41] = { - [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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(346), + [anon_sym_SEMI_SEMI] = ACTIONS(448), + [anon_sym_PIPE_AMP] = ACTIONS(346), + [anon_sym_AMP_AMP] = ACTIONS(350), + [anon_sym_PIPE_PIPE] = ACTIONS(350), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(382), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(382), + [anon_sym_LT_AMP] = ACTIONS(382), + [anon_sym_GT_AMP] = ACTIONS(382), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(382), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(382), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(382), + [anon_sym_BQUOTE] = ACTIONS(382), + [anon_sym_LT_LPAREN] = ACTIONS(382), + [anon_sym_GT_LPAREN] = ACTIONS(382), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(380), - [anon_sym_SEMI] = ACTIONS(446), - [anon_sym_LF] = ACTIONS(446), - [anon_sym_AMP] = ACTIONS(446), + [sym_word] = ACTIONS(382), + [anon_sym_SEMI] = ACTIONS(448), + [anon_sym_LF] = ACTIONS(448), + [anon_sym_AMP] = ACTIONS(448), }, [42] = { - [anon_sym_then] = ACTIONS(448), + [anon_sym_then] = ACTIONS(450), [sym_comment] = ACTIONS(56), }, [43] = { [aux_sym_concatenation_repeat1] = STATE(246), - [sym__concat] = ACTIONS(450), - [anon_sym_in] = ACTIONS(452), - [anon_sym_SEMI_SEMI] = ACTIONS(454), + [sym__concat] = ACTIONS(452), + [anon_sym_in] = ACTIONS(454), + [anon_sym_SEMI_SEMI] = ACTIONS(456), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(454), - [anon_sym_LF] = ACTIONS(454), - [anon_sym_AMP] = ACTIONS(454), + [anon_sym_SEMI] = ACTIONS(456), + [anon_sym_LF] = ACTIONS(456), + [anon_sym_AMP] = ACTIONS(456), }, [44] = { [sym_simple_expansion] = STATE(134), [sym_expansion] = STATE(134), [sym_command_substitution] = STATE(134), [aux_sym_string_repeat1] = STATE(248), - [anon_sym_DQUOTE] = ACTIONS(456), + [anon_sym_DQUOTE] = ACTIONS(458), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -12984,42 +13010,43 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(182), }, [45] = { - [sym_string] = STATE(251), + [sym_string] = STATE(250), [anon_sym_DQUOTE] = ACTIONS(72), - [anon_sym_DOLLAR] = ACTIONS(458), - [anon_sym_POUND] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(458), + [anon_sym_DOLLAR] = ACTIONS(460), + [sym_raw_string] = ACTIONS(462), + [anon_sym_POUND] = ACTIONS(460), + [anon_sym_DASH] = ACTIONS(460), [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), + [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), }, [46] = { [aux_sym_concatenation_repeat1] = STATE(246), - [sym__concat] = ACTIONS(450), - [anon_sym_in] = ACTIONS(464), - [anon_sym_SEMI_SEMI] = ACTIONS(466), + [sym__concat] = ACTIONS(452), + [anon_sym_in] = ACTIONS(468), + [anon_sym_SEMI_SEMI] = ACTIONS(470), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(466), - [anon_sym_LF] = ACTIONS(466), - [anon_sym_AMP] = ACTIONS(466), + [anon_sym_SEMI] = ACTIONS(470), + [anon_sym_LF] = ACTIONS(470), + [anon_sym_AMP] = ACTIONS(470), }, [47] = { [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_variable_name] = ACTIONS(472), + [anon_sym_DOLLAR] = ACTIONS(474), + [anon_sym_POUND] = ACTIONS(476), + [anon_sym_DASH] = ACTIONS(474), [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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(478), + [anon_sym_STAR] = ACTIONS(474), + [anon_sym_AT] = ACTIONS(474), + [anon_sym_QMARK] = ACTIONS(474), + [anon_sym_0] = ACTIONS(480), + [anon_sym__] = ACTIONS(480), }, [48] = { [sym_for_statement] = STATE(259), @@ -13047,22 +13074,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(264), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(268), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -13070,17 +13097,17 @@ 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(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__special_characters] = ACTIONS(286), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(300), + [sym_word] = ACTIONS(302), }, [49] = { [sym_for_statement] = STATE(261), @@ -13108,22 +13135,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(304), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(306), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(308), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_LBRACK_LBRACK] = ACTIONS(312), + [anon_sym_declare] = ACTIONS(314), + [anon_sym_typeset] = ACTIONS(314), + [anon_sym_export] = ACTIONS(314), + [anon_sym_readonly] = ACTIONS(314), + [anon_sym_local] = ACTIONS(314), + [anon_sym_unset] = ACTIONS(316), + [anon_sym_unsetenv] = ACTIONS(316), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -13131,17 +13158,17 @@ 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(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__special_characters] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [anon_sym_DOLLAR] = ACTIONS(322), + [sym_raw_string] = ACTIONS(324), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), + [anon_sym_BQUOTE] = ACTIONS(330), + [anon_sym_LT_LPAREN] = ACTIONS(332), + [anon_sym_GT_LPAREN] = ACTIONS(332), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(332), + [sym_word] = ACTIONS(334), }, [50] = { [sym_for_statement] = STATE(263), @@ -13169,22 +13196,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(264), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(268), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -13192,37 +13219,37 @@ 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(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__special_characters] = ACTIONS(286), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(300), + [sym_word] = ACTIONS(302), }, [51] = { - [anon_sym_in] = ACTIONS(464), - [anon_sym_SEMI_SEMI] = ACTIONS(466), + [anon_sym_in] = ACTIONS(468), + [anon_sym_SEMI_SEMI] = ACTIONS(470), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(466), - [anon_sym_LF] = ACTIONS(466), - [anon_sym_AMP] = ACTIONS(466), + [anon_sym_SEMI] = ACTIONS(470), + [anon_sym_LF] = ACTIONS(470), + [anon_sym_AMP] = ACTIONS(470), }, [52] = { [sym_compound_statement] = STATE(267), - [anon_sym_LPAREN] = ACTIONS(478), - [anon_sym_LBRACE] = ACTIONS(480), + [anon_sym_LPAREN] = ACTIONS(482), + [anon_sym_LBRACE] = ACTIONS(484), [sym_comment] = ACTIONS(56), }, [53] = { [sym__assignment] = STATE(37), [anon_sym_LBRACK] = ACTIONS(64), - [anon_sym_EQ] = ACTIONS(482), - [anon_sym_PLUS_EQ] = ACTIONS(482), + [anon_sym_EQ] = ACTIONS(486), + [anon_sym_PLUS_EQ] = ACTIONS(486), [sym_comment] = ACTIONS(56), }, [54] = { @@ -13289,7 +13316,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [55] = { [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(484), + [sym_word] = ACTIONS(488), }, [56] = { [sym_concatenation] = STATE(84), @@ -13301,6 +13328,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_process_substitution] = STATE(79), [aux_sym_command_repeat2] = STATE(271), [anon_sym_EQ_TILDE] = ACTIONS(122), + [anon_sym_EQ_EQ] = ACTIONS(122), [sym__special_characters] = ACTIONS(124), [anon_sym_DQUOTE] = ACTIONS(126), [anon_sym_DOLLAR] = ACTIONS(128), @@ -13323,6 +13351,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_process_substitution] = STATE(90), [aux_sym_command_repeat2] = STATE(272), [anon_sym_EQ_TILDE] = ACTIONS(142), + [anon_sym_EQ_EQ] = ACTIONS(142), [sym__special_characters] = ACTIONS(144), [anon_sym_DQUOTE] = ACTIONS(146), [anon_sym_DOLLAR] = ACTIONS(148), @@ -13346,25 +13375,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(277), [sym_process_substitution] = STATE(277), [aux_sym_declaration_command_repeat1] = STATE(283), - [sym_variable_name] = ACTIONS(486), + [sym_variable_name] = ACTIONS(490), [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__special_characters] = ACTIONS(492), + [anon_sym_DQUOTE] = ACTIONS(494), + [anon_sym_DOLLAR] = ACTIONS(496), + [sym_raw_string] = ACTIONS(498), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(500), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(502), + [anon_sym_BQUOTE] = ACTIONS(504), + [anon_sym_LT_LPAREN] = ACTIONS(506), + [anon_sym_GT_LPAREN] = ACTIONS(506), [sym_comment] = ACTIONS(182), [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(184), - [sym_word] = ACTIONS(494), + [sym_word] = ACTIONS(498), [anon_sym_SEMI] = ACTIONS(164), [anon_sym_LF] = ACTIONS(164), [anon_sym_AMP] = ACTIONS(164), @@ -13384,18 +13413,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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__special_characters] = ACTIONS(508), + [anon_sym_DQUOTE] = ACTIONS(510), + [anon_sym_DOLLAR] = ACTIONS(512), + [sym_raw_string] = ACTIONS(514), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(516), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(518), + [anon_sym_BQUOTE] = ACTIONS(520), + [anon_sym_LT_LPAREN] = ACTIONS(522), + [anon_sym_GT_LPAREN] = ACTIONS(522), [sym_comment] = ACTIONS(182), [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(204), - [sym_word] = ACTIONS(510), + [sym_word] = ACTIONS(514), [anon_sym_SEMI] = ACTIONS(186), [anon_sym_LF] = ACTIONS(186), [anon_sym_AMP] = ACTIONS(186), @@ -13403,7 +13432,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [60] = { [aux_sym_concatenation_repeat1] = STATE(294), [sym_file_descriptor] = ACTIONS(224), - [sym__concat] = ACTIONS(520), + [sym__concat] = ACTIONS(524), [anon_sym_PIPE] = ACTIONS(228), [anon_sym_RPAREN] = ACTIONS(228), [anon_sym_SEMI_SEMI] = ACTIONS(228), @@ -13411,6 +13440,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(228), [anon_sym_PIPE_PIPE] = ACTIONS(228), [anon_sym_EQ_TILDE] = ACTIONS(228), + [anon_sym_EQ_EQ] = ACTIONS(228), [anon_sym_LT] = ACTIONS(228), [anon_sym_GT] = ACTIONS(228), [anon_sym_GT_GT] = ACTIONS(228), @@ -13441,7 +13471,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(134), [sym_command_substitution] = STATE(134), [aux_sym_string_repeat1] = STATE(296), - [anon_sym_DQUOTE] = ACTIONS(522), + [anon_sym_DQUOTE] = ACTIONS(526), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -13450,68 +13480,70 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(182), }, [62] = { - [sym_string] = STATE(299), + [sym_string] = STATE(298), [anon_sym_DQUOTE] = ACTIONS(106), - [anon_sym_DOLLAR] = ACTIONS(524), - [anon_sym_POUND] = ACTIONS(524), - [anon_sym_DASH] = ACTIONS(524), + [anon_sym_DOLLAR] = ACTIONS(528), + [sym_raw_string] = ACTIONS(530), + [anon_sym_POUND] = ACTIONS(528), + [anon_sym_DASH] = ACTIONS(528), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(526), - [anon_sym_STAR] = ACTIONS(524), - [anon_sym_AT] = ACTIONS(524), - [anon_sym_QMARK] = ACTIONS(524), - [anon_sym_0] = ACTIONS(528), - [anon_sym__] = ACTIONS(528), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(532), + [anon_sym_STAR] = ACTIONS(528), + [anon_sym_AT] = ACTIONS(528), + [anon_sym_QMARK] = ACTIONS(528), + [anon_sym_0] = ACTIONS(534), + [anon_sym__] = ACTIONS(534), }, [63] = { [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_file_descriptor] = ACTIONS(250), + [sym__concat] = ACTIONS(524), + [anon_sym_PIPE] = ACTIONS(252), + [anon_sym_RPAREN] = ACTIONS(252), + [anon_sym_SEMI_SEMI] = ACTIONS(252), + [anon_sym_PIPE_AMP] = ACTIONS(252), + [anon_sym_AMP_AMP] = ACTIONS(252), + [anon_sym_PIPE_PIPE] = ACTIONS(252), + [anon_sym_EQ_TILDE] = ACTIONS(252), + [anon_sym_EQ_EQ] = ACTIONS(252), + [anon_sym_LT] = ACTIONS(252), + [anon_sym_GT] = ACTIONS(252), + [anon_sym_GT_GT] = ACTIONS(252), + [anon_sym_AMP_GT] = ACTIONS(252), + [anon_sym_AMP_GT_GT] = ACTIONS(252), + [anon_sym_LT_AMP] = ACTIONS(252), + [anon_sym_GT_AMP] = ACTIONS(252), + [anon_sym_LT_LT] = ACTIONS(252), + [anon_sym_LT_LT_DASH] = ACTIONS(252), + [anon_sym_LT_LT_LT] = ACTIONS(252), + [sym__special_characters] = ACTIONS(252), + [anon_sym_DQUOTE] = ACTIONS(252), + [anon_sym_DOLLAR] = ACTIONS(252), + [sym_raw_string] = ACTIONS(252), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(252), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(252), + [anon_sym_BQUOTE] = ACTIONS(252), + [anon_sym_LT_LPAREN] = ACTIONS(252), + [anon_sym_GT_LPAREN] = ACTIONS(252), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(250), - [anon_sym_SEMI] = ACTIONS(250), - [anon_sym_LF] = ACTIONS(250), - [anon_sym_AMP] = ACTIONS(250), + [sym_word] = ACTIONS(252), + [anon_sym_SEMI] = ACTIONS(252), + [anon_sym_LF] = ACTIONS(252), + [anon_sym_AMP] = ACTIONS(252), }, [64] = { [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_variable_name] = ACTIONS(536), + [anon_sym_DOLLAR] = ACTIONS(538), + [anon_sym_POUND] = ACTIONS(540), + [anon_sym_DASH] = ACTIONS(538), [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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(542), + [anon_sym_STAR] = ACTIONS(538), + [anon_sym_AT] = ACTIONS(538), + [anon_sym_QMARK] = ACTIONS(538), + [anon_sym_0] = ACTIONS(544), + [anon_sym__] = ACTIONS(544), }, [65] = { [sym_for_statement] = STATE(305), @@ -13539,22 +13571,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(264), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(268), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -13562,17 +13594,17 @@ 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(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__special_characters] = ACTIONS(286), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(300), + [sym_word] = ACTIONS(302), }, [66] = { [sym_for_statement] = STATE(307), @@ -13600,22 +13632,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(304), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(306), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(308), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_LBRACK_LBRACK] = ACTIONS(312), + [anon_sym_declare] = ACTIONS(314), + [anon_sym_typeset] = ACTIONS(314), + [anon_sym_export] = ACTIONS(314), + [anon_sym_readonly] = ACTIONS(314), + [anon_sym_local] = ACTIONS(314), + [anon_sym_unset] = ACTIONS(316), + [anon_sym_unsetenv] = ACTIONS(316), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -13623,17 +13655,17 @@ 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(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__special_characters] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [anon_sym_DOLLAR] = ACTIONS(322), + [sym_raw_string] = ACTIONS(324), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), + [anon_sym_BQUOTE] = ACTIONS(330), + [anon_sym_LT_LPAREN] = ACTIONS(332), + [anon_sym_GT_LPAREN] = ACTIONS(332), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(332), + [sym_word] = ACTIONS(334), }, [67] = { [sym_for_statement] = STATE(309), @@ -13661,22 +13693,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(264), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(268), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -13684,66 +13716,67 @@ 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(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__special_characters] = ACTIONS(286), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(300), + [sym_word] = ACTIONS(302), }, [68] = { [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_file_descriptor] = ACTIONS(250), + [sym__concat] = ACTIONS(524), + [anon_sym_PIPE] = ACTIONS(252), + [anon_sym_RPAREN] = ACTIONS(252), + [anon_sym_SEMI_SEMI] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(546), + [anon_sym_PIPE_AMP] = ACTIONS(252), + [anon_sym_AMP_AMP] = ACTIONS(252), + [anon_sym_PIPE_PIPE] = ACTIONS(252), + [anon_sym_EQ_TILDE] = ACTIONS(252), + [anon_sym_EQ_EQ] = ACTIONS(252), + [anon_sym_LT] = ACTIONS(252), + [anon_sym_GT] = ACTIONS(252), + [anon_sym_GT_GT] = ACTIONS(252), + [anon_sym_AMP_GT] = ACTIONS(252), + [anon_sym_AMP_GT_GT] = ACTIONS(252), + [anon_sym_LT_AMP] = ACTIONS(252), + [anon_sym_GT_AMP] = ACTIONS(252), + [anon_sym_LT_LT] = ACTIONS(252), + [anon_sym_LT_LT_DASH] = ACTIONS(252), + [anon_sym_LT_LT_LT] = ACTIONS(252), + [sym__special_characters] = ACTIONS(252), + [anon_sym_DQUOTE] = ACTIONS(252), + [anon_sym_DOLLAR] = ACTIONS(252), + [sym_raw_string] = ACTIONS(252), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(252), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(252), + [anon_sym_BQUOTE] = ACTIONS(252), + [anon_sym_LT_LPAREN] = ACTIONS(252), + [anon_sym_GT_LPAREN] = ACTIONS(252), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(250), - [anon_sym_SEMI] = ACTIONS(250), - [anon_sym_LF] = ACTIONS(250), - [anon_sym_AMP] = ACTIONS(250), + [sym_word] = ACTIONS(252), + [anon_sym_SEMI] = ACTIONS(252), + [anon_sym_LF] = ACTIONS(252), + [anon_sym_AMP] = ACTIONS(252), }, [69] = { - [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_PIPE] = ACTIONS(548), + [anon_sym_RPAREN] = ACTIONS(550), + [anon_sym_SEMI_SEMI] = ACTIONS(552), + [anon_sym_PIPE_AMP] = ACTIONS(548), + [anon_sym_AMP_AMP] = ACTIONS(554), + [anon_sym_PIPE_PIPE] = ACTIONS(554), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(546), - [anon_sym_LF] = ACTIONS(546), - [anon_sym_AMP] = ACTIONS(546), + [anon_sym_SEMI] = ACTIONS(552), + [anon_sym_LF] = ACTIONS(552), + [anon_sym_AMP] = ACTIONS(552), }, [70] = { [sym_file_redirect] = STATE(207), @@ -13758,74 +13791,75 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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_file_descriptor] = ACTIONS(556), + [anon_sym_PIPE] = ACTIONS(354), + [anon_sym_RPAREN] = ACTIONS(354), + [anon_sym_SEMI_SEMI] = ACTIONS(354), + [anon_sym_PIPE_AMP] = ACTIONS(354), + [anon_sym_AMP_AMP] = ACTIONS(354), + [anon_sym_PIPE_PIPE] = ACTIONS(354), + [anon_sym_EQ_TILDE] = ACTIONS(558), + [anon_sym_EQ_EQ] = ACTIONS(558), + [anon_sym_LT] = ACTIONS(560), + [anon_sym_GT] = ACTIONS(560), + [anon_sym_GT_GT] = ACTIONS(560), + [anon_sym_AMP_GT] = ACTIONS(560), + [anon_sym_AMP_GT_GT] = ACTIONS(560), + [anon_sym_LT_AMP] = ACTIONS(560), + [anon_sym_GT_AMP] = ACTIONS(560), + [anon_sym_LT_LT] = ACTIONS(360), + [anon_sym_LT_LT_DASH] = ACTIONS(360), + [anon_sym_LT_LT_LT] = ACTIONS(562), + [sym__special_characters] = ACTIONS(564), + [anon_sym_DQUOTE] = ACTIONS(566), + [anon_sym_DOLLAR] = ACTIONS(568), + [sym_raw_string] = ACTIONS(570), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(572), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(574), + [anon_sym_BQUOTE] = ACTIONS(576), + [anon_sym_LT_LPAREN] = ACTIONS(578), + [anon_sym_GT_LPAREN] = ACTIONS(578), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(564), - [anon_sym_SEMI] = ACTIONS(352), - [anon_sym_LF] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(352), + [sym_word] = ACTIONS(570), + [anon_sym_SEMI] = ACTIONS(354), + [anon_sym_LF] = ACTIONS(354), + [anon_sym_AMP] = ACTIONS(354), }, [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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(548), + [anon_sym_RPAREN] = ACTIONS(550), + [anon_sym_SEMI_SEMI] = ACTIONS(552), + [anon_sym_PIPE_AMP] = ACTIONS(548), + [anon_sym_AMP_AMP] = ACTIONS(554), + [anon_sym_PIPE_PIPE] = ACTIONS(554), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(382), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(382), + [anon_sym_LT_AMP] = ACTIONS(382), + [anon_sym_GT_AMP] = ACTIONS(382), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(382), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(382), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(382), + [anon_sym_BQUOTE] = ACTIONS(382), + [anon_sym_LT_LPAREN] = ACTIONS(382), + [anon_sym_GT_LPAREN] = ACTIONS(382), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(380), - [anon_sym_SEMI] = ACTIONS(546), - [anon_sym_LF] = ACTIONS(546), - [anon_sym_AMP] = ACTIONS(546), + [sym_word] = ACTIONS(382), + [anon_sym_SEMI] = ACTIONS(552), + [anon_sym_LF] = ACTIONS(552), + [anon_sym_AMP] = ACTIONS(552), }, [72] = { [sym__assignment] = STATE(37), - [anon_sym_EQ] = ACTIONS(482), - [anon_sym_PLUS_EQ] = ACTIONS(482), + [anon_sym_EQ] = ACTIONS(486), + [anon_sym_PLUS_EQ] = ACTIONS(486), [sym_comment] = ACTIONS(56), }, [73] = { @@ -13905,7 +13939,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_process_substitution] = STATE(63), [aux_sym_command_repeat1] = STATE(215), [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(386), + [sym_variable_name] = ACTIONS(388), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -13913,7 +13947,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(574), + [sym__special_characters] = ACTIONS(580), [anon_sym_DQUOTE] = ACTIONS(106), [anon_sym_DOLLAR] = ACTIONS(108), [sym_raw_string] = ACTIONS(110), @@ -13923,7 +13957,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(118), [anon_sym_GT_LPAREN] = ACTIONS(118), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(576), + [sym_word] = ACTIONS(582), }, [75] = { [sym_concatenation] = STATE(330), @@ -13933,42 +13967,43 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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__special_characters] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_DOLLAR] = ACTIONS(588), + [sym_raw_string] = ACTIONS(590), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(592), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(594), + [anon_sym_BQUOTE] = ACTIONS(596), + [anon_sym_LT_LPAREN] = ACTIONS(598), + [anon_sym_GT_LPAREN] = ACTIONS(598), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(584), - [sym_regex] = ACTIONS(594), + [sym_word] = ACTIONS(590), + [sym_regex] = ACTIONS(600), }, [76] = { [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__concat] = ACTIONS(602), + [anon_sym_EQ_TILDE] = ACTIONS(604), + [anon_sym_EQ_EQ] = ACTIONS(604), + [anon_sym_RBRACK] = ACTIONS(606), + [sym__special_characters] = ACTIONS(608), + [anon_sym_DQUOTE] = ACTIONS(606), + [anon_sym_DOLLAR] = ACTIONS(604), + [sym_raw_string] = ACTIONS(606), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(606), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(606), + [anon_sym_BQUOTE] = ACTIONS(606), + [anon_sym_LT_LPAREN] = ACTIONS(606), + [anon_sym_GT_LPAREN] = ACTIONS(606), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(602), + [sym_word] = ACTIONS(608), }, [77] = { [sym_simple_expansion] = STATE(134), [sym_expansion] = STATE(134), [sym_command_substitution] = STATE(134), [aux_sym_string_repeat1] = STATE(334), - [anon_sym_DQUOTE] = ACTIONS(604), + [anon_sym_DQUOTE] = ACTIONS(610), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -13977,49 +14012,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(182), }, [78] = { - [sym_string] = STATE(337), + [sym_string] = STATE(336), [anon_sym_DQUOTE] = ACTIONS(126), - [anon_sym_DOLLAR] = ACTIONS(606), - [anon_sym_POUND] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(606), + [anon_sym_DOLLAR] = ACTIONS(612), + [sym_raw_string] = ACTIONS(614), + [anon_sym_POUND] = ACTIONS(612), + [anon_sym_DASH] = ACTIONS(612), [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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(616), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_AT] = ACTIONS(612), + [anon_sym_QMARK] = ACTIONS(612), + [anon_sym_0] = ACTIONS(618), + [anon_sym__] = ACTIONS(618), }, [79] = { [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__concat] = ACTIONS(602), + [anon_sym_EQ_TILDE] = ACTIONS(620), + [anon_sym_EQ_EQ] = ACTIONS(620), + [anon_sym_RBRACK] = ACTIONS(622), + [sym__special_characters] = ACTIONS(624), + [anon_sym_DQUOTE] = ACTIONS(622), + [anon_sym_DOLLAR] = ACTIONS(620), + [sym_raw_string] = ACTIONS(622), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(622), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(622), + [anon_sym_BQUOTE] = ACTIONS(622), + [anon_sym_LT_LPAREN] = ACTIONS(622), + [anon_sym_GT_LPAREN] = ACTIONS(622), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(616), + [sym_word] = ACTIONS(624), }, [80] = { [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_variable_name] = ACTIONS(626), + [anon_sym_DOLLAR] = ACTIONS(628), + [anon_sym_POUND] = ACTIONS(630), + [anon_sym_DASH] = ACTIONS(628), [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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(632), + [anon_sym_STAR] = ACTIONS(628), + [anon_sym_AT] = ACTIONS(628), + [anon_sym_QMARK] = ACTIONS(628), + [anon_sym_0] = ACTIONS(634), + [anon_sym__] = ACTIONS(634), }, [81] = { [sym_for_statement] = STATE(343), @@ -14047,22 +14084,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(264), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(268), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -14070,17 +14107,17 @@ 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(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__special_characters] = ACTIONS(286), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(300), + [sym_word] = ACTIONS(302), }, [82] = { [sym_for_statement] = STATE(345), @@ -14108,22 +14145,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(304), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(306), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(308), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_LBRACK_LBRACK] = ACTIONS(312), + [anon_sym_declare] = ACTIONS(314), + [anon_sym_typeset] = ACTIONS(314), + [anon_sym_export] = ACTIONS(314), + [anon_sym_readonly] = ACTIONS(314), + [anon_sym_local] = ACTIONS(314), + [anon_sym_unset] = ACTIONS(316), + [anon_sym_unsetenv] = ACTIONS(316), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -14131,17 +14168,17 @@ 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(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__special_characters] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [anon_sym_DOLLAR] = ACTIONS(322), + [sym_raw_string] = ACTIONS(324), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), + [anon_sym_BQUOTE] = ACTIONS(330), + [anon_sym_LT_LPAREN] = ACTIONS(332), + [anon_sym_GT_LPAREN] = ACTIONS(332), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(332), + [sym_word] = ACTIONS(334), }, [83] = { [sym_for_statement] = STATE(347), @@ -14169,22 +14206,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(264), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(268), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -14192,32 +14229,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(38), [anon_sym_LT_AMP] = ACTIONS(38), [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(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__special_characters] = ACTIONS(286), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(300), + [sym_word] = ACTIONS(302), }, [84] = { - [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), + [anon_sym_EQ_TILDE] = ACTIONS(620), + [anon_sym_EQ_EQ] = ACTIONS(620), + [anon_sym_RBRACK] = ACTIONS(622), + [sym__special_characters] = ACTIONS(624), + [anon_sym_DQUOTE] = ACTIONS(622), + [anon_sym_DOLLAR] = ACTIONS(620), + [sym_raw_string] = ACTIONS(622), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(622), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(622), + [anon_sym_BQUOTE] = ACTIONS(622), + [anon_sym_LT_LPAREN] = ACTIONS(622), + [anon_sym_GT_LPAREN] = ACTIONS(622), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(616), + [sym_word] = ACTIONS(624), }, [85] = { [sym_concatenation] = STATE(84), @@ -14229,8 +14267,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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_EQ_EQ] = ACTIONS(122), + [anon_sym_RBRACK] = ACTIONS(636), + [sym__special_characters] = ACTIONS(638), [anon_sym_DQUOTE] = ACTIONS(126), [anon_sym_DOLLAR] = ACTIONS(128), [sym_raw_string] = ACTIONS(130), @@ -14250,42 +14289,43 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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__special_characters] = ACTIONS(640), + [anon_sym_DQUOTE] = ACTIONS(642), + [anon_sym_DOLLAR] = ACTIONS(644), + [sym_raw_string] = ACTIONS(646), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(648), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(650), + [anon_sym_BQUOTE] = ACTIONS(652), + [anon_sym_LT_LPAREN] = ACTIONS(654), + [anon_sym_GT_LPAREN] = ACTIONS(654), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(638), - [sym_regex] = ACTIONS(648), + [sym_word] = ACTIONS(646), + [sym_regex] = ACTIONS(656), }, [87] = { [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__concat] = ACTIONS(658), + [anon_sym_EQ_TILDE] = ACTIONS(604), + [anon_sym_EQ_EQ] = ACTIONS(604), + [anon_sym_RBRACK_RBRACK] = ACTIONS(606), + [sym__special_characters] = ACTIONS(608), + [anon_sym_DQUOTE] = ACTIONS(606), + [anon_sym_DOLLAR] = ACTIONS(604), + [sym_raw_string] = ACTIONS(606), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(606), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(606), + [anon_sym_BQUOTE] = ACTIONS(606), + [anon_sym_LT_LPAREN] = ACTIONS(606), + [anon_sym_GT_LPAREN] = ACTIONS(606), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(602), + [sym_word] = ACTIONS(608), }, [88] = { [sym_simple_expansion] = STATE(134), [sym_expansion] = STATE(134), [sym_command_substitution] = STATE(134), [aux_sym_string_repeat1] = STATE(357), - [anon_sym_DQUOTE] = ACTIONS(652), + [anon_sym_DQUOTE] = ACTIONS(660), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -14294,41 +14334,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(182), }, [89] = { - [sym_string] = STATE(360), + [sym_string] = STATE(359), [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] = { - [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(616), - }, - [91] = { - [sym_subscript] = STATE(365), - [sym_variable_name] = ACTIONS(660), [anon_sym_DOLLAR] = ACTIONS(662), - [anon_sym_POUND] = ACTIONS(664), + [sym_raw_string] = ACTIONS(664), + [anon_sym_POUND] = ACTIONS(662), [anon_sym_DASH] = ACTIONS(662), [sym_comment] = ACTIONS(182), [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(666), @@ -14338,6 +14348,38 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_0] = ACTIONS(668), [anon_sym__] = ACTIONS(668), }, + [90] = { + [aux_sym_concatenation_repeat1] = STATE(355), + [sym__concat] = ACTIONS(658), + [anon_sym_EQ_TILDE] = ACTIONS(620), + [anon_sym_EQ_EQ] = ACTIONS(620), + [anon_sym_RBRACK_RBRACK] = ACTIONS(622), + [sym__special_characters] = ACTIONS(624), + [anon_sym_DQUOTE] = ACTIONS(622), + [anon_sym_DOLLAR] = ACTIONS(620), + [sym_raw_string] = ACTIONS(622), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(622), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(622), + [anon_sym_BQUOTE] = ACTIONS(622), + [anon_sym_LT_LPAREN] = ACTIONS(622), + [anon_sym_GT_LPAREN] = ACTIONS(622), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(624), + }, + [91] = { + [sym_subscript] = STATE(365), + [sym_variable_name] = ACTIONS(670), + [anon_sym_DOLLAR] = ACTIONS(672), + [anon_sym_POUND] = ACTIONS(674), + [anon_sym_DASH] = ACTIONS(672), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(676), + [anon_sym_STAR] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(672), + [anon_sym_QMARK] = ACTIONS(672), + [anon_sym_0] = ACTIONS(678), + [anon_sym__] = ACTIONS(678), + }, [92] = { [sym_for_statement] = STATE(366), [sym_while_statement] = STATE(366), @@ -14364,22 +14406,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(264), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(268), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -14387,17 +14429,17 @@ 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(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__special_characters] = ACTIONS(286), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(300), + [sym_word] = ACTIONS(302), }, [93] = { [sym_for_statement] = STATE(368), @@ -14425,22 +14467,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(304), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(306), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(308), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_LBRACK_LBRACK] = ACTIONS(312), + [anon_sym_declare] = ACTIONS(314), + [anon_sym_typeset] = ACTIONS(314), + [anon_sym_export] = ACTIONS(314), + [anon_sym_readonly] = ACTIONS(314), + [anon_sym_local] = ACTIONS(314), + [anon_sym_unset] = ACTIONS(316), + [anon_sym_unsetenv] = ACTIONS(316), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -14448,17 +14490,17 @@ 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(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__special_characters] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [anon_sym_DOLLAR] = ACTIONS(322), + [sym_raw_string] = ACTIONS(324), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), + [anon_sym_BQUOTE] = ACTIONS(330), + [anon_sym_LT_LPAREN] = ACTIONS(332), + [anon_sym_GT_LPAREN] = ACTIONS(332), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(332), + [sym_word] = ACTIONS(334), }, [94] = { [sym_for_statement] = STATE(370), @@ -14486,22 +14528,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(264), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(268), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -14509,32 +14551,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(38), [anon_sym_LT_AMP] = ACTIONS(38), [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(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__special_characters] = ACTIONS(286), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(300), + [sym_word] = ACTIONS(302), }, [95] = { - [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), + [anon_sym_EQ_TILDE] = ACTIONS(620), + [anon_sym_EQ_EQ] = ACTIONS(620), + [anon_sym_RBRACK_RBRACK] = ACTIONS(622), + [sym__special_characters] = ACTIONS(624), + [anon_sym_DQUOTE] = ACTIONS(622), + [anon_sym_DOLLAR] = ACTIONS(620), + [sym_raw_string] = ACTIONS(622), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(622), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(622), + [anon_sym_BQUOTE] = ACTIONS(622), + [anon_sym_LT_LPAREN] = ACTIONS(622), + [anon_sym_GT_LPAREN] = ACTIONS(622), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(616), + [sym_word] = ACTIONS(624), }, [96] = { [sym_concatenation] = STATE(95), @@ -14546,8 +14589,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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_EQ_EQ] = ACTIONS(142), + [anon_sym_RBRACK_RBRACK] = ACTIONS(636), + [sym__special_characters] = ACTIONS(680), [anon_sym_DQUOTE] = ACTIONS(146), [anon_sym_DOLLAR] = ACTIONS(148), [sym_raw_string] = ACTIONS(150), @@ -14562,41 +14606,41 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [97] = { [sym__assignment] = STATE(374), [anon_sym_LBRACK] = ACTIONS(64), - [anon_sym_EQ] = ACTIONS(672), - [anon_sym_PLUS_EQ] = ACTIONS(672), + [anon_sym_EQ] = ACTIONS(682), + [anon_sym_PLUS_EQ] = ACTIONS(682), [sym_comment] = ACTIONS(56), }, [98] = { [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__concat] = ACTIONS(684), + [sym_variable_name] = ACTIONS(686), + [anon_sym_PIPE] = ACTIONS(688), + [anon_sym_SEMI_SEMI] = ACTIONS(688), + [anon_sym_PIPE_AMP] = ACTIONS(688), + [anon_sym_AMP_AMP] = ACTIONS(688), + [anon_sym_PIPE_PIPE] = ACTIONS(688), + [sym__special_characters] = ACTIONS(688), + [anon_sym_DQUOTE] = ACTIONS(688), + [anon_sym_DOLLAR] = ACTIONS(688), + [sym_raw_string] = ACTIONS(688), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(688), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(688), + [anon_sym_BQUOTE] = ACTIONS(688), + [anon_sym_LT_LPAREN] = ACTIONS(688), + [anon_sym_GT_LPAREN] = ACTIONS(688), [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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(688), + [sym_word] = ACTIONS(688), + [anon_sym_SEMI] = ACTIONS(688), + [anon_sym_LF] = ACTIONS(688), + [anon_sym_AMP] = ACTIONS(688), }, [99] = { [sym_simple_expansion] = STATE(134), [sym_expansion] = STATE(134), [sym_command_substitution] = STATE(134), [aux_sym_string_repeat1] = STATE(378), - [anon_sym_DQUOTE] = ACTIONS(680), + [anon_sym_DQUOTE] = ACTIONS(690), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -14605,57 +14649,58 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(182), }, [100] = { - [sym_string] = STATE(381), - [anon_sym_DQUOTE] = ACTIONS(682), - [anon_sym_DOLLAR] = ACTIONS(684), - [anon_sym_POUND] = ACTIONS(684), - [anon_sym_DASH] = ACTIONS(684), + [sym_string] = STATE(380), + [anon_sym_DQUOTE] = ACTIONS(692), + [anon_sym_DOLLAR] = ACTIONS(694), + [sym_raw_string] = ACTIONS(696), + [anon_sym_POUND] = ACTIONS(694), + [anon_sym_DASH] = ACTIONS(694), [sym_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(688), - [anon_sym__] = ACTIONS(688), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(698), + [anon_sym_STAR] = ACTIONS(694), + [anon_sym_AT] = ACTIONS(694), + [anon_sym_QMARK] = ACTIONS(694), + [anon_sym_0] = ACTIONS(700), + [anon_sym__] = ACTIONS(700), }, [101] = { [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__concat] = ACTIONS(684), + [sym_variable_name] = ACTIONS(702), + [anon_sym_PIPE] = ACTIONS(704), + [anon_sym_SEMI_SEMI] = ACTIONS(704), + [anon_sym_PIPE_AMP] = ACTIONS(704), + [anon_sym_AMP_AMP] = ACTIONS(704), + [anon_sym_PIPE_PIPE] = ACTIONS(704), + [sym__special_characters] = ACTIONS(704), + [anon_sym_DQUOTE] = ACTIONS(704), + [anon_sym_DOLLAR] = ACTIONS(704), + [sym_raw_string] = ACTIONS(704), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(704), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(704), + [anon_sym_BQUOTE] = ACTIONS(704), + [anon_sym_LT_LPAREN] = ACTIONS(704), + [anon_sym_GT_LPAREN] = ACTIONS(704), [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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(704), + [sym_word] = ACTIONS(704), + [anon_sym_SEMI] = ACTIONS(704), + [anon_sym_LF] = ACTIONS(704), + [anon_sym_AMP] = ACTIONS(704), }, [102] = { [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_variable_name] = ACTIONS(706), + [anon_sym_DOLLAR] = ACTIONS(708), + [anon_sym_POUND] = ACTIONS(710), + [anon_sym_DASH] = ACTIONS(708), [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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(712), + [anon_sym_STAR] = ACTIONS(708), + [anon_sym_AT] = ACTIONS(708), + [anon_sym_QMARK] = ACTIONS(708), + [anon_sym_0] = ACTIONS(714), + [anon_sym__] = ACTIONS(714), }, [103] = { [sym_for_statement] = STATE(387), @@ -14683,22 +14728,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(264), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(268), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -14706,17 +14751,17 @@ 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(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__special_characters] = ACTIONS(286), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(300), + [sym_word] = ACTIONS(302), }, [104] = { [sym_for_statement] = STATE(389), @@ -14744,22 +14789,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(304), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(306), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(308), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_LBRACK_LBRACK] = ACTIONS(312), + [anon_sym_declare] = ACTIONS(314), + [anon_sym_typeset] = ACTIONS(314), + [anon_sym_export] = ACTIONS(314), + [anon_sym_readonly] = ACTIONS(314), + [anon_sym_local] = ACTIONS(314), + [anon_sym_unset] = ACTIONS(316), + [anon_sym_unsetenv] = ACTIONS(316), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -14767,17 +14812,17 @@ 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(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__special_characters] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [anon_sym_DOLLAR] = ACTIONS(322), + [sym_raw_string] = ACTIONS(324), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), + [anon_sym_BQUOTE] = ACTIONS(330), + [anon_sym_LT_LPAREN] = ACTIONS(332), + [anon_sym_GT_LPAREN] = ACTIONS(332), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(332), + [sym_word] = ACTIONS(334), }, [105] = { [sym_for_statement] = STATE(391), @@ -14805,22 +14850,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(264), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(268), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -14828,70 +14873,70 @@ 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(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__special_characters] = ACTIONS(286), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(300), + [sym_word] = ACTIONS(302), }, [106] = { - [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_variable_name] = ACTIONS(716), + [anon_sym_PIPE] = ACTIONS(718), + [anon_sym_RPAREN] = ACTIONS(718), + [anon_sym_SEMI_SEMI] = ACTIONS(718), + [anon_sym_PIPE_AMP] = ACTIONS(718), + [anon_sym_AMP_AMP] = ACTIONS(718), + [anon_sym_PIPE_PIPE] = ACTIONS(718), + [sym__special_characters] = ACTIONS(718), + [anon_sym_DQUOTE] = ACTIONS(718), + [anon_sym_DOLLAR] = ACTIONS(718), + [sym_raw_string] = ACTIONS(718), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(718), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(718), + [anon_sym_BQUOTE] = ACTIONS(718), + [anon_sym_LT_LPAREN] = ACTIONS(718), + [anon_sym_GT_LPAREN] = ACTIONS(718), [sym_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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(718), + [sym_word] = ACTIONS(718), + [anon_sym_SEMI] = ACTIONS(718), + [anon_sym_LF] = ACTIONS(718), + [anon_sym_AMP] = ACTIONS(718), }, [107] = { - [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_variable_name] = ACTIONS(702), + [anon_sym_PIPE] = ACTIONS(704), + [anon_sym_RPAREN] = ACTIONS(704), + [anon_sym_SEMI_SEMI] = ACTIONS(704), + [anon_sym_PIPE_AMP] = ACTIONS(704), + [anon_sym_AMP_AMP] = ACTIONS(704), + [anon_sym_PIPE_PIPE] = ACTIONS(704), + [sym__special_characters] = ACTIONS(704), + [anon_sym_DQUOTE] = ACTIONS(704), + [anon_sym_DOLLAR] = ACTIONS(704), + [sym_raw_string] = ACTIONS(704), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(704), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(704), + [anon_sym_BQUOTE] = ACTIONS(704), + [anon_sym_LT_LPAREN] = ACTIONS(704), + [anon_sym_GT_LPAREN] = ACTIONS(704), [sym_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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(704), + [sym_word] = ACTIONS(704), + [anon_sym_SEMI] = ACTIONS(704), + [anon_sym_LF] = ACTIONS(704), + [anon_sym_AMP] = ACTIONS(704), }, [108] = { [sym__assignment] = STATE(374), - [anon_sym_EQ] = ACTIONS(672), - [anon_sym_PLUS_EQ] = ACTIONS(672), + [anon_sym_EQ] = ACTIONS(682), + [anon_sym_PLUS_EQ] = ACTIONS(682), [sym_comment] = ACTIONS(56), }, [109] = { @@ -14906,11 +14951,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_PIPE] = ACTIONS(720), + [anon_sym_SEMI_SEMI] = ACTIONS(720), + [anon_sym_PIPE_AMP] = ACTIONS(720), + [anon_sym_AMP_AMP] = ACTIONS(720), + [anon_sym_PIPE_PIPE] = ACTIONS(720), [sym__special_characters] = ACTIONS(166), [anon_sym_DQUOTE] = ACTIONS(168), [anon_sym_DOLLAR] = ACTIONS(170), @@ -14923,64 +14968,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(182), [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(184), [sym_word] = ACTIONS(172), - [anon_sym_SEMI] = ACTIONS(708), - [anon_sym_LF] = ACTIONS(708), - [anon_sym_AMP] = ACTIONS(708), + [anon_sym_SEMI] = ACTIONS(720), + [anon_sym_LF] = ACTIONS(720), + [anon_sym_AMP] = ACTIONS(720), }, [110] = { [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), - [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(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_string] = STATE(400), - [anon_sym_DQUOTE] = ACTIONS(716), - [anon_sym_DOLLAR] = ACTIONS(718), - [anon_sym_POUND] = ACTIONS(718), - [anon_sym_DASH] = ACTIONS(718), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(720), - [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] = { - [aux_sym_concatenation_repeat1] = STATE(395), - [sym__concat] = ACTIONS(710), + [sym__concat] = ACTIONS(722), [anon_sym_PIPE] = ACTIONS(724), [anon_sym_SEMI_SEMI] = ACTIONS(724), [anon_sym_PIPE_AMP] = ACTIONS(724), @@ -15002,19 +14996,71 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(724), [anon_sym_AMP] = ACTIONS(724), }, + [111] = { + [sym_simple_expansion] = STATE(134), + [sym_expansion] = STATE(134), + [sym_command_substitution] = STATE(134), + [aux_sym_string_repeat1] = STATE(397), + [anon_sym_DQUOTE] = ACTIONS(726), + [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_string] = STATE(399), + [anon_sym_DQUOTE] = ACTIONS(728), + [anon_sym_DOLLAR] = ACTIONS(730), + [sym_raw_string] = ACTIONS(732), + [anon_sym_POUND] = ACTIONS(730), + [anon_sym_DASH] = ACTIONS(730), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(734), + [anon_sym_STAR] = ACTIONS(730), + [anon_sym_AT] = ACTIONS(730), + [anon_sym_QMARK] = ACTIONS(730), + [anon_sym_0] = ACTIONS(736), + [anon_sym__] = ACTIONS(736), + }, + [113] = { + [aux_sym_concatenation_repeat1] = STATE(395), + [sym__concat] = ACTIONS(722), + [anon_sym_PIPE] = ACTIONS(738), + [anon_sym_SEMI_SEMI] = ACTIONS(738), + [anon_sym_PIPE_AMP] = ACTIONS(738), + [anon_sym_AMP_AMP] = ACTIONS(738), + [anon_sym_PIPE_PIPE] = ACTIONS(738), + [sym__special_characters] = ACTIONS(738), + [anon_sym_DQUOTE] = ACTIONS(738), + [anon_sym_DOLLAR] = ACTIONS(738), + [sym_raw_string] = ACTIONS(738), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(738), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(738), + [anon_sym_BQUOTE] = ACTIONS(738), + [anon_sym_LT_LPAREN] = ACTIONS(738), + [anon_sym_GT_LPAREN] = ACTIONS(738), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(738), + [sym_word] = ACTIONS(738), + [anon_sym_SEMI] = ACTIONS(738), + [anon_sym_LF] = ACTIONS(738), + [anon_sym_AMP] = ACTIONS(738), + }, [114] = { [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_variable_name] = ACTIONS(740), + [anon_sym_DOLLAR] = ACTIONS(742), + [anon_sym_POUND] = ACTIONS(744), + [anon_sym_DASH] = ACTIONS(742), [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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(746), + [anon_sym_STAR] = ACTIONS(742), + [anon_sym_AT] = ACTIONS(742), + [anon_sym_QMARK] = ACTIONS(742), + [anon_sym_0] = ACTIONS(748), + [anon_sym__] = ACTIONS(748), }, [115] = { [sym_for_statement] = STATE(406), @@ -15042,22 +15088,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(264), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(268), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -15065,17 +15111,17 @@ 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(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__special_characters] = ACTIONS(286), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(300), + [sym_word] = ACTIONS(302), }, [116] = { [sym_for_statement] = STATE(408), @@ -15103,22 +15149,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(304), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(306), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(308), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_LBRACK_LBRACK] = ACTIONS(312), + [anon_sym_declare] = ACTIONS(314), + [anon_sym_typeset] = ACTIONS(314), + [anon_sym_export] = ACTIONS(314), + [anon_sym_readonly] = ACTIONS(314), + [anon_sym_local] = ACTIONS(314), + [anon_sym_unset] = ACTIONS(316), + [anon_sym_unsetenv] = ACTIONS(316), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -15126,17 +15172,17 @@ 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(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__special_characters] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [anon_sym_DOLLAR] = ACTIONS(322), + [sym_raw_string] = ACTIONS(324), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), + [anon_sym_BQUOTE] = ACTIONS(330), + [anon_sym_LT_LPAREN] = ACTIONS(332), + [anon_sym_GT_LPAREN] = ACTIONS(332), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(332), + [sym_word] = ACTIONS(334), }, [117] = { [sym_for_statement] = STATE(410), @@ -15164,22 +15210,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(264), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(268), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -15187,63 +15233,63 @@ 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(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__special_characters] = ACTIONS(286), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(300), + [sym_word] = ACTIONS(302), }, [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), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_RPAREN] = ACTIONS(750), + [anon_sym_SEMI_SEMI] = ACTIONS(750), + [anon_sym_PIPE_AMP] = ACTIONS(750), + [anon_sym_AMP_AMP] = ACTIONS(750), + [anon_sym_PIPE_PIPE] = ACTIONS(750), + [sym__special_characters] = ACTIONS(750), + [anon_sym_DQUOTE] = ACTIONS(750), + [anon_sym_DOLLAR] = ACTIONS(750), + [sym_raw_string] = ACTIONS(750), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(750), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(750), + [anon_sym_BQUOTE] = ACTIONS(750), + [anon_sym_LT_LPAREN] = ACTIONS(750), + [anon_sym_GT_LPAREN] = ACTIONS(750), [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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(750), + [sym_word] = ACTIONS(750), + [anon_sym_SEMI] = ACTIONS(750), + [anon_sym_LF] = ACTIONS(750), + [anon_sym_AMP] = ACTIONS(750), }, [119] = { - [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), + [anon_sym_PIPE] = ACTIONS(738), + [anon_sym_RPAREN] = ACTIONS(738), + [anon_sym_SEMI_SEMI] = ACTIONS(738), + [anon_sym_PIPE_AMP] = ACTIONS(738), + [anon_sym_AMP_AMP] = ACTIONS(738), + [anon_sym_PIPE_PIPE] = ACTIONS(738), + [sym__special_characters] = ACTIONS(738), + [anon_sym_DQUOTE] = ACTIONS(738), + [anon_sym_DOLLAR] = ACTIONS(738), + [sym_raw_string] = ACTIONS(738), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(738), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(738), + [anon_sym_BQUOTE] = ACTIONS(738), + [anon_sym_LT_LPAREN] = ACTIONS(738), + [anon_sym_GT_LPAREN] = ACTIONS(738), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(724), - [sym_word] = ACTIONS(724), - [anon_sym_SEMI] = ACTIONS(724), - [anon_sym_LF] = ACTIONS(724), - [anon_sym_AMP] = ACTIONS(724), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(738), + [sym_word] = ACTIONS(738), + [anon_sym_SEMI] = ACTIONS(738), + [anon_sym_LF] = ACTIONS(738), + [anon_sym_AMP] = ACTIONS(738), }, [120] = { [sym_concatenation] = STATE(119), @@ -15254,11 +15300,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_PIPE] = ACTIONS(752), + [anon_sym_SEMI_SEMI] = ACTIONS(752), + [anon_sym_PIPE_AMP] = ACTIONS(752), + [anon_sym_AMP_AMP] = ACTIONS(752), + [anon_sym_PIPE_PIPE] = ACTIONS(752), [sym__special_characters] = ACTIONS(188), [anon_sym_DQUOTE] = ACTIONS(190), [anon_sym_DOLLAR] = ACTIONS(192), @@ -15271,40 +15317,40 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(182), [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(204), [sym_word] = ACTIONS(194), - [anon_sym_SEMI] = ACTIONS(738), - [anon_sym_LF] = ACTIONS(738), - [anon_sym_AMP] = ACTIONS(738), + [anon_sym_SEMI] = ACTIONS(752), + [anon_sym_LF] = ACTIONS(752), + [anon_sym_AMP] = ACTIONS(752), }, [121] = { [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(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), - [sym__special_characters] = ACTIONS(744), - [anon_sym_DQUOTE] = ACTIONS(740), - [anon_sym_DOLLAR] = ACTIONS(744), - [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_file_descriptor] = ACTIONS(754), + [sym__concat] = ACTIONS(756), + [sym_variable_name] = ACTIONS(754), + [anon_sym_LT] = ACTIONS(758), + [anon_sym_GT] = ACTIONS(758), + [anon_sym_GT_GT] = ACTIONS(754), + [anon_sym_AMP_GT] = ACTIONS(758), + [anon_sym_AMP_GT_GT] = ACTIONS(754), + [anon_sym_LT_AMP] = ACTIONS(754), + [anon_sym_GT_AMP] = ACTIONS(754), + [sym__special_characters] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(754), + [anon_sym_DOLLAR] = ACTIONS(758), + [sym_raw_string] = ACTIONS(754), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(754), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(754), + [anon_sym_BQUOTE] = ACTIONS(754), + [anon_sym_LT_LPAREN] = ACTIONS(754), + [anon_sym_GT_LPAREN] = ACTIONS(754), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(744), + [sym_word] = ACTIONS(758), }, [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_DQUOTE] = ACTIONS(760), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -15313,56 +15359,57 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(182), }, [123] = { - [sym_string] = STATE(419), + [sym_string] = STATE(418), [anon_sym_DQUOTE] = ACTIONS(208), - [anon_sym_DOLLAR] = ACTIONS(748), - [anon_sym_POUND] = ACTIONS(748), - [anon_sym_DASH] = ACTIONS(748), + [anon_sym_DOLLAR] = ACTIONS(762), + [sym_raw_string] = ACTIONS(764), + [anon_sym_POUND] = ACTIONS(762), + [anon_sym_DASH] = ACTIONS(762), [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(752), - [anon_sym__] = ACTIONS(752), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(766), + [anon_sym_STAR] = ACTIONS(762), + [anon_sym_AT] = ACTIONS(762), + [anon_sym_QMARK] = ACTIONS(762), + [anon_sym_0] = ACTIONS(768), + [anon_sym__] = ACTIONS(768), }, [124] = { [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(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_file_descriptor] = ACTIONS(770), + [sym__concat] = ACTIONS(756), + [sym_variable_name] = ACTIONS(770), + [anon_sym_LT] = ACTIONS(772), + [anon_sym_GT] = ACTIONS(772), + [anon_sym_GT_GT] = ACTIONS(770), + [anon_sym_AMP_GT] = ACTIONS(772), + [anon_sym_AMP_GT_GT] = ACTIONS(770), + [anon_sym_LT_AMP] = ACTIONS(770), + [anon_sym_GT_AMP] = ACTIONS(770), + [sym__special_characters] = ACTIONS(772), + [anon_sym_DQUOTE] = ACTIONS(770), + [anon_sym_DOLLAR] = ACTIONS(772), + [sym_raw_string] = ACTIONS(770), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(770), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(770), + [anon_sym_BQUOTE] = ACTIONS(770), + [anon_sym_LT_LPAREN] = ACTIONS(770), + [anon_sym_GT_LPAREN] = ACTIONS(770), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(756), + [sym_word] = ACTIONS(772), }, [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_variable_name] = ACTIONS(774), + [anon_sym_DOLLAR] = ACTIONS(776), + [anon_sym_POUND] = ACTIONS(778), + [anon_sym_DASH] = ACTIONS(776), [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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(780), + [anon_sym_STAR] = ACTIONS(776), + [anon_sym_AT] = ACTIONS(776), + [anon_sym_QMARK] = ACTIONS(776), + [anon_sym_0] = ACTIONS(782), + [anon_sym__] = ACTIONS(782), }, [126] = { [sym_for_statement] = STATE(425), @@ -15390,22 +15437,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(264), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(268), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -15413,17 +15460,17 @@ 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(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__special_characters] = ACTIONS(286), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(300), + [sym_word] = ACTIONS(302), }, [127] = { [sym_for_statement] = STATE(427), @@ -15451,22 +15498,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(304), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(306), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(308), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_LBRACK_LBRACK] = ACTIONS(312), + [anon_sym_declare] = ACTIONS(314), + [anon_sym_typeset] = ACTIONS(314), + [anon_sym_export] = ACTIONS(314), + [anon_sym_readonly] = ACTIONS(314), + [anon_sym_local] = ACTIONS(314), + [anon_sym_unset] = ACTIONS(316), + [anon_sym_unsetenv] = ACTIONS(316), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -15474,17 +15521,17 @@ 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(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__special_characters] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [anon_sym_DOLLAR] = ACTIONS(322), + [sym_raw_string] = ACTIONS(324), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), + [anon_sym_BQUOTE] = ACTIONS(330), + [anon_sym_LT_LPAREN] = ACTIONS(332), + [anon_sym_GT_LPAREN] = ACTIONS(332), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(332), + [sym_word] = ACTIONS(334), }, [128] = { [sym_for_statement] = STATE(429), @@ -15512,22 +15559,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(264), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(268), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -15535,39 +15582,39 @@ 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(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__special_characters] = ACTIONS(286), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(300), + [sym_word] = ACTIONS(302), }, [129] = { - [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_file_descriptor] = ACTIONS(770), + [sym_variable_name] = ACTIONS(770), + [anon_sym_LT] = ACTIONS(772), + [anon_sym_GT] = ACTIONS(772), + [anon_sym_GT_GT] = ACTIONS(770), + [anon_sym_AMP_GT] = ACTIONS(772), + [anon_sym_AMP_GT_GT] = ACTIONS(770), + [anon_sym_LT_AMP] = ACTIONS(770), + [anon_sym_GT_AMP] = ACTIONS(770), + [sym__special_characters] = ACTIONS(772), + [anon_sym_DQUOTE] = ACTIONS(770), + [anon_sym_DOLLAR] = ACTIONS(772), + [sym_raw_string] = ACTIONS(770), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(770), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(770), + [anon_sym_BQUOTE] = ACTIONS(770), + [anon_sym_LT_LPAREN] = ACTIONS(770), + [anon_sym_GT_LPAREN] = ACTIONS(770), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(756), + [sym_word] = ACTIONS(772), }, [130] = { [sym_string] = STATE(431), @@ -15576,123 +15623,125 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(431), [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), - [sym__special_characters] = ACTIONS(768), + [sym__special_characters] = ACTIONS(784), [anon_sym_DQUOTE] = ACTIONS(42), [anon_sym_DOLLAR] = ACTIONS(44), - [sym_raw_string] = ACTIONS(770), + [sym_raw_string] = ACTIONS(786), [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), + [sym_word] = ACTIONS(784), }, [131] = { [aux_sym_concatenation_repeat1] = STATE(432), - [sym_file_descriptor] = ACTIONS(772), + [sym_file_descriptor] = ACTIONS(788), [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), + [anon_sym_PIPE] = ACTIONS(790), + [anon_sym_SEMI_SEMI] = ACTIONS(790), + [anon_sym_PIPE_AMP] = ACTIONS(790), + [anon_sym_AMP_AMP] = ACTIONS(790), + [anon_sym_PIPE_PIPE] = ACTIONS(790), + [anon_sym_EQ_TILDE] = ACTIONS(790), + [anon_sym_EQ_EQ] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(790), + [anon_sym_GT] = ACTIONS(790), + [anon_sym_GT_GT] = ACTIONS(790), + [anon_sym_AMP_GT] = ACTIONS(790), + [anon_sym_AMP_GT_GT] = ACTIONS(790), + [anon_sym_LT_AMP] = ACTIONS(790), + [anon_sym_GT_AMP] = ACTIONS(790), + [anon_sym_LT_LT] = ACTIONS(790), + [anon_sym_LT_LT_DASH] = ACTIONS(790), + [anon_sym_LT_LT_LT] = ACTIONS(790), + [sym__special_characters] = ACTIONS(790), + [anon_sym_DQUOTE] = ACTIONS(790), + [anon_sym_DOLLAR] = ACTIONS(790), + [sym_raw_string] = ACTIONS(790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(790), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(790), + [anon_sym_BQUOTE] = ACTIONS(790), + [anon_sym_LT_LPAREN] = ACTIONS(790), + [anon_sym_GT_LPAREN] = ACTIONS(790), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(774), - [anon_sym_SEMI] = ACTIONS(774), - [anon_sym_LF] = ACTIONS(774), - [anon_sym_AMP] = ACTIONS(774), + [sym_word] = ACTIONS(790), + [anon_sym_SEMI] = ACTIONS(790), + [anon_sym_LF] = ACTIONS(790), + [anon_sym_AMP] = ACTIONS(790), }, [132] = { - [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_file_descriptor] = ACTIONS(792), + [sym__concat] = ACTIONS(792), + [anon_sym_PIPE] = ACTIONS(794), + [anon_sym_SEMI_SEMI] = ACTIONS(794), + [anon_sym_PIPE_AMP] = ACTIONS(794), + [anon_sym_AMP_AMP] = ACTIONS(794), + [anon_sym_PIPE_PIPE] = ACTIONS(794), + [anon_sym_EQ_TILDE] = ACTIONS(794), + [anon_sym_EQ_EQ] = ACTIONS(794), + [anon_sym_LT] = ACTIONS(794), + [anon_sym_GT] = ACTIONS(794), + [anon_sym_GT_GT] = ACTIONS(794), + [anon_sym_AMP_GT] = ACTIONS(794), + [anon_sym_AMP_GT_GT] = ACTIONS(794), + [anon_sym_LT_AMP] = ACTIONS(794), + [anon_sym_GT_AMP] = ACTIONS(794), + [anon_sym_LT_LT] = ACTIONS(794), + [anon_sym_LT_LT_DASH] = ACTIONS(794), + [anon_sym_LT_LT_LT] = ACTIONS(794), + [sym__special_characters] = ACTIONS(794), + [anon_sym_DQUOTE] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(794), + [sym_raw_string] = ACTIONS(794), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(794), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(794), + [anon_sym_BQUOTE] = ACTIONS(794), + [anon_sym_LT_LPAREN] = ACTIONS(794), + [anon_sym_GT_LPAREN] = ACTIONS(794), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(778), - [anon_sym_SEMI] = ACTIONS(778), - [anon_sym_LF] = ACTIONS(778), - [anon_sym_AMP] = ACTIONS(778), + [sym_word] = ACTIONS(794), + [anon_sym_SEMI] = ACTIONS(794), + [anon_sym_LF] = ACTIONS(794), + [anon_sym_AMP] = ACTIONS(794), }, [133] = { - [anon_sym_DOLLAR] = ACTIONS(780), - [sym__string_content] = ACTIONS(782), - [anon_sym_POUND] = ACTIONS(784), - [anon_sym_DASH] = ACTIONS(784), + [anon_sym_DOLLAR] = ACTIONS(796), + [sym__string_content] = ACTIONS(798), + [anon_sym_POUND] = ACTIONS(800), + [anon_sym_DASH] = ACTIONS(800), [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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(802), + [anon_sym_STAR] = ACTIONS(800), + [anon_sym_AT] = ACTIONS(800), + [anon_sym_QMARK] = ACTIONS(800), + [anon_sym_0] = ACTIONS(804), + [anon_sym__] = ACTIONS(804), }, [134] = { - [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__concat] = ACTIONS(806), + [anon_sym_DQUOTE] = ACTIONS(808), + [anon_sym_DOLLAR] = ACTIONS(808), + [sym__string_content] = ACTIONS(810), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(808), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(808), + [anon_sym_BQUOTE] = ACTIONS(808), [sym_comment] = ACTIONS(182), }, [135] = { [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_variable_name] = ACTIONS(812), + [anon_sym_DOLLAR] = ACTIONS(814), + [anon_sym_POUND] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(814), [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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(818), + [anon_sym_STAR] = ACTIONS(814), + [anon_sym_AT] = ACTIONS(814), + [anon_sym_QMARK] = ACTIONS(814), + [anon_sym_0] = ACTIONS(820), + [anon_sym__] = ACTIONS(820), }, [136] = { [sym_for_statement] = STATE(442), @@ -15720,22 +15769,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(264), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(268), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -15743,17 +15792,17 @@ 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(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__special_characters] = ACTIONS(286), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(300), + [sym_word] = ACTIONS(302), }, [137] = { [sym_for_statement] = STATE(444), @@ -15781,22 +15830,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(304), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(306), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(308), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_LBRACK_LBRACK] = ACTIONS(312), + [anon_sym_declare] = ACTIONS(314), + [anon_sym_typeset] = ACTIONS(314), + [anon_sym_export] = ACTIONS(314), + [anon_sym_readonly] = ACTIONS(314), + [anon_sym_local] = ACTIONS(314), + [anon_sym_unset] = ACTIONS(316), + [anon_sym_unsetenv] = ACTIONS(316), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -15804,24 +15853,24 @@ 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(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__special_characters] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [anon_sym_DOLLAR] = ACTIONS(322), + [sym_raw_string] = ACTIONS(324), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), + [anon_sym_BQUOTE] = ACTIONS(330), + [anon_sym_LT_LPAREN] = ACTIONS(332), + [anon_sym_GT_LPAREN] = ACTIONS(332), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(332), + [sym_word] = ACTIONS(334), }, [138] = { [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_DQUOTE] = ACTIONS(822), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -15830,110 +15879,113 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(182), }, [139] = { - [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_file_descriptor] = ACTIONS(824), + [sym__concat] = ACTIONS(824), + [anon_sym_PIPE] = ACTIONS(826), + [anon_sym_SEMI_SEMI] = ACTIONS(826), + [anon_sym_PIPE_AMP] = ACTIONS(826), + [anon_sym_AMP_AMP] = ACTIONS(826), + [anon_sym_PIPE_PIPE] = ACTIONS(826), + [anon_sym_EQ_TILDE] = ACTIONS(826), + [anon_sym_EQ_EQ] = ACTIONS(826), + [anon_sym_LT] = ACTIONS(826), + [anon_sym_GT] = ACTIONS(826), + [anon_sym_GT_GT] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(826), + [anon_sym_AMP_GT_GT] = ACTIONS(826), + [anon_sym_LT_AMP] = ACTIONS(826), + [anon_sym_GT_AMP] = ACTIONS(826), + [anon_sym_LT_LT] = ACTIONS(826), + [anon_sym_LT_LT_DASH] = ACTIONS(826), + [anon_sym_LT_LT_LT] = ACTIONS(826), + [sym__special_characters] = ACTIONS(826), + [anon_sym_DQUOTE] = ACTIONS(826), + [anon_sym_DOLLAR] = ACTIONS(826), + [sym_raw_string] = ACTIONS(826), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(826), + [anon_sym_BQUOTE] = ACTIONS(826), + [anon_sym_LT_LPAREN] = ACTIONS(826), + [anon_sym_GT_LPAREN] = ACTIONS(826), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(810), - [anon_sym_SEMI] = ACTIONS(810), - [anon_sym_LF] = ACTIONS(810), - [anon_sym_AMP] = ACTIONS(810), + [sym_word] = ACTIONS(826), + [anon_sym_SEMI] = ACTIONS(826), + [anon_sym_LF] = ACTIONS(826), + [anon_sym_AMP] = ACTIONS(826), }, [140] = { - [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_file_descriptor] = ACTIONS(828), + [sym__concat] = ACTIONS(828), + [anon_sym_PIPE] = ACTIONS(830), + [anon_sym_SEMI_SEMI] = ACTIONS(830), + [anon_sym_PIPE_AMP] = ACTIONS(830), + [anon_sym_AMP_AMP] = ACTIONS(830), + [anon_sym_PIPE_PIPE] = ACTIONS(830), + [anon_sym_EQ_TILDE] = ACTIONS(830), + [anon_sym_EQ_EQ] = ACTIONS(830), + [anon_sym_LT] = ACTIONS(830), + [anon_sym_GT] = ACTIONS(830), + [anon_sym_GT_GT] = ACTIONS(830), + [anon_sym_AMP_GT] = ACTIONS(830), + [anon_sym_AMP_GT_GT] = ACTIONS(830), + [anon_sym_LT_AMP] = ACTIONS(830), + [anon_sym_GT_AMP] = ACTIONS(830), + [anon_sym_LT_LT] = ACTIONS(830), + [anon_sym_LT_LT_DASH] = ACTIONS(830), + [anon_sym_LT_LT_LT] = ACTIONS(830), + [sym__special_characters] = ACTIONS(830), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(830), + [sym_raw_string] = ACTIONS(830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(830), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_LT_LPAREN] = ACTIONS(830), + [anon_sym_GT_LPAREN] = ACTIONS(830), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(814), - [anon_sym_SEMI] = ACTIONS(814), - [anon_sym_LF] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(814), + [sym_word] = ACTIONS(830), + [anon_sym_SEMI] = ACTIONS(830), + [anon_sym_LF] = ACTIONS(830), + [anon_sym_AMP] = ACTIONS(830), }, [141] = { - [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(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_file_descriptor] = ACTIONS(832), + [sym__concat] = ACTIONS(832), + [anon_sym_PIPE] = ACTIONS(834), + [anon_sym_SEMI_SEMI] = ACTIONS(834), + [anon_sym_PIPE_AMP] = ACTIONS(834), + [anon_sym_AMP_AMP] = ACTIONS(834), + [anon_sym_PIPE_PIPE] = ACTIONS(834), + [anon_sym_EQ_TILDE] = ACTIONS(834), + [anon_sym_EQ_EQ] = ACTIONS(834), + [anon_sym_LT] = ACTIONS(834), + [anon_sym_GT] = ACTIONS(834), + [anon_sym_GT_GT] = ACTIONS(834), + [anon_sym_AMP_GT] = ACTIONS(834), + [anon_sym_AMP_GT_GT] = ACTIONS(834), + [anon_sym_LT_AMP] = ACTIONS(834), + [anon_sym_GT_AMP] = ACTIONS(834), + [anon_sym_LT_LT] = ACTIONS(834), + [anon_sym_LT_LT_DASH] = ACTIONS(834), + [anon_sym_LT_LT_LT] = ACTIONS(834), + [sym__special_characters] = ACTIONS(834), + [anon_sym_DQUOTE] = ACTIONS(834), + [anon_sym_DOLLAR] = ACTIONS(834), + [sym_raw_string] = ACTIONS(834), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(834), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(834), + [anon_sym_BQUOTE] = ACTIONS(834), + [anon_sym_LT_LPAREN] = ACTIONS(834), + [anon_sym_GT_LPAREN] = ACTIONS(834), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(818), - [anon_sym_SEMI] = ACTIONS(818), - [anon_sym_LF] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(818), + [sym_word] = ACTIONS(834), + [anon_sym_SEMI] = ACTIONS(834), + [anon_sym_LF] = ACTIONS(834), + [anon_sym_AMP] = ACTIONS(834), }, [142] = { - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(822), + [anon_sym_LBRACK] = ACTIONS(836), + [anon_sym_EQ] = ACTIONS(838), [sym_comment] = ACTIONS(56), }, [143] = { @@ -15945,39 +15997,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(840), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [144] = { [sym_subscript] = STATE(465), - [sym_variable_name] = ACTIONS(850), - [anon_sym_DOLLAR] = ACTIONS(852), - [anon_sym_DASH] = ACTIONS(852), + [sym_variable_name] = ACTIONS(866), + [anon_sym_DOLLAR] = ACTIONS(868), + [anon_sym_DASH] = ACTIONS(868), [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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(870), + [anon_sym_STAR] = ACTIONS(868), + [anon_sym_AT] = ACTIONS(868), + [anon_sym_QMARK] = ACTIONS(868), + [anon_sym_0] = ACTIONS(872), + [anon_sym__] = ACTIONS(872), }, [145] = { [sym_concatenation] = STATE(451), @@ -15988,26 +16040,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(874), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(876), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [146] = { [sym_concatenation] = STATE(451), @@ -16018,37 +16070,37 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(878), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(880), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [147] = { [sym__assignment] = STATE(473), [anon_sym_LBRACK] = ACTIONS(64), - [anon_sym_EQ] = ACTIONS(866), - [anon_sym_PLUS_EQ] = ACTIONS(866), + [anon_sym_EQ] = ACTIONS(882), + [anon_sym_PLUS_EQ] = ACTIONS(882), [sym_comment] = ACTIONS(56), }, [148] = { [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(868), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(884), }, [149] = { [sym__terminated_statement] = STATE(475), @@ -16182,21 +16234,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(478), [sym_command_substitution] = STATE(478), [sym_process_substitution] = STATE(478), - [sym__special_characters] = ACTIONS(870), + [sym__special_characters] = ACTIONS(886), [anon_sym_DQUOTE] = ACTIONS(72), [anon_sym_DOLLAR] = ACTIONS(74), - [sym_raw_string] = ACTIONS(872), + [sym_raw_string] = ACTIONS(888), [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(874), + [sym_word] = ACTIONS(890), }, [152] = { [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(876), + [sym_word] = ACTIONS(892), }, [153] = { [sym__terminated_statement] = STATE(25), @@ -16271,6 +16323,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_process_substitution] = STATE(79), [aux_sym_command_repeat2] = STATE(484), [anon_sym_EQ_TILDE] = ACTIONS(122), + [anon_sym_EQ_EQ] = ACTIONS(122), [sym__special_characters] = ACTIONS(124), [anon_sym_DQUOTE] = ACTIONS(126), [anon_sym_DOLLAR] = ACTIONS(128), @@ -16293,6 +16346,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_process_substitution] = STATE(90), [aux_sym_command_repeat2] = STATE(485), [anon_sym_EQ_TILDE] = ACTIONS(142), + [anon_sym_EQ_EQ] = ACTIONS(142), [sym__special_characters] = ACTIONS(144), [anon_sym_DQUOTE] = ACTIONS(146), [anon_sym_DOLLAR] = ACTIONS(148), @@ -16316,24 +16370,24 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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_variable_name] = ACTIONS(894), + [anon_sym_PIPE] = ACTIONS(896), + [anon_sym_RPAREN] = ACTIONS(898), + [anon_sym_PIPE_AMP] = ACTIONS(898), + [anon_sym_AMP_AMP] = ACTIONS(898), + [anon_sym_PIPE_PIPE] = ACTIONS(898), + [sym__special_characters] = ACTIONS(900), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_DOLLAR] = ACTIONS(904), + [sym_raw_string] = ACTIONS(906), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(908), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(910), + [anon_sym_BQUOTE] = ACTIONS(912), + [anon_sym_LT_LPAREN] = ACTIONS(914), + [anon_sym_GT_LPAREN] = ACTIONS(914), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(900), - [sym_word] = ACTIONS(902), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(916), + [sym_word] = ACTIONS(918), }, [157] = { [sym_concatenation] = STATE(508), @@ -16344,47 +16398,48 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_PIPE] = ACTIONS(920), + [anon_sym_RPAREN] = ACTIONS(922), + [anon_sym_PIPE_AMP] = ACTIONS(922), + [anon_sym_AMP_AMP] = ACTIONS(922), + [anon_sym_PIPE_PIPE] = ACTIONS(922), + [sym__special_characters] = ACTIONS(924), + [anon_sym_DQUOTE] = ACTIONS(926), + [anon_sym_DOLLAR] = ACTIONS(928), + [sym_raw_string] = ACTIONS(930), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(932), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(934), + [anon_sym_BQUOTE] = ACTIONS(936), + [anon_sym_LT_LPAREN] = ACTIONS(938), + [anon_sym_GT_LPAREN] = ACTIONS(938), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(924), - [sym_word] = ACTIONS(926), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(940), + [sym_word] = ACTIONS(942), }, [158] = { [aux_sym_concatenation_repeat1] = STATE(511), [sym_file_descriptor] = ACTIONS(224), - [sym__concat] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(930), + [sym__concat] = ACTIONS(944), + [anon_sym_PIPE] = ACTIONS(946), [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_EQ_TILDE] = ACTIONS(946), + [anon_sym_EQ_EQ] = ACTIONS(946), + [anon_sym_LT] = ACTIONS(946), + [anon_sym_GT] = ACTIONS(946), [anon_sym_GT_GT] = ACTIONS(224), - [anon_sym_AMP_GT] = ACTIONS(930), + [anon_sym_AMP_GT] = ACTIONS(946), [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] = ACTIONS(946), [anon_sym_LT_LT_DASH] = ACTIONS(224), [anon_sym_LT_LT_LT] = ACTIONS(224), - [sym__special_characters] = ACTIONS(930), + [sym__special_characters] = ACTIONS(946), [anon_sym_DQUOTE] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(930), + [anon_sym_DOLLAR] = ACTIONS(946), [sym_raw_string] = ACTIONS(224), [anon_sym_DOLLAR_LBRACE] = ACTIONS(224), [anon_sym_DOLLAR_LPAREN] = ACTIONS(224), @@ -16399,7 +16454,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(134), [sym_command_substitution] = STATE(134), [aux_sym_string_repeat1] = STATE(513), - [anon_sym_DQUOTE] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(948), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -16408,64 +16463,66 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(182), }, [160] = { - [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_string] = STATE(515), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(950), + [sym_raw_string] = ACTIONS(952), + [anon_sym_POUND] = ACTIONS(950), + [anon_sym_DASH] = ACTIONS(950), [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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(954), + [anon_sym_STAR] = ACTIONS(950), + [anon_sym_AT] = ACTIONS(950), + [anon_sym_QMARK] = ACTIONS(950), + [anon_sym_0] = ACTIONS(956), + [anon_sym__] = ACTIONS(956), }, [161] = { [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_file_descriptor] = ACTIONS(250), + [sym__concat] = ACTIONS(944), + [anon_sym_PIPE] = ACTIONS(958), + [anon_sym_RPAREN] = ACTIONS(250), + [anon_sym_PIPE_AMP] = ACTIONS(250), + [anon_sym_AMP_AMP] = ACTIONS(250), + [anon_sym_PIPE_PIPE] = ACTIONS(250), + [anon_sym_EQ_TILDE] = ACTIONS(958), + [anon_sym_EQ_EQ] = ACTIONS(958), + [anon_sym_LT] = ACTIONS(958), + [anon_sym_GT] = ACTIONS(958), + [anon_sym_GT_GT] = ACTIONS(250), + [anon_sym_AMP_GT] = ACTIONS(958), + [anon_sym_AMP_GT_GT] = ACTIONS(250), + [anon_sym_LT_AMP] = ACTIONS(250), + [anon_sym_GT_AMP] = ACTIONS(250), + [anon_sym_LT_LT] = ACTIONS(958), + [anon_sym_LT_LT_DASH] = ACTIONS(250), + [anon_sym_LT_LT_LT] = ACTIONS(250), + [sym__special_characters] = ACTIONS(958), + [anon_sym_DQUOTE] = ACTIONS(250), + [anon_sym_DOLLAR] = ACTIONS(958), + [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(56), - [sym_word] = ACTIONS(250), + [sym_word] = ACTIONS(252), }, [162] = { [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_variable_name] = ACTIONS(960), + [anon_sym_DOLLAR] = ACTIONS(962), + [anon_sym_POUND] = ACTIONS(964), + [anon_sym_DASH] = ACTIONS(962), [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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(966), + [anon_sym_STAR] = ACTIONS(962), + [anon_sym_AT] = ACTIONS(962), + [anon_sym_QMARK] = ACTIONS(962), + [anon_sym_0] = ACTIONS(968), + [anon_sym__] = ACTIONS(968), }, [163] = { [sym_for_statement] = STATE(522), @@ -16493,22 +16550,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(264), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(268), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -16516,17 +16573,17 @@ 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(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__special_characters] = ACTIONS(286), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(300), + [sym_word] = ACTIONS(302), }, [164] = { [sym_for_statement] = STATE(524), @@ -16554,22 +16611,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(304), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(306), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(308), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_LBRACK_LBRACK] = ACTIONS(312), + [anon_sym_declare] = ACTIONS(314), + [anon_sym_typeset] = ACTIONS(314), + [anon_sym_export] = ACTIONS(314), + [anon_sym_readonly] = ACTIONS(314), + [anon_sym_local] = ACTIONS(314), + [anon_sym_unset] = ACTIONS(316), + [anon_sym_unsetenv] = ACTIONS(316), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -16577,17 +16634,17 @@ 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(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__special_characters] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [anon_sym_DOLLAR] = ACTIONS(322), + [sym_raw_string] = ACTIONS(324), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), + [anon_sym_BQUOTE] = ACTIONS(330), + [anon_sym_LT_LPAREN] = ACTIONS(332), + [anon_sym_GT_LPAREN] = ACTIONS(332), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(332), + [sym_word] = ACTIONS(334), }, [165] = { [sym_for_statement] = STATE(526), @@ -16615,22 +16672,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(264), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(268), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -16638,57 +16695,58 @@ 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(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__special_characters] = ACTIONS(286), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(300), + [sym_word] = ACTIONS(302), }, [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_file_descriptor] = ACTIONS(250), + [sym__concat] = ACTIONS(944), + [anon_sym_PIPE] = ACTIONS(958), + [anon_sym_RPAREN] = ACTIONS(250), + [anon_sym_LPAREN] = ACTIONS(970), + [anon_sym_PIPE_AMP] = ACTIONS(250), + [anon_sym_AMP_AMP] = ACTIONS(250), + [anon_sym_PIPE_PIPE] = ACTIONS(250), + [anon_sym_EQ_TILDE] = ACTIONS(958), + [anon_sym_EQ_EQ] = ACTIONS(958), + [anon_sym_LT] = ACTIONS(958), + [anon_sym_GT] = ACTIONS(958), + [anon_sym_GT_GT] = ACTIONS(250), + [anon_sym_AMP_GT] = ACTIONS(958), + [anon_sym_AMP_GT_GT] = ACTIONS(250), + [anon_sym_LT_AMP] = ACTIONS(250), + [anon_sym_GT_AMP] = ACTIONS(250), + [anon_sym_LT_LT] = ACTIONS(958), + [anon_sym_LT_LT_DASH] = ACTIONS(250), + [anon_sym_LT_LT_LT] = ACTIONS(250), + [sym__special_characters] = ACTIONS(958), + [anon_sym_DQUOTE] = ACTIONS(250), + [anon_sym_DOLLAR] = ACTIONS(958), + [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(56), - [sym_word] = ACTIONS(250), + [sym_word] = ACTIONS(252), }, [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), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(974), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), [sym_comment] = ACTIONS(56), }, [168] = { @@ -16704,97 +16762,99 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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_file_descriptor] = ACTIONS(980), + [anon_sym_PIPE] = ACTIONS(982), + [anon_sym_RPAREN] = ACTIONS(984), + [anon_sym_PIPE_AMP] = ACTIONS(984), + [anon_sym_AMP_AMP] = ACTIONS(984), + [anon_sym_PIPE_PIPE] = ACTIONS(984), + [anon_sym_EQ_TILDE] = ACTIONS(986), + [anon_sym_EQ_EQ] = ACTIONS(986), + [anon_sym_LT] = ACTIONS(988), + [anon_sym_GT] = ACTIONS(988), + [anon_sym_GT_GT] = ACTIONS(990), + [anon_sym_AMP_GT] = ACTIONS(988), + [anon_sym_AMP_GT_GT] = ACTIONS(990), + [anon_sym_LT_AMP] = ACTIONS(990), + [anon_sym_GT_AMP] = ACTIONS(990), + [anon_sym_LT_LT] = ACTIONS(992), + [anon_sym_LT_LT_DASH] = ACTIONS(994), + [anon_sym_LT_LT_LT] = ACTIONS(996), + [sym__special_characters] = ACTIONS(998), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(1000), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(984), + [sym_word] = ACTIONS(1002), }, [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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(974), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [170] = { [sym__assignment] = STATE(473), - [anon_sym_EQ] = ACTIONS(866), - [anon_sym_PLUS_EQ] = ACTIONS(866), + [anon_sym_EQ] = ACTIONS(882), + [anon_sym_PLUS_EQ] = ACTIONS(882), [sym_comment] = ACTIONS(56), }, [171] = { - [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_file_descriptor] = ACTIONS(250), + [anon_sym_PIPE] = ACTIONS(958), + [anon_sym_RPAREN] = ACTIONS(250), + [anon_sym_PIPE_AMP] = ACTIONS(250), + [anon_sym_AMP_AMP] = ACTIONS(250), + [anon_sym_PIPE_PIPE] = ACTIONS(250), + [anon_sym_EQ_TILDE] = ACTIONS(958), + [anon_sym_EQ_EQ] = ACTIONS(958), + [anon_sym_LT] = ACTIONS(958), + [anon_sym_GT] = ACTIONS(958), + [anon_sym_GT_GT] = ACTIONS(250), + [anon_sym_AMP_GT] = ACTIONS(958), + [anon_sym_AMP_GT_GT] = ACTIONS(250), + [anon_sym_LT_AMP] = ACTIONS(250), + [anon_sym_GT_AMP] = ACTIONS(250), + [anon_sym_LT_LT] = ACTIONS(958), + [anon_sym_LT_LT_DASH] = ACTIONS(250), + [anon_sym_LT_LT_LT] = ACTIONS(250), + [sym__special_characters] = ACTIONS(958), + [anon_sym_DQUOTE] = ACTIONS(250), + [anon_sym_DOLLAR] = ACTIONS(958), + [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(56), - [sym_word] = ACTIONS(250), + [sym_word] = ACTIONS(252), }, [172] = { [sym_command_name] = STATE(543), @@ -16810,7 +16870,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_process_substitution] = STATE(161), [aux_sym_command_repeat1] = STATE(215), [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(386), + [sym_variable_name] = ACTIONS(388), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -16818,23 +16878,23 @@ 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(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__special_characters] = ACTIONS(1004), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(988), + [sym_word] = ACTIONS(1006), }, [173] = { [sym__assignment] = STATE(473), [anon_sym_LBRACK] = ACTIONS(64), - [anon_sym_EQ] = ACTIONS(990), - [anon_sym_PLUS_EQ] = ACTIONS(990), + [anon_sym_EQ] = ACTIONS(1008), + [anon_sym_PLUS_EQ] = ACTIONS(1008), [sym_comment] = ACTIONS(56), }, [174] = { @@ -16901,7 +16961,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [175] = { [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(992), + [sym_word] = ACTIONS(1010), }, [176] = { [sym_concatenation] = STATE(84), @@ -16913,6 +16973,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_process_substitution] = STATE(79), [aux_sym_command_repeat2] = STATE(547), [anon_sym_EQ_TILDE] = ACTIONS(122), + [anon_sym_EQ_EQ] = ACTIONS(122), [sym__special_characters] = ACTIONS(124), [anon_sym_DQUOTE] = ACTIONS(126), [anon_sym_DOLLAR] = ACTIONS(128), @@ -16935,6 +16996,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_process_substitution] = STATE(90), [aux_sym_command_repeat2] = STATE(548), [anon_sym_EQ_TILDE] = ACTIONS(142), + [anon_sym_EQ_EQ] = ACTIONS(142), [sym__special_characters] = ACTIONS(144), [anon_sym_DQUOTE] = ACTIONS(146), [anon_sym_DOLLAR] = ACTIONS(148), @@ -16958,23 +17020,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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_variable_name] = ACTIONS(1012), + [anon_sym_PIPE] = ACTIONS(896), + [anon_sym_PIPE_AMP] = ACTIONS(898), + [anon_sym_AMP_AMP] = ACTIONS(898), + [anon_sym_PIPE_PIPE] = ACTIONS(898), + [sym__special_characters] = ACTIONS(1014), + [anon_sym_DQUOTE] = ACTIONS(1016), + [anon_sym_DOLLAR] = ACTIONS(1018), + [sym_raw_string] = ACTIONS(1020), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1022), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1024), + [anon_sym_BQUOTE] = ACTIONS(898), + [anon_sym_LT_LPAREN] = ACTIONS(1026), + [anon_sym_GT_LPAREN] = ACTIONS(1026), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(900), - [sym_word] = ACTIONS(1010), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(916), + [sym_word] = ACTIONS(1028), }, [179] = { [sym_concatenation] = STATE(508), @@ -16985,45 +17047,46 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_PIPE] = ACTIONS(920), + [anon_sym_PIPE_AMP] = ACTIONS(922), + [anon_sym_AMP_AMP] = ACTIONS(922), + [anon_sym_PIPE_PIPE] = ACTIONS(922), + [sym__special_characters] = ACTIONS(1030), + [anon_sym_DQUOTE] = ACTIONS(1032), + [anon_sym_DOLLAR] = ACTIONS(1034), + [sym_raw_string] = ACTIONS(1036), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1038), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1040), + [anon_sym_BQUOTE] = ACTIONS(922), + [anon_sym_LT_LPAREN] = ACTIONS(1042), + [anon_sym_GT_LPAREN] = ACTIONS(1042), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(924), - [sym_word] = ACTIONS(1026), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(940), + [sym_word] = ACTIONS(1044), }, [180] = { [aux_sym_concatenation_repeat1] = STATE(570), [sym_file_descriptor] = ACTIONS(224), - [sym__concat] = ACTIONS(1028), - [anon_sym_PIPE] = ACTIONS(930), + [sym__concat] = ACTIONS(1046), + [anon_sym_PIPE] = ACTIONS(946), [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_EQ_TILDE] = ACTIONS(946), + [anon_sym_EQ_EQ] = ACTIONS(946), + [anon_sym_LT] = ACTIONS(946), + [anon_sym_GT] = ACTIONS(946), [anon_sym_GT_GT] = ACTIONS(224), - [anon_sym_AMP_GT] = ACTIONS(930), + [anon_sym_AMP_GT] = ACTIONS(946), [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] = ACTIONS(946), [anon_sym_LT_LT_DASH] = ACTIONS(224), [anon_sym_LT_LT_LT] = ACTIONS(224), - [sym__special_characters] = ACTIONS(930), + [sym__special_characters] = ACTIONS(946), [anon_sym_DQUOTE] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(930), + [anon_sym_DOLLAR] = ACTIONS(946), [sym_raw_string] = ACTIONS(224), [anon_sym_DOLLAR_LBRACE] = ACTIONS(224), [anon_sym_DOLLAR_LPAREN] = ACTIONS(224), @@ -17038,7 +17101,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(134), [sym_command_substitution] = STATE(134), [aux_sym_string_repeat1] = STATE(572), - [anon_sym_DQUOTE] = ACTIONS(1030), + [anon_sym_DQUOTE] = ACTIONS(1048), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -17047,63 +17110,65 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(182), }, [182] = { - [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_string] = STATE(574), + [anon_sym_DQUOTE] = ACTIONS(320), + [anon_sym_DOLLAR] = ACTIONS(1050), + [sym_raw_string] = ACTIONS(1052), + [anon_sym_POUND] = ACTIONS(1050), + [anon_sym_DASH] = ACTIONS(1050), [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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1054), + [anon_sym_STAR] = ACTIONS(1050), + [anon_sym_AT] = ACTIONS(1050), + [anon_sym_QMARK] = ACTIONS(1050), + [anon_sym_0] = ACTIONS(1056), + [anon_sym__] = ACTIONS(1056), }, [183] = { [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_file_descriptor] = ACTIONS(250), + [sym__concat] = ACTIONS(1046), + [anon_sym_PIPE] = ACTIONS(958), + [anon_sym_PIPE_AMP] = ACTIONS(250), + [anon_sym_AMP_AMP] = ACTIONS(250), + [anon_sym_PIPE_PIPE] = ACTIONS(250), + [anon_sym_EQ_TILDE] = ACTIONS(958), + [anon_sym_EQ_EQ] = ACTIONS(958), + [anon_sym_LT] = ACTIONS(958), + [anon_sym_GT] = ACTIONS(958), + [anon_sym_GT_GT] = ACTIONS(250), + [anon_sym_AMP_GT] = ACTIONS(958), + [anon_sym_AMP_GT_GT] = ACTIONS(250), + [anon_sym_LT_AMP] = ACTIONS(250), + [anon_sym_GT_AMP] = ACTIONS(250), + [anon_sym_LT_LT] = ACTIONS(958), + [anon_sym_LT_LT_DASH] = ACTIONS(250), + [anon_sym_LT_LT_LT] = ACTIONS(250), + [sym__special_characters] = ACTIONS(958), + [anon_sym_DQUOTE] = ACTIONS(250), + [anon_sym_DOLLAR] = ACTIONS(958), + [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(56), - [sym_word] = ACTIONS(250), + [sym_word] = ACTIONS(252), }, [184] = { [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_variable_name] = ACTIONS(1058), + [anon_sym_DOLLAR] = ACTIONS(1060), + [anon_sym_POUND] = ACTIONS(1062), + [anon_sym_DASH] = ACTIONS(1060), [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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1064), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_AT] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_0] = ACTIONS(1066), + [anon_sym__] = ACTIONS(1066), }, [185] = { [sym_for_statement] = STATE(581), @@ -17131,22 +17196,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(264), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(268), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -17154,17 +17219,17 @@ 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(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__special_characters] = ACTIONS(286), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(300), + [sym_word] = ACTIONS(302), }, [186] = { [sym_for_statement] = STATE(583), @@ -17192,22 +17257,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(304), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(306), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(308), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_LBRACK_LBRACK] = ACTIONS(312), + [anon_sym_declare] = ACTIONS(314), + [anon_sym_typeset] = ACTIONS(314), + [anon_sym_export] = ACTIONS(314), + [anon_sym_readonly] = ACTIONS(314), + [anon_sym_local] = ACTIONS(314), + [anon_sym_unset] = ACTIONS(316), + [anon_sym_unsetenv] = ACTIONS(316), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -17215,17 +17280,17 @@ 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(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__special_characters] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [anon_sym_DOLLAR] = ACTIONS(322), + [sym_raw_string] = ACTIONS(324), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), + [anon_sym_BQUOTE] = ACTIONS(330), + [anon_sym_LT_LPAREN] = ACTIONS(332), + [anon_sym_GT_LPAREN] = ACTIONS(332), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(332), + [sym_word] = ACTIONS(334), }, [187] = { [sym_for_statement] = STATE(585), @@ -17253,22 +17318,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(264), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(268), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -17276,56 +17341,57 @@ 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(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__special_characters] = ACTIONS(286), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(300), + [sym_word] = ACTIONS(302), }, [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_file_descriptor] = ACTIONS(250), + [sym__concat] = ACTIONS(1046), + [anon_sym_PIPE] = ACTIONS(958), + [anon_sym_LPAREN] = ACTIONS(1068), + [anon_sym_PIPE_AMP] = ACTIONS(250), + [anon_sym_AMP_AMP] = ACTIONS(250), + [anon_sym_PIPE_PIPE] = ACTIONS(250), + [anon_sym_EQ_TILDE] = ACTIONS(958), + [anon_sym_EQ_EQ] = ACTIONS(958), + [anon_sym_LT] = ACTIONS(958), + [anon_sym_GT] = ACTIONS(958), + [anon_sym_GT_GT] = ACTIONS(250), + [anon_sym_AMP_GT] = ACTIONS(958), + [anon_sym_AMP_GT_GT] = ACTIONS(250), + [anon_sym_LT_AMP] = ACTIONS(250), + [anon_sym_GT_AMP] = ACTIONS(250), + [anon_sym_LT_LT] = ACTIONS(958), + [anon_sym_LT_LT_DASH] = ACTIONS(250), + [anon_sym_LT_LT_LT] = ACTIONS(250), + [sym__special_characters] = ACTIONS(958), + [anon_sym_DQUOTE] = ACTIONS(250), + [anon_sym_DOLLAR] = ACTIONS(958), + [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(56), - [sym_word] = ACTIONS(250), + [sym_word] = ACTIONS(252), }, [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), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_PIPE_AMP] = ACTIONS(1072), + [anon_sym_AMP_AMP] = ACTIONS(1074), + [anon_sym_PIPE_PIPE] = ACTIONS(1074), + [anon_sym_BQUOTE] = ACTIONS(974), [sym_comment] = ACTIONS(56), }, [190] = { @@ -17341,64 +17407,65 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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_file_descriptor] = ACTIONS(1076), + [anon_sym_PIPE] = ACTIONS(982), + [anon_sym_PIPE_AMP] = ACTIONS(984), + [anon_sym_AMP_AMP] = ACTIONS(984), + [anon_sym_PIPE_PIPE] = ACTIONS(984), + [anon_sym_EQ_TILDE] = ACTIONS(1078), + [anon_sym_EQ_EQ] = ACTIONS(1078), + [anon_sym_LT] = ACTIONS(1080), + [anon_sym_GT] = ACTIONS(1080), + [anon_sym_GT_GT] = ACTIONS(1082), + [anon_sym_AMP_GT] = ACTIONS(1080), + [anon_sym_AMP_GT_GT] = ACTIONS(1082), + [anon_sym_LT_AMP] = ACTIONS(1082), + [anon_sym_GT_AMP] = ACTIONS(1082), + [anon_sym_LT_LT] = ACTIONS(992), + [anon_sym_LT_LT_DASH] = ACTIONS(994), + [anon_sym_LT_LT_LT] = ACTIONS(1084), + [sym__special_characters] = ACTIONS(1086), + [anon_sym_DQUOTE] = ACTIONS(320), + [anon_sym_DOLLAR] = ACTIONS(322), + [sym_raw_string] = ACTIONS(1088), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), + [anon_sym_BQUOTE] = ACTIONS(984), + [anon_sym_LT_LPAREN] = ACTIONS(332), + [anon_sym_GT_LPAREN] = ACTIONS(332), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1070), + [sym_word] = ACTIONS(1090), }, [191] = { - [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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_PIPE_AMP] = ACTIONS(1072), + [anon_sym_AMP_AMP] = ACTIONS(1074), + [anon_sym_PIPE_PIPE] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(974), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [192] = { [sym__assignment] = STATE(473), - [anon_sym_EQ] = ACTIONS(990), - [anon_sym_PLUS_EQ] = ACTIONS(990), + [anon_sym_EQ] = ACTIONS(1008), + [anon_sym_PLUS_EQ] = ACTIONS(1008), [sym_comment] = ACTIONS(56), }, [193] = { @@ -17415,7 +17482,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_process_substitution] = STATE(183), [aux_sym_command_repeat1] = STATE(215), [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(386), + [sym_variable_name] = ACTIONS(388), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -17423,55 +17490,55 @@ 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(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__special_characters] = ACTIONS(1092), + [anon_sym_DQUOTE] = ACTIONS(320), + [anon_sym_DOLLAR] = ACTIONS(322), + [sym_raw_string] = ACTIONS(324), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), + [anon_sym_BQUOTE] = ACTIONS(330), + [anon_sym_LT_LPAREN] = ACTIONS(332), + [anon_sym_GT_LPAREN] = ACTIONS(332), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1074), + [sym_word] = ACTIONS(1094), }, [194] = { - [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_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(1096), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), [sym_comment] = ACTIONS(56), }, [195] = { - [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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(1096), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [196] = { - [anon_sym_RPAREN] = ACTIONS(1078), + [anon_sym_RPAREN] = ACTIONS(1098), [sym_comment] = ACTIONS(56), }, [197] = { @@ -17536,43 +17603,43 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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(1080), - [anon_sym_GT_LPAREN] = ACTIONS(1080), + [sym_file_descriptor] = ACTIONS(1100), + [sym_variable_name] = ACTIONS(1100), + [ts_builtin_sym_end] = ACTIONS(1100), + [anon_sym_for] = ACTIONS(1102), + [anon_sym_while] = ACTIONS(1102), + [anon_sym_if] = ACTIONS(1102), + [anon_sym_case] = ACTIONS(1102), + [anon_sym_SEMI_SEMI] = ACTIONS(1100), + [anon_sym_function] = ACTIONS(1102), + [anon_sym_LPAREN] = ACTIONS(1100), + [anon_sym_LBRACK] = ACTIONS(1102), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1100), + [anon_sym_declare] = ACTIONS(1102), + [anon_sym_typeset] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(1102), + [anon_sym_readonly] = ACTIONS(1102), + [anon_sym_local] = ACTIONS(1102), + [anon_sym_unset] = ACTIONS(1102), + [anon_sym_unsetenv] = ACTIONS(1102), + [anon_sym_LT] = ACTIONS(1102), + [anon_sym_GT] = ACTIONS(1102), + [anon_sym_GT_GT] = ACTIONS(1100), + [anon_sym_AMP_GT] = ACTIONS(1102), + [anon_sym_AMP_GT_GT] = ACTIONS(1100), + [anon_sym_LT_AMP] = ACTIONS(1100), + [anon_sym_GT_AMP] = ACTIONS(1100), + [sym__special_characters] = ACTIONS(1104), + [anon_sym_DQUOTE] = ACTIONS(1100), + [anon_sym_DOLLAR] = ACTIONS(1102), + [sym_raw_string] = ACTIONS(1100), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1100), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1100), + [anon_sym_BQUOTE] = ACTIONS(1100), + [anon_sym_LT_LPAREN] = ACTIONS(1100), + [anon_sym_GT_LPAREN] = ACTIONS(1100), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1084), + [sym_word] = ACTIONS(1104), }, [199] = { [sym_for_statement] = STATE(603), @@ -17636,13 +17703,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(58), }, [200] = { - [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), + [anon_sym_LT] = ACTIONS(1106), + [anon_sym_GT] = ACTIONS(1106), + [anon_sym_GT_GT] = ACTIONS(1108), + [anon_sym_AMP_GT] = ACTIONS(1106), + [anon_sym_AMP_GT_GT] = ACTIONS(1108), + [anon_sym_LT_AMP] = ACTIONS(1108), + [anon_sym_GT_AMP] = ACTIONS(1108), [sym_comment] = ACTIONS(56), }, [201] = { @@ -17653,18 +17720,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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__special_characters] = ACTIONS(1110), + [anon_sym_DQUOTE] = ACTIONS(366), + [anon_sym_DOLLAR] = ACTIONS(368), + [sym_raw_string] = ACTIONS(1112), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1092), - [sym_regex] = ACTIONS(1094), + [sym_word] = ACTIONS(1112), + [sym_regex] = ACTIONS(1114), }, [202] = { [sym_concatenation] = STATE(617), @@ -17674,22 +17741,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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__special_characters] = ACTIONS(1116), + [anon_sym_DQUOTE] = ACTIONS(1118), + [anon_sym_DOLLAR] = ACTIONS(1120), + [sym_raw_string] = ACTIONS(1122), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1124), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1126), + [anon_sym_BQUOTE] = ACTIONS(1128), + [anon_sym_LT_LPAREN] = ACTIONS(1130), + [anon_sym_GT_LPAREN] = ACTIONS(1130), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1112), + [sym_word] = ACTIONS(1132), }, [203] = { [sym_heredoc] = STATE(620), - [sym__simple_heredoc] = ACTIONS(1114), - [sym__heredoc_beginning] = ACTIONS(1116), + [sym__simple_heredoc] = ACTIONS(1134), + [sym__heredoc_beginning] = ACTIONS(1136), [sym_comment] = ACTIONS(56), }, [204] = { @@ -17700,171 +17767,174 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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__special_characters] = ACTIONS(1138), + [anon_sym_DQUOTE] = ACTIONS(1118), + [anon_sym_DOLLAR] = ACTIONS(1120), + [sym_raw_string] = ACTIONS(1140), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1124), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1126), + [anon_sym_BQUOTE] = ACTIONS(1128), + [anon_sym_LT_LPAREN] = ACTIONS(1130), + [anon_sym_GT_LPAREN] = ACTIONS(1130), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1122), + [sym_word] = ACTIONS(1142), }, [205] = { [aux_sym_concatenation_repeat1] = STATE(131), - [sym_file_descriptor] = ACTIONS(600), + [sym_file_descriptor] = ACTIONS(606), [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), + [anon_sym_PIPE] = ACTIONS(608), + [anon_sym_SEMI_SEMI] = ACTIONS(608), + [anon_sym_PIPE_AMP] = ACTIONS(608), + [anon_sym_AMP_AMP] = ACTIONS(608), + [anon_sym_PIPE_PIPE] = ACTIONS(608), + [anon_sym_EQ_TILDE] = ACTIONS(608), + [anon_sym_EQ_EQ] = ACTIONS(608), + [anon_sym_LT] = ACTIONS(608), + [anon_sym_GT] = ACTIONS(608), + [anon_sym_GT_GT] = ACTIONS(608), + [anon_sym_AMP_GT] = ACTIONS(608), + [anon_sym_AMP_GT_GT] = ACTIONS(608), + [anon_sym_LT_AMP] = ACTIONS(608), + [anon_sym_GT_AMP] = ACTIONS(608), + [anon_sym_LT_LT] = ACTIONS(608), + [anon_sym_LT_LT_DASH] = ACTIONS(608), + [anon_sym_LT_LT_LT] = ACTIONS(608), + [sym__special_characters] = ACTIONS(608), + [anon_sym_DQUOTE] = ACTIONS(608), + [anon_sym_DOLLAR] = ACTIONS(608), + [sym_raw_string] = ACTIONS(608), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(608), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(608), + [anon_sym_BQUOTE] = ACTIONS(608), + [anon_sym_LT_LPAREN] = ACTIONS(608), + [anon_sym_GT_LPAREN] = ACTIONS(608), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(602), - [anon_sym_SEMI] = ACTIONS(602), - [anon_sym_LF] = ACTIONS(602), - [anon_sym_AMP] = ACTIONS(602), + [sym_word] = ACTIONS(608), + [anon_sym_SEMI] = ACTIONS(608), + [anon_sym_LF] = ACTIONS(608), + [anon_sym_AMP] = ACTIONS(608), }, [206] = { [aux_sym_concatenation_repeat1] = STATE(131), - [sym_file_descriptor] = ACTIONS(614), + [sym_file_descriptor] = ACTIONS(622), [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), + [anon_sym_PIPE] = ACTIONS(624), + [anon_sym_SEMI_SEMI] = ACTIONS(624), + [anon_sym_PIPE_AMP] = ACTIONS(624), + [anon_sym_AMP_AMP] = ACTIONS(624), + [anon_sym_PIPE_PIPE] = ACTIONS(624), + [anon_sym_EQ_TILDE] = ACTIONS(624), + [anon_sym_EQ_EQ] = ACTIONS(624), + [anon_sym_LT] = ACTIONS(624), + [anon_sym_GT] = ACTIONS(624), + [anon_sym_GT_GT] = ACTIONS(624), + [anon_sym_AMP_GT] = ACTIONS(624), + [anon_sym_AMP_GT_GT] = ACTIONS(624), + [anon_sym_LT_AMP] = ACTIONS(624), + [anon_sym_GT_AMP] = ACTIONS(624), + [anon_sym_LT_LT] = ACTIONS(624), + [anon_sym_LT_LT_DASH] = ACTIONS(624), + [anon_sym_LT_LT_LT] = ACTIONS(624), + [sym__special_characters] = ACTIONS(624), + [anon_sym_DQUOTE] = ACTIONS(624), + [anon_sym_DOLLAR] = ACTIONS(624), + [sym_raw_string] = ACTIONS(624), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(624), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(624), + [anon_sym_BQUOTE] = ACTIONS(624), + [anon_sym_LT_LPAREN] = ACTIONS(624), + [anon_sym_GT_LPAREN] = ACTIONS(624), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(616), - [anon_sym_SEMI] = ACTIONS(616), - [anon_sym_LF] = ACTIONS(616), - [anon_sym_AMP] = ACTIONS(616), + [sym_word] = ACTIONS(624), + [anon_sym_SEMI] = ACTIONS(624), + [anon_sym_LF] = ACTIONS(624), + [anon_sym_AMP] = ACTIONS(624), }, [207] = { - [sym_file_descriptor] = ACTIONS(1124), - [anon_sym_esac] = ACTIONS(1126), - [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_file_descriptor] = ACTIONS(1144), + [anon_sym_esac] = ACTIONS(1146), + [anon_sym_PIPE] = ACTIONS(1146), + [anon_sym_RPAREN] = ACTIONS(1146), + [anon_sym_SEMI_SEMI] = ACTIONS(1146), + [anon_sym_PIPE_AMP] = ACTIONS(1146), + [anon_sym_AMP_AMP] = ACTIONS(1146), + [anon_sym_PIPE_PIPE] = ACTIONS(1146), + [anon_sym_LT] = ACTIONS(1146), + [anon_sym_GT] = ACTIONS(1146), + [anon_sym_GT_GT] = ACTIONS(1146), + [anon_sym_AMP_GT] = ACTIONS(1146), + [anon_sym_AMP_GT_GT] = ACTIONS(1146), + [anon_sym_LT_AMP] = ACTIONS(1146), + [anon_sym_GT_AMP] = ACTIONS(1146), + [anon_sym_LT_LT] = ACTIONS(1146), + [anon_sym_LT_LT_DASH] = ACTIONS(1146), + [anon_sym_LT_LT_LT] = ACTIONS(1146), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1126), - [anon_sym_LF] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1126), + [anon_sym_SEMI] = ACTIONS(1146), + [anon_sym_LF] = ACTIONS(1146), + [anon_sym_AMP] = ACTIONS(1146), }, [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_file_descriptor] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(624), + [anon_sym_RPAREN] = ACTIONS(624), + [anon_sym_SEMI_SEMI] = ACTIONS(624), + [anon_sym_PIPE_AMP] = ACTIONS(624), + [anon_sym_AMP_AMP] = ACTIONS(624), + [anon_sym_PIPE_PIPE] = ACTIONS(624), + [anon_sym_EQ_TILDE] = ACTIONS(624), + [anon_sym_EQ_EQ] = ACTIONS(624), + [anon_sym_LT] = ACTIONS(624), + [anon_sym_GT] = ACTIONS(624), + [anon_sym_GT_GT] = ACTIONS(624), + [anon_sym_AMP_GT] = ACTIONS(624), + [anon_sym_AMP_GT_GT] = ACTIONS(624), + [anon_sym_LT_AMP] = ACTIONS(624), + [anon_sym_GT_AMP] = ACTIONS(624), + [anon_sym_LT_LT] = ACTIONS(624), + [anon_sym_LT_LT_DASH] = ACTIONS(624), + [anon_sym_LT_LT_LT] = ACTIONS(624), + [sym__special_characters] = ACTIONS(624), + [anon_sym_DQUOTE] = ACTIONS(624), + [anon_sym_DOLLAR] = ACTIONS(624), + [sym_raw_string] = ACTIONS(624), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(624), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(624), + [anon_sym_BQUOTE] = ACTIONS(624), + [anon_sym_LT_LPAREN] = ACTIONS(624), + [anon_sym_GT_LPAREN] = ACTIONS(624), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(616), - [anon_sym_SEMI] = ACTIONS(616), - [anon_sym_LF] = ACTIONS(616), - [anon_sym_AMP] = ACTIONS(616), + [sym_word] = ACTIONS(624), + [anon_sym_SEMI] = ACTIONS(624), + [anon_sym_LF] = ACTIONS(624), + [anon_sym_AMP] = ACTIONS(624), }, [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_file_descriptor] = ACTIONS(352), + [anon_sym_PIPE] = ACTIONS(1148), + [anon_sym_SEMI_SEMI] = ACTIONS(1148), + [anon_sym_PIPE_AMP] = ACTIONS(1148), + [anon_sym_AMP_AMP] = ACTIONS(1148), + [anon_sym_PIPE_PIPE] = ACTIONS(1148), + [anon_sym_LT] = ACTIONS(358), + [anon_sym_GT] = ACTIONS(358), + [anon_sym_GT_GT] = ACTIONS(358), + [anon_sym_AMP_GT] = ACTIONS(358), + [anon_sym_AMP_GT_GT] = ACTIONS(358), + [anon_sym_LT_AMP] = ACTIONS(358), + [anon_sym_GT_AMP] = ACTIONS(358), + [anon_sym_LT_LT] = ACTIONS(360), + [anon_sym_LT_LT_DASH] = ACTIONS(360), + [anon_sym_LT_LT_LT] = ACTIONS(362), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1128), - [anon_sym_LF] = ACTIONS(1128), - [anon_sym_AMP] = ACTIONS(1128), + [anon_sym_SEMI] = ACTIONS(1148), + [anon_sym_LF] = ACTIONS(1148), + [anon_sym_AMP] = ACTIONS(1148), }, [210] = { [sym_file_redirect] = STATE(207), @@ -17879,37 +17949,38 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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_file_descriptor] = ACTIONS(352), + [anon_sym_PIPE] = ACTIONS(1148), + [anon_sym_SEMI_SEMI] = ACTIONS(1148), + [anon_sym_PIPE_AMP] = ACTIONS(1148), + [anon_sym_AMP_AMP] = ACTIONS(1148), + [anon_sym_PIPE_PIPE] = ACTIONS(1148), + [anon_sym_EQ_TILDE] = ACTIONS(356), + [anon_sym_EQ_EQ] = ACTIONS(356), + [anon_sym_LT] = ACTIONS(358), + [anon_sym_GT] = ACTIONS(358), + [anon_sym_GT_GT] = ACTIONS(358), + [anon_sym_AMP_GT] = ACTIONS(358), + [anon_sym_AMP_GT_GT] = ACTIONS(358), + [anon_sym_LT_AMP] = ACTIONS(358), + [anon_sym_GT_AMP] = ACTIONS(358), + [anon_sym_LT_LT] = ACTIONS(360), + [anon_sym_LT_LT_DASH] = ACTIONS(360), + [anon_sym_LT_LT_LT] = ACTIONS(362), + [sym__special_characters] = ACTIONS(364), + [anon_sym_DQUOTE] = ACTIONS(366), + [anon_sym_DOLLAR] = ACTIONS(368), + [sym_raw_string] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(368), - [anon_sym_SEMI] = ACTIONS(1128), - [anon_sym_LF] = ACTIONS(1128), - [anon_sym_AMP] = ACTIONS(1128), + [sym_word] = ACTIONS(370), + [anon_sym_SEMI] = ACTIONS(1148), + [anon_sym_LF] = ACTIONS(1148), + [anon_sym_AMP] = ACTIONS(1148), }, [211] = { [sym__terminated_statement] = STATE(25), @@ -17938,48 +18009,48 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_process_substitution] = STATE(18), [aux_sym_program_repeat1] = STATE(211), [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(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_file_descriptor] = ACTIONS(1150), + [sym_variable_name] = ACTIONS(1153), + [ts_builtin_sym_end] = ACTIONS(1156), + [anon_sym_for] = ACTIONS(1158), + [anon_sym_while] = ACTIONS(1161), + [anon_sym_if] = ACTIONS(1164), + [anon_sym_case] = ACTIONS(1167), + [anon_sym_function] = ACTIONS(1170), + [anon_sym_LPAREN] = ACTIONS(1173), + [anon_sym_LBRACK] = ACTIONS(1176), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1179), + [anon_sym_declare] = ACTIONS(1182), + [anon_sym_typeset] = ACTIONS(1182), + [anon_sym_export] = ACTIONS(1182), + [anon_sym_readonly] = ACTIONS(1182), + [anon_sym_local] = ACTIONS(1182), + [anon_sym_unset] = ACTIONS(1185), + [anon_sym_unsetenv] = ACTIONS(1185), + [anon_sym_LT] = ACTIONS(1188), + [anon_sym_GT] = ACTIONS(1188), + [anon_sym_GT_GT] = ACTIONS(1191), + [anon_sym_AMP_GT] = ACTIONS(1188), + [anon_sym_AMP_GT_GT] = ACTIONS(1191), + [anon_sym_LT_AMP] = ACTIONS(1191), + [anon_sym_GT_AMP] = ACTIONS(1191), + [sym__special_characters] = ACTIONS(1194), + [anon_sym_DQUOTE] = ACTIONS(1197), + [anon_sym_DOLLAR] = ACTIONS(1200), + [sym_raw_string] = ACTIONS(1203), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1206), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1209), + [anon_sym_BQUOTE] = ACTIONS(1212), + [anon_sym_LT_LPAREN] = ACTIONS(1215), + [anon_sym_GT_LPAREN] = ACTIONS(1215), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1198), + [sym_word] = ACTIONS(1218), }, [212] = { [sym__assignment] = STATE(473), [anon_sym_LBRACK] = ACTIONS(64), - [anon_sym_EQ] = ACTIONS(1201), - [anon_sym_PLUS_EQ] = ACTIONS(1201), + [anon_sym_EQ] = ACTIONS(1221), + [anon_sym_PLUS_EQ] = ACTIONS(1221), [sym_comment] = ACTIONS(56), }, [213] = { @@ -17995,42 +18066,43 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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_file_descriptor] = ACTIONS(352), + [anon_sym_PIPE] = ACTIONS(1148), + [anon_sym_SEMI_SEMI] = ACTIONS(1148), + [anon_sym_PIPE_AMP] = ACTIONS(1148), + [anon_sym_AMP_AMP] = ACTIONS(1148), + [anon_sym_PIPE_PIPE] = ACTIONS(1148), + [anon_sym_EQ_TILDE] = ACTIONS(356), + [anon_sym_EQ_EQ] = ACTIONS(356), + [anon_sym_LT] = ACTIONS(358), + [anon_sym_GT] = ACTIONS(358), + [anon_sym_GT_GT] = ACTIONS(358), + [anon_sym_AMP_GT] = ACTIONS(358), + [anon_sym_AMP_GT_GT] = ACTIONS(358), + [anon_sym_LT_AMP] = ACTIONS(358), + [anon_sym_GT_AMP] = ACTIONS(358), + [anon_sym_LT_LT] = ACTIONS(360), + [anon_sym_LT_LT_DASH] = ACTIONS(360), + [anon_sym_LT_LT_LT] = ACTIONS(362), + [sym__special_characters] = ACTIONS(364), + [anon_sym_DQUOTE] = ACTIONS(366), + [anon_sym_DOLLAR] = ACTIONS(368), + [sym_raw_string] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(368), - [anon_sym_SEMI] = ACTIONS(1128), - [anon_sym_LF] = ACTIONS(1128), - [anon_sym_AMP] = ACTIONS(1128), + [sym_word] = ACTIONS(370), + [anon_sym_SEMI] = ACTIONS(1148), + [anon_sym_LF] = ACTIONS(1148), + [anon_sym_AMP] = ACTIONS(1148), }, [214] = { [sym__assignment] = STATE(473), - [anon_sym_EQ] = ACTIONS(1201), - [anon_sym_PLUS_EQ] = ACTIONS(1201), + [anon_sym_EQ] = ACTIONS(1221), + [anon_sym_PLUS_EQ] = ACTIONS(1221), [sym_comment] = ACTIONS(56), }, [215] = { @@ -18038,101 +18110,101 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_subscript] = STATE(214), [sym_file_redirect] = STATE(30), [aux_sym_command_repeat1] = STATE(215), - [sym_file_descriptor] = ACTIONS(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_file_descriptor] = ACTIONS(1223), + [sym_variable_name] = ACTIONS(1226), + [anon_sym_LT] = ACTIONS(1229), + [anon_sym_GT] = ACTIONS(1229), + [anon_sym_GT_GT] = ACTIONS(1232), + [anon_sym_AMP_GT] = ACTIONS(1229), + [anon_sym_AMP_GT_GT] = ACTIONS(1232), + [anon_sym_LT_AMP] = ACTIONS(1232), + [anon_sym_GT_AMP] = ACTIONS(1232), + [sym__special_characters] = ACTIONS(1235), + [anon_sym_DQUOTE] = ACTIONS(1237), + [anon_sym_DOLLAR] = ACTIONS(1235), + [sym_raw_string] = ACTIONS(1237), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1237), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1237), + [anon_sym_BQUOTE] = ACTIONS(1237), + [anon_sym_LT_LPAREN] = ACTIONS(1237), + [anon_sym_GT_LPAREN] = ACTIONS(1237), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1215), + [sym_word] = ACTIONS(1235), }, [216] = { [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_file_descriptor] = ACTIONS(1239), + [sym__concat] = ACTIONS(756), + [sym_variable_name] = ACTIONS(1239), + [anon_sym_LT] = ACTIONS(1241), + [anon_sym_GT] = ACTIONS(1241), + [anon_sym_GT_GT] = ACTIONS(1239), + [anon_sym_AMP_GT] = ACTIONS(1241), + [anon_sym_AMP_GT_GT] = ACTIONS(1239), + [anon_sym_LT_AMP] = ACTIONS(1239), + [anon_sym_GT_AMP] = ACTIONS(1239), + [sym__special_characters] = ACTIONS(1241), + [anon_sym_DQUOTE] = ACTIONS(1239), + [anon_sym_DOLLAR] = ACTIONS(1241), + [sym_raw_string] = ACTIONS(1239), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1239), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1239), + [anon_sym_BQUOTE] = ACTIONS(1239), + [anon_sym_LT_LPAREN] = ACTIONS(1239), + [anon_sym_GT_LPAREN] = ACTIONS(1239), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1221), + [sym_word] = ACTIONS(1241), }, [217] = { [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_file_descriptor] = ACTIONS(1243), + [sym__concat] = ACTIONS(756), + [sym_variable_name] = ACTIONS(1243), + [anon_sym_LT] = ACTIONS(1245), + [anon_sym_GT] = ACTIONS(1245), + [anon_sym_GT_GT] = ACTIONS(1243), + [anon_sym_AMP_GT] = ACTIONS(1245), + [anon_sym_AMP_GT_GT] = ACTIONS(1243), + [anon_sym_LT_AMP] = ACTIONS(1243), + [anon_sym_GT_AMP] = ACTIONS(1243), + [sym__special_characters] = ACTIONS(1245), + [anon_sym_DQUOTE] = ACTIONS(1243), + [anon_sym_DOLLAR] = ACTIONS(1245), + [sym_raw_string] = ACTIONS(1243), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1243), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1243), + [anon_sym_BQUOTE] = ACTIONS(1243), + [anon_sym_LT_LPAREN] = ACTIONS(1243), + [anon_sym_GT_LPAREN] = ACTIONS(1243), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1225), + [sym_word] = ACTIONS(1245), }, [218] = { - [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), - [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_file_descriptor] = ACTIONS(1243), + [sym_variable_name] = ACTIONS(1243), + [anon_sym_LT] = ACTIONS(1245), + [anon_sym_GT] = ACTIONS(1245), + [anon_sym_GT_GT] = ACTIONS(1243), + [anon_sym_AMP_GT] = ACTIONS(1245), + [anon_sym_AMP_GT_GT] = ACTIONS(1243), + [anon_sym_LT_AMP] = ACTIONS(1243), + [anon_sym_GT_AMP] = ACTIONS(1243), + [sym__special_characters] = ACTIONS(1245), + [anon_sym_DQUOTE] = ACTIONS(1243), + [anon_sym_DOLLAR] = ACTIONS(1245), + [sym_raw_string] = ACTIONS(1243), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1243), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1243), + [anon_sym_BQUOTE] = ACTIONS(1243), + [anon_sym_LT_LPAREN] = ACTIONS(1243), + [anon_sym_GT_LPAREN] = ACTIONS(1243), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1225), + [sym_word] = ACTIONS(1245), }, [219] = { [aux_sym_concatenation_repeat1] = STATE(631), - [sym__concat] = ACTIONS(1227), - [anon_sym_RBRACK] = ACTIONS(1229), + [sym__concat] = ACTIONS(1247), + [anon_sym_RBRACK] = ACTIONS(1249), [sym_comment] = ACTIONS(56), }, [220] = { @@ -18140,7 +18212,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(134), [sym_command_substitution] = STATE(134), [aux_sym_string_repeat1] = STATE(633), - [anon_sym_DQUOTE] = ACTIONS(1231), + [anon_sym_DQUOTE] = ACTIONS(1251), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -18149,38 +18221,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(182), }, [221] = { - [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_string] = STATE(635), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_DOLLAR] = ACTIONS(1253), + [sym_raw_string] = ACTIONS(1255), + [anon_sym_POUND] = ACTIONS(1253), + [anon_sym_DASH] = ACTIONS(1253), [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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1257), + [anon_sym_STAR] = ACTIONS(1253), + [anon_sym_AT] = ACTIONS(1253), + [anon_sym_QMARK] = ACTIONS(1253), + [anon_sym_0] = ACTIONS(1259), + [anon_sym__] = ACTIONS(1259), }, [222] = { [aux_sym_concatenation_repeat1] = STATE(631), - [sym__concat] = ACTIONS(1239), - [anon_sym_RBRACK] = ACTIONS(1241), + [sym__concat] = ACTIONS(1261), + [anon_sym_RBRACK] = ACTIONS(1263), [sym_comment] = ACTIONS(56), }, [223] = { [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_variable_name] = ACTIONS(1265), + [anon_sym_DOLLAR] = ACTIONS(1267), + [anon_sym_POUND] = ACTIONS(1269), + [anon_sym_DASH] = ACTIONS(1267), [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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1271), + [anon_sym_STAR] = ACTIONS(1267), + [anon_sym_AT] = ACTIONS(1267), + [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_0] = ACTIONS(1273), + [anon_sym__] = ACTIONS(1273), }, [224] = { [sym_for_statement] = STATE(644), @@ -18208,22 +18281,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(264), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(268), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -18231,17 +18304,17 @@ 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(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__special_characters] = ACTIONS(286), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(300), + [sym_word] = ACTIONS(302), }, [225] = { [sym_for_statement] = STATE(646), @@ -18269,22 +18342,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(304), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(306), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(308), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_LBRACK_LBRACK] = ACTIONS(312), + [anon_sym_declare] = ACTIONS(314), + [anon_sym_typeset] = ACTIONS(314), + [anon_sym_export] = ACTIONS(314), + [anon_sym_readonly] = ACTIONS(314), + [anon_sym_local] = ACTIONS(314), + [anon_sym_unset] = ACTIONS(316), + [anon_sym_unsetenv] = ACTIONS(316), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -18292,17 +18365,17 @@ 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(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__special_characters] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [anon_sym_DOLLAR] = ACTIONS(322), + [sym_raw_string] = ACTIONS(324), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), + [anon_sym_BQUOTE] = ACTIONS(330), + [anon_sym_LT_LPAREN] = ACTIONS(332), + [anon_sym_GT_LPAREN] = ACTIONS(332), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(332), + [sym_word] = ACTIONS(334), }, [226] = { [sym_for_statement] = STATE(648), @@ -18330,22 +18403,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(264), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(268), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -18353,53 +18426,53 @@ 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(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__special_characters] = ACTIONS(286), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(300), + [sym_word] = ACTIONS(302), }, [227] = { - [sym__concat] = ACTIONS(1253), - [anon_sym_RBRACK] = ACTIONS(1241), + [sym__concat] = ACTIONS(1275), + [anon_sym_RBRACK] = ACTIONS(1263), [sym_comment] = ACTIONS(56), }, [228] = { - [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_file_descriptor] = ACTIONS(1277), + [sym_variable_name] = ACTIONS(1277), + [anon_sym_PIPE] = ACTIONS(1279), + [anon_sym_RPAREN] = ACTIONS(1279), + [anon_sym_SEMI_SEMI] = ACTIONS(1279), + [anon_sym_PIPE_AMP] = ACTIONS(1279), + [anon_sym_AMP_AMP] = ACTIONS(1279), + [anon_sym_PIPE_PIPE] = ACTIONS(1279), + [anon_sym_LT] = ACTIONS(1279), + [anon_sym_GT] = ACTIONS(1279), + [anon_sym_GT_GT] = ACTIONS(1279), + [anon_sym_AMP_GT] = ACTIONS(1279), + [anon_sym_AMP_GT_GT] = ACTIONS(1279), + [anon_sym_LT_AMP] = ACTIONS(1279), + [anon_sym_GT_AMP] = ACTIONS(1279), + [sym__special_characters] = ACTIONS(1279), + [anon_sym_DQUOTE] = ACTIONS(1279), + [anon_sym_DOLLAR] = ACTIONS(1279), + [sym_raw_string] = ACTIONS(1279), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1279), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1279), + [anon_sym_BQUOTE] = ACTIONS(1279), + [anon_sym_LT_LPAREN] = ACTIONS(1279), + [anon_sym_GT_LPAREN] = ACTIONS(1279), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1257), - [anon_sym_SEMI] = ACTIONS(1257), - [anon_sym_LF] = ACTIONS(1257), - [anon_sym_AMP] = ACTIONS(1257), + [sym_word] = ACTIONS(1279), + [anon_sym_SEMI] = ACTIONS(1279), + [anon_sym_LF] = ACTIONS(1279), + [anon_sym_AMP] = ACTIONS(1279), }, [229] = { [sym_concatenation] = STATE(660), @@ -18410,57 +18483,57 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RPAREN] = ACTIONS(1281), + [sym__special_characters] = ACTIONS(1283), + [anon_sym_DQUOTE] = ACTIONS(1285), + [anon_sym_DOLLAR] = ACTIONS(1287), + [sym_raw_string] = ACTIONS(1289), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1291), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1293), + [anon_sym_BQUOTE] = ACTIONS(1295), + [anon_sym_LT_LPAREN] = ACTIONS(1297), + [anon_sym_GT_LPAREN] = ACTIONS(1297), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1277), + [sym_word] = ACTIONS(1299), }, [230] = { [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_file_descriptor] = ACTIONS(1301), + [sym__concat] = ACTIONS(1303), + [sym_variable_name] = ACTIONS(1301), + [anon_sym_PIPE] = ACTIONS(1305), + [anon_sym_SEMI_SEMI] = ACTIONS(1305), + [anon_sym_PIPE_AMP] = ACTIONS(1305), + [anon_sym_AMP_AMP] = ACTIONS(1305), + [anon_sym_PIPE_PIPE] = ACTIONS(1305), + [anon_sym_LT] = ACTIONS(1305), + [anon_sym_GT] = ACTIONS(1305), + [anon_sym_GT_GT] = ACTIONS(1305), + [anon_sym_AMP_GT] = ACTIONS(1305), + [anon_sym_AMP_GT_GT] = ACTIONS(1305), + [anon_sym_LT_AMP] = ACTIONS(1305), + [anon_sym_GT_AMP] = ACTIONS(1305), + [sym__special_characters] = ACTIONS(1305), + [anon_sym_DQUOTE] = ACTIONS(1305), + [anon_sym_DOLLAR] = ACTIONS(1305), + [sym_raw_string] = ACTIONS(1305), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1305), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1305), + [anon_sym_BQUOTE] = ACTIONS(1305), + [anon_sym_LT_LPAREN] = ACTIONS(1305), + [anon_sym_GT_LPAREN] = ACTIONS(1305), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1283), - [anon_sym_SEMI] = ACTIONS(1283), - [anon_sym_LF] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1283), + [sym_word] = ACTIONS(1305), + [anon_sym_SEMI] = ACTIONS(1305), + [anon_sym_LF] = ACTIONS(1305), + [anon_sym_AMP] = ACTIONS(1305), }, [231] = { [sym_simple_expansion] = STATE(134), [sym_expansion] = STATE(134), [sym_command_substitution] = STATE(134), [aux_sym_string_repeat1] = STATE(665), - [anon_sym_DQUOTE] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(1307), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -18469,64 +18542,65 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(182), }, [232] = { - [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_string] = STATE(667), + [anon_sym_DQUOTE] = ACTIONS(424), + [anon_sym_DOLLAR] = ACTIONS(1309), + [sym_raw_string] = ACTIONS(1311), + [anon_sym_POUND] = ACTIONS(1309), + [anon_sym_DASH] = ACTIONS(1309), [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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1309), + [anon_sym_AT] = ACTIONS(1309), + [anon_sym_QMARK] = ACTIONS(1309), + [anon_sym_0] = ACTIONS(1315), + [anon_sym__] = ACTIONS(1315), }, [233] = { [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_file_descriptor] = ACTIONS(1277), + [sym__concat] = ACTIONS(1303), + [sym_variable_name] = ACTIONS(1277), + [anon_sym_PIPE] = ACTIONS(1279), + [anon_sym_SEMI_SEMI] = ACTIONS(1279), + [anon_sym_PIPE_AMP] = ACTIONS(1279), + [anon_sym_AMP_AMP] = ACTIONS(1279), + [anon_sym_PIPE_PIPE] = ACTIONS(1279), + [anon_sym_LT] = ACTIONS(1279), + [anon_sym_GT] = ACTIONS(1279), + [anon_sym_GT_GT] = ACTIONS(1279), + [anon_sym_AMP_GT] = ACTIONS(1279), + [anon_sym_AMP_GT_GT] = ACTIONS(1279), + [anon_sym_LT_AMP] = ACTIONS(1279), + [anon_sym_GT_AMP] = ACTIONS(1279), + [sym__special_characters] = ACTIONS(1279), + [anon_sym_DQUOTE] = ACTIONS(1279), + [anon_sym_DOLLAR] = ACTIONS(1279), + [sym_raw_string] = ACTIONS(1279), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1279), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1279), + [anon_sym_BQUOTE] = ACTIONS(1279), + [anon_sym_LT_LPAREN] = ACTIONS(1279), + [anon_sym_GT_LPAREN] = ACTIONS(1279), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1257), - [anon_sym_SEMI] = ACTIONS(1257), - [anon_sym_LF] = ACTIONS(1257), - [anon_sym_AMP] = ACTIONS(1257), + [sym_word] = ACTIONS(1279), + [anon_sym_SEMI] = ACTIONS(1279), + [anon_sym_LF] = ACTIONS(1279), + [anon_sym_AMP] = ACTIONS(1279), }, [234] = { [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_variable_name] = ACTIONS(1317), + [anon_sym_DOLLAR] = ACTIONS(1319), + [anon_sym_POUND] = ACTIONS(1321), + [anon_sym_DASH] = ACTIONS(1319), [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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1323), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AT] = ACTIONS(1319), + [anon_sym_QMARK] = ACTIONS(1319), + [anon_sym_0] = ACTIONS(1325), + [anon_sym__] = ACTIONS(1325), }, [235] = { [sym_for_statement] = STATE(674), @@ -18554,22 +18628,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(264), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(268), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -18577,17 +18651,17 @@ 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(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__special_characters] = ACTIONS(286), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(300), + [sym_word] = ACTIONS(302), }, [236] = { [sym_for_statement] = STATE(676), @@ -18615,22 +18689,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(304), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(306), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(308), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_LBRACK_LBRACK] = ACTIONS(312), + [anon_sym_declare] = ACTIONS(314), + [anon_sym_typeset] = ACTIONS(314), + [anon_sym_export] = ACTIONS(314), + [anon_sym_readonly] = ACTIONS(314), + [anon_sym_local] = ACTIONS(314), + [anon_sym_unset] = ACTIONS(316), + [anon_sym_unsetenv] = ACTIONS(316), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -18638,17 +18712,17 @@ 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(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__special_characters] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [anon_sym_DOLLAR] = ACTIONS(322), + [sym_raw_string] = ACTIONS(324), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), + [anon_sym_BQUOTE] = ACTIONS(330), + [anon_sym_LT_LPAREN] = ACTIONS(332), + [anon_sym_GT_LPAREN] = ACTIONS(332), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(332), + [sym_word] = ACTIONS(334), }, [237] = { [sym_for_statement] = STATE(678), @@ -18676,22 +18750,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(264), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(268), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -18699,17 +18773,17 @@ 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(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__special_characters] = ACTIONS(286), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(300), + [sym_word] = ACTIONS(302), }, [238] = { [sym_concatenation] = STATE(688), @@ -18720,17 +18794,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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__special_characters] = ACTIONS(1327), + [anon_sym_DQUOTE] = ACTIONS(1329), + [anon_sym_DOLLAR] = ACTIONS(1331), + [sym_raw_string] = ACTIONS(1333), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1335), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1337), + [anon_sym_BQUOTE] = ACTIONS(1339), + [anon_sym_LT_LPAREN] = ACTIONS(1341), + [anon_sym_GT_LPAREN] = ACTIONS(1341), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1319), + [sym_word] = ACTIONS(1343), }, [239] = { [sym__terminated_statement] = STATE(691), @@ -18763,7 +18837,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(12), [anon_sym_for] = ACTIONS(16), [anon_sym_while] = ACTIONS(18), - [anon_sym_done] = ACTIONS(1321), + [anon_sym_done] = ACTIONS(1345), [anon_sym_if] = ACTIONS(20), [anon_sym_case] = ACTIONS(22), [anon_sym_function] = ACTIONS(24), @@ -18801,30 +18875,30 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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_file_descriptor] = ACTIONS(352), + [anon_sym_PIPE] = ACTIONS(1347), + [anon_sym_SEMI_SEMI] = ACTIONS(1347), + [anon_sym_PIPE_AMP] = ACTIONS(1347), + [anon_sym_AMP_AMP] = ACTIONS(1347), + [anon_sym_PIPE_PIPE] = ACTIONS(1347), + [anon_sym_LT] = ACTIONS(358), + [anon_sym_GT] = ACTIONS(358), + [anon_sym_GT_GT] = ACTIONS(358), + [anon_sym_AMP_GT] = ACTIONS(358), + [anon_sym_AMP_GT_GT] = ACTIONS(358), + [anon_sym_LT_AMP] = ACTIONS(358), + [anon_sym_GT_AMP] = ACTIONS(358), + [anon_sym_LT_LT] = ACTIONS(360), + [anon_sym_LT_LT_DASH] = ACTIONS(360), + [anon_sym_LT_LT_LT] = ACTIONS(362), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1323), - [anon_sym_LF] = ACTIONS(1323), - [anon_sym_AMP] = ACTIONS(1323), + [anon_sym_SEMI] = ACTIONS(1347), + [anon_sym_LF] = ACTIONS(1347), + [anon_sym_AMP] = ACTIONS(1347), }, [241] = { - [anon_sym_do] = ACTIONS(1080), - [anon_sym_then] = ACTIONS(1080), + [anon_sym_do] = ACTIONS(1100), + [anon_sym_then] = ACTIONS(1100), [sym_comment] = ACTIONS(56), }, [242] = { @@ -18862,9 +18936,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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_fi] = ACTIONS(1349), + [anon_sym_elif] = ACTIONS(1351), + [anon_sym_else] = ACTIONS(1353), [anon_sym_case] = ACTIONS(22), [anon_sym_function] = ACTIONS(24), [anon_sym_LPAREN] = ACTIONS(26), @@ -18903,54 +18977,54 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(706), [sym_command_substitution] = STATE(706), [sym_process_substitution] = STATE(706), - [sym__special_characters] = ACTIONS(1331), + [sym__special_characters] = ACTIONS(1355), [anon_sym_DQUOTE] = ACTIONS(72), [anon_sym_DOLLAR] = ACTIONS(74), - [sym_raw_string] = ACTIONS(1333), + [sym_raw_string] = ACTIONS(1357), [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(1331), + [sym_word] = ACTIONS(1355), }, [244] = { - [anon_sym_SEMI_SEMI] = ACTIONS(1335), + [anon_sym_SEMI_SEMI] = ACTIONS(1359), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1335), - [anon_sym_LF] = ACTIONS(1335), - [anon_sym_AMP] = ACTIONS(1335), + [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym_LF] = ACTIONS(1359), + [anon_sym_AMP] = ACTIONS(1359), }, [245] = { - [anon_sym_in] = ACTIONS(1337), + [anon_sym_in] = ACTIONS(1361), [sym_comment] = ACTIONS(56), }, [246] = { [aux_sym_concatenation_repeat1] = STATE(709), - [sym__concat] = ACTIONS(450), - [anon_sym_in] = ACTIONS(774), - [anon_sym_SEMI_SEMI] = ACTIONS(774), + [sym__concat] = ACTIONS(452), + [anon_sym_in] = ACTIONS(790), + [anon_sym_SEMI_SEMI] = ACTIONS(790), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(774), - [anon_sym_LF] = ACTIONS(774), - [anon_sym_AMP] = ACTIONS(774), + [anon_sym_SEMI] = ACTIONS(790), + [anon_sym_LF] = ACTIONS(790), + [anon_sym_AMP] = ACTIONS(790), }, [247] = { - [sym__concat] = ACTIONS(776), - [anon_sym_in] = ACTIONS(778), - [anon_sym_SEMI_SEMI] = ACTIONS(778), + [sym__concat] = ACTIONS(792), + [anon_sym_in] = ACTIONS(794), + [anon_sym_SEMI_SEMI] = ACTIONS(794), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(778), - [anon_sym_LF] = ACTIONS(778), - [anon_sym_AMP] = ACTIONS(778), + [anon_sym_SEMI] = ACTIONS(794), + [anon_sym_LF] = ACTIONS(794), + [anon_sym_AMP] = ACTIONS(794), }, [248] = { [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_DQUOTE] = ACTIONS(1363), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -18959,46 +19033,46 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(182), }, [249] = { - [sym__concat] = ACTIONS(808), - [anon_sym_in] = ACTIONS(810), - [anon_sym_SEMI_SEMI] = ACTIONS(810), + [sym__concat] = ACTIONS(824), + [anon_sym_in] = ACTIONS(826), + [anon_sym_SEMI_SEMI] = ACTIONS(826), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(810), - [anon_sym_LF] = ACTIONS(810), - [anon_sym_AMP] = ACTIONS(810), + [anon_sym_SEMI] = ACTIONS(826), + [anon_sym_LF] = ACTIONS(826), + [anon_sym_AMP] = ACTIONS(826), }, [250] = { - [sym__concat] = ACTIONS(812), - [anon_sym_in] = ACTIONS(814), - [anon_sym_SEMI_SEMI] = ACTIONS(814), + [sym__concat] = ACTIONS(828), + [anon_sym_in] = ACTIONS(830), + [anon_sym_SEMI_SEMI] = ACTIONS(830), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(814), - [anon_sym_LF] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(814), + [anon_sym_SEMI] = ACTIONS(830), + [anon_sym_LF] = ACTIONS(830), + [anon_sym_AMP] = ACTIONS(830), }, [251] = { - [sym__concat] = ACTIONS(816), - [anon_sym_in] = ACTIONS(818), - [anon_sym_SEMI_SEMI] = ACTIONS(818), + [sym__concat] = ACTIONS(832), + [anon_sym_in] = ACTIONS(834), + [anon_sym_SEMI_SEMI] = ACTIONS(834), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(818), - [anon_sym_LF] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(818), + [anon_sym_SEMI] = ACTIONS(834), + [anon_sym_LF] = ACTIONS(834), + [anon_sym_AMP] = ACTIONS(834), }, [252] = { - [anon_sym_SEMI_SEMI] = ACTIONS(1341), + [anon_sym_SEMI_SEMI] = ACTIONS(1365), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1341), - [anon_sym_LF] = ACTIONS(1341), - [anon_sym_AMP] = ACTIONS(1341), + [anon_sym_SEMI] = ACTIONS(1365), + [anon_sym_LF] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1365), }, [253] = { - [anon_sym_in] = ACTIONS(1343), + [anon_sym_in] = ACTIONS(1367), [sym_comment] = ACTIONS(56), }, [254] = { - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(1345), + [anon_sym_LBRACK] = ACTIONS(836), + [anon_sym_EQ] = ACTIONS(1369), [sym_comment] = ACTIONS(56), }, [255] = { @@ -19010,39 +19084,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(1371), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(1373), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [256] = { [sym_subscript] = STATE(720), - [sym_variable_name] = ACTIONS(1351), - [anon_sym_DOLLAR] = ACTIONS(1353), - [anon_sym_DASH] = ACTIONS(1353), + [sym_variable_name] = ACTIONS(1375), + [anon_sym_DOLLAR] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1379), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_AT] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1377), + [anon_sym_0] = ACTIONS(1381), + [anon_sym__] = ACTIONS(1381), }, [257] = { [sym_concatenation] = STATE(451), @@ -19053,26 +19127,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(1383), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(1385), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [258] = { [sym_concatenation] = STATE(451), @@ -19083,133 +19157,133 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(1387), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(1389), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [259] = { - [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_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(1391), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), [sym_comment] = ACTIONS(56), }, [260] = { - [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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(1391), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [261] = { - [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), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_PIPE_AMP] = ACTIONS(1072), + [anon_sym_AMP_AMP] = ACTIONS(1074), + [anon_sym_PIPE_PIPE] = ACTIONS(1074), + [anon_sym_BQUOTE] = ACTIONS(1391), [sym_comment] = ACTIONS(56), }, [262] = { - [sym_file_descriptor] = ACTIONS(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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_PIPE_AMP] = ACTIONS(1072), + [anon_sym_AMP_AMP] = ACTIONS(1074), + [anon_sym_PIPE_PIPE] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(1391), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [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), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(1393), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), [sym_comment] = ACTIONS(56), }, [264] = { - [sym_file_descriptor] = ACTIONS(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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(1393), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [265] = { - [anon_sym_RPAREN] = ACTIONS(1371), + [anon_sym_RPAREN] = ACTIONS(1395), [sym_comment] = ACTIONS(56), }, [266] = { @@ -19247,7 +19321,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(1373), + [anon_sym_RBRACE] = ACTIONS(1397), [anon_sym_LBRACK] = ACTIONS(28), [anon_sym_LBRACK_LBRACK] = ACTIONS(30), [anon_sym_declare] = ACTIONS(32), @@ -19278,23 +19352,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [267] = { [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_file_descriptor] = ACTIONS(1399), + [anon_sym_PIPE] = ACTIONS(1401), + [anon_sym_SEMI_SEMI] = ACTIONS(1401), + [anon_sym_PIPE_AMP] = ACTIONS(1401), + [anon_sym_AMP_AMP] = ACTIONS(1401), + [anon_sym_PIPE_PIPE] = ACTIONS(1401), + [anon_sym_LT] = ACTIONS(1403), + [anon_sym_GT] = ACTIONS(1403), + [anon_sym_GT_GT] = ACTIONS(1403), + [anon_sym_AMP_GT] = ACTIONS(1403), + [anon_sym_AMP_GT_GT] = ACTIONS(1403), + [anon_sym_LT_AMP] = ACTIONS(1403), + [anon_sym_GT_AMP] = ACTIONS(1403), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1377), - [anon_sym_LF] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1377), + [anon_sym_SEMI] = ACTIONS(1401), + [anon_sym_LF] = ACTIONS(1401), + [anon_sym_AMP] = ACTIONS(1401), }, [268] = { [sym_concatenation] = STATE(228), @@ -19305,29 +19379,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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__empty_value] = ACTIONS(418), + [anon_sym_LPAREN] = ACTIONS(420), + [sym__special_characters] = ACTIONS(1405), + [anon_sym_DQUOTE] = ACTIONS(1407), + [anon_sym_DOLLAR] = ACTIONS(1409), + [sym_raw_string] = ACTIONS(1411), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1413), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1415), + [anon_sym_BQUOTE] = ACTIONS(1417), + [anon_sym_LT_LPAREN] = ACTIONS(1419), + [anon_sym_GT_LPAREN] = ACTIONS(1419), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1397), + [sym_word] = ACTIONS(1421), }, [269] = { [sym_do_group] = STATE(746), - [anon_sym_do] = ACTIONS(444), + [anon_sym_do] = ACTIONS(446), [sym_comment] = ACTIONS(56), }, [270] = { [sym_compound_statement] = STATE(748), - [anon_sym_LPAREN] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(480), + [anon_sym_LPAREN] = ACTIONS(1423), + [anon_sym_LBRACE] = ACTIONS(484), [sym_comment] = ACTIONS(56), }, [271] = { @@ -19340,8 +19414,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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_EQ_EQ] = ACTIONS(122), + [anon_sym_RBRACK] = ACTIONS(1425), + [sym__special_characters] = ACTIONS(638), [anon_sym_DQUOTE] = ACTIONS(126), [anon_sym_DOLLAR] = ACTIONS(128), [sym_raw_string] = ACTIONS(130), @@ -19363,8 +19438,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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_EQ_EQ] = ACTIONS(142), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1425), + [sym__special_characters] = ACTIONS(680), [anon_sym_DQUOTE] = ACTIONS(146), [anon_sym_DOLLAR] = ACTIONS(148), [sym_raw_string] = ACTIONS(150), @@ -19379,42 +19455,42 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [273] = { [sym__assignment] = STATE(374), [anon_sym_LBRACK] = ACTIONS(64), - [anon_sym_EQ] = ACTIONS(1403), - [anon_sym_PLUS_EQ] = ACTIONS(1403), + [anon_sym_EQ] = ACTIONS(1427), + [anon_sym_PLUS_EQ] = ACTIONS(1427), [sym_comment] = ACTIONS(56), }, [274] = { [aux_sym_concatenation_repeat1] = STATE(752), - [sym__concat] = ACTIONS(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__concat] = ACTIONS(1429), + [sym_variable_name] = ACTIONS(686), + [anon_sym_PIPE] = ACTIONS(688), + [anon_sym_RPAREN] = ACTIONS(688), + [anon_sym_SEMI_SEMI] = ACTIONS(688), + [anon_sym_PIPE_AMP] = ACTIONS(688), + [anon_sym_AMP_AMP] = ACTIONS(688), + [anon_sym_PIPE_PIPE] = ACTIONS(688), + [sym__special_characters] = ACTIONS(688), + [anon_sym_DQUOTE] = ACTIONS(688), + [anon_sym_DOLLAR] = ACTIONS(688), + [sym_raw_string] = ACTIONS(688), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(688), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(688), + [anon_sym_BQUOTE] = ACTIONS(688), + [anon_sym_LT_LPAREN] = ACTIONS(688), + [anon_sym_GT_LPAREN] = ACTIONS(688), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(678), - [sym_word] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(678), - [anon_sym_LF] = ACTIONS(678), - [anon_sym_AMP] = ACTIONS(678), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(688), + [sym_word] = ACTIONS(688), + [anon_sym_SEMI] = ACTIONS(688), + [anon_sym_LF] = ACTIONS(688), + [anon_sym_AMP] = ACTIONS(688), }, [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_DQUOTE] = ACTIONS(1431), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -19423,58 +19499,59 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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_string] = STATE(756), + [anon_sym_DQUOTE] = ACTIONS(1433), + [anon_sym_DOLLAR] = ACTIONS(1435), + [sym_raw_string] = ACTIONS(1437), + [anon_sym_POUND] = ACTIONS(1435), + [anon_sym_DASH] = ACTIONS(1435), [sym_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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1439), + [anon_sym_STAR] = ACTIONS(1435), + [anon_sym_AT] = ACTIONS(1435), + [anon_sym_QMARK] = ACTIONS(1435), + [anon_sym_0] = ACTIONS(1441), + [anon_sym__] = ACTIONS(1441), }, [277] = { [aux_sym_concatenation_repeat1] = STATE(752), - [sym__concat] = ACTIONS(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__concat] = ACTIONS(1429), + [sym_variable_name] = ACTIONS(702), + [anon_sym_PIPE] = ACTIONS(704), + [anon_sym_RPAREN] = ACTIONS(704), + [anon_sym_SEMI_SEMI] = ACTIONS(704), + [anon_sym_PIPE_AMP] = ACTIONS(704), + [anon_sym_AMP_AMP] = ACTIONS(704), + [anon_sym_PIPE_PIPE] = ACTIONS(704), + [sym__special_characters] = ACTIONS(704), + [anon_sym_DQUOTE] = ACTIONS(704), + [anon_sym_DOLLAR] = ACTIONS(704), + [sym_raw_string] = ACTIONS(704), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(704), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(704), + [anon_sym_BQUOTE] = ACTIONS(704), + [anon_sym_LT_LPAREN] = ACTIONS(704), + [anon_sym_GT_LPAREN] = ACTIONS(704), [sym_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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(704), + [sym_word] = ACTIONS(704), + [anon_sym_SEMI] = ACTIONS(704), + [anon_sym_LF] = ACTIONS(704), + [anon_sym_AMP] = ACTIONS(704), }, [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_variable_name] = ACTIONS(1443), + [anon_sym_DOLLAR] = ACTIONS(1445), + [anon_sym_POUND] = ACTIONS(1447), + [anon_sym_DASH] = ACTIONS(1445), [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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1449), + [anon_sym_STAR] = ACTIONS(1445), + [anon_sym_AT] = ACTIONS(1445), + [anon_sym_QMARK] = ACTIONS(1445), + [anon_sym_0] = ACTIONS(1451), + [anon_sym__] = ACTIONS(1451), }, [279] = { [sym_for_statement] = STATE(763), @@ -19502,22 +19579,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(264), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(268), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -19525,17 +19602,17 @@ 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(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__special_characters] = ACTIONS(286), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(300), + [sym_word] = ACTIONS(302), }, [280] = { [sym_for_statement] = STATE(765), @@ -19563,22 +19640,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(304), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(306), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(308), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_LBRACK_LBRACK] = ACTIONS(312), + [anon_sym_declare] = ACTIONS(314), + [anon_sym_typeset] = ACTIONS(314), + [anon_sym_export] = ACTIONS(314), + [anon_sym_readonly] = ACTIONS(314), + [anon_sym_local] = ACTIONS(314), + [anon_sym_unset] = ACTIONS(316), + [anon_sym_unsetenv] = ACTIONS(316), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -19586,17 +19663,17 @@ 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(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__special_characters] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [anon_sym_DOLLAR] = ACTIONS(322), + [sym_raw_string] = ACTIONS(324), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), + [anon_sym_BQUOTE] = ACTIONS(330), + [anon_sym_LT_LPAREN] = ACTIONS(332), + [anon_sym_GT_LPAREN] = ACTIONS(332), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(332), + [sym_word] = ACTIONS(334), }, [281] = { [sym_for_statement] = STATE(767), @@ -19624,22 +19701,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(264), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(268), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -19647,22 +19724,22 @@ 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(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__special_characters] = ACTIONS(286), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(300), + [sym_word] = ACTIONS(302), }, [282] = { [sym__assignment] = STATE(374), - [anon_sym_EQ] = ACTIONS(1403), - [anon_sym_PLUS_EQ] = ACTIONS(1403), + [anon_sym_EQ] = ACTIONS(1427), + [anon_sym_PLUS_EQ] = ACTIONS(1427), [sym_comment] = ACTIONS(56), }, [283] = { @@ -19676,84 +19753,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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_variable_name] = ACTIONS(490), + [anon_sym_PIPE] = ACTIONS(720), + [anon_sym_RPAREN] = ACTIONS(720), + [anon_sym_SEMI_SEMI] = ACTIONS(720), + [anon_sym_PIPE_AMP] = ACTIONS(720), + [anon_sym_AMP_AMP] = ACTIONS(720), + [anon_sym_PIPE_PIPE] = ACTIONS(720), + [sym__special_characters] = ACTIONS(492), + [anon_sym_DQUOTE] = ACTIONS(494), + [anon_sym_DOLLAR] = ACTIONS(496), + [sym_raw_string] = ACTIONS(498), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(500), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(502), + [anon_sym_BQUOTE] = ACTIONS(504), + [anon_sym_LT_LPAREN] = ACTIONS(506), + [anon_sym_GT_LPAREN] = ACTIONS(506), [sym_comment] = ACTIONS(182), [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(184), - [sym_word] = ACTIONS(494), - [anon_sym_SEMI] = ACTIONS(708), - [anon_sym_LF] = ACTIONS(708), - [anon_sym_AMP] = ACTIONS(708), + [sym_word] = ACTIONS(498), + [anon_sym_SEMI] = ACTIONS(720), + [anon_sym_LF] = ACTIONS(720), + [anon_sym_AMP] = ACTIONS(720), }, [284] = { [aux_sym_concatenation_repeat1] = STATE(771), - [sym__concat] = ACTIONS(1427), - [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(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), - }, - [285] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(773), - [anon_sym_DQUOTE] = ACTIONS(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(776), - [anon_sym_DQUOTE] = ACTIONS(1431), - [anon_sym_DOLLAR] = ACTIONS(1433), - [anon_sym_POUND] = ACTIONS(1433), - [anon_sym_DASH] = ACTIONS(1433), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1435), - [anon_sym_STAR] = ACTIONS(1433), - [anon_sym_AT] = ACTIONS(1433), - [anon_sym_QMARK] = ACTIONS(1433), - [anon_sym_0] = ACTIONS(1437), - [anon_sym__] = ACTIONS(1437), - }, - [287] = { - [aux_sym_concatenation_repeat1] = STATE(771), - [sym__concat] = ACTIONS(1427), + [sym__concat] = ACTIONS(1453), [anon_sym_PIPE] = ACTIONS(724), [anon_sym_RPAREN] = ACTIONS(724), [anon_sym_SEMI_SEMI] = ACTIONS(724), @@ -19776,19 +19801,72 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(724), [anon_sym_AMP] = ACTIONS(724), }, + [285] = { + [sym_simple_expansion] = STATE(134), + [sym_expansion] = STATE(134), + [sym_command_substitution] = STATE(134), + [aux_sym_string_repeat1] = STATE(773), + [anon_sym_DQUOTE] = ACTIONS(1455), + [anon_sym_DOLLAR] = ACTIONS(232), + [sym__string_content] = ACTIONS(234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(240), + [sym_comment] = ACTIONS(182), + }, + [286] = { + [sym_string] = STATE(775), + [anon_sym_DQUOTE] = ACTIONS(1457), + [anon_sym_DOLLAR] = ACTIONS(1459), + [sym_raw_string] = ACTIONS(1461), + [anon_sym_POUND] = ACTIONS(1459), + [anon_sym_DASH] = ACTIONS(1459), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1463), + [anon_sym_STAR] = ACTIONS(1459), + [anon_sym_AT] = ACTIONS(1459), + [anon_sym_QMARK] = ACTIONS(1459), + [anon_sym_0] = ACTIONS(1465), + [anon_sym__] = ACTIONS(1465), + }, + [287] = { + [aux_sym_concatenation_repeat1] = STATE(771), + [sym__concat] = ACTIONS(1453), + [anon_sym_PIPE] = ACTIONS(738), + [anon_sym_RPAREN] = ACTIONS(738), + [anon_sym_SEMI_SEMI] = ACTIONS(738), + [anon_sym_PIPE_AMP] = ACTIONS(738), + [anon_sym_AMP_AMP] = ACTIONS(738), + [anon_sym_PIPE_PIPE] = ACTIONS(738), + [sym__special_characters] = ACTIONS(738), + [anon_sym_DQUOTE] = ACTIONS(738), + [anon_sym_DOLLAR] = ACTIONS(738), + [sym_raw_string] = ACTIONS(738), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(738), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(738), + [anon_sym_BQUOTE] = ACTIONS(738), + [anon_sym_LT_LPAREN] = ACTIONS(738), + [anon_sym_GT_LPAREN] = ACTIONS(738), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(738), + [sym_word] = ACTIONS(738), + [anon_sym_SEMI] = ACTIONS(738), + [anon_sym_LF] = ACTIONS(738), + [anon_sym_AMP] = ACTIONS(738), + }, [288] = { [sym_subscript] = STATE(781), - [sym_variable_name] = ACTIONS(1439), - [anon_sym_DOLLAR] = ACTIONS(1441), - [anon_sym_POUND] = ACTIONS(1443), - [anon_sym_DASH] = ACTIONS(1441), + [sym_variable_name] = ACTIONS(1467), + [anon_sym_DOLLAR] = ACTIONS(1469), + [anon_sym_POUND] = ACTIONS(1471), + [anon_sym_DASH] = ACTIONS(1469), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1473), + [anon_sym_STAR] = ACTIONS(1469), + [anon_sym_AT] = ACTIONS(1469), + [anon_sym_QMARK] = ACTIONS(1469), + [anon_sym_0] = ACTIONS(1475), + [anon_sym__] = ACTIONS(1475), }, [289] = { [sym_for_statement] = STATE(782), @@ -19816,22 +19894,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(264), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(268), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -19839,17 +19917,17 @@ 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(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__special_characters] = ACTIONS(286), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(300), + [sym_word] = ACTIONS(302), }, [290] = { [sym_for_statement] = STATE(784), @@ -19877,22 +19955,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(304), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(306), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(308), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_LBRACK_LBRACK] = ACTIONS(312), + [anon_sym_declare] = ACTIONS(314), + [anon_sym_typeset] = ACTIONS(314), + [anon_sym_export] = ACTIONS(314), + [anon_sym_readonly] = ACTIONS(314), + [anon_sym_local] = ACTIONS(314), + [anon_sym_unset] = ACTIONS(316), + [anon_sym_unsetenv] = ACTIONS(316), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -19900,17 +19978,17 @@ 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(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__special_characters] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [anon_sym_DOLLAR] = ACTIONS(322), + [sym_raw_string] = ACTIONS(324), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), + [anon_sym_BQUOTE] = ACTIONS(330), + [anon_sym_LT_LPAREN] = ACTIONS(332), + [anon_sym_GT_LPAREN] = ACTIONS(332), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(332), + [sym_word] = ACTIONS(334), }, [291] = { [sym_for_statement] = STATE(786), @@ -19938,22 +20016,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(264), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(268), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -19961,17 +20039,17 @@ 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(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__special_characters] = ACTIONS(286), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(300), + [sym_word] = ACTIONS(302), }, [292] = { [sym_concatenation] = STATE(119), @@ -19982,27 +20060,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_PIPE] = ACTIONS(752), + [anon_sym_RPAREN] = ACTIONS(752), + [anon_sym_SEMI_SEMI] = ACTIONS(752), + [anon_sym_PIPE_AMP] = ACTIONS(752), + [anon_sym_AMP_AMP] = ACTIONS(752), + [anon_sym_PIPE_PIPE] = ACTIONS(752), + [sym__special_characters] = ACTIONS(508), + [anon_sym_DQUOTE] = ACTIONS(510), + [anon_sym_DOLLAR] = ACTIONS(512), + [sym_raw_string] = ACTIONS(514), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(516), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(518), + [anon_sym_BQUOTE] = ACTIONS(520), + [anon_sym_LT_LPAREN] = ACTIONS(522), + [anon_sym_GT_LPAREN] = ACTIONS(522), [sym_comment] = ACTIONS(182), [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(204), - [sym_word] = ACTIONS(510), - [anon_sym_SEMI] = ACTIONS(738), - [anon_sym_LF] = ACTIONS(738), - [anon_sym_AMP] = ACTIONS(738), + [sym_word] = ACTIONS(514), + [anon_sym_SEMI] = ACTIONS(752), + [anon_sym_LF] = ACTIONS(752), + [anon_sym_AMP] = ACTIONS(752), }, [293] = { [sym_string] = STATE(789), @@ -20011,95 +20089,97 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(789), [sym_command_substitution] = STATE(789), [sym_process_substitution] = STATE(789), - [sym__special_characters] = ACTIONS(1449), + [sym__special_characters] = ACTIONS(1477), [anon_sym_DQUOTE] = ACTIONS(106), [anon_sym_DOLLAR] = ACTIONS(108), - [sym_raw_string] = ACTIONS(1451), + [sym_raw_string] = ACTIONS(1479), [anon_sym_DOLLAR_LBRACE] = ACTIONS(112), [anon_sym_DOLLAR_LPAREN] = ACTIONS(114), [anon_sym_BQUOTE] = ACTIONS(116), [anon_sym_LT_LPAREN] = ACTIONS(118), [anon_sym_GT_LPAREN] = ACTIONS(118), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1449), + [sym_word] = ACTIONS(1477), }, [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_file_descriptor] = ACTIONS(788), + [sym__concat] = ACTIONS(524), + [anon_sym_PIPE] = ACTIONS(790), + [anon_sym_RPAREN] = ACTIONS(790), + [anon_sym_SEMI_SEMI] = ACTIONS(790), + [anon_sym_PIPE_AMP] = ACTIONS(790), + [anon_sym_AMP_AMP] = ACTIONS(790), + [anon_sym_PIPE_PIPE] = ACTIONS(790), + [anon_sym_EQ_TILDE] = ACTIONS(790), + [anon_sym_EQ_EQ] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(790), + [anon_sym_GT] = ACTIONS(790), + [anon_sym_GT_GT] = ACTIONS(790), + [anon_sym_AMP_GT] = ACTIONS(790), + [anon_sym_AMP_GT_GT] = ACTIONS(790), + [anon_sym_LT_AMP] = ACTIONS(790), + [anon_sym_GT_AMP] = ACTIONS(790), + [anon_sym_LT_LT] = ACTIONS(790), + [anon_sym_LT_LT_DASH] = ACTIONS(790), + [anon_sym_LT_LT_LT] = ACTIONS(790), + [sym__special_characters] = ACTIONS(790), + [anon_sym_DQUOTE] = ACTIONS(790), + [anon_sym_DOLLAR] = ACTIONS(790), + [sym_raw_string] = ACTIONS(790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(790), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(790), + [anon_sym_BQUOTE] = ACTIONS(790), + [anon_sym_LT_LPAREN] = ACTIONS(790), + [anon_sym_GT_LPAREN] = ACTIONS(790), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(774), - [anon_sym_SEMI] = ACTIONS(774), - [anon_sym_LF] = ACTIONS(774), - [anon_sym_AMP] = ACTIONS(774), + [sym_word] = ACTIONS(790), + [anon_sym_SEMI] = ACTIONS(790), + [anon_sym_LF] = ACTIONS(790), + [anon_sym_AMP] = ACTIONS(790), }, [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_file_descriptor] = ACTIONS(792), + [sym__concat] = ACTIONS(792), + [anon_sym_PIPE] = ACTIONS(794), + [anon_sym_RPAREN] = ACTIONS(794), + [anon_sym_SEMI_SEMI] = ACTIONS(794), + [anon_sym_PIPE_AMP] = ACTIONS(794), + [anon_sym_AMP_AMP] = ACTIONS(794), + [anon_sym_PIPE_PIPE] = ACTIONS(794), + [anon_sym_EQ_TILDE] = ACTIONS(794), + [anon_sym_EQ_EQ] = ACTIONS(794), + [anon_sym_LT] = ACTIONS(794), + [anon_sym_GT] = ACTIONS(794), + [anon_sym_GT_GT] = ACTIONS(794), + [anon_sym_AMP_GT] = ACTIONS(794), + [anon_sym_AMP_GT_GT] = ACTIONS(794), + [anon_sym_LT_AMP] = ACTIONS(794), + [anon_sym_GT_AMP] = ACTIONS(794), + [anon_sym_LT_LT] = ACTIONS(794), + [anon_sym_LT_LT_DASH] = ACTIONS(794), + [anon_sym_LT_LT_LT] = ACTIONS(794), + [sym__special_characters] = ACTIONS(794), + [anon_sym_DQUOTE] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(794), + [sym_raw_string] = ACTIONS(794), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(794), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(794), + [anon_sym_BQUOTE] = ACTIONS(794), + [anon_sym_LT_LPAREN] = ACTIONS(794), + [anon_sym_GT_LPAREN] = ACTIONS(794), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(778), - [anon_sym_SEMI] = ACTIONS(778), - [anon_sym_LF] = ACTIONS(778), - [anon_sym_AMP] = ACTIONS(778), + [sym_word] = ACTIONS(794), + [anon_sym_SEMI] = ACTIONS(794), + [anon_sym_LF] = ACTIONS(794), + [anon_sym_AMP] = ACTIONS(794), }, [296] = { [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_DQUOTE] = ACTIONS(1481), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -20108,113 +20188,116 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(182), }, [297] = { - [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_file_descriptor] = ACTIONS(824), + [sym__concat] = ACTIONS(824), + [anon_sym_PIPE] = ACTIONS(826), + [anon_sym_RPAREN] = ACTIONS(826), + [anon_sym_SEMI_SEMI] = ACTIONS(826), + [anon_sym_PIPE_AMP] = ACTIONS(826), + [anon_sym_AMP_AMP] = ACTIONS(826), + [anon_sym_PIPE_PIPE] = ACTIONS(826), + [anon_sym_EQ_TILDE] = ACTIONS(826), + [anon_sym_EQ_EQ] = ACTIONS(826), + [anon_sym_LT] = ACTIONS(826), + [anon_sym_GT] = ACTIONS(826), + [anon_sym_GT_GT] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(826), + [anon_sym_AMP_GT_GT] = ACTIONS(826), + [anon_sym_LT_AMP] = ACTIONS(826), + [anon_sym_GT_AMP] = ACTIONS(826), + [anon_sym_LT_LT] = ACTIONS(826), + [anon_sym_LT_LT_DASH] = ACTIONS(826), + [anon_sym_LT_LT_LT] = ACTIONS(826), + [sym__special_characters] = ACTIONS(826), + [anon_sym_DQUOTE] = ACTIONS(826), + [anon_sym_DOLLAR] = ACTIONS(826), + [sym_raw_string] = ACTIONS(826), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(826), + [anon_sym_BQUOTE] = ACTIONS(826), + [anon_sym_LT_LPAREN] = ACTIONS(826), + [anon_sym_GT_LPAREN] = ACTIONS(826), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(810), - [anon_sym_SEMI] = ACTIONS(810), - [anon_sym_LF] = ACTIONS(810), - [anon_sym_AMP] = ACTIONS(810), + [sym_word] = ACTIONS(826), + [anon_sym_SEMI] = ACTIONS(826), + [anon_sym_LF] = ACTIONS(826), + [anon_sym_AMP] = ACTIONS(826), }, [298] = { - [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_file_descriptor] = ACTIONS(828), + [sym__concat] = ACTIONS(828), + [anon_sym_PIPE] = ACTIONS(830), + [anon_sym_RPAREN] = ACTIONS(830), + [anon_sym_SEMI_SEMI] = ACTIONS(830), + [anon_sym_PIPE_AMP] = ACTIONS(830), + [anon_sym_AMP_AMP] = ACTIONS(830), + [anon_sym_PIPE_PIPE] = ACTIONS(830), + [anon_sym_EQ_TILDE] = ACTIONS(830), + [anon_sym_EQ_EQ] = ACTIONS(830), + [anon_sym_LT] = ACTIONS(830), + [anon_sym_GT] = ACTIONS(830), + [anon_sym_GT_GT] = ACTIONS(830), + [anon_sym_AMP_GT] = ACTIONS(830), + [anon_sym_AMP_GT_GT] = ACTIONS(830), + [anon_sym_LT_AMP] = ACTIONS(830), + [anon_sym_GT_AMP] = ACTIONS(830), + [anon_sym_LT_LT] = ACTIONS(830), + [anon_sym_LT_LT_DASH] = ACTIONS(830), + [anon_sym_LT_LT_LT] = ACTIONS(830), + [sym__special_characters] = ACTIONS(830), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(830), + [sym_raw_string] = ACTIONS(830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(830), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_LT_LPAREN] = ACTIONS(830), + [anon_sym_GT_LPAREN] = ACTIONS(830), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(814), - [anon_sym_SEMI] = ACTIONS(814), - [anon_sym_LF] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(814), + [sym_word] = ACTIONS(830), + [anon_sym_SEMI] = ACTIONS(830), + [anon_sym_LF] = ACTIONS(830), + [anon_sym_AMP] = ACTIONS(830), }, [299] = { - [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_file_descriptor] = ACTIONS(832), + [sym__concat] = ACTIONS(832), + [anon_sym_PIPE] = ACTIONS(834), + [anon_sym_RPAREN] = ACTIONS(834), + [anon_sym_SEMI_SEMI] = ACTIONS(834), + [anon_sym_PIPE_AMP] = ACTIONS(834), + [anon_sym_AMP_AMP] = ACTIONS(834), + [anon_sym_PIPE_PIPE] = ACTIONS(834), + [anon_sym_EQ_TILDE] = ACTIONS(834), + [anon_sym_EQ_EQ] = ACTIONS(834), + [anon_sym_LT] = ACTIONS(834), + [anon_sym_GT] = ACTIONS(834), + [anon_sym_GT_GT] = ACTIONS(834), + [anon_sym_AMP_GT] = ACTIONS(834), + [anon_sym_AMP_GT_GT] = ACTIONS(834), + [anon_sym_LT_AMP] = ACTIONS(834), + [anon_sym_GT_AMP] = ACTIONS(834), + [anon_sym_LT_LT] = ACTIONS(834), + [anon_sym_LT_LT_DASH] = ACTIONS(834), + [anon_sym_LT_LT_LT] = ACTIONS(834), + [sym__special_characters] = ACTIONS(834), + [anon_sym_DQUOTE] = ACTIONS(834), + [anon_sym_DOLLAR] = ACTIONS(834), + [sym_raw_string] = ACTIONS(834), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(834), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(834), + [anon_sym_BQUOTE] = ACTIONS(834), + [anon_sym_LT_LPAREN] = ACTIONS(834), + [anon_sym_GT_LPAREN] = ACTIONS(834), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(818), - [anon_sym_SEMI] = ACTIONS(818), - [anon_sym_LF] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(818), + [sym_word] = ACTIONS(834), + [anon_sym_SEMI] = ACTIONS(834), + [anon_sym_LF] = ACTIONS(834), + [anon_sym_AMP] = ACTIONS(834), }, [300] = { - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(1455), + [anon_sym_LBRACK] = ACTIONS(836), + [anon_sym_EQ] = ACTIONS(1483), [sym_comment] = ACTIONS(56), }, [301] = { @@ -20226,39 +20309,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(1485), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(1487), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [302] = { [sym_subscript] = STATE(799), - [sym_variable_name] = ACTIONS(1461), - [anon_sym_DOLLAR] = ACTIONS(1463), - [anon_sym_DASH] = ACTIONS(1463), + [sym_variable_name] = ACTIONS(1489), + [anon_sym_DOLLAR] = ACTIONS(1491), + [anon_sym_DASH] = ACTIONS(1491), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(1491), + [anon_sym_AT] = ACTIONS(1491), + [anon_sym_QMARK] = ACTIONS(1491), + [anon_sym_0] = ACTIONS(1495), + [anon_sym__] = ACTIONS(1495), }, [303] = { [sym_concatenation] = STATE(451), @@ -20269,26 +20352,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(1497), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(1499), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [304] = { [sym_concatenation] = STATE(451), @@ -20299,133 +20382,133 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(1501), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(1503), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [305] = { - [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_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(1505), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), [sym_comment] = ACTIONS(56), }, [306] = { - [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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(1505), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [307] = { - [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), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_PIPE_AMP] = ACTIONS(1072), + [anon_sym_AMP_AMP] = ACTIONS(1074), + [anon_sym_PIPE_PIPE] = ACTIONS(1074), + [anon_sym_BQUOTE] = ACTIONS(1505), [sym_comment] = ACTIONS(56), }, [308] = { - [sym_file_descriptor] = ACTIONS(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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_PIPE_AMP] = ACTIONS(1072), + [anon_sym_AMP_AMP] = ACTIONS(1074), + [anon_sym_PIPE_PIPE] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(1505), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [309] = { - [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_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(1507), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), [sym_comment] = ACTIONS(56), }, [310] = { - [sym_file_descriptor] = ACTIONS(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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(1507), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [311] = { - [anon_sym_RPAREN] = ACTIONS(1481), + [anon_sym_RPAREN] = ACTIONS(1509), [sym_comment] = ACTIONS(56), }, [312] = { @@ -20490,55 +20573,55 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(120), }, [313] = { - [anon_sym_esac] = ACTIONS(1483), - [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), + [anon_sym_esac] = ACTIONS(1511), + [anon_sym_PIPE] = ACTIONS(1511), + [anon_sym_RPAREN] = ACTIONS(1511), + [anon_sym_SEMI_SEMI] = ACTIONS(1511), + [anon_sym_PIPE_AMP] = ACTIONS(1511), + [anon_sym_AMP_AMP] = ACTIONS(1511), + [anon_sym_PIPE_PIPE] = ACTIONS(1511), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1483), - [anon_sym_LF] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [anon_sym_SEMI] = ACTIONS(1511), + [anon_sym_LF] = ACTIONS(1511), + [anon_sym_AMP] = ACTIONS(1511), }, [314] = { - [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_file_descriptor] = ACTIONS(1100), + [sym_variable_name] = ACTIONS(1100), + [anon_sym_for] = ACTIONS(1102), + [anon_sym_while] = ACTIONS(1102), + [anon_sym_if] = ACTIONS(1102), + [anon_sym_case] = ACTIONS(1102), + [anon_sym_RPAREN] = ACTIONS(1513), + [anon_sym_function] = ACTIONS(1102), + [anon_sym_LPAREN] = ACTIONS(1100), + [anon_sym_LBRACK] = ACTIONS(1102), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1100), + [anon_sym_declare] = ACTIONS(1102), + [anon_sym_typeset] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(1102), + [anon_sym_readonly] = ACTIONS(1102), + [anon_sym_local] = ACTIONS(1102), + [anon_sym_unset] = ACTIONS(1102), + [anon_sym_unsetenv] = ACTIONS(1102), + [anon_sym_LT] = ACTIONS(1102), + [anon_sym_GT] = ACTIONS(1102), + [anon_sym_GT_GT] = ACTIONS(1100), + [anon_sym_AMP_GT] = ACTIONS(1102), + [anon_sym_AMP_GT_GT] = ACTIONS(1100), + [anon_sym_LT_AMP] = ACTIONS(1100), + [anon_sym_GT_AMP] = ACTIONS(1100), + [sym__special_characters] = ACTIONS(1104), + [anon_sym_DQUOTE] = ACTIONS(1100), + [anon_sym_DOLLAR] = ACTIONS(1102), + [sym_raw_string] = ACTIONS(1100), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1100), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1100), + [anon_sym_BQUOTE] = ACTIONS(1100), + [anon_sym_LT_LPAREN] = ACTIONS(1100), + [anon_sym_GT_LPAREN] = ACTIONS(1100), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1084), + [sym_word] = ACTIONS(1104), }, [315] = { [sym_for_statement] = STATE(810), @@ -20602,13 +20685,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(120), }, [316] = { - [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), + [anon_sym_LT] = ACTIONS(1515), + [anon_sym_GT] = ACTIONS(1515), + [anon_sym_GT_GT] = ACTIONS(1517), + [anon_sym_AMP_GT] = ACTIONS(1515), + [anon_sym_AMP_GT_GT] = ACTIONS(1517), + [anon_sym_LT_AMP] = ACTIONS(1517), + [anon_sym_GT_AMP] = ACTIONS(1517), [sym_comment] = ACTIONS(56), }, [317] = { @@ -20619,18 +20702,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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__special_characters] = ACTIONS(1519), + [anon_sym_DQUOTE] = ACTIONS(566), + [anon_sym_DOLLAR] = ACTIONS(568), + [sym_raw_string] = ACTIONS(1521), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(572), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(574), + [anon_sym_BQUOTE] = ACTIONS(576), + [anon_sym_LT_LPAREN] = ACTIONS(578), + [anon_sym_GT_LPAREN] = ACTIONS(578), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1493), - [sym_regex] = ACTIONS(1094), + [sym_word] = ACTIONS(1521), + [sym_regex] = ACTIONS(1114), }, [318] = { [sym_concatenation] = STATE(617), @@ -20640,17 +20723,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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__special_characters] = ACTIONS(1523), + [anon_sym_DQUOTE] = ACTIONS(1525), + [anon_sym_DOLLAR] = ACTIONS(1527), + [sym_raw_string] = ACTIONS(1529), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1531), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1533), + [anon_sym_BQUOTE] = ACTIONS(1535), + [anon_sym_LT_LPAREN] = ACTIONS(1537), + [anon_sym_GT_LPAREN] = ACTIONS(1537), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1511), + [sym_word] = ACTIONS(1539), }, [319] = { [sym_concatenation] = STATE(623), @@ -20660,116 +20743,118 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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__special_characters] = ACTIONS(1541), + [anon_sym_DQUOTE] = ACTIONS(1525), + [anon_sym_DOLLAR] = ACTIONS(1527), + [sym_raw_string] = ACTIONS(1543), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1531), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1533), + [anon_sym_BQUOTE] = ACTIONS(1535), + [anon_sym_LT_LPAREN] = ACTIONS(1537), + [anon_sym_GT_LPAREN] = ACTIONS(1537), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1517), + [sym_word] = ACTIONS(1545), }, [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_file_descriptor] = ACTIONS(606), + [sym__concat] = ACTIONS(524), + [anon_sym_PIPE] = ACTIONS(608), + [anon_sym_RPAREN] = ACTIONS(608), + [anon_sym_SEMI_SEMI] = ACTIONS(608), + [anon_sym_PIPE_AMP] = ACTIONS(608), + [anon_sym_AMP_AMP] = ACTIONS(608), + [anon_sym_PIPE_PIPE] = ACTIONS(608), + [anon_sym_EQ_TILDE] = ACTIONS(608), + [anon_sym_EQ_EQ] = ACTIONS(608), + [anon_sym_LT] = ACTIONS(608), + [anon_sym_GT] = ACTIONS(608), + [anon_sym_GT_GT] = ACTIONS(608), + [anon_sym_AMP_GT] = ACTIONS(608), + [anon_sym_AMP_GT_GT] = ACTIONS(608), + [anon_sym_LT_AMP] = ACTIONS(608), + [anon_sym_GT_AMP] = ACTIONS(608), + [anon_sym_LT_LT] = ACTIONS(608), + [anon_sym_LT_LT_DASH] = ACTIONS(608), + [anon_sym_LT_LT_LT] = ACTIONS(608), + [sym__special_characters] = ACTIONS(608), + [anon_sym_DQUOTE] = ACTIONS(608), + [anon_sym_DOLLAR] = ACTIONS(608), + [sym_raw_string] = ACTIONS(608), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(608), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(608), + [anon_sym_BQUOTE] = ACTIONS(608), + [anon_sym_LT_LPAREN] = ACTIONS(608), + [anon_sym_GT_LPAREN] = ACTIONS(608), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(602), - [anon_sym_SEMI] = ACTIONS(602), - [anon_sym_LF] = ACTIONS(602), - [anon_sym_AMP] = ACTIONS(602), + [sym_word] = ACTIONS(608), + [anon_sym_SEMI] = ACTIONS(608), + [anon_sym_LF] = ACTIONS(608), + [anon_sym_AMP] = ACTIONS(608), }, [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_file_descriptor] = ACTIONS(622), + [sym__concat] = ACTIONS(524), + [anon_sym_PIPE] = ACTIONS(624), + [anon_sym_RPAREN] = ACTIONS(624), + [anon_sym_SEMI_SEMI] = ACTIONS(624), + [anon_sym_PIPE_AMP] = ACTIONS(624), + [anon_sym_AMP_AMP] = ACTIONS(624), + [anon_sym_PIPE_PIPE] = ACTIONS(624), + [anon_sym_EQ_TILDE] = ACTIONS(624), + [anon_sym_EQ_EQ] = ACTIONS(624), + [anon_sym_LT] = ACTIONS(624), + [anon_sym_GT] = ACTIONS(624), + [anon_sym_GT_GT] = ACTIONS(624), + [anon_sym_AMP_GT] = ACTIONS(624), + [anon_sym_AMP_GT_GT] = ACTIONS(624), + [anon_sym_LT_AMP] = ACTIONS(624), + [anon_sym_GT_AMP] = ACTIONS(624), + [anon_sym_LT_LT] = ACTIONS(624), + [anon_sym_LT_LT_DASH] = ACTIONS(624), + [anon_sym_LT_LT_LT] = ACTIONS(624), + [sym__special_characters] = ACTIONS(624), + [anon_sym_DQUOTE] = ACTIONS(624), + [anon_sym_DOLLAR] = ACTIONS(624), + [sym_raw_string] = ACTIONS(624), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(624), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(624), + [anon_sym_BQUOTE] = ACTIONS(624), + [anon_sym_LT_LPAREN] = ACTIONS(624), + [anon_sym_GT_LPAREN] = ACTIONS(624), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(616), - [anon_sym_SEMI] = ACTIONS(616), - [anon_sym_LF] = ACTIONS(616), - [anon_sym_AMP] = ACTIONS(616), + [sym_word] = ACTIONS(624), + [anon_sym_SEMI] = ACTIONS(624), + [anon_sym_LF] = ACTIONS(624), + [anon_sym_AMP] = ACTIONS(624), }, [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_file_descriptor] = ACTIONS(556), + [anon_sym_PIPE] = ACTIONS(1148), + [anon_sym_RPAREN] = ACTIONS(1148), + [anon_sym_SEMI_SEMI] = ACTIONS(1148), + [anon_sym_PIPE_AMP] = ACTIONS(1148), + [anon_sym_AMP_AMP] = ACTIONS(1148), + [anon_sym_PIPE_PIPE] = ACTIONS(1148), + [anon_sym_LT] = ACTIONS(560), + [anon_sym_GT] = ACTIONS(560), + [anon_sym_GT_GT] = ACTIONS(560), + [anon_sym_AMP_GT] = ACTIONS(560), + [anon_sym_AMP_GT_GT] = ACTIONS(560), + [anon_sym_LT_AMP] = ACTIONS(560), + [anon_sym_GT_AMP] = ACTIONS(560), + [anon_sym_LT_LT] = ACTIONS(360), + [anon_sym_LT_LT_DASH] = ACTIONS(360), + [anon_sym_LT_LT_LT] = ACTIONS(562), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1128), - [anon_sym_LF] = ACTIONS(1128), - [anon_sym_AMP] = ACTIONS(1128), + [anon_sym_SEMI] = ACTIONS(1148), + [anon_sym_LF] = ACTIONS(1148), + [anon_sym_AMP] = ACTIONS(1148), }, [323] = { [sym_file_redirect] = STATE(207), @@ -20784,81 +20869,82 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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_file_descriptor] = ACTIONS(556), + [anon_sym_PIPE] = ACTIONS(1148), + [anon_sym_RPAREN] = ACTIONS(1148), + [anon_sym_SEMI_SEMI] = ACTIONS(1148), + [anon_sym_PIPE_AMP] = ACTIONS(1148), + [anon_sym_AMP_AMP] = ACTIONS(1148), + [anon_sym_PIPE_PIPE] = ACTIONS(1148), + [anon_sym_EQ_TILDE] = ACTIONS(558), + [anon_sym_EQ_EQ] = ACTIONS(558), + [anon_sym_LT] = ACTIONS(560), + [anon_sym_GT] = ACTIONS(560), + [anon_sym_GT_GT] = ACTIONS(560), + [anon_sym_AMP_GT] = ACTIONS(560), + [anon_sym_AMP_GT_GT] = ACTIONS(560), + [anon_sym_LT_AMP] = ACTIONS(560), + [anon_sym_GT_AMP] = ACTIONS(560), + [anon_sym_LT_LT] = ACTIONS(360), + [anon_sym_LT_LT_DASH] = ACTIONS(360), + [anon_sym_LT_LT_LT] = ACTIONS(562), + [sym__special_characters] = ACTIONS(564), + [anon_sym_DQUOTE] = ACTIONS(566), + [anon_sym_DOLLAR] = ACTIONS(568), + [sym_raw_string] = ACTIONS(570), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(572), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(574), + [anon_sym_BQUOTE] = ACTIONS(576), + [anon_sym_LT_LPAREN] = ACTIONS(578), + [anon_sym_GT_LPAREN] = ACTIONS(578), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(564), - [anon_sym_SEMI] = ACTIONS(1128), - [anon_sym_LF] = ACTIONS(1128), - [anon_sym_AMP] = ACTIONS(1128), + [sym_word] = ACTIONS(570), + [anon_sym_SEMI] = ACTIONS(1148), + [anon_sym_LF] = ACTIONS(1148), + [anon_sym_AMP] = ACTIONS(1148), }, [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), + [anon_sym_PIPE] = ACTIONS(548), + [anon_sym_RPAREN] = ACTIONS(1547), + [anon_sym_SEMI_SEMI] = ACTIONS(1549), + [anon_sym_PIPE_AMP] = ACTIONS(548), + [anon_sym_AMP_AMP] = ACTIONS(554), + [anon_sym_PIPE_PIPE] = ACTIONS(554), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1521), - [anon_sym_LF] = ACTIONS(1521), - [anon_sym_AMP] = ACTIONS(1521), + [anon_sym_SEMI] = ACTIONS(1549), + [anon_sym_LF] = ACTIONS(1549), + [anon_sym_AMP] = ACTIONS(1549), }, [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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(548), + [anon_sym_RPAREN] = ACTIONS(1547), + [anon_sym_SEMI_SEMI] = ACTIONS(1549), + [anon_sym_PIPE_AMP] = ACTIONS(548), + [anon_sym_AMP_AMP] = ACTIONS(554), + [anon_sym_PIPE_PIPE] = ACTIONS(554), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(382), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(382), + [anon_sym_LT_AMP] = ACTIONS(382), + [anon_sym_GT_AMP] = ACTIONS(382), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(382), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(382), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(382), + [anon_sym_BQUOTE] = ACTIONS(382), + [anon_sym_LT_LPAREN] = ACTIONS(382), + [anon_sym_GT_LPAREN] = ACTIONS(382), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(380), - [anon_sym_SEMI] = ACTIONS(1521), - [anon_sym_LF] = ACTIONS(1521), - [anon_sym_AMP] = ACTIONS(1521), + [sym_word] = ACTIONS(382), + [anon_sym_SEMI] = ACTIONS(1549), + [anon_sym_LF] = ACTIONS(1549), + [anon_sym_AMP] = ACTIONS(1549), }, [326] = { [sym__terminated_statement] = STATE(25), @@ -20887,41 +20973,41 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_process_substitution] = STATE(18), [aux_sym_program_repeat1] = STATE(326), [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_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_file_descriptor] = ACTIONS(1150), + [sym_variable_name] = ACTIONS(1153), + [anon_sym_for] = ACTIONS(1158), + [anon_sym_while] = ACTIONS(1161), + [anon_sym_if] = ACTIONS(1164), + [anon_sym_case] = ACTIONS(1167), + [anon_sym_function] = ACTIONS(1170), + [anon_sym_LPAREN] = ACTIONS(1173), + [anon_sym_LBRACK] = ACTIONS(1176), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1179), + [anon_sym_declare] = ACTIONS(1182), + [anon_sym_typeset] = ACTIONS(1182), + [anon_sym_export] = ACTIONS(1182), + [anon_sym_readonly] = ACTIONS(1182), + [anon_sym_local] = ACTIONS(1182), + [anon_sym_unset] = ACTIONS(1185), + [anon_sym_unsetenv] = ACTIONS(1185), + [anon_sym_LT] = ACTIONS(1188), + [anon_sym_GT] = ACTIONS(1188), + [anon_sym_GT_GT] = ACTIONS(1191), + [anon_sym_AMP_GT] = ACTIONS(1188), + [anon_sym_AMP_GT_GT] = ACTIONS(1191), + [anon_sym_LT_AMP] = ACTIONS(1191), + [anon_sym_GT_AMP] = ACTIONS(1191), + [sym__special_characters] = ACTIONS(1194), + [anon_sym_DQUOTE] = ACTIONS(1197), + [anon_sym_DOLLAR] = ACTIONS(1200), + [sym_raw_string] = ACTIONS(1203), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1206), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1209), + [anon_sym_BQUOTE] = ACTIONS(1212), + [anon_sym_LT_LPAREN] = ACTIONS(1215), + [anon_sym_GT_LPAREN] = ACTIONS(1215), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1198), + [sym_word] = ACTIONS(1218), }, [327] = { [sym_file_redirect] = STATE(207), @@ -20936,87 +21022,91 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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_file_descriptor] = ACTIONS(556), + [anon_sym_PIPE] = ACTIONS(1148), + [anon_sym_RPAREN] = ACTIONS(1148), + [anon_sym_SEMI_SEMI] = ACTIONS(1148), + [anon_sym_PIPE_AMP] = ACTIONS(1148), + [anon_sym_AMP_AMP] = ACTIONS(1148), + [anon_sym_PIPE_PIPE] = ACTIONS(1148), + [anon_sym_EQ_TILDE] = ACTIONS(558), + [anon_sym_EQ_EQ] = ACTIONS(558), + [anon_sym_LT] = ACTIONS(560), + [anon_sym_GT] = ACTIONS(560), + [anon_sym_GT_GT] = ACTIONS(560), + [anon_sym_AMP_GT] = ACTIONS(560), + [anon_sym_AMP_GT_GT] = ACTIONS(560), + [anon_sym_LT_AMP] = ACTIONS(560), + [anon_sym_GT_AMP] = ACTIONS(560), + [anon_sym_LT_LT] = ACTIONS(360), + [anon_sym_LT_LT_DASH] = ACTIONS(360), + [anon_sym_LT_LT_LT] = ACTIONS(562), + [sym__special_characters] = ACTIONS(564), + [anon_sym_DQUOTE] = ACTIONS(566), + [anon_sym_DOLLAR] = ACTIONS(568), + [sym_raw_string] = ACTIONS(570), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(572), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(574), + [anon_sym_BQUOTE] = ACTIONS(576), + [anon_sym_LT_LPAREN] = ACTIONS(578), + [anon_sym_GT_LPAREN] = ACTIONS(578), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(564), - [anon_sym_SEMI] = ACTIONS(1128), - [anon_sym_LF] = ACTIONS(1128), - [anon_sym_AMP] = ACTIONS(1128), + [sym_word] = ACTIONS(570), + [anon_sym_SEMI] = ACTIONS(1148), + [anon_sym_LF] = ACTIONS(1148), + [anon_sym_AMP] = ACTIONS(1148), }, [328] = { [aux_sym_concatenation_repeat1] = STATE(332), - [sym__concat] = ACTIONS(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__concat] = ACTIONS(602), + [anon_sym_EQ_TILDE] = ACTIONS(1551), + [anon_sym_EQ_EQ] = ACTIONS(1551), + [anon_sym_RBRACK] = ACTIONS(1553), + [sym__special_characters] = ACTIONS(1555), + [anon_sym_DQUOTE] = ACTIONS(1553), + [anon_sym_DOLLAR] = ACTIONS(1551), + [sym_raw_string] = ACTIONS(1553), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1553), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1553), + [anon_sym_BQUOTE] = ACTIONS(1553), + [anon_sym_LT_LPAREN] = ACTIONS(1553), + [anon_sym_GT_LPAREN] = ACTIONS(1553), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1527), + [sym_word] = ACTIONS(1555), }, [329] = { [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__concat] = ACTIONS(602), + [anon_sym_EQ_TILDE] = ACTIONS(1557), + [anon_sym_EQ_EQ] = ACTIONS(1557), + [anon_sym_RBRACK] = ACTIONS(1559), + [sym__special_characters] = ACTIONS(1561), + [anon_sym_DQUOTE] = ACTIONS(1559), + [anon_sym_DOLLAR] = ACTIONS(1557), + [sym_raw_string] = ACTIONS(1559), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1559), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1559), + [anon_sym_BQUOTE] = ACTIONS(1559), + [anon_sym_LT_LPAREN] = ACTIONS(1559), + [anon_sym_GT_LPAREN] = ACTIONS(1559), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1533), + [sym_word] = ACTIONS(1561), }, [330] = { - [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), + [anon_sym_EQ_TILDE] = ACTIONS(1557), + [anon_sym_EQ_EQ] = ACTIONS(1557), + [anon_sym_RBRACK] = ACTIONS(1559), + [sym__special_characters] = ACTIONS(1561), + [anon_sym_DQUOTE] = ACTIONS(1559), + [anon_sym_DOLLAR] = ACTIONS(1557), + [sym_raw_string] = ACTIONS(1559), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1559), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1559), + [anon_sym_BQUOTE] = ACTIONS(1559), + [anon_sym_LT_LPAREN] = ACTIONS(1559), + [anon_sym_GT_LPAREN] = ACTIONS(1559), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1533), + [sym_word] = ACTIONS(1561), }, [331] = { [sym_string] = STATE(830), @@ -21025,57 +21115,59 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(830), [sym_command_substitution] = STATE(830), [sym_process_substitution] = STATE(830), - [sym__special_characters] = ACTIONS(1535), + [sym__special_characters] = ACTIONS(1563), [anon_sym_DQUOTE] = ACTIONS(126), [anon_sym_DOLLAR] = ACTIONS(128), - [sym_raw_string] = ACTIONS(1537), + [sym_raw_string] = ACTIONS(1565), [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), + [sym_word] = ACTIONS(1563), }, [332] = { [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__concat] = ACTIONS(602), + [anon_sym_EQ_TILDE] = ACTIONS(1567), + [anon_sym_EQ_EQ] = ACTIONS(1567), + [anon_sym_RBRACK] = ACTIONS(788), + [sym__special_characters] = ACTIONS(790), + [anon_sym_DQUOTE] = ACTIONS(788), + [anon_sym_DOLLAR] = ACTIONS(1567), + [sym_raw_string] = ACTIONS(788), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(788), + [anon_sym_BQUOTE] = ACTIONS(788), + [anon_sym_LT_LPAREN] = ACTIONS(788), + [anon_sym_GT_LPAREN] = ACTIONS(788), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(774), + [sym_word] = ACTIONS(790), }, [333] = { - [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__concat] = ACTIONS(792), + [anon_sym_EQ_TILDE] = ACTIONS(1569), + [anon_sym_EQ_EQ] = ACTIONS(1569), + [anon_sym_RBRACK] = ACTIONS(792), + [sym__special_characters] = ACTIONS(794), + [anon_sym_DQUOTE] = ACTIONS(792), + [anon_sym_DOLLAR] = ACTIONS(1569), + [sym_raw_string] = ACTIONS(792), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(792), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(792), + [anon_sym_BQUOTE] = ACTIONS(792), + [anon_sym_LT_LPAREN] = ACTIONS(792), + [anon_sym_GT_LPAREN] = ACTIONS(792), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(778), + [sym_word] = ACTIONS(794), }, [334] = { [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_DQUOTE] = ACTIONS(1571), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -21084,56 +21176,59 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(182), }, [335] = { - [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__concat] = ACTIONS(824), + [anon_sym_EQ_TILDE] = ACTIONS(1573), + [anon_sym_EQ_EQ] = ACTIONS(1573), + [anon_sym_RBRACK] = ACTIONS(824), + [sym__special_characters] = ACTIONS(826), + [anon_sym_DQUOTE] = ACTIONS(824), + [anon_sym_DOLLAR] = ACTIONS(1573), + [sym_raw_string] = ACTIONS(824), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(824), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(824), + [anon_sym_BQUOTE] = ACTIONS(824), + [anon_sym_LT_LPAREN] = ACTIONS(824), + [anon_sym_GT_LPAREN] = ACTIONS(824), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(810), + [sym_word] = ACTIONS(826), }, [336] = { - [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__concat] = ACTIONS(828), + [anon_sym_EQ_TILDE] = ACTIONS(1575), + [anon_sym_EQ_EQ] = ACTIONS(1575), + [anon_sym_RBRACK] = ACTIONS(828), + [sym__special_characters] = ACTIONS(830), + [anon_sym_DQUOTE] = ACTIONS(828), + [anon_sym_DOLLAR] = ACTIONS(1575), + [sym_raw_string] = ACTIONS(828), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), + [anon_sym_BQUOTE] = ACTIONS(828), + [anon_sym_LT_LPAREN] = ACTIONS(828), + [anon_sym_GT_LPAREN] = ACTIONS(828), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(814), + [sym_word] = ACTIONS(830), }, [337] = { - [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__concat] = ACTIONS(832), + [anon_sym_EQ_TILDE] = ACTIONS(1577), + [anon_sym_EQ_EQ] = ACTIONS(1577), + [anon_sym_RBRACK] = ACTIONS(832), + [sym__special_characters] = ACTIONS(834), + [anon_sym_DQUOTE] = ACTIONS(832), + [anon_sym_DOLLAR] = ACTIONS(1577), + [sym_raw_string] = ACTIONS(832), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(832), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(832), + [anon_sym_BQUOTE] = ACTIONS(832), + [anon_sym_LT_LPAREN] = ACTIONS(832), + [anon_sym_GT_LPAREN] = ACTIONS(832), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(818), + [sym_word] = ACTIONS(834), }, [338] = { - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(836), + [anon_sym_EQ] = ACTIONS(1579), [sym_comment] = ACTIONS(56), }, [339] = { @@ -21145,39 +21240,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(1581), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(1583), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [340] = { [sym_subscript] = STATE(840), - [sym_variable_name] = ACTIONS(1557), - [anon_sym_DOLLAR] = ACTIONS(1559), - [anon_sym_DASH] = ACTIONS(1559), + [sym_variable_name] = ACTIONS(1585), + [anon_sym_DOLLAR] = ACTIONS(1587), + [anon_sym_DASH] = ACTIONS(1587), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1589), + [anon_sym_STAR] = ACTIONS(1587), + [anon_sym_AT] = ACTIONS(1587), + [anon_sym_QMARK] = ACTIONS(1587), + [anon_sym_0] = ACTIONS(1591), + [anon_sym__] = ACTIONS(1591), }, [341] = { [sym_concatenation] = STATE(451), @@ -21188,26 +21283,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(1593), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(1595), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [342] = { [sym_concatenation] = STATE(451), @@ -21218,156 +21313,156 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(1597), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(1599), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [343] = { - [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_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(1601), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), [sym_comment] = ACTIONS(56), }, [344] = { - [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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(1601), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [345] = { - [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), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_PIPE_AMP] = ACTIONS(1072), + [anon_sym_AMP_AMP] = ACTIONS(1074), + [anon_sym_PIPE_PIPE] = ACTIONS(1074), + [anon_sym_BQUOTE] = ACTIONS(1601), [sym_comment] = ACTIONS(56), }, [346] = { - [sym_file_descriptor] = ACTIONS(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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_PIPE_AMP] = ACTIONS(1072), + [anon_sym_AMP_AMP] = ACTIONS(1074), + [anon_sym_PIPE_PIPE] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(1601), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [347] = { - [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_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(1603), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), [sym_comment] = ACTIONS(56), }, [348] = { - [sym_file_descriptor] = ACTIONS(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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(1603), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [349] = { [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_file_descriptor] = ACTIONS(352), + [anon_sym_PIPE] = ACTIONS(1605), + [anon_sym_SEMI_SEMI] = ACTIONS(1605), + [anon_sym_PIPE_AMP] = ACTIONS(1605), + [anon_sym_AMP_AMP] = ACTIONS(1605), + [anon_sym_PIPE_PIPE] = ACTIONS(1605), + [anon_sym_LT] = ACTIONS(358), + [anon_sym_GT] = ACTIONS(358), + [anon_sym_GT_GT] = ACTIONS(358), + [anon_sym_AMP_GT] = ACTIONS(358), + [anon_sym_AMP_GT_GT] = ACTIONS(358), + [anon_sym_LT_AMP] = ACTIONS(358), + [anon_sym_GT_AMP] = ACTIONS(358), + [anon_sym_LT_LT] = ACTIONS(360), + [anon_sym_LT_LT_DASH] = ACTIONS(360), + [anon_sym_LT_LT_LT] = ACTIONS(362), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1577), - [anon_sym_LF] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), + [anon_sym_SEMI] = ACTIONS(1605), + [anon_sym_LF] = ACTIONS(1605), + [anon_sym_AMP] = ACTIONS(1605), }, [350] = { [sym_concatenation] = STATE(84), @@ -21378,68 +21473,72 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_EQ_TILDE] = ACTIONS(1607), + [anon_sym_EQ_EQ] = ACTIONS(1607), + [anon_sym_RBRACK] = ACTIONS(1559), + [sym__special_characters] = ACTIONS(1610), + [anon_sym_DQUOTE] = ACTIONS(1613), + [anon_sym_DOLLAR] = ACTIONS(1616), + [sym_raw_string] = ACTIONS(1619), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1622), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1625), + [anon_sym_BQUOTE] = ACTIONS(1628), + [anon_sym_LT_LPAREN] = ACTIONS(1631), + [anon_sym_GT_LPAREN] = ACTIONS(1631), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1606), + [sym_word] = ACTIONS(1634), }, [351] = { [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__concat] = ACTIONS(658), + [anon_sym_EQ_TILDE] = ACTIONS(1551), + [anon_sym_EQ_EQ] = ACTIONS(1551), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1553), + [sym__special_characters] = ACTIONS(1555), + [anon_sym_DQUOTE] = ACTIONS(1553), + [anon_sym_DOLLAR] = ACTIONS(1551), + [sym_raw_string] = ACTIONS(1553), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1553), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1553), + [anon_sym_BQUOTE] = ACTIONS(1553), + [anon_sym_LT_LPAREN] = ACTIONS(1553), + [anon_sym_GT_LPAREN] = ACTIONS(1553), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1527), + [sym_word] = ACTIONS(1555), }, [352] = { [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__concat] = ACTIONS(658), + [anon_sym_EQ_TILDE] = ACTIONS(1557), + [anon_sym_EQ_EQ] = ACTIONS(1557), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1559), + [sym__special_characters] = ACTIONS(1561), + [anon_sym_DQUOTE] = ACTIONS(1559), + [anon_sym_DOLLAR] = ACTIONS(1557), + [sym_raw_string] = ACTIONS(1559), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1559), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1559), + [anon_sym_BQUOTE] = ACTIONS(1559), + [anon_sym_LT_LPAREN] = ACTIONS(1559), + [anon_sym_GT_LPAREN] = ACTIONS(1559), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1533), + [sym_word] = ACTIONS(1561), }, [353] = { - [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), + [anon_sym_EQ_TILDE] = ACTIONS(1557), + [anon_sym_EQ_EQ] = ACTIONS(1557), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1559), + [sym__special_characters] = ACTIONS(1561), + [anon_sym_DQUOTE] = ACTIONS(1559), + [anon_sym_DOLLAR] = ACTIONS(1557), + [sym_raw_string] = ACTIONS(1559), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1559), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1559), + [anon_sym_BQUOTE] = ACTIONS(1559), + [anon_sym_LT_LPAREN] = ACTIONS(1559), + [anon_sym_GT_LPAREN] = ACTIONS(1559), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1533), + [sym_word] = ACTIONS(1561), }, [354] = { [sym_string] = STATE(850), @@ -21448,57 +21547,59 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(850), [sym_command_substitution] = STATE(850), [sym_process_substitution] = STATE(850), - [sym__special_characters] = ACTIONS(1609), + [sym__special_characters] = ACTIONS(1637), [anon_sym_DQUOTE] = ACTIONS(146), [anon_sym_DOLLAR] = ACTIONS(148), - [sym_raw_string] = ACTIONS(1611), + [sym_raw_string] = ACTIONS(1639), [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), + [sym_word] = ACTIONS(1637), }, [355] = { [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__concat] = ACTIONS(658), + [anon_sym_EQ_TILDE] = ACTIONS(1567), + [anon_sym_EQ_EQ] = ACTIONS(1567), + [anon_sym_RBRACK_RBRACK] = ACTIONS(788), + [sym__special_characters] = ACTIONS(790), + [anon_sym_DQUOTE] = ACTIONS(788), + [anon_sym_DOLLAR] = ACTIONS(1567), + [sym_raw_string] = ACTIONS(788), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(788), + [anon_sym_BQUOTE] = ACTIONS(788), + [anon_sym_LT_LPAREN] = ACTIONS(788), + [anon_sym_GT_LPAREN] = ACTIONS(788), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(774), + [sym_word] = ACTIONS(790), }, [356] = { - [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__concat] = ACTIONS(792), + [anon_sym_EQ_TILDE] = ACTIONS(1569), + [anon_sym_EQ_EQ] = ACTIONS(1569), + [anon_sym_RBRACK_RBRACK] = ACTIONS(792), + [sym__special_characters] = ACTIONS(794), + [anon_sym_DQUOTE] = ACTIONS(792), + [anon_sym_DOLLAR] = ACTIONS(1569), + [sym_raw_string] = ACTIONS(792), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(792), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(792), + [anon_sym_BQUOTE] = ACTIONS(792), + [anon_sym_LT_LPAREN] = ACTIONS(792), + [anon_sym_GT_LPAREN] = ACTIONS(792), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(778), + [sym_word] = ACTIONS(794), }, [357] = { [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_DQUOTE] = ACTIONS(1641), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -21507,56 +21608,59 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(182), }, [358] = { - [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__concat] = ACTIONS(824), + [anon_sym_EQ_TILDE] = ACTIONS(1573), + [anon_sym_EQ_EQ] = ACTIONS(1573), + [anon_sym_RBRACK_RBRACK] = ACTIONS(824), + [sym__special_characters] = ACTIONS(826), + [anon_sym_DQUOTE] = ACTIONS(824), + [anon_sym_DOLLAR] = ACTIONS(1573), + [sym_raw_string] = ACTIONS(824), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(824), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(824), + [anon_sym_BQUOTE] = ACTIONS(824), + [anon_sym_LT_LPAREN] = ACTIONS(824), + [anon_sym_GT_LPAREN] = ACTIONS(824), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(810), + [sym_word] = ACTIONS(826), }, [359] = { - [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__concat] = ACTIONS(828), + [anon_sym_EQ_TILDE] = ACTIONS(1575), + [anon_sym_EQ_EQ] = ACTIONS(1575), + [anon_sym_RBRACK_RBRACK] = ACTIONS(828), + [sym__special_characters] = ACTIONS(830), + [anon_sym_DQUOTE] = ACTIONS(828), + [anon_sym_DOLLAR] = ACTIONS(1575), + [sym_raw_string] = ACTIONS(828), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), + [anon_sym_BQUOTE] = ACTIONS(828), + [anon_sym_LT_LPAREN] = ACTIONS(828), + [anon_sym_GT_LPAREN] = ACTIONS(828), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(814), + [sym_word] = ACTIONS(830), }, [360] = { - [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__concat] = ACTIONS(832), + [anon_sym_EQ_TILDE] = ACTIONS(1577), + [anon_sym_EQ_EQ] = ACTIONS(1577), + [anon_sym_RBRACK_RBRACK] = ACTIONS(832), + [sym__special_characters] = ACTIONS(834), + [anon_sym_DQUOTE] = ACTIONS(832), + [anon_sym_DOLLAR] = ACTIONS(1577), + [sym_raw_string] = ACTIONS(832), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(832), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(832), + [anon_sym_BQUOTE] = ACTIONS(832), + [anon_sym_LT_LPAREN] = ACTIONS(832), + [anon_sym_GT_LPAREN] = ACTIONS(832), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(818), + [sym_word] = ACTIONS(834), }, [361] = { - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(1615), + [anon_sym_LBRACK] = ACTIONS(836), + [anon_sym_EQ] = ACTIONS(1643), [sym_comment] = ACTIONS(56), }, [362] = { @@ -21568,39 +21672,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(1645), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(1647), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [363] = { [sym_subscript] = STATE(860), - [sym_variable_name] = ACTIONS(1621), - [anon_sym_DOLLAR] = ACTIONS(1623), - [anon_sym_DASH] = ACTIONS(1623), + [sym_variable_name] = ACTIONS(1649), + [anon_sym_DOLLAR] = ACTIONS(1651), + [anon_sym_DASH] = ACTIONS(1651), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1653), + [anon_sym_STAR] = ACTIONS(1651), + [anon_sym_AT] = ACTIONS(1651), + [anon_sym_QMARK] = ACTIONS(1651), + [anon_sym_0] = ACTIONS(1655), + [anon_sym__] = ACTIONS(1655), }, [364] = { [sym_concatenation] = STATE(451), @@ -21611,26 +21715,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(1657), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(1659), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [365] = { [sym_concatenation] = STATE(451), @@ -21641,130 +21745,130 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(1661), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(1663), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [366] = { - [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_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(1665), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), [sym_comment] = ACTIONS(56), }, [367] = { - [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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(1665), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [368] = { - [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), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_PIPE_AMP] = ACTIONS(1072), + [anon_sym_AMP_AMP] = ACTIONS(1074), + [anon_sym_PIPE_PIPE] = ACTIONS(1074), + [anon_sym_BQUOTE] = ACTIONS(1665), [sym_comment] = ACTIONS(56), }, [369] = { - [sym_file_descriptor] = ACTIONS(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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_PIPE_AMP] = ACTIONS(1072), + [anon_sym_AMP_AMP] = ACTIONS(1074), + [anon_sym_PIPE_PIPE] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(1665), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [370] = { - [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_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(1667), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), [sym_comment] = ACTIONS(56), }, [371] = { - [sym_file_descriptor] = ACTIONS(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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(1667), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [372] = { [sym_concatenation] = STATE(95), @@ -21775,19 +21879,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_EQ_TILDE] = ACTIONS(1669), + [anon_sym_EQ_EQ] = ACTIONS(1669), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1559), + [sym__special_characters] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(1675), + [anon_sym_DOLLAR] = ACTIONS(1678), + [sym_raw_string] = ACTIONS(1681), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1684), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1687), + [anon_sym_BQUOTE] = ACTIONS(1690), + [anon_sym_LT_LPAREN] = ACTIONS(1693), + [anon_sym_GT_LPAREN] = ACTIONS(1693), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1668), + [sym_word] = ACTIONS(1696), }, [373] = { [sym_concatenation] = STATE(869), @@ -21798,43 +21903,43 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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__empty_value] = ACTIONS(1699), + [anon_sym_LPAREN] = ACTIONS(1701), + [sym__special_characters] = ACTIONS(1703), + [anon_sym_DQUOTE] = ACTIONS(692), + [anon_sym_DOLLAR] = ACTIONS(1705), + [sym_raw_string] = ACTIONS(1707), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1709), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1711), + [anon_sym_BQUOTE] = ACTIONS(1713), + [anon_sym_LT_LPAREN] = ACTIONS(1715), + [anon_sym_GT_LPAREN] = ACTIONS(1715), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1689), + [sym_word] = ACTIONS(1717), }, [374] = { - [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_variable_name] = ACTIONS(440), + [anon_sym_PIPE] = ACTIONS(442), + [anon_sym_RPAREN] = ACTIONS(442), + [anon_sym_SEMI_SEMI] = ACTIONS(442), + [anon_sym_PIPE_AMP] = ACTIONS(442), + [anon_sym_AMP_AMP] = ACTIONS(442), + [anon_sym_PIPE_PIPE] = ACTIONS(442), + [sym__special_characters] = ACTIONS(442), + [anon_sym_DQUOTE] = ACTIONS(442), + [anon_sym_DOLLAR] = ACTIONS(442), + [sym_raw_string] = ACTIONS(442), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(442), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(442), + [anon_sym_BQUOTE] = ACTIONS(442), + [anon_sym_LT_LPAREN] = ACTIONS(442), + [anon_sym_GT_LPAREN] = ACTIONS(442), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(440), - [sym_word] = ACTIONS(440), - [anon_sym_SEMI] = ACTIONS(440), - [anon_sym_LF] = ACTIONS(440), - [anon_sym_AMP] = ACTIONS(440), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(442), + [sym_word] = ACTIONS(442), + [anon_sym_SEMI] = ACTIONS(442), + [anon_sym_LF] = ACTIONS(442), + [anon_sym_AMP] = ACTIONS(442), }, [375] = { [sym_string] = STATE(873), @@ -21843,73 +21948,73 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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__special_characters] = ACTIONS(1719), + [anon_sym_DQUOTE] = ACTIONS(692), + [anon_sym_DOLLAR] = ACTIONS(1705), + [sym_raw_string] = ACTIONS(1721), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1709), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1711), + [anon_sym_BQUOTE] = ACTIONS(1713), + [anon_sym_LT_LPAREN] = ACTIONS(1715), + [anon_sym_GT_LPAREN] = ACTIONS(1715), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1691), + [sym_word] = ACTIONS(1719), }, [376] = { [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__concat] = ACTIONS(684), + [sym_variable_name] = ACTIONS(788), + [anon_sym_PIPE] = ACTIONS(790), + [anon_sym_SEMI_SEMI] = ACTIONS(790), + [anon_sym_PIPE_AMP] = ACTIONS(790), + [anon_sym_AMP_AMP] = ACTIONS(790), + [anon_sym_PIPE_PIPE] = ACTIONS(790), + [sym__special_characters] = ACTIONS(790), + [anon_sym_DQUOTE] = ACTIONS(790), + [anon_sym_DOLLAR] = ACTIONS(790), + [sym_raw_string] = ACTIONS(790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(790), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(790), + [anon_sym_BQUOTE] = ACTIONS(790), + [anon_sym_LT_LPAREN] = ACTIONS(790), + [anon_sym_GT_LPAREN] = ACTIONS(790), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(774), - [sym_word] = ACTIONS(774), - [anon_sym_SEMI] = ACTIONS(774), - [anon_sym_LF] = ACTIONS(774), - [anon_sym_AMP] = ACTIONS(774), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(790), + [sym_word] = ACTIONS(790), + [anon_sym_SEMI] = ACTIONS(790), + [anon_sym_LF] = ACTIONS(790), + [anon_sym_AMP] = ACTIONS(790), }, [377] = { - [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__concat] = ACTIONS(792), + [sym_variable_name] = ACTIONS(792), + [anon_sym_PIPE] = ACTIONS(794), + [anon_sym_SEMI_SEMI] = ACTIONS(794), + [anon_sym_PIPE_AMP] = ACTIONS(794), + [anon_sym_AMP_AMP] = ACTIONS(794), + [anon_sym_PIPE_PIPE] = ACTIONS(794), + [sym__special_characters] = ACTIONS(794), + [anon_sym_DQUOTE] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(794), + [sym_raw_string] = ACTIONS(794), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(794), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(794), + [anon_sym_BQUOTE] = ACTIONS(794), + [anon_sym_LT_LPAREN] = ACTIONS(794), + [anon_sym_GT_LPAREN] = ACTIONS(794), [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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(794), + [sym_word] = ACTIONS(794), + [anon_sym_SEMI] = ACTIONS(794), + [anon_sym_LF] = ACTIONS(794), + [anon_sym_AMP] = ACTIONS(794), }, [378] = { [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_DQUOTE] = ACTIONS(1723), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -21918,80 +22023,80 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(182), }, [379] = { - [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__concat] = ACTIONS(824), + [sym_variable_name] = ACTIONS(824), + [anon_sym_PIPE] = ACTIONS(826), + [anon_sym_SEMI_SEMI] = ACTIONS(826), + [anon_sym_PIPE_AMP] = ACTIONS(826), + [anon_sym_AMP_AMP] = ACTIONS(826), + [anon_sym_PIPE_PIPE] = ACTIONS(826), + [sym__special_characters] = ACTIONS(826), + [anon_sym_DQUOTE] = ACTIONS(826), + [anon_sym_DOLLAR] = ACTIONS(826), + [sym_raw_string] = ACTIONS(826), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(826), + [anon_sym_BQUOTE] = ACTIONS(826), + [anon_sym_LT_LPAREN] = ACTIONS(826), + [anon_sym_GT_LPAREN] = ACTIONS(826), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(810), - [sym_word] = ACTIONS(810), - [anon_sym_SEMI] = ACTIONS(810), - [anon_sym_LF] = ACTIONS(810), - [anon_sym_AMP] = ACTIONS(810), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(826), + [sym_word] = ACTIONS(826), + [anon_sym_SEMI] = ACTIONS(826), + [anon_sym_LF] = ACTIONS(826), + [anon_sym_AMP] = ACTIONS(826), }, [380] = { - [sym__concat] = ACTIONS(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__concat] = ACTIONS(828), + [sym_variable_name] = ACTIONS(828), + [anon_sym_PIPE] = ACTIONS(830), + [anon_sym_SEMI_SEMI] = ACTIONS(830), + [anon_sym_PIPE_AMP] = ACTIONS(830), + [anon_sym_AMP_AMP] = ACTIONS(830), + [anon_sym_PIPE_PIPE] = ACTIONS(830), + [sym__special_characters] = ACTIONS(830), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(830), + [sym_raw_string] = ACTIONS(830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(830), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_LT_LPAREN] = ACTIONS(830), + [anon_sym_GT_LPAREN] = ACTIONS(830), [sym_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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(830), + [sym_word] = ACTIONS(830), + [anon_sym_SEMI] = ACTIONS(830), + [anon_sym_LF] = ACTIONS(830), + [anon_sym_AMP] = ACTIONS(830), }, [381] = { - [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__concat] = ACTIONS(832), + [sym_variable_name] = ACTIONS(832), + [anon_sym_PIPE] = ACTIONS(834), + [anon_sym_SEMI_SEMI] = ACTIONS(834), + [anon_sym_PIPE_AMP] = ACTIONS(834), + [anon_sym_AMP_AMP] = ACTIONS(834), + [anon_sym_PIPE_PIPE] = ACTIONS(834), + [sym__special_characters] = ACTIONS(834), + [anon_sym_DQUOTE] = ACTIONS(834), + [anon_sym_DOLLAR] = ACTIONS(834), + [sym_raw_string] = ACTIONS(834), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(834), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(834), + [anon_sym_BQUOTE] = ACTIONS(834), + [anon_sym_LT_LPAREN] = ACTIONS(834), + [anon_sym_GT_LPAREN] = ACTIONS(834), [sym_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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(834), + [sym_word] = ACTIONS(834), + [anon_sym_SEMI] = ACTIONS(834), + [anon_sym_LF] = ACTIONS(834), + [anon_sym_AMP] = ACTIONS(834), }, [382] = { - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(1697), + [anon_sym_LBRACK] = ACTIONS(836), + [anon_sym_EQ] = ACTIONS(1725), [sym_comment] = ACTIONS(56), }, [383] = { @@ -22003,39 +22108,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(1727), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(1729), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [384] = { [sym_subscript] = STATE(883), - [sym_variable_name] = ACTIONS(1703), - [anon_sym_DOLLAR] = ACTIONS(1705), - [anon_sym_DASH] = ACTIONS(1705), + [sym_variable_name] = ACTIONS(1731), + [anon_sym_DOLLAR] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1733), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1735), + [anon_sym_STAR] = ACTIONS(1733), + [anon_sym_AT] = ACTIONS(1733), + [anon_sym_QMARK] = ACTIONS(1733), + [anon_sym_0] = ACTIONS(1737), + [anon_sym__] = ACTIONS(1737), }, [385] = { [sym_concatenation] = STATE(451), @@ -22046,26 +22151,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(1739), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(1741), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [386] = { [sym_concatenation] = STATE(451), @@ -22076,130 +22181,130 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(1743), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(1745), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [387] = { - [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_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(1747), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), [sym_comment] = ACTIONS(56), }, [388] = { - [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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(1747), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [389] = { - [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), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_PIPE_AMP] = ACTIONS(1072), + [anon_sym_AMP_AMP] = ACTIONS(1074), + [anon_sym_PIPE_PIPE] = ACTIONS(1074), + [anon_sym_BQUOTE] = ACTIONS(1747), [sym_comment] = ACTIONS(56), }, [390] = { - [sym_file_descriptor] = ACTIONS(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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_PIPE_AMP] = ACTIONS(1072), + [anon_sym_AMP_AMP] = ACTIONS(1074), + [anon_sym_PIPE_PIPE] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(1747), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [391] = { - [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_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(1749), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), [sym_comment] = ACTIONS(56), }, [392] = { - [sym_file_descriptor] = ACTIONS(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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(1749), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [393] = { [sym_variable_assignment] = STATE(107), @@ -22212,27 +22317,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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_variable_name] = ACTIONS(1751), + [anon_sym_PIPE] = ACTIONS(1754), + [anon_sym_SEMI_SEMI] = ACTIONS(1754), + [anon_sym_PIPE_AMP] = ACTIONS(1754), + [anon_sym_AMP_AMP] = ACTIONS(1754), + [anon_sym_PIPE_PIPE] = ACTIONS(1754), + [sym__special_characters] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(1759), + [anon_sym_DOLLAR] = ACTIONS(1762), + [sym_raw_string] = ACTIONS(1765), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1768), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1771), + [anon_sym_BQUOTE] = ACTIONS(1774), + [anon_sym_LT_LPAREN] = ACTIONS(1777), + [anon_sym_GT_LPAREN] = ACTIONS(1777), [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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1780), + [sym_word] = ACTIONS(1765), + [anon_sym_SEMI] = ACTIONS(1754), + [anon_sym_LF] = ACTIONS(1754), + [anon_sym_AMP] = ACTIONS(1754), }, [394] = { [sym_string] = STATE(892), @@ -22241,71 +22346,71 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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__special_characters] = ACTIONS(1783), + [anon_sym_DQUOTE] = ACTIONS(728), + [anon_sym_DOLLAR] = ACTIONS(1785), + [sym_raw_string] = ACTIONS(1787), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1789), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1791), + [anon_sym_BQUOTE] = ACTIONS(1793), + [anon_sym_LT_LPAREN] = ACTIONS(1795), + [anon_sym_GT_LPAREN] = ACTIONS(1795), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1755), + [sym_word] = ACTIONS(1783), }, [395] = { [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__concat] = ACTIONS(722), + [anon_sym_PIPE] = ACTIONS(790), + [anon_sym_SEMI_SEMI] = ACTIONS(790), + [anon_sym_PIPE_AMP] = ACTIONS(790), + [anon_sym_AMP_AMP] = ACTIONS(790), + [anon_sym_PIPE_PIPE] = ACTIONS(790), + [sym__special_characters] = ACTIONS(790), + [anon_sym_DQUOTE] = ACTIONS(790), + [anon_sym_DOLLAR] = ACTIONS(790), + [sym_raw_string] = ACTIONS(790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(790), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(790), + [anon_sym_BQUOTE] = ACTIONS(790), + [anon_sym_LT_LPAREN] = ACTIONS(790), + [anon_sym_GT_LPAREN] = ACTIONS(790), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(774), - [sym_word] = ACTIONS(774), - [anon_sym_SEMI] = ACTIONS(774), - [anon_sym_LF] = ACTIONS(774), - [anon_sym_AMP] = ACTIONS(774), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(790), + [sym_word] = ACTIONS(790), + [anon_sym_SEMI] = ACTIONS(790), + [anon_sym_LF] = ACTIONS(790), + [anon_sym_AMP] = ACTIONS(790), }, [396] = { - [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__concat] = ACTIONS(792), + [anon_sym_PIPE] = ACTIONS(794), + [anon_sym_SEMI_SEMI] = ACTIONS(794), + [anon_sym_PIPE_AMP] = ACTIONS(794), + [anon_sym_AMP_AMP] = ACTIONS(794), + [anon_sym_PIPE_PIPE] = ACTIONS(794), + [sym__special_characters] = ACTIONS(794), + [anon_sym_DQUOTE] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(794), + [sym_raw_string] = ACTIONS(794), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(794), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(794), + [anon_sym_BQUOTE] = ACTIONS(794), + [anon_sym_LT_LPAREN] = ACTIONS(794), + [anon_sym_GT_LPAREN] = ACTIONS(794), [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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(794), + [sym_word] = ACTIONS(794), + [anon_sym_SEMI] = ACTIONS(794), + [anon_sym_LF] = ACTIONS(794), + [anon_sym_AMP] = ACTIONS(794), }, [397] = { [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_DQUOTE] = ACTIONS(1797), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -22314,77 +22419,77 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(182), }, [398] = { - [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__concat] = ACTIONS(824), + [anon_sym_PIPE] = ACTIONS(826), + [anon_sym_SEMI_SEMI] = ACTIONS(826), + [anon_sym_PIPE_AMP] = ACTIONS(826), + [anon_sym_AMP_AMP] = ACTIONS(826), + [anon_sym_PIPE_PIPE] = ACTIONS(826), + [sym__special_characters] = ACTIONS(826), + [anon_sym_DQUOTE] = ACTIONS(826), + [anon_sym_DOLLAR] = ACTIONS(826), + [sym_raw_string] = ACTIONS(826), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(826), + [anon_sym_BQUOTE] = ACTIONS(826), + [anon_sym_LT_LPAREN] = ACTIONS(826), + [anon_sym_GT_LPAREN] = ACTIONS(826), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(810), - [sym_word] = ACTIONS(810), - [anon_sym_SEMI] = ACTIONS(810), - [anon_sym_LF] = ACTIONS(810), - [anon_sym_AMP] = ACTIONS(810), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(826), + [sym_word] = ACTIONS(826), + [anon_sym_SEMI] = ACTIONS(826), + [anon_sym_LF] = ACTIONS(826), + [anon_sym_AMP] = ACTIONS(826), }, [399] = { - [sym__concat] = ACTIONS(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__concat] = ACTIONS(828), + [anon_sym_PIPE] = ACTIONS(830), + [anon_sym_SEMI_SEMI] = ACTIONS(830), + [anon_sym_PIPE_AMP] = ACTIONS(830), + [anon_sym_AMP_AMP] = ACTIONS(830), + [anon_sym_PIPE_PIPE] = ACTIONS(830), + [sym__special_characters] = ACTIONS(830), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(830), + [sym_raw_string] = ACTIONS(830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(830), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_LT_LPAREN] = ACTIONS(830), + [anon_sym_GT_LPAREN] = ACTIONS(830), [sym_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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(830), + [sym_word] = ACTIONS(830), + [anon_sym_SEMI] = ACTIONS(830), + [anon_sym_LF] = ACTIONS(830), + [anon_sym_AMP] = ACTIONS(830), }, [400] = { - [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__concat] = ACTIONS(832), + [anon_sym_PIPE] = ACTIONS(834), + [anon_sym_SEMI_SEMI] = ACTIONS(834), + [anon_sym_PIPE_AMP] = ACTIONS(834), + [anon_sym_AMP_AMP] = ACTIONS(834), + [anon_sym_PIPE_PIPE] = ACTIONS(834), + [sym__special_characters] = ACTIONS(834), + [anon_sym_DQUOTE] = ACTIONS(834), + [anon_sym_DOLLAR] = ACTIONS(834), + [sym_raw_string] = ACTIONS(834), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(834), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(834), + [anon_sym_BQUOTE] = ACTIONS(834), + [anon_sym_LT_LPAREN] = ACTIONS(834), + [anon_sym_GT_LPAREN] = ACTIONS(834), [sym_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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(834), + [sym_word] = ACTIONS(834), + [anon_sym_SEMI] = ACTIONS(834), + [anon_sym_LF] = ACTIONS(834), + [anon_sym_AMP] = ACTIONS(834), }, [401] = { - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(1771), + [anon_sym_LBRACK] = ACTIONS(836), + [anon_sym_EQ] = ACTIONS(1799), [sym_comment] = ACTIONS(56), }, [402] = { @@ -22396,39 +22501,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(1801), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(1803), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [403] = { [sym_subscript] = STATE(902), - [sym_variable_name] = ACTIONS(1777), - [anon_sym_DOLLAR] = ACTIONS(1779), - [anon_sym_DASH] = ACTIONS(1779), + [sym_variable_name] = ACTIONS(1805), + [anon_sym_DOLLAR] = ACTIONS(1807), + [anon_sym_DASH] = ACTIONS(1807), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1809), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AT] = ACTIONS(1807), + [anon_sym_QMARK] = ACTIONS(1807), + [anon_sym_0] = ACTIONS(1811), + [anon_sym__] = ACTIONS(1811), }, [404] = { [sym_concatenation] = STATE(451), @@ -22439,26 +22544,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(1813), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(1815), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [405] = { [sym_concatenation] = STATE(451), @@ -22469,130 +22574,130 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(1817), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(1819), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [406] = { - [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_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(1821), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), [sym_comment] = ACTIONS(56), }, [407] = { - [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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(1821), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [408] = { - [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), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_PIPE_AMP] = ACTIONS(1072), + [anon_sym_AMP_AMP] = ACTIONS(1074), + [anon_sym_PIPE_PIPE] = ACTIONS(1074), + [anon_sym_BQUOTE] = ACTIONS(1821), [sym_comment] = ACTIONS(56), }, [409] = { - [sym_file_descriptor] = ACTIONS(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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_PIPE_AMP] = ACTIONS(1072), + [anon_sym_AMP_AMP] = ACTIONS(1074), + [anon_sym_PIPE_PIPE] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(1821), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [410] = { - [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_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(1823), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), [sym_comment] = ACTIONS(56), }, [411] = { - [sym_file_descriptor] = ACTIONS(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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(1823), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [412] = { [sym_concatenation] = STATE(119), @@ -22603,26 +22708,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_PIPE] = ACTIONS(1825), + [anon_sym_SEMI_SEMI] = ACTIONS(1825), + [anon_sym_PIPE_AMP] = ACTIONS(1825), + [anon_sym_AMP_AMP] = ACTIONS(1825), + [anon_sym_PIPE_PIPE] = ACTIONS(1825), + [sym__special_characters] = ACTIONS(1827), + [anon_sym_DQUOTE] = ACTIONS(1830), + [anon_sym_DOLLAR] = ACTIONS(1833), + [sym_raw_string] = ACTIONS(1836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1839), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1842), + [anon_sym_BQUOTE] = ACTIONS(1845), + [anon_sym_LT_LPAREN] = ACTIONS(1848), + [anon_sym_GT_LPAREN] = ACTIONS(1848), [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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1851), + [sym_word] = ACTIONS(1836), + [anon_sym_SEMI] = ACTIONS(1825), + [anon_sym_LF] = ACTIONS(1825), + [anon_sym_AMP] = ACTIONS(1825), }, [413] = { [sym_string] = STATE(911), @@ -22631,71 +22736,71 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(911), [sym_command_substitution] = STATE(911), [sym_process_substitution] = STATE(911), - [sym__special_characters] = ACTIONS(1826), + [sym__special_characters] = ACTIONS(1854), [anon_sym_DQUOTE] = ACTIONS(208), [anon_sym_DOLLAR] = ACTIONS(210), - [sym_raw_string] = ACTIONS(1828), + [sym_raw_string] = ACTIONS(1856), [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), + [sym_word] = ACTIONS(1854), }, [414] = { [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_file_descriptor] = ACTIONS(788), + [sym__concat] = ACTIONS(756), + [sym_variable_name] = ACTIONS(788), + [anon_sym_LT] = ACTIONS(1567), + [anon_sym_GT] = ACTIONS(1567), + [anon_sym_GT_GT] = ACTIONS(788), + [anon_sym_AMP_GT] = ACTIONS(1567), + [anon_sym_AMP_GT_GT] = ACTIONS(788), + [anon_sym_LT_AMP] = ACTIONS(788), + [anon_sym_GT_AMP] = ACTIONS(788), + [sym__special_characters] = ACTIONS(1567), + [anon_sym_DQUOTE] = ACTIONS(788), + [anon_sym_DOLLAR] = ACTIONS(1567), + [sym_raw_string] = ACTIONS(788), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(788), + [anon_sym_BQUOTE] = ACTIONS(788), + [anon_sym_LT_LPAREN] = ACTIONS(788), + [anon_sym_GT_LPAREN] = ACTIONS(788), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1539), + [sym_word] = ACTIONS(1567), }, [415] = { - [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_file_descriptor] = ACTIONS(792), + [sym__concat] = ACTIONS(792), + [sym_variable_name] = ACTIONS(792), + [anon_sym_LT] = ACTIONS(1569), + [anon_sym_GT] = ACTIONS(1569), + [anon_sym_GT_GT] = ACTIONS(792), + [anon_sym_AMP_GT] = ACTIONS(1569), + [anon_sym_AMP_GT_GT] = ACTIONS(792), + [anon_sym_LT_AMP] = ACTIONS(792), + [anon_sym_GT_AMP] = ACTIONS(792), + [sym__special_characters] = ACTIONS(1569), + [anon_sym_DQUOTE] = ACTIONS(792), + [anon_sym_DOLLAR] = ACTIONS(1569), + [sym_raw_string] = ACTIONS(792), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(792), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(792), + [anon_sym_BQUOTE] = ACTIONS(792), + [anon_sym_LT_LPAREN] = ACTIONS(792), + [anon_sym_GT_LPAREN] = ACTIONS(792), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1541), + [sym_word] = ACTIONS(1569), }, [416] = { [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_DQUOTE] = ACTIONS(1858), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -22704,77 +22809,77 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(182), }, [417] = { - [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_file_descriptor] = ACTIONS(824), + [sym__concat] = ACTIONS(824), + [sym_variable_name] = ACTIONS(824), + [anon_sym_LT] = ACTIONS(1573), + [anon_sym_GT] = ACTIONS(1573), + [anon_sym_GT_GT] = ACTIONS(824), + [anon_sym_AMP_GT] = ACTIONS(1573), + [anon_sym_AMP_GT_GT] = ACTIONS(824), + [anon_sym_LT_AMP] = ACTIONS(824), + [anon_sym_GT_AMP] = ACTIONS(824), + [sym__special_characters] = ACTIONS(1573), + [anon_sym_DQUOTE] = ACTIONS(824), + [anon_sym_DOLLAR] = ACTIONS(1573), + [sym_raw_string] = ACTIONS(824), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(824), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(824), + [anon_sym_BQUOTE] = ACTIONS(824), + [anon_sym_LT_LPAREN] = ACTIONS(824), + [anon_sym_GT_LPAREN] = ACTIONS(824), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1545), + [sym_word] = ACTIONS(1573), }, [418] = { - [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_file_descriptor] = ACTIONS(828), + [sym__concat] = ACTIONS(828), + [sym_variable_name] = ACTIONS(828), + [anon_sym_LT] = ACTIONS(1575), + [anon_sym_GT] = ACTIONS(1575), + [anon_sym_GT_GT] = ACTIONS(828), + [anon_sym_AMP_GT] = ACTIONS(1575), + [anon_sym_AMP_GT_GT] = ACTIONS(828), + [anon_sym_LT_AMP] = ACTIONS(828), + [anon_sym_GT_AMP] = ACTIONS(828), + [sym__special_characters] = ACTIONS(1575), + [anon_sym_DQUOTE] = ACTIONS(828), + [anon_sym_DOLLAR] = ACTIONS(1575), + [sym_raw_string] = ACTIONS(828), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), + [anon_sym_BQUOTE] = ACTIONS(828), + [anon_sym_LT_LPAREN] = ACTIONS(828), + [anon_sym_GT_LPAREN] = ACTIONS(828), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1547), + [sym_word] = ACTIONS(1575), }, [419] = { - [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_file_descriptor] = ACTIONS(832), + [sym__concat] = ACTIONS(832), + [sym_variable_name] = ACTIONS(832), + [anon_sym_LT] = ACTIONS(1577), + [anon_sym_GT] = ACTIONS(1577), + [anon_sym_GT_GT] = ACTIONS(832), + [anon_sym_AMP_GT] = ACTIONS(1577), + [anon_sym_AMP_GT_GT] = ACTIONS(832), + [anon_sym_LT_AMP] = ACTIONS(832), + [anon_sym_GT_AMP] = ACTIONS(832), + [sym__special_characters] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(832), + [anon_sym_DOLLAR] = ACTIONS(1577), + [sym_raw_string] = ACTIONS(832), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(832), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(832), + [anon_sym_BQUOTE] = ACTIONS(832), + [anon_sym_LT_LPAREN] = ACTIONS(832), + [anon_sym_GT_LPAREN] = ACTIONS(832), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1549), + [sym_word] = ACTIONS(1577), }, [420] = { - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(1832), + [anon_sym_LBRACK] = ACTIONS(836), + [anon_sym_EQ] = ACTIONS(1860), [sym_comment] = ACTIONS(56), }, [421] = { @@ -22786,39 +22891,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(1862), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(1864), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [422] = { [sym_subscript] = STATE(921), - [sym_variable_name] = ACTIONS(1838), - [anon_sym_DOLLAR] = ACTIONS(1840), - [anon_sym_DASH] = ACTIONS(1840), + [sym_variable_name] = ACTIONS(1866), + [anon_sym_DOLLAR] = ACTIONS(1868), + [anon_sym_DASH] = ACTIONS(1868), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1868), + [anon_sym_AT] = ACTIONS(1868), + [anon_sym_QMARK] = ACTIONS(1868), + [anon_sym_0] = ACTIONS(1872), + [anon_sym__] = ACTIONS(1872), }, [423] = { [sym_concatenation] = STATE(451), @@ -22829,26 +22934,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(1874), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(1876), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [424] = { [sym_concatenation] = STATE(451), @@ -22859,242 +22964,244 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(1878), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(1880), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [425] = { - [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_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(1882), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), [sym_comment] = ACTIONS(56), }, [426] = { - [sym_file_descriptor] = ACTIONS(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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(1882), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [427] = { - [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), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_PIPE_AMP] = ACTIONS(1072), + [anon_sym_AMP_AMP] = ACTIONS(1074), + [anon_sym_PIPE_PIPE] = ACTIONS(1074), + [anon_sym_BQUOTE] = ACTIONS(1882), [sym_comment] = ACTIONS(56), }, [428] = { - [sym_file_descriptor] = ACTIONS(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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_PIPE_AMP] = ACTIONS(1072), + [anon_sym_AMP_AMP] = ACTIONS(1074), + [anon_sym_PIPE_PIPE] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(1882), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [429] = { - [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_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(1884), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), [sym_comment] = ACTIONS(56), }, [430] = { - [sym_file_descriptor] = ACTIONS(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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(1884), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [431] = { - [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_file_descriptor] = ACTIONS(1886), + [sym__concat] = ACTIONS(1886), + [anon_sym_PIPE] = ACTIONS(1888), + [anon_sym_SEMI_SEMI] = ACTIONS(1888), + [anon_sym_PIPE_AMP] = ACTIONS(1888), + [anon_sym_AMP_AMP] = ACTIONS(1888), + [anon_sym_PIPE_PIPE] = ACTIONS(1888), + [anon_sym_EQ_TILDE] = ACTIONS(1888), + [anon_sym_EQ_EQ] = ACTIONS(1888), + [anon_sym_LT] = ACTIONS(1888), + [anon_sym_GT] = ACTIONS(1888), + [anon_sym_GT_GT] = ACTIONS(1888), + [anon_sym_AMP_GT] = ACTIONS(1888), + [anon_sym_AMP_GT_GT] = ACTIONS(1888), + [anon_sym_LT_AMP] = ACTIONS(1888), + [anon_sym_GT_AMP] = ACTIONS(1888), + [anon_sym_LT_LT] = ACTIONS(1888), + [anon_sym_LT_LT_DASH] = ACTIONS(1888), + [anon_sym_LT_LT_LT] = ACTIONS(1888), + [sym__special_characters] = ACTIONS(1888), + [anon_sym_DQUOTE] = ACTIONS(1888), + [anon_sym_DOLLAR] = ACTIONS(1888), + [sym_raw_string] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1888), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1888), + [anon_sym_BQUOTE] = ACTIONS(1888), + [anon_sym_LT_LPAREN] = ACTIONS(1888), + [anon_sym_GT_LPAREN] = ACTIONS(1888), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1860), - [anon_sym_SEMI] = ACTIONS(1860), - [anon_sym_LF] = ACTIONS(1860), - [anon_sym_AMP] = ACTIONS(1860), + [sym_word] = ACTIONS(1888), + [anon_sym_SEMI] = ACTIONS(1888), + [anon_sym_LF] = ACTIONS(1888), + [anon_sym_AMP] = ACTIONS(1888), }, [432] = { [aux_sym_concatenation_repeat1] = STATE(432), - [sym_file_descriptor] = ACTIONS(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_file_descriptor] = ACTIONS(1886), + [sym__concat] = ACTIONS(1890), + [anon_sym_PIPE] = ACTIONS(1888), + [anon_sym_SEMI_SEMI] = ACTIONS(1888), + [anon_sym_PIPE_AMP] = ACTIONS(1888), + [anon_sym_AMP_AMP] = ACTIONS(1888), + [anon_sym_PIPE_PIPE] = ACTIONS(1888), + [anon_sym_EQ_TILDE] = ACTIONS(1888), + [anon_sym_EQ_EQ] = ACTIONS(1888), + [anon_sym_LT] = ACTIONS(1888), + [anon_sym_GT] = ACTIONS(1888), + [anon_sym_GT_GT] = ACTIONS(1888), + [anon_sym_AMP_GT] = ACTIONS(1888), + [anon_sym_AMP_GT_GT] = ACTIONS(1888), + [anon_sym_LT_AMP] = ACTIONS(1888), + [anon_sym_GT_AMP] = ACTIONS(1888), + [anon_sym_LT_LT] = ACTIONS(1888), + [anon_sym_LT_LT_DASH] = ACTIONS(1888), + [anon_sym_LT_LT_LT] = ACTIONS(1888), + [sym__special_characters] = ACTIONS(1888), + [anon_sym_DQUOTE] = ACTIONS(1888), + [anon_sym_DOLLAR] = ACTIONS(1888), + [sym_raw_string] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1888), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1888), + [anon_sym_BQUOTE] = ACTIONS(1888), + [anon_sym_LT_LPAREN] = ACTIONS(1888), + [anon_sym_GT_LPAREN] = ACTIONS(1888), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1860), - [anon_sym_SEMI] = ACTIONS(1860), - [anon_sym_LF] = ACTIONS(1860), - [anon_sym_AMP] = ACTIONS(1860), + [sym_word] = ACTIONS(1888), + [anon_sym_SEMI] = ACTIONS(1888), + [anon_sym_LF] = ACTIONS(1888), + [anon_sym_AMP] = ACTIONS(1888), }, [433] = { - [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__concat] = ACTIONS(824), + [anon_sym_DQUOTE] = ACTIONS(826), + [anon_sym_DOLLAR] = ACTIONS(826), + [sym__string_content] = ACTIONS(1573), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(826), + [anon_sym_BQUOTE] = ACTIONS(826), [sym_comment] = ACTIONS(182), }, [434] = { - [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__concat] = ACTIONS(1893), + [anon_sym_DQUOTE] = ACTIONS(1895), + [anon_sym_DOLLAR] = ACTIONS(1895), + [sym__string_content] = ACTIONS(1897), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1895), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1895), + [anon_sym_BQUOTE] = ACTIONS(1895), [sym_comment] = ACTIONS(182), }, [435] = { - [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__concat] = ACTIONS(832), + [anon_sym_DQUOTE] = ACTIONS(834), + [anon_sym_DOLLAR] = ACTIONS(834), + [sym__string_content] = ACTIONS(1577), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(834), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(834), + [anon_sym_BQUOTE] = ACTIONS(834), [sym_comment] = ACTIONS(182), }, [436] = { - [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), + [anon_sym_DQUOTE] = ACTIONS(1895), + [anon_sym_DOLLAR] = ACTIONS(1895), + [sym__string_content] = ACTIONS(1897), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1895), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1895), + [anon_sym_BQUOTE] = ACTIONS(1895), [sym_comment] = ACTIONS(182), }, [437] = { - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(1871), + [anon_sym_LBRACK] = ACTIONS(836), + [anon_sym_EQ] = ACTIONS(1899), [sym_comment] = ACTIONS(56), }, [438] = { @@ -23106,39 +23213,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(1901), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(1903), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [439] = { [sym_subscript] = STATE(938), - [sym_variable_name] = ACTIONS(1877), - [anon_sym_DOLLAR] = ACTIONS(1879), - [anon_sym_DASH] = ACTIONS(1879), + [sym_variable_name] = ACTIONS(1905), + [anon_sym_DOLLAR] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), [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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1909), + [anon_sym_STAR] = ACTIONS(1907), + [anon_sym_AT] = ACTIONS(1907), + [anon_sym_QMARK] = ACTIONS(1907), + [anon_sym_0] = ACTIONS(1911), + [anon_sym__] = ACTIONS(1911), }, [440] = { [sym_concatenation] = STATE(451), @@ -23149,26 +23256,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(1913), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(1915), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [441] = { [sym_concatenation] = STATE(451), @@ -23179,141 +23286,142 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(1917), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(1919), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [442] = { - [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_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(1921), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), [sym_comment] = ACTIONS(56), }, [443] = { - [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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(1921), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [444] = { - [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), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_PIPE_AMP] = ACTIONS(1072), + [anon_sym_AMP_AMP] = ACTIONS(1074), + [anon_sym_PIPE_PIPE] = ACTIONS(1074), + [anon_sym_BQUOTE] = ACTIONS(1921), [sym_comment] = ACTIONS(56), }, [445] = { - [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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_PIPE_AMP] = ACTIONS(1072), + [anon_sym_AMP_AMP] = ACTIONS(1074), + [anon_sym_PIPE_PIPE] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(1921), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [446] = { - [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_file_descriptor] = ACTIONS(1923), + [sym__concat] = ACTIONS(1923), + [anon_sym_PIPE] = ACTIONS(1925), + [anon_sym_SEMI_SEMI] = ACTIONS(1925), + [anon_sym_PIPE_AMP] = ACTIONS(1925), + [anon_sym_AMP_AMP] = ACTIONS(1925), + [anon_sym_PIPE_PIPE] = ACTIONS(1925), + [anon_sym_EQ_TILDE] = ACTIONS(1925), + [anon_sym_EQ_EQ] = ACTIONS(1925), + [anon_sym_LT] = ACTIONS(1925), + [anon_sym_GT] = ACTIONS(1925), + [anon_sym_GT_GT] = ACTIONS(1925), + [anon_sym_AMP_GT] = ACTIONS(1925), + [anon_sym_AMP_GT_GT] = ACTIONS(1925), + [anon_sym_LT_AMP] = ACTIONS(1925), + [anon_sym_GT_AMP] = ACTIONS(1925), + [anon_sym_LT_LT] = ACTIONS(1925), + [anon_sym_LT_LT_DASH] = ACTIONS(1925), + [anon_sym_LT_LT_LT] = ACTIONS(1925), + [sym__special_characters] = ACTIONS(1925), + [anon_sym_DQUOTE] = ACTIONS(1925), + [anon_sym_DOLLAR] = ACTIONS(1925), + [sym_raw_string] = ACTIONS(1925), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1925), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1925), + [anon_sym_BQUOTE] = ACTIONS(1925), + [anon_sym_LT_LPAREN] = ACTIONS(1925), + [anon_sym_GT_LPAREN] = ACTIONS(1925), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1897), - [anon_sym_SEMI] = ACTIONS(1897), - [anon_sym_LF] = ACTIONS(1897), - [anon_sym_AMP] = ACTIONS(1897), + [sym_word] = ACTIONS(1925), + [anon_sym_SEMI] = ACTIONS(1925), + [anon_sym_LF] = ACTIONS(1925), + [anon_sym_AMP] = ACTIONS(1925), }, [447] = { [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), + [anon_sym_DQUOTE] = ACTIONS(1895), + [anon_sym_DOLLAR] = ACTIONS(1927), + [sym__string_content] = ACTIONS(1930), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1933), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1936), + [anon_sym_BQUOTE] = ACTIONS(1939), [sym_comment] = ACTIONS(182), }, [448] = { @@ -23324,17 +23432,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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__special_characters] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_DOLLAR] = ACTIONS(404), + [sym_raw_string] = ACTIONS(1944), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(408), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(410), + [anon_sym_BQUOTE] = ACTIONS(412), + [anon_sym_LT_LPAREN] = ACTIONS(414), + [anon_sym_GT_LPAREN] = ACTIONS(414), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1918), + [sym_word] = ACTIONS(1946), }, [449] = { [sym_concatenation] = STATE(958), @@ -23344,103 +23452,104 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(1948), + [sym__special_characters] = ACTIONS(1950), + [anon_sym_DQUOTE] = ACTIONS(1952), + [anon_sym_DOLLAR] = ACTIONS(1954), + [sym_raw_string] = ACTIONS(1956), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), + [anon_sym_BQUOTE] = ACTIONS(1962), + [anon_sym_LT_LPAREN] = ACTIONS(1964), + [anon_sym_GT_LPAREN] = ACTIONS(1964), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1938), + [sym_word] = ACTIONS(1966), }, [450] = { - [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_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_file_descriptor] = ACTIONS(1968), + [sym__concat] = ACTIONS(1968), + [anon_sym_PIPE] = ACTIONS(1970), + [anon_sym_SEMI_SEMI] = ACTIONS(1970), + [anon_sym_PIPE_AMP] = ACTIONS(1970), + [anon_sym_AMP_AMP] = ACTIONS(1970), + [anon_sym_PIPE_PIPE] = ACTIONS(1970), + [anon_sym_EQ_TILDE] = ACTIONS(1970), + [anon_sym_EQ_EQ] = ACTIONS(1970), + [anon_sym_LT] = ACTIONS(1970), + [anon_sym_GT] = ACTIONS(1970), + [anon_sym_GT_GT] = ACTIONS(1970), + [anon_sym_AMP_GT] = ACTIONS(1970), + [anon_sym_AMP_GT_GT] = ACTIONS(1970), + [anon_sym_LT_AMP] = ACTIONS(1970), + [anon_sym_GT_AMP] = ACTIONS(1970), + [anon_sym_LT_LT] = ACTIONS(1970), + [anon_sym_LT_LT_DASH] = ACTIONS(1970), + [anon_sym_LT_LT_LT] = ACTIONS(1970), + [sym__special_characters] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1970), + [anon_sym_DOLLAR] = ACTIONS(1970), + [sym_raw_string] = ACTIONS(1970), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1970), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1970), + [anon_sym_BQUOTE] = ACTIONS(1970), + [anon_sym_LT_LPAREN] = ACTIONS(1970), + [anon_sym_GT_LPAREN] = ACTIONS(1970), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1942), - [anon_sym_SEMI] = ACTIONS(1942), - [anon_sym_LF] = ACTIONS(1942), - [anon_sym_AMP] = ACTIONS(1942), + [sym_word] = ACTIONS(1970), + [anon_sym_SEMI] = ACTIONS(1970), + [anon_sym_LF] = ACTIONS(1970), + [anon_sym_AMP] = ACTIONS(1970), }, [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), + [anon_sym_RBRACE] = ACTIONS(1972), + [anon_sym_EQ] = ACTIONS(1974), + [sym__special_characters] = ACTIONS(1976), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_DOLLAR] = ACTIONS(1974), + [sym_raw_string] = ACTIONS(1972), + [anon_sym_POUND] = ACTIONS(1972), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1972), + [anon_sym_COLON] = ACTIONS(1974), + [anon_sym_COLON_QMARK] = ACTIONS(1974), + [anon_sym_COLON_DASH] = ACTIONS(1974), + [anon_sym_PERCENT] = ACTIONS(1974), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1972), + [anon_sym_BQUOTE] = ACTIONS(1972), + [anon_sym_LT_LPAREN] = ACTIONS(1972), + [anon_sym_GT_LPAREN] = ACTIONS(1972), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1948), + [sym_word] = ACTIONS(1976), }, [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__concat] = ACTIONS(1978), + [anon_sym_RBRACE] = ACTIONS(1980), + [anon_sym_EQ] = ACTIONS(1982), + [sym__special_characters] = ACTIONS(1984), + [anon_sym_DQUOTE] = ACTIONS(1980), + [anon_sym_DOLLAR] = ACTIONS(1982), + [sym_raw_string] = ACTIONS(1980), + [anon_sym_POUND] = ACTIONS(1980), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1980), + [anon_sym_COLON] = ACTIONS(1982), + [anon_sym_COLON_QMARK] = ACTIONS(1982), + [anon_sym_COLON_DASH] = ACTIONS(1982), + [anon_sym_PERCENT] = ACTIONS(1982), + [anon_sym_DASH] = ACTIONS(1982), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1980), + [anon_sym_BQUOTE] = ACTIONS(1980), + [anon_sym_LT_LPAREN] = ACTIONS(1980), + [anon_sym_GT_LPAREN] = ACTIONS(1980), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1956), + [sym_word] = ACTIONS(1984), }, [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_DQUOTE] = ACTIONS(1986), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -23449,59 +23558,60 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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_string] = STATE(964), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1990), + [anon_sym_POUND] = ACTIONS(1988), + [anon_sym_DASH] = ACTIONS(1988), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1992), + [anon_sym_STAR] = ACTIONS(1988), + [anon_sym_AT] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(1988), + [anon_sym_0] = ACTIONS(1994), + [anon_sym__] = ACTIONS(1994), }, [455] = { [aux_sym_concatenation_repeat1] = STATE(960), - [sym__concat] = ACTIONS(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__concat] = ACTIONS(1978), + [anon_sym_RBRACE] = ACTIONS(1972), + [anon_sym_EQ] = ACTIONS(1974), + [sym__special_characters] = ACTIONS(1976), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_DOLLAR] = ACTIONS(1974), + [sym_raw_string] = ACTIONS(1972), + [anon_sym_POUND] = ACTIONS(1972), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1972), + [anon_sym_COLON] = ACTIONS(1974), + [anon_sym_COLON_QMARK] = ACTIONS(1974), + [anon_sym_COLON_DASH] = ACTIONS(1974), + [anon_sym_PERCENT] = ACTIONS(1974), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1972), + [anon_sym_BQUOTE] = ACTIONS(1972), + [anon_sym_LT_LPAREN] = ACTIONS(1972), + [anon_sym_GT_LPAREN] = ACTIONS(1972), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1948), + [sym_word] = ACTIONS(1976), }, [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_variable_name] = ACTIONS(1996), + [anon_sym_DOLLAR] = ACTIONS(1998), + [anon_sym_POUND] = ACTIONS(2000), + [anon_sym_DASH] = ACTIONS(1998), [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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2002), + [anon_sym_STAR] = ACTIONS(1998), + [anon_sym_AT] = ACTIONS(1998), + [anon_sym_QMARK] = ACTIONS(1998), + [anon_sym_0] = ACTIONS(2004), + [anon_sym__] = ACTIONS(2004), }, [457] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(1976), + [sym_regex_without_right_brace] = ACTIONS(2006), }, [458] = { [sym_for_statement] = STATE(972), @@ -23529,22 +23639,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(264), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(268), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -23552,17 +23662,17 @@ 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(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__special_characters] = ACTIONS(286), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(300), + [sym_word] = ACTIONS(302), }, [459] = { [sym_for_statement] = STATE(974), @@ -23590,22 +23700,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(304), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(306), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(308), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_LBRACK_LBRACK] = ACTIONS(312), + [anon_sym_declare] = ACTIONS(314), + [anon_sym_typeset] = ACTIONS(314), + [anon_sym_export] = ACTIONS(314), + [anon_sym_readonly] = ACTIONS(314), + [anon_sym_local] = ACTIONS(314), + [anon_sym_unset] = ACTIONS(316), + [anon_sym_unsetenv] = ACTIONS(316), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -23613,17 +23723,17 @@ 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(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__special_characters] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [anon_sym_DOLLAR] = ACTIONS(322), + [sym_raw_string] = ACTIONS(324), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), + [anon_sym_BQUOTE] = ACTIONS(330), + [anon_sym_LT_LPAREN] = ACTIONS(332), + [anon_sym_GT_LPAREN] = ACTIONS(332), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(332), + [sym_word] = ACTIONS(334), }, [460] = { [sym_for_statement] = STATE(976), @@ -23651,22 +23761,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(264), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(268), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -23674,17 +23784,17 @@ 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(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__special_characters] = ACTIONS(286), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(300), + [sym_word] = ACTIONS(302), }, [461] = { [sym_concatenation] = STATE(451), @@ -23695,29 +23805,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(2008), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [462] = { - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(1980), + [anon_sym_LBRACK] = ACTIONS(836), + [anon_sym_EQ] = ACTIONS(2010), [sym_comment] = ACTIONS(56), }, [463] = { @@ -23729,26 +23839,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(2012), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(2014), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [464] = { [sym_concatenation] = STATE(451), @@ -23759,26 +23869,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(2016), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(2018), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [465] = { [sym_concatenation] = STATE(451), @@ -23789,64 +23899,65 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(1948), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(2020), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [466] = { - [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_file_descriptor] = ACTIONS(2022), + [sym__concat] = ACTIONS(2022), + [anon_sym_PIPE] = ACTIONS(2024), + [anon_sym_SEMI_SEMI] = ACTIONS(2024), + [anon_sym_PIPE_AMP] = ACTIONS(2024), + [anon_sym_AMP_AMP] = ACTIONS(2024), + [anon_sym_PIPE_PIPE] = ACTIONS(2024), + [anon_sym_EQ_TILDE] = ACTIONS(2024), + [anon_sym_EQ_EQ] = ACTIONS(2024), + [anon_sym_LT] = ACTIONS(2024), + [anon_sym_GT] = ACTIONS(2024), + [anon_sym_GT_GT] = ACTIONS(2024), + [anon_sym_AMP_GT] = ACTIONS(2024), + [anon_sym_AMP_GT_GT] = ACTIONS(2024), + [anon_sym_LT_AMP] = ACTIONS(2024), + [anon_sym_GT_AMP] = ACTIONS(2024), + [anon_sym_LT_LT] = ACTIONS(2024), + [anon_sym_LT_LT_DASH] = ACTIONS(2024), + [anon_sym_LT_LT_LT] = ACTIONS(2024), + [sym__special_characters] = ACTIONS(2024), + [anon_sym_DQUOTE] = ACTIONS(2024), + [anon_sym_DOLLAR] = ACTIONS(2024), + [sym_raw_string] = ACTIONS(2024), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2024), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2024), + [anon_sym_BQUOTE] = ACTIONS(2024), + [anon_sym_LT_LPAREN] = ACTIONS(2024), + [anon_sym_GT_LPAREN] = ACTIONS(2024), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1994), - [anon_sym_SEMI] = ACTIONS(1994), - [anon_sym_LF] = ACTIONS(1994), - [anon_sym_AMP] = ACTIONS(1994), + [sym_word] = ACTIONS(2024), + [anon_sym_SEMI] = ACTIONS(2024), + [anon_sym_LF] = ACTIONS(2024), + [anon_sym_AMP] = ACTIONS(2024), }, [467] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(1996), + [sym_regex_without_right_brace] = ACTIONS(2026), }, [468] = { [sym_concatenation] = STATE(451), @@ -23857,63 +23968,64 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(2028), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [469] = { - [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_file_descriptor] = ACTIONS(2030), + [sym__concat] = ACTIONS(2030), + [anon_sym_PIPE] = ACTIONS(2032), + [anon_sym_SEMI_SEMI] = ACTIONS(2032), + [anon_sym_PIPE_AMP] = ACTIONS(2032), + [anon_sym_AMP_AMP] = ACTIONS(2032), + [anon_sym_PIPE_PIPE] = ACTIONS(2032), + [anon_sym_EQ_TILDE] = ACTIONS(2032), + [anon_sym_EQ_EQ] = ACTIONS(2032), + [anon_sym_LT] = ACTIONS(2032), + [anon_sym_GT] = ACTIONS(2032), + [anon_sym_GT_GT] = ACTIONS(2032), + [anon_sym_AMP_GT] = ACTIONS(2032), + [anon_sym_AMP_GT_GT] = ACTIONS(2032), + [anon_sym_LT_AMP] = ACTIONS(2032), + [anon_sym_GT_AMP] = ACTIONS(2032), + [anon_sym_LT_LT] = ACTIONS(2032), + [anon_sym_LT_LT_DASH] = ACTIONS(2032), + [anon_sym_LT_LT_LT] = ACTIONS(2032), + [sym__special_characters] = ACTIONS(2032), + [anon_sym_DQUOTE] = ACTIONS(2032), + [anon_sym_DOLLAR] = ACTIONS(2032), + [sym_raw_string] = ACTIONS(2032), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2032), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2032), + [anon_sym_BQUOTE] = ACTIONS(2032), + [anon_sym_LT_LPAREN] = ACTIONS(2032), + [anon_sym_GT_LPAREN] = ACTIONS(2032), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2002), - [anon_sym_SEMI] = ACTIONS(2002), - [anon_sym_LF] = ACTIONS(2002), - [anon_sym_AMP] = ACTIONS(2002), + [sym_word] = ACTIONS(2032), + [anon_sym_SEMI] = ACTIONS(2032), + [anon_sym_LF] = ACTIONS(2032), + [anon_sym_AMP] = ACTIONS(2032), }, [470] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(2004), + [sym_regex_without_right_brace] = ACTIONS(2034), }, [471] = { [sym_concatenation] = STATE(451), @@ -23924,25 +24036,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(1948), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [472] = { [sym_concatenation] = STATE(992), @@ -23953,136 +24065,136 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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__empty_value] = ACTIONS(2036), + [anon_sym_LPAREN] = ACTIONS(2038), + [sym__special_characters] = ACTIONS(2040), + [anon_sym_DQUOTE] = ACTIONS(2042), + [anon_sym_DOLLAR] = ACTIONS(2044), + [sym_raw_string] = ACTIONS(2046), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2048), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2050), + [anon_sym_BQUOTE] = ACTIONS(2052), + [anon_sym_LT_LPAREN] = ACTIONS(2054), + [anon_sym_GT_LPAREN] = ACTIONS(2054), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2026), + [sym_word] = ACTIONS(2056), }, [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_file_descriptor] = ACTIONS(440), + [sym_variable_name] = ACTIONS(440), + [anon_sym_PIPE] = ACTIONS(2058), + [anon_sym_RPAREN] = ACTIONS(440), + [anon_sym_PIPE_AMP] = ACTIONS(440), + [anon_sym_AMP_AMP] = ACTIONS(440), + [anon_sym_PIPE_PIPE] = ACTIONS(440), + [anon_sym_LT] = ACTIONS(2058), + [anon_sym_GT] = ACTIONS(2058), + [anon_sym_GT_GT] = ACTIONS(440), + [anon_sym_AMP_GT] = ACTIONS(2058), + [anon_sym_AMP_GT_GT] = ACTIONS(440), + [anon_sym_LT_AMP] = ACTIONS(440), + [anon_sym_GT_AMP] = ACTIONS(440), + [sym__special_characters] = ACTIONS(2058), + [anon_sym_DQUOTE] = ACTIONS(440), + [anon_sym_DOLLAR] = ACTIONS(2058), + [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(56), - [sym_word] = ACTIONS(2028), + [sym_word] = ACTIONS(2058), }, [474] = { - [anon_sym_in] = ACTIONS(2030), + [anon_sym_in] = ACTIONS(2060), [sym_comment] = ACTIONS(56), }, [475] = { [sym_do_group] = STATE(1004), - [anon_sym_do] = ACTIONS(2032), + [anon_sym_do] = ACTIONS(2062), [sym_comment] = ACTIONS(56), }, [476] = { - [anon_sym_then] = ACTIONS(2034), + [anon_sym_then] = ACTIONS(2064), [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__concat] = ACTIONS(452), + [anon_sym_in] = ACTIONS(2066), + [anon_sym_SEMI_SEMI] = ACTIONS(2068), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2038), - [anon_sym_LF] = ACTIONS(2038), - [anon_sym_AMP] = ACTIONS(2038), + [anon_sym_SEMI] = ACTIONS(2068), + [anon_sym_LF] = ACTIONS(2068), + [anon_sym_AMP] = ACTIONS(2068), }, [478] = { [aux_sym_concatenation_repeat1] = STATE(246), - [sym__concat] = ACTIONS(450), - [anon_sym_in] = ACTIONS(2040), - [anon_sym_SEMI_SEMI] = ACTIONS(2042), + [sym__concat] = ACTIONS(452), + [anon_sym_in] = ACTIONS(2070), + [anon_sym_SEMI_SEMI] = ACTIONS(2072), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2042), - [anon_sym_LF] = ACTIONS(2042), - [anon_sym_AMP] = ACTIONS(2042), + [anon_sym_SEMI] = ACTIONS(2072), + [anon_sym_LF] = ACTIONS(2072), + [anon_sym_AMP] = ACTIONS(2072), }, [479] = { - [anon_sym_in] = ACTIONS(2040), - [anon_sym_SEMI_SEMI] = ACTIONS(2042), + [anon_sym_in] = ACTIONS(2070), + [anon_sym_SEMI_SEMI] = ACTIONS(2072), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2042), - [anon_sym_LF] = ACTIONS(2042), - [anon_sym_AMP] = ACTIONS(2042), + [anon_sym_SEMI] = ACTIONS(2072), + [anon_sym_LF] = ACTIONS(2072), + [anon_sym_AMP] = ACTIONS(2072), }, [480] = { [sym_compound_statement] = STATE(1012), - [anon_sym_LPAREN] = ACTIONS(2044), - [anon_sym_LBRACE] = ACTIONS(2046), + [anon_sym_LPAREN] = ACTIONS(2074), + [anon_sym_LBRACE] = ACTIONS(2076), [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), + [anon_sym_PIPE] = ACTIONS(548), + [anon_sym_RPAREN] = ACTIONS(2078), + [anon_sym_SEMI_SEMI] = ACTIONS(2080), + [anon_sym_PIPE_AMP] = ACTIONS(548), + [anon_sym_AMP_AMP] = ACTIONS(554), + [anon_sym_PIPE_PIPE] = ACTIONS(554), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2050), - [anon_sym_LF] = ACTIONS(2050), - [anon_sym_AMP] = ACTIONS(2050), + [anon_sym_SEMI] = ACTIONS(2080), + [anon_sym_LF] = ACTIONS(2080), + [anon_sym_AMP] = ACTIONS(2080), }, [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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(548), + [anon_sym_RPAREN] = ACTIONS(2078), + [anon_sym_SEMI_SEMI] = ACTIONS(2080), + [anon_sym_PIPE_AMP] = ACTIONS(548), + [anon_sym_AMP_AMP] = ACTIONS(554), + [anon_sym_PIPE_PIPE] = ACTIONS(554), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(382), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(382), + [anon_sym_LT_AMP] = ACTIONS(382), + [anon_sym_GT_AMP] = ACTIONS(382), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(382), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(382), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(382), + [anon_sym_BQUOTE] = ACTIONS(382), + [anon_sym_LT_LPAREN] = ACTIONS(382), + [anon_sym_GT_LPAREN] = ACTIONS(382), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(380), - [anon_sym_SEMI] = ACTIONS(2050), - [anon_sym_LF] = ACTIONS(2050), - [anon_sym_AMP] = ACTIONS(2050), + [sym_word] = ACTIONS(382), + [anon_sym_SEMI] = ACTIONS(2080), + [anon_sym_LF] = ACTIONS(2080), + [anon_sym_AMP] = ACTIONS(2080), }, [483] = { [sym__terminated_statement] = STATE(25), @@ -24157,8 +24269,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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_EQ_EQ] = ACTIONS(122), + [anon_sym_RBRACK] = ACTIONS(2082), + [sym__special_characters] = ACTIONS(638), [anon_sym_DQUOTE] = ACTIONS(126), [anon_sym_DOLLAR] = ACTIONS(128), [sym_raw_string] = ACTIONS(130), @@ -24180,8 +24293,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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_EQ_EQ] = ACTIONS(142), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2082), + [sym__special_characters] = ACTIONS(680), [anon_sym_DQUOTE] = ACTIONS(146), [anon_sym_DOLLAR] = ACTIONS(148), [sym_raw_string] = ACTIONS(150), @@ -24196,38 +24310,38 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [486] = { [sym__assignment] = STATE(1019), [anon_sym_LBRACK] = ACTIONS(64), - [anon_sym_EQ] = ACTIONS(2054), - [anon_sym_PLUS_EQ] = ACTIONS(2054), + [anon_sym_EQ] = ACTIONS(2084), + [anon_sym_PLUS_EQ] = ACTIONS(2084), [sym_comment] = ACTIONS(56), }, [487] = { [aux_sym_concatenation_repeat1] = STATE(1021), - [sym__concat] = ACTIONS(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__concat] = ACTIONS(2086), + [sym_variable_name] = ACTIONS(686), + [anon_sym_PIPE] = ACTIONS(2088), + [anon_sym_RPAREN] = ACTIONS(686), + [anon_sym_PIPE_AMP] = ACTIONS(686), + [anon_sym_AMP_AMP] = ACTIONS(686), + [anon_sym_PIPE_PIPE] = ACTIONS(686), + [sym__special_characters] = ACTIONS(2088), + [anon_sym_DQUOTE] = ACTIONS(686), + [anon_sym_DOLLAR] = ACTIONS(2088), + [sym_raw_string] = ACTIONS(686), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(686), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(686), + [anon_sym_BQUOTE] = ACTIONS(686), + [anon_sym_LT_LPAREN] = ACTIONS(686), + [anon_sym_GT_LPAREN] = ACTIONS(686), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2058), - [sym_word] = ACTIONS(678), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2088), + [sym_word] = ACTIONS(688), }, [488] = { [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_DQUOTE] = ACTIONS(2090), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -24236,54 +24350,55 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(182), }, [489] = { - [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_string] = STATE(1025), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_DOLLAR] = ACTIONS(2092), + [sym_raw_string] = ACTIONS(2094), + [anon_sym_POUND] = ACTIONS(2092), + [anon_sym_DASH] = ACTIONS(2092), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2096), + [anon_sym_STAR] = ACTIONS(2092), + [anon_sym_AT] = ACTIONS(2092), + [anon_sym_QMARK] = ACTIONS(2092), + [anon_sym_0] = ACTIONS(2098), + [anon_sym__] = ACTIONS(2098), }, [490] = { [aux_sym_concatenation_repeat1] = STATE(1021), - [sym__concat] = ACTIONS(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__concat] = ACTIONS(2086), + [sym_variable_name] = ACTIONS(702), + [anon_sym_PIPE] = ACTIONS(2100), + [anon_sym_RPAREN] = ACTIONS(702), + [anon_sym_PIPE_AMP] = ACTIONS(702), + [anon_sym_AMP_AMP] = ACTIONS(702), + [anon_sym_PIPE_PIPE] = ACTIONS(702), + [sym__special_characters] = ACTIONS(2100), + [anon_sym_DQUOTE] = ACTIONS(702), + [anon_sym_DOLLAR] = ACTIONS(2100), + [sym_raw_string] = ACTIONS(702), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(702), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(702), + [anon_sym_BQUOTE] = ACTIONS(702), + [anon_sym_LT_LPAREN] = ACTIONS(702), + [anon_sym_GT_LPAREN] = ACTIONS(702), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2068), - [sym_word] = ACTIONS(692), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2100), + [sym_word] = ACTIONS(704), }, [491] = { [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_variable_name] = ACTIONS(2102), + [anon_sym_DOLLAR] = ACTIONS(2104), + [anon_sym_POUND] = ACTIONS(2106), + [anon_sym_DASH] = ACTIONS(2104), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2108), + [anon_sym_STAR] = ACTIONS(2104), + [anon_sym_AT] = ACTIONS(2104), + [anon_sym_QMARK] = ACTIONS(2104), + [anon_sym_0] = ACTIONS(2110), + [anon_sym__] = ACTIONS(2110), }, [492] = { [sym_for_statement] = STATE(1032), @@ -24311,22 +24426,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(264), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(268), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -24334,17 +24449,17 @@ 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(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__special_characters] = ACTIONS(286), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(300), + [sym_word] = ACTIONS(302), }, [493] = { [sym_for_statement] = STATE(1034), @@ -24372,22 +24487,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(304), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(306), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(308), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_LBRACK_LBRACK] = ACTIONS(312), + [anon_sym_declare] = ACTIONS(314), + [anon_sym_typeset] = ACTIONS(314), + [anon_sym_export] = ACTIONS(314), + [anon_sym_readonly] = ACTIONS(314), + [anon_sym_local] = ACTIONS(314), + [anon_sym_unset] = ACTIONS(316), + [anon_sym_unsetenv] = ACTIONS(316), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -24395,17 +24510,17 @@ 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(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__special_characters] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [anon_sym_DOLLAR] = ACTIONS(322), + [sym_raw_string] = ACTIONS(324), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), + [anon_sym_BQUOTE] = ACTIONS(330), + [anon_sym_LT_LPAREN] = ACTIONS(332), + [anon_sym_GT_LPAREN] = ACTIONS(332), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(332), + [sym_word] = ACTIONS(334), }, [494] = { [sym_for_statement] = STATE(1036), @@ -24433,22 +24548,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(264), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(268), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -24456,62 +24571,62 @@ 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(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__special_characters] = ACTIONS(286), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(300), + [sym_word] = ACTIONS(302), }, [495] = { - [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_variable_name] = ACTIONS(716), + [anon_sym_PIPE] = ACTIONS(2112), + [anon_sym_RPAREN] = ACTIONS(716), + [anon_sym_PIPE_AMP] = ACTIONS(716), + [anon_sym_AMP_AMP] = ACTIONS(716), + [anon_sym_PIPE_PIPE] = ACTIONS(716), + [sym__special_characters] = ACTIONS(2112), + [anon_sym_DQUOTE] = ACTIONS(716), + [anon_sym_DOLLAR] = ACTIONS(2112), + [sym_raw_string] = ACTIONS(716), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(716), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(716), + [anon_sym_BQUOTE] = ACTIONS(716), + [anon_sym_LT_LPAREN] = ACTIONS(716), + [anon_sym_GT_LPAREN] = ACTIONS(716), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2080), - [sym_word] = ACTIONS(706), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2112), + [sym_word] = ACTIONS(718), }, [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_variable_name] = ACTIONS(702), + [anon_sym_PIPE] = ACTIONS(2100), + [anon_sym_RPAREN] = ACTIONS(702), + [anon_sym_PIPE_AMP] = ACTIONS(702), + [anon_sym_AMP_AMP] = ACTIONS(702), + [anon_sym_PIPE_PIPE] = ACTIONS(702), + [sym__special_characters] = ACTIONS(2100), + [anon_sym_DQUOTE] = ACTIONS(702), + [anon_sym_DOLLAR] = ACTIONS(2100), + [sym_raw_string] = ACTIONS(702), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(702), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(702), + [anon_sym_BQUOTE] = ACTIONS(702), + [anon_sym_LT_LPAREN] = ACTIONS(702), + [anon_sym_GT_LPAREN] = ACTIONS(702), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2068), - [sym_word] = ACTIONS(692), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2100), + [sym_word] = ACTIONS(704), }, [497] = { [sym__assignment] = STATE(1019), - [anon_sym_EQ] = ACTIONS(2054), - [anon_sym_PLUS_EQ] = ACTIONS(2054), + [anon_sym_EQ] = ACTIONS(2084), + [anon_sym_PLUS_EQ] = ACTIONS(2084), [sym_comment] = ACTIONS(56), }, [498] = { @@ -24525,52 +24640,52 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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_variable_name] = ACTIONS(894), + [anon_sym_PIPE] = ACTIONS(2114), + [anon_sym_RPAREN] = ACTIONS(2116), + [anon_sym_PIPE_AMP] = ACTIONS(2116), + [anon_sym_AMP_AMP] = ACTIONS(2116), + [anon_sym_PIPE_PIPE] = ACTIONS(2116), + [sym__special_characters] = ACTIONS(900), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_DOLLAR] = ACTIONS(904), + [sym_raw_string] = ACTIONS(906), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(908), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(910), + [anon_sym_BQUOTE] = ACTIONS(912), + [anon_sym_LT_LPAREN] = ACTIONS(914), + [anon_sym_GT_LPAREN] = ACTIONS(914), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(900), - [sym_word] = ACTIONS(902), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(916), + [sym_word] = ACTIONS(918), }, [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__concat] = ACTIONS(2118), + [anon_sym_PIPE] = ACTIONS(2120), + [anon_sym_RPAREN] = ACTIONS(2122), + [anon_sym_PIPE_AMP] = ACTIONS(2122), + [anon_sym_AMP_AMP] = ACTIONS(2122), + [anon_sym_PIPE_PIPE] = ACTIONS(2122), + [sym__special_characters] = ACTIONS(2120), + [anon_sym_DQUOTE] = ACTIONS(2122), + [anon_sym_DOLLAR] = ACTIONS(2120), + [sym_raw_string] = ACTIONS(2122), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2122), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2122), + [anon_sym_BQUOTE] = ACTIONS(2122), + [anon_sym_LT_LPAREN] = ACTIONS(2122), + [anon_sym_GT_LPAREN] = ACTIONS(2122), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2088), - [sym_word] = ACTIONS(712), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2120), + [sym_word] = ACTIONS(724), }, [500] = { [sym_simple_expansion] = STATE(134), [sym_expansion] = STATE(134), [sym_command_substitution] = STATE(134), [aux_sym_string_repeat1] = STATE(1042), - [anon_sym_DQUOTE] = ACTIONS(2092), + [anon_sym_DQUOTE] = ACTIONS(2124), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -24579,53 +24694,54 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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_string] = STATE(1044), + [anon_sym_DQUOTE] = ACTIONS(926), + [anon_sym_DOLLAR] = ACTIONS(2126), + [sym_raw_string] = ACTIONS(2128), + [anon_sym_POUND] = ACTIONS(2126), + [anon_sym_DASH] = ACTIONS(2126), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2130), + [anon_sym_STAR] = ACTIONS(2126), + [anon_sym_AT] = ACTIONS(2126), + [anon_sym_QMARK] = ACTIONS(2126), + [anon_sym_0] = ACTIONS(2132), + [anon_sym__] = ACTIONS(2132), }, [502] = { [aux_sym_concatenation_repeat1] = STATE(1040), - [sym__concat] = ACTIONS(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__concat] = ACTIONS(2118), + [anon_sym_PIPE] = ACTIONS(2134), + [anon_sym_RPAREN] = ACTIONS(2136), + [anon_sym_PIPE_AMP] = ACTIONS(2136), + [anon_sym_AMP_AMP] = ACTIONS(2136), + [anon_sym_PIPE_PIPE] = ACTIONS(2136), + [sym__special_characters] = ACTIONS(2134), + [anon_sym_DQUOTE] = ACTIONS(2136), + [anon_sym_DOLLAR] = ACTIONS(2134), + [sym_raw_string] = ACTIONS(2136), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2136), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2136), + [anon_sym_BQUOTE] = ACTIONS(2136), + [anon_sym_LT_LPAREN] = ACTIONS(2136), + [anon_sym_GT_LPAREN] = ACTIONS(2136), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2100), - [sym_word] = ACTIONS(724), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2134), + [sym_word] = ACTIONS(738), }, [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_variable_name] = ACTIONS(2138), + [anon_sym_DOLLAR] = ACTIONS(2140), + [anon_sym_POUND] = ACTIONS(2142), + [anon_sym_DASH] = ACTIONS(2140), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2144), + [anon_sym_STAR] = ACTIONS(2140), + [anon_sym_AT] = ACTIONS(2140), + [anon_sym_QMARK] = ACTIONS(2140), + [anon_sym_0] = ACTIONS(2146), + [anon_sym__] = ACTIONS(2146), }, [504] = { [sym_for_statement] = STATE(1051), @@ -24653,22 +24769,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(264), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(268), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -24676,17 +24792,17 @@ 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(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__special_characters] = ACTIONS(286), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(300), + [sym_word] = ACTIONS(302), }, [505] = { [sym_for_statement] = STATE(1053), @@ -24714,22 +24830,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(304), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(306), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(308), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_LBRACK_LBRACK] = ACTIONS(312), + [anon_sym_declare] = ACTIONS(314), + [anon_sym_typeset] = ACTIONS(314), + [anon_sym_export] = ACTIONS(314), + [anon_sym_readonly] = ACTIONS(314), + [anon_sym_local] = ACTIONS(314), + [anon_sym_unset] = ACTIONS(316), + [anon_sym_unsetenv] = ACTIONS(316), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -24737,17 +24853,17 @@ 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(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__special_characters] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [anon_sym_DOLLAR] = ACTIONS(322), + [sym_raw_string] = ACTIONS(324), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), + [anon_sym_BQUOTE] = ACTIONS(330), + [anon_sym_LT_LPAREN] = ACTIONS(332), + [anon_sym_GT_LPAREN] = ACTIONS(332), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(332), + [sym_word] = ACTIONS(334), }, [506] = { [sym_for_statement] = STATE(1055), @@ -24775,22 +24891,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(264), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(268), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -24798,55 +24914,55 @@ 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(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__special_characters] = ACTIONS(286), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(300), + [sym_word] = ACTIONS(302), }, [507] = { - [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), + [anon_sym_PIPE] = ACTIONS(2148), + [anon_sym_RPAREN] = ACTIONS(2150), + [anon_sym_PIPE_AMP] = ACTIONS(2150), + [anon_sym_AMP_AMP] = ACTIONS(2150), + [anon_sym_PIPE_PIPE] = ACTIONS(2150), + [sym__special_characters] = ACTIONS(2148), + [anon_sym_DQUOTE] = ACTIONS(2150), + [anon_sym_DOLLAR] = ACTIONS(2148), + [sym_raw_string] = ACTIONS(2150), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2150), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2150), + [anon_sym_BQUOTE] = ACTIONS(2150), + [anon_sym_LT_LPAREN] = ACTIONS(2150), + [anon_sym_GT_LPAREN] = ACTIONS(2150), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2114), - [sym_word] = ACTIONS(736), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2148), + [sym_word] = ACTIONS(750), }, [508] = { - [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), + [anon_sym_PIPE] = ACTIONS(2134), + [anon_sym_RPAREN] = ACTIONS(2136), + [anon_sym_PIPE_AMP] = ACTIONS(2136), + [anon_sym_AMP_AMP] = ACTIONS(2136), + [anon_sym_PIPE_PIPE] = ACTIONS(2136), + [sym__special_characters] = ACTIONS(2134), + [anon_sym_DQUOTE] = ACTIONS(2136), + [anon_sym_DOLLAR] = ACTIONS(2134), + [sym_raw_string] = ACTIONS(2136), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2136), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2136), + [anon_sym_BQUOTE] = ACTIONS(2136), + [anon_sym_LT_LPAREN] = ACTIONS(2136), + [anon_sym_GT_LPAREN] = ACTIONS(2136), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2100), - [sym_word] = ACTIONS(724), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2134), + [sym_word] = ACTIONS(738), }, [509] = { [sym_concatenation] = STATE(508), @@ -24857,23 +24973,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_PIPE] = ACTIONS(2152), + [anon_sym_RPAREN] = ACTIONS(2154), + [anon_sym_PIPE_AMP] = ACTIONS(2154), + [anon_sym_AMP_AMP] = ACTIONS(2154), + [anon_sym_PIPE_PIPE] = ACTIONS(2154), + [sym__special_characters] = ACTIONS(924), + [anon_sym_DQUOTE] = ACTIONS(926), + [anon_sym_DOLLAR] = ACTIONS(928), + [sym_raw_string] = ACTIONS(930), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(932), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(934), + [anon_sym_BQUOTE] = ACTIONS(936), + [anon_sym_LT_LPAREN] = ACTIONS(938), + [anon_sym_GT_LPAREN] = ACTIONS(938), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(924), - [sym_word] = ACTIONS(926), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(940), + [sym_word] = ACTIONS(942), }, [510] = { [sym_string] = STATE(1058), @@ -24882,87 +24998,89 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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__special_characters] = ACTIONS(2156), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(2158), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2122), + [sym_word] = ACTIONS(2156), }, [511] = { [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_file_descriptor] = ACTIONS(788), + [sym__concat] = ACTIONS(944), + [anon_sym_PIPE] = ACTIONS(1567), + [anon_sym_RPAREN] = ACTIONS(788), + [anon_sym_PIPE_AMP] = ACTIONS(788), + [anon_sym_AMP_AMP] = ACTIONS(788), + [anon_sym_PIPE_PIPE] = ACTIONS(788), + [anon_sym_EQ_TILDE] = ACTIONS(1567), + [anon_sym_EQ_EQ] = ACTIONS(1567), + [anon_sym_LT] = ACTIONS(1567), + [anon_sym_GT] = ACTIONS(1567), + [anon_sym_GT_GT] = ACTIONS(788), + [anon_sym_AMP_GT] = ACTIONS(1567), + [anon_sym_AMP_GT_GT] = ACTIONS(788), + [anon_sym_LT_AMP] = ACTIONS(788), + [anon_sym_GT_AMP] = ACTIONS(788), + [anon_sym_LT_LT] = ACTIONS(1567), + [anon_sym_LT_LT_DASH] = ACTIONS(788), + [anon_sym_LT_LT_LT] = ACTIONS(788), + [sym__special_characters] = ACTIONS(1567), + [anon_sym_DQUOTE] = ACTIONS(788), + [anon_sym_DOLLAR] = ACTIONS(1567), + [sym_raw_string] = ACTIONS(788), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(788), + [anon_sym_BQUOTE] = ACTIONS(788), + [anon_sym_LT_LPAREN] = ACTIONS(788), + [anon_sym_GT_LPAREN] = ACTIONS(788), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(774), + [sym_word] = ACTIONS(790), }, [512] = { - [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_file_descriptor] = ACTIONS(792), + [sym__concat] = ACTIONS(792), + [anon_sym_PIPE] = ACTIONS(1569), + [anon_sym_RPAREN] = ACTIONS(792), + [anon_sym_PIPE_AMP] = ACTIONS(792), + [anon_sym_AMP_AMP] = ACTIONS(792), + [anon_sym_PIPE_PIPE] = ACTIONS(792), + [anon_sym_EQ_TILDE] = ACTIONS(1569), + [anon_sym_EQ_EQ] = ACTIONS(1569), + [anon_sym_LT] = ACTIONS(1569), + [anon_sym_GT] = ACTIONS(1569), + [anon_sym_GT_GT] = ACTIONS(792), + [anon_sym_AMP_GT] = ACTIONS(1569), + [anon_sym_AMP_GT_GT] = ACTIONS(792), + [anon_sym_LT_AMP] = ACTIONS(792), + [anon_sym_GT_AMP] = ACTIONS(792), + [anon_sym_LT_LT] = ACTIONS(1569), + [anon_sym_LT_LT_DASH] = ACTIONS(792), + [anon_sym_LT_LT_LT] = ACTIONS(792), + [sym__special_characters] = ACTIONS(1569), + [anon_sym_DQUOTE] = ACTIONS(792), + [anon_sym_DOLLAR] = ACTIONS(1569), + [sym_raw_string] = ACTIONS(792), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(792), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(792), + [anon_sym_BQUOTE] = ACTIONS(792), + [anon_sym_LT_LPAREN] = ACTIONS(792), + [anon_sym_GT_LPAREN] = ACTIONS(792), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(778), + [sym_word] = ACTIONS(794), }, [513] = { [sym_simple_expansion] = STATE(134), [sym_expansion] = STATE(134), [sym_command_substitution] = STATE(134), [aux_sym_string_repeat1] = STATE(447), - [anon_sym_DQUOTE] = ACTIONS(2126), + [anon_sym_DQUOTE] = ACTIONS(2160), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -24971,101 +25089,104 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(182), }, [514] = { - [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_file_descriptor] = ACTIONS(824), + [sym__concat] = ACTIONS(824), + [anon_sym_PIPE] = ACTIONS(1573), + [anon_sym_RPAREN] = ACTIONS(824), + [anon_sym_PIPE_AMP] = ACTIONS(824), + [anon_sym_AMP_AMP] = ACTIONS(824), + [anon_sym_PIPE_PIPE] = ACTIONS(824), + [anon_sym_EQ_TILDE] = ACTIONS(1573), + [anon_sym_EQ_EQ] = ACTIONS(1573), + [anon_sym_LT] = ACTIONS(1573), + [anon_sym_GT] = ACTIONS(1573), + [anon_sym_GT_GT] = ACTIONS(824), + [anon_sym_AMP_GT] = ACTIONS(1573), + [anon_sym_AMP_GT_GT] = ACTIONS(824), + [anon_sym_LT_AMP] = ACTIONS(824), + [anon_sym_GT_AMP] = ACTIONS(824), + [anon_sym_LT_LT] = ACTIONS(1573), + [anon_sym_LT_LT_DASH] = ACTIONS(824), + [anon_sym_LT_LT_LT] = ACTIONS(824), + [sym__special_characters] = ACTIONS(1573), + [anon_sym_DQUOTE] = ACTIONS(824), + [anon_sym_DOLLAR] = ACTIONS(1573), + [sym_raw_string] = ACTIONS(824), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(824), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(824), + [anon_sym_BQUOTE] = ACTIONS(824), + [anon_sym_LT_LPAREN] = ACTIONS(824), + [anon_sym_GT_LPAREN] = ACTIONS(824), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(810), + [sym_word] = ACTIONS(826), }, [515] = { - [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_file_descriptor] = ACTIONS(828), + [sym__concat] = ACTIONS(828), + [anon_sym_PIPE] = ACTIONS(1575), + [anon_sym_RPAREN] = ACTIONS(828), + [anon_sym_PIPE_AMP] = ACTIONS(828), + [anon_sym_AMP_AMP] = ACTIONS(828), + [anon_sym_PIPE_PIPE] = ACTIONS(828), + [anon_sym_EQ_TILDE] = ACTIONS(1575), + [anon_sym_EQ_EQ] = ACTIONS(1575), + [anon_sym_LT] = ACTIONS(1575), + [anon_sym_GT] = ACTIONS(1575), + [anon_sym_GT_GT] = ACTIONS(828), + [anon_sym_AMP_GT] = ACTIONS(1575), + [anon_sym_AMP_GT_GT] = ACTIONS(828), + [anon_sym_LT_AMP] = ACTIONS(828), + [anon_sym_GT_AMP] = ACTIONS(828), + [anon_sym_LT_LT] = ACTIONS(1575), + [anon_sym_LT_LT_DASH] = ACTIONS(828), + [anon_sym_LT_LT_LT] = ACTIONS(828), + [sym__special_characters] = ACTIONS(1575), + [anon_sym_DQUOTE] = ACTIONS(828), + [anon_sym_DOLLAR] = ACTIONS(1575), + [sym_raw_string] = ACTIONS(828), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), + [anon_sym_BQUOTE] = ACTIONS(828), + [anon_sym_LT_LPAREN] = ACTIONS(828), + [anon_sym_GT_LPAREN] = ACTIONS(828), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(814), + [sym_word] = ACTIONS(830), }, [516] = { - [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_file_descriptor] = ACTIONS(832), + [sym__concat] = ACTIONS(832), + [anon_sym_PIPE] = ACTIONS(1577), + [anon_sym_RPAREN] = ACTIONS(832), + [anon_sym_PIPE_AMP] = ACTIONS(832), + [anon_sym_AMP_AMP] = ACTIONS(832), + [anon_sym_PIPE_PIPE] = ACTIONS(832), + [anon_sym_EQ_TILDE] = ACTIONS(1577), + [anon_sym_EQ_EQ] = ACTIONS(1577), + [anon_sym_LT] = ACTIONS(1577), + [anon_sym_GT] = ACTIONS(1577), + [anon_sym_GT_GT] = ACTIONS(832), + [anon_sym_AMP_GT] = ACTIONS(1577), + [anon_sym_AMP_GT_GT] = ACTIONS(832), + [anon_sym_LT_AMP] = ACTIONS(832), + [anon_sym_GT_AMP] = ACTIONS(832), + [anon_sym_LT_LT] = ACTIONS(1577), + [anon_sym_LT_LT_DASH] = ACTIONS(832), + [anon_sym_LT_LT_LT] = ACTIONS(832), + [sym__special_characters] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(832), + [anon_sym_DOLLAR] = ACTIONS(1577), + [sym_raw_string] = ACTIONS(832), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(832), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(832), + [anon_sym_BQUOTE] = ACTIONS(832), + [anon_sym_LT_LPAREN] = ACTIONS(832), + [anon_sym_GT_LPAREN] = ACTIONS(832), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(818), + [sym_word] = ACTIONS(834), }, [517] = { - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(2128), + [anon_sym_LBRACK] = ACTIONS(836), + [anon_sym_EQ] = ACTIONS(2162), [sym_comment] = ACTIONS(56), }, [518] = { @@ -25077,39 +25198,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(2164), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(2166), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [519] = { [sym_subscript] = STATE(1068), - [sym_variable_name] = ACTIONS(2134), - [anon_sym_DOLLAR] = ACTIONS(2136), - [anon_sym_DASH] = ACTIONS(2136), + [sym_variable_name] = ACTIONS(2168), + [anon_sym_DOLLAR] = ACTIONS(2170), + [anon_sym_DASH] = ACTIONS(2170), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2138), - [anon_sym_STAR] = ACTIONS(2136), - [anon_sym_AT] = ACTIONS(2136), - [anon_sym_QMARK] = ACTIONS(2136), - [anon_sym_0] = ACTIONS(2140), - [anon_sym__] = ACTIONS(2140), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2172), + [anon_sym_STAR] = ACTIONS(2170), + [anon_sym_AT] = ACTIONS(2170), + [anon_sym_QMARK] = ACTIONS(2170), + [anon_sym_0] = ACTIONS(2174), + [anon_sym__] = ACTIONS(2174), }, [520] = { [sym_concatenation] = STATE(451), @@ -25120,26 +25241,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(2176), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(2178), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [521] = { [sym_concatenation] = STATE(451), @@ -25150,133 +25271,133 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(2180), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(2182), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(2184), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), [sym_comment] = ACTIONS(56), }, [523] = { - [sym_file_descriptor] = ACTIONS(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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(2184), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [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), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_PIPE_AMP] = ACTIONS(1072), + [anon_sym_AMP_AMP] = ACTIONS(1074), + [anon_sym_PIPE_PIPE] = ACTIONS(1074), + [anon_sym_BQUOTE] = ACTIONS(2184), [sym_comment] = ACTIONS(56), }, [525] = { - [sym_file_descriptor] = ACTIONS(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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_PIPE_AMP] = ACTIONS(1072), + [anon_sym_AMP_AMP] = ACTIONS(1074), + [anon_sym_PIPE_PIPE] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(2184), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [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), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(2186), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), [sym_comment] = ACTIONS(56), }, [527] = { - [sym_file_descriptor] = ACTIONS(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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(2186), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [528] = { - [anon_sym_RPAREN] = ACTIONS(2154), + [anon_sym_RPAREN] = ACTIONS(2188), [sym_comment] = ACTIONS(56), }, [529] = { @@ -25305,22 +25426,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(264), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(268), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -25328,51 +25449,52 @@ 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(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__special_characters] = ACTIONS(286), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(300), + [sym_word] = ACTIONS(302), }, [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_file_descriptor] = ACTIONS(2190), + [sym__concat] = ACTIONS(2190), + [anon_sym_PIPE] = ACTIONS(2192), + [anon_sym_SEMI_SEMI] = ACTIONS(2192), + [anon_sym_PIPE_AMP] = ACTIONS(2192), + [anon_sym_AMP_AMP] = ACTIONS(2192), + [anon_sym_PIPE_PIPE] = ACTIONS(2192), + [anon_sym_EQ_TILDE] = ACTIONS(2192), + [anon_sym_EQ_EQ] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(2192), + [anon_sym_GT] = ACTIONS(2192), + [anon_sym_GT_GT] = ACTIONS(2192), + [anon_sym_AMP_GT] = ACTIONS(2192), + [anon_sym_AMP_GT_GT] = ACTIONS(2192), + [anon_sym_LT_AMP] = ACTIONS(2192), + [anon_sym_GT_AMP] = ACTIONS(2192), + [anon_sym_LT_LT] = ACTIONS(2192), + [anon_sym_LT_LT_DASH] = ACTIONS(2192), + [anon_sym_LT_LT_LT] = ACTIONS(2192), + [sym__special_characters] = ACTIONS(2192), + [anon_sym_DQUOTE] = ACTIONS(2192), + [anon_sym_DOLLAR] = ACTIONS(2192), + [sym_raw_string] = ACTIONS(2192), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2192), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2192), + [anon_sym_BQUOTE] = ACTIONS(2192), + [anon_sym_LT_LPAREN] = ACTIONS(2192), + [anon_sym_GT_LPAREN] = ACTIONS(2192), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2158), - [anon_sym_SEMI] = ACTIONS(2158), - [anon_sym_LF] = ACTIONS(2158), - [anon_sym_AMP] = ACTIONS(2158), + [sym_word] = ACTIONS(2192), + [anon_sym_SEMI] = ACTIONS(2192), + [anon_sym_LF] = ACTIONS(2192), + [anon_sym_AMP] = ACTIONS(2192), }, [531] = { [sym_for_statement] = STATE(1080), @@ -25400,22 +25522,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(264), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(268), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -25423,26 +25545,26 @@ 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(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__special_characters] = ACTIONS(286), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(300), + [sym_word] = ACTIONS(302), }, [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), + [anon_sym_LT] = ACTIONS(2194), + [anon_sym_GT] = ACTIONS(2194), + [anon_sym_GT_GT] = ACTIONS(2196), + [anon_sym_AMP_GT] = ACTIONS(2194), + [anon_sym_AMP_GT_GT] = ACTIONS(2196), + [anon_sym_LT_AMP] = ACTIONS(2196), + [anon_sym_GT_AMP] = ACTIONS(2196), [sym_comment] = ACTIONS(56), }, [533] = { @@ -25453,18 +25575,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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__special_characters] = ACTIONS(2198), + [anon_sym_DQUOTE] = ACTIONS(2200), + [anon_sym_DOLLAR] = ACTIONS(2202), + [sym_raw_string] = ACTIONS(2204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2206), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2208), + [anon_sym_BQUOTE] = ACTIONS(2210), + [anon_sym_LT_LPAREN] = ACTIONS(2212), + [anon_sym_GT_LPAREN] = ACTIONS(2212), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2170), - [sym_regex] = ACTIONS(2180), + [sym_word] = ACTIONS(2204), + [sym_regex] = ACTIONS(2214), }, [534] = { [sym_concatenation] = STATE(1094), @@ -25474,22 +25596,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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__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(2198), + [sym_word] = ACTIONS(2232), }, [535] = { [sym_heredoc] = STATE(1097), - [sym__simple_heredoc] = ACTIONS(2200), - [sym__heredoc_beginning] = ACTIONS(2202), + [sym__simple_heredoc] = ACTIONS(2234), + [sym__heredoc_beginning] = ACTIONS(2236), [sym_comment] = ACTIONS(56), }, [536] = { @@ -25500,153 +25622,156 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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__special_characters] = ACTIONS(2238), + [anon_sym_DQUOTE] = ACTIONS(2218), + [anon_sym_DOLLAR] = ACTIONS(2220), + [sym_raw_string] = ACTIONS(2240), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2224), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2226), + [anon_sym_BQUOTE] = ACTIONS(2228), + [anon_sym_LT_LPAREN] = ACTIONS(2230), + [anon_sym_GT_LPAREN] = ACTIONS(2230), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2208), + [sym_word] = ACTIONS(2242), }, [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_file_descriptor] = ACTIONS(606), + [sym__concat] = ACTIONS(944), + [anon_sym_PIPE] = ACTIONS(604), + [anon_sym_RPAREN] = ACTIONS(606), + [anon_sym_PIPE_AMP] = ACTIONS(606), + [anon_sym_AMP_AMP] = ACTIONS(606), + [anon_sym_PIPE_PIPE] = ACTIONS(606), + [anon_sym_EQ_TILDE] = ACTIONS(604), + [anon_sym_EQ_EQ] = ACTIONS(604), + [anon_sym_LT] = ACTIONS(604), + [anon_sym_GT] = ACTIONS(604), + [anon_sym_GT_GT] = ACTIONS(606), + [anon_sym_AMP_GT] = ACTIONS(604), + [anon_sym_AMP_GT_GT] = ACTIONS(606), + [anon_sym_LT_AMP] = ACTIONS(606), + [anon_sym_GT_AMP] = ACTIONS(606), + [anon_sym_LT_LT] = ACTIONS(604), + [anon_sym_LT_LT_DASH] = ACTIONS(606), + [anon_sym_LT_LT_LT] = ACTIONS(606), + [sym__special_characters] = ACTIONS(604), + [anon_sym_DQUOTE] = ACTIONS(606), + [anon_sym_DOLLAR] = ACTIONS(604), + [sym_raw_string] = ACTIONS(606), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(606), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(606), + [anon_sym_BQUOTE] = ACTIONS(606), + [anon_sym_LT_LPAREN] = ACTIONS(606), + [anon_sym_GT_LPAREN] = ACTIONS(606), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(602), + [sym_word] = ACTIONS(608), }, [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_file_descriptor] = ACTIONS(622), + [sym__concat] = ACTIONS(944), + [anon_sym_PIPE] = ACTIONS(620), + [anon_sym_RPAREN] = ACTIONS(622), + [anon_sym_PIPE_AMP] = ACTIONS(622), + [anon_sym_AMP_AMP] = ACTIONS(622), + [anon_sym_PIPE_PIPE] = ACTIONS(622), + [anon_sym_EQ_TILDE] = ACTIONS(620), + [anon_sym_EQ_EQ] = ACTIONS(620), + [anon_sym_LT] = ACTIONS(620), + [anon_sym_GT] = ACTIONS(620), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_AMP_GT] = ACTIONS(620), + [anon_sym_AMP_GT_GT] = ACTIONS(622), + [anon_sym_LT_AMP] = ACTIONS(622), + [anon_sym_GT_AMP] = ACTIONS(622), + [anon_sym_LT_LT] = ACTIONS(620), + [anon_sym_LT_LT_DASH] = ACTIONS(622), + [anon_sym_LT_LT_LT] = ACTIONS(622), + [sym__special_characters] = ACTIONS(620), + [anon_sym_DQUOTE] = ACTIONS(622), + [anon_sym_DOLLAR] = ACTIONS(620), + [sym_raw_string] = ACTIONS(622), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(622), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(622), + [anon_sym_BQUOTE] = ACTIONS(622), + [anon_sym_LT_LPAREN] = ACTIONS(622), + [anon_sym_GT_LPAREN] = ACTIONS(622), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(616), + [sym_word] = ACTIONS(624), }, [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_file_descriptor] = ACTIONS(1144), + [anon_sym_PIPE] = ACTIONS(2244), + [anon_sym_RPAREN] = ACTIONS(1144), + [anon_sym_PIPE_AMP] = ACTIONS(1144), + [anon_sym_AMP_AMP] = ACTIONS(1144), + [anon_sym_PIPE_PIPE] = ACTIONS(1144), + [anon_sym_LT] = ACTIONS(2244), + [anon_sym_GT] = ACTIONS(2244), + [anon_sym_GT_GT] = ACTIONS(1144), + [anon_sym_AMP_GT] = ACTIONS(2244), + [anon_sym_AMP_GT_GT] = ACTIONS(1144), + [anon_sym_LT_AMP] = ACTIONS(1144), + [anon_sym_GT_AMP] = ACTIONS(1144), + [anon_sym_LT_LT] = ACTIONS(2244), + [anon_sym_LT_LT_DASH] = ACTIONS(1144), + [anon_sym_LT_LT_LT] = ACTIONS(1144), + [anon_sym_BQUOTE] = ACTIONS(1144), [sym_comment] = ACTIONS(56), }, [540] = { - [sym_file_descriptor] = ACTIONS(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_file_descriptor] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(620), + [anon_sym_RPAREN] = ACTIONS(622), + [anon_sym_PIPE_AMP] = ACTIONS(622), + [anon_sym_AMP_AMP] = ACTIONS(622), + [anon_sym_PIPE_PIPE] = ACTIONS(622), + [anon_sym_EQ_TILDE] = ACTIONS(620), + [anon_sym_EQ_EQ] = ACTIONS(620), + [anon_sym_LT] = ACTIONS(620), + [anon_sym_GT] = ACTIONS(620), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_AMP_GT] = ACTIONS(620), + [anon_sym_AMP_GT_GT] = ACTIONS(622), + [anon_sym_LT_AMP] = ACTIONS(622), + [anon_sym_GT_AMP] = ACTIONS(622), + [anon_sym_LT_LT] = ACTIONS(620), + [anon_sym_LT_LT_DASH] = ACTIONS(622), + [anon_sym_LT_LT_LT] = ACTIONS(622), + [sym__special_characters] = ACTIONS(620), + [anon_sym_DQUOTE] = ACTIONS(622), + [anon_sym_DOLLAR] = ACTIONS(620), + [sym_raw_string] = ACTIONS(622), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(622), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(622), + [anon_sym_BQUOTE] = ACTIONS(622), + [anon_sym_LT_LPAREN] = ACTIONS(622), + [anon_sym_GT_LPAREN] = ACTIONS(622), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(616), + [sym_word] = ACTIONS(624), }, [541] = { [sym_file_redirect] = STATE(539), [sym_heredoc_redirect] = STATE(539), [sym_herestring_redirect] = STATE(539), [aux_sym_while_statement_repeat1] = STATE(1101), - [sym_file_descriptor] = ACTIONS(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_file_descriptor] = ACTIONS(980), + [anon_sym_PIPE] = ACTIONS(2246), + [anon_sym_RPAREN] = ACTIONS(2248), + [anon_sym_PIPE_AMP] = ACTIONS(2248), + [anon_sym_AMP_AMP] = ACTIONS(2248), + [anon_sym_PIPE_PIPE] = ACTIONS(2248), + [anon_sym_LT] = ACTIONS(988), + [anon_sym_GT] = ACTIONS(988), + [anon_sym_GT_GT] = ACTIONS(990), + [anon_sym_AMP_GT] = ACTIONS(988), + [anon_sym_AMP_GT_GT] = ACTIONS(990), + [anon_sym_LT_AMP] = ACTIONS(990), + [anon_sym_GT_AMP] = ACTIONS(990), + [anon_sym_LT_LT] = ACTIONS(992), + [anon_sym_LT_LT_DASH] = ACTIONS(994), + [anon_sym_LT_LT_LT] = ACTIONS(996), [sym_comment] = ACTIONS(56), }, [542] = { @@ -25662,34 +25787,35 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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_file_descriptor] = ACTIONS(980), + [anon_sym_PIPE] = ACTIONS(2246), + [anon_sym_RPAREN] = ACTIONS(2248), + [anon_sym_PIPE_AMP] = ACTIONS(2248), + [anon_sym_AMP_AMP] = ACTIONS(2248), + [anon_sym_PIPE_PIPE] = ACTIONS(2248), + [anon_sym_EQ_TILDE] = ACTIONS(986), + [anon_sym_EQ_EQ] = ACTIONS(986), + [anon_sym_LT] = ACTIONS(988), + [anon_sym_GT] = ACTIONS(988), + [anon_sym_GT_GT] = ACTIONS(990), + [anon_sym_AMP_GT] = ACTIONS(988), + [anon_sym_AMP_GT_GT] = ACTIONS(990), + [anon_sym_LT_AMP] = ACTIONS(990), + [anon_sym_GT_AMP] = ACTIONS(990), + [anon_sym_LT_LT] = ACTIONS(992), + [anon_sym_LT_LT_DASH] = ACTIONS(994), + [anon_sym_LT_LT_LT] = ACTIONS(996), + [sym__special_characters] = ACTIONS(998), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(1000), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(984), + [sym_word] = ACTIONS(1002), }, [543] = { [sym_file_redirect] = STATE(539), @@ -25704,34 +25830,35 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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_file_descriptor] = ACTIONS(980), + [anon_sym_PIPE] = ACTIONS(2246), + [anon_sym_RPAREN] = ACTIONS(2248), + [anon_sym_PIPE_AMP] = ACTIONS(2248), + [anon_sym_AMP_AMP] = ACTIONS(2248), + [anon_sym_PIPE_PIPE] = ACTIONS(2248), + [anon_sym_EQ_TILDE] = ACTIONS(986), + [anon_sym_EQ_EQ] = ACTIONS(986), + [anon_sym_LT] = ACTIONS(988), + [anon_sym_GT] = ACTIONS(988), + [anon_sym_GT_GT] = ACTIONS(990), + [anon_sym_AMP_GT] = ACTIONS(988), + [anon_sym_AMP_GT_GT] = ACTIONS(990), + [anon_sym_LT_AMP] = ACTIONS(990), + [anon_sym_GT_AMP] = ACTIONS(990), + [anon_sym_LT_LT] = ACTIONS(992), + [anon_sym_LT_LT_DASH] = ACTIONS(994), + [anon_sym_LT_LT_LT] = ACTIONS(996), + [sym__special_characters] = ACTIONS(998), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(1000), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(984), + [sym_word] = ACTIONS(1002), }, [544] = { [sym_concatenation] = STATE(992), @@ -25742,29 +25869,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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__empty_value] = ACTIONS(2036), + [anon_sym_LPAREN] = ACTIONS(2038), + [sym__special_characters] = ACTIONS(2250), + [anon_sym_DQUOTE] = ACTIONS(2252), + [anon_sym_DOLLAR] = ACTIONS(2254), + [sym_raw_string] = ACTIONS(2256), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2258), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2260), + [anon_sym_BQUOTE] = ACTIONS(2262), + [anon_sym_LT_LPAREN] = ACTIONS(2264), + [anon_sym_GT_LPAREN] = ACTIONS(2264), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2232), + [sym_word] = ACTIONS(2266), }, [545] = { [sym_do_group] = STATE(1113), - [anon_sym_do] = ACTIONS(2032), + [anon_sym_do] = ACTIONS(2062), [sym_comment] = ACTIONS(56), }, [546] = { [sym_compound_statement] = STATE(1115), - [anon_sym_LPAREN] = ACTIONS(2234), - [anon_sym_LBRACE] = ACTIONS(2046), + [anon_sym_LPAREN] = ACTIONS(2268), + [anon_sym_LBRACE] = ACTIONS(2076), [sym_comment] = ACTIONS(56), }, [547] = { @@ -25777,8 +25904,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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_EQ_EQ] = ACTIONS(122), + [anon_sym_RBRACK] = ACTIONS(2270), + [sym__special_characters] = ACTIONS(638), [anon_sym_DQUOTE] = ACTIONS(126), [anon_sym_DOLLAR] = ACTIONS(128), [sym_raw_string] = ACTIONS(130), @@ -25800,8 +25928,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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_EQ_EQ] = ACTIONS(142), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2270), + [sym__special_characters] = ACTIONS(680), [anon_sym_DQUOTE] = ACTIONS(146), [anon_sym_DOLLAR] = ACTIONS(148), [sym_raw_string] = ACTIONS(150), @@ -25816,37 +25945,37 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [549] = { [sym__assignment] = STATE(1019), [anon_sym_LBRACK] = ACTIONS(64), - [anon_sym_EQ] = ACTIONS(2238), - [anon_sym_PLUS_EQ] = ACTIONS(2238), + [anon_sym_EQ] = ACTIONS(2272), + [anon_sym_PLUS_EQ] = ACTIONS(2272), [sym_comment] = ACTIONS(56), }, [550] = { [aux_sym_concatenation_repeat1] = STATE(1119), - [sym__concat] = ACTIONS(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__concat] = ACTIONS(2274), + [sym_variable_name] = ACTIONS(686), + [anon_sym_PIPE] = ACTIONS(2088), + [anon_sym_PIPE_AMP] = ACTIONS(686), + [anon_sym_AMP_AMP] = ACTIONS(686), + [anon_sym_PIPE_PIPE] = ACTIONS(686), + [sym__special_characters] = ACTIONS(2088), + [anon_sym_DQUOTE] = ACTIONS(686), + [anon_sym_DOLLAR] = ACTIONS(2088), + [sym_raw_string] = ACTIONS(686), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(686), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(686), + [anon_sym_BQUOTE] = ACTIONS(686), + [anon_sym_LT_LPAREN] = ACTIONS(686), + [anon_sym_GT_LPAREN] = ACTIONS(686), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2058), - [sym_word] = ACTIONS(678), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2088), + [sym_word] = ACTIONS(688), }, [551] = { [sym_simple_expansion] = STATE(134), [sym_expansion] = STATE(134), [sym_command_substitution] = STATE(134), [aux_sym_string_repeat1] = STATE(1121), - [anon_sym_DQUOTE] = ACTIONS(2242), + [anon_sym_DQUOTE] = ACTIONS(2276), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -25855,53 +25984,54 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(182), }, [552] = { - [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_string] = STATE(1123), + [anon_sym_DQUOTE] = ACTIONS(1016), + [anon_sym_DOLLAR] = ACTIONS(2278), + [sym_raw_string] = ACTIONS(2280), + [anon_sym_POUND] = ACTIONS(2278), + [anon_sym_DASH] = ACTIONS(2278), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2282), + [anon_sym_STAR] = ACTIONS(2278), + [anon_sym_AT] = ACTIONS(2278), + [anon_sym_QMARK] = ACTIONS(2278), + [anon_sym_0] = ACTIONS(2284), + [anon_sym__] = ACTIONS(2284), }, [553] = { [aux_sym_concatenation_repeat1] = STATE(1119), - [sym__concat] = ACTIONS(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__concat] = ACTIONS(2274), + [sym_variable_name] = ACTIONS(702), + [anon_sym_PIPE] = ACTIONS(2100), + [anon_sym_PIPE_AMP] = ACTIONS(702), + [anon_sym_AMP_AMP] = ACTIONS(702), + [anon_sym_PIPE_PIPE] = ACTIONS(702), + [sym__special_characters] = ACTIONS(2100), + [anon_sym_DQUOTE] = ACTIONS(702), + [anon_sym_DOLLAR] = ACTIONS(2100), + [sym_raw_string] = ACTIONS(702), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(702), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(702), + [anon_sym_BQUOTE] = ACTIONS(702), + [anon_sym_LT_LPAREN] = ACTIONS(702), + [anon_sym_GT_LPAREN] = ACTIONS(702), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2068), - [sym_word] = ACTIONS(692), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2100), + [sym_word] = ACTIONS(704), }, [554] = { [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_variable_name] = ACTIONS(2286), + [anon_sym_DOLLAR] = ACTIONS(2288), + [anon_sym_POUND] = ACTIONS(2290), + [anon_sym_DASH] = ACTIONS(2288), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2292), + [anon_sym_STAR] = ACTIONS(2288), + [anon_sym_AT] = ACTIONS(2288), + [anon_sym_QMARK] = ACTIONS(2288), + [anon_sym_0] = ACTIONS(2294), + [anon_sym__] = ACTIONS(2294), }, [555] = { [sym_for_statement] = STATE(1130), @@ -25929,22 +26059,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(264), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(268), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -25952,17 +26082,17 @@ 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(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__special_characters] = ACTIONS(286), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(300), + [sym_word] = ACTIONS(302), }, [556] = { [sym_for_statement] = STATE(1132), @@ -25990,22 +26120,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(304), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(306), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(308), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_LBRACK_LBRACK] = ACTIONS(312), + [anon_sym_declare] = ACTIONS(314), + [anon_sym_typeset] = ACTIONS(314), + [anon_sym_export] = ACTIONS(314), + [anon_sym_readonly] = ACTIONS(314), + [anon_sym_local] = ACTIONS(314), + [anon_sym_unset] = ACTIONS(316), + [anon_sym_unsetenv] = ACTIONS(316), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -26013,17 +26143,17 @@ 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(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__special_characters] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [anon_sym_DOLLAR] = ACTIONS(322), + [sym_raw_string] = ACTIONS(324), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), + [anon_sym_BQUOTE] = ACTIONS(330), + [anon_sym_LT_LPAREN] = ACTIONS(332), + [anon_sym_GT_LPAREN] = ACTIONS(332), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(332), + [sym_word] = ACTIONS(334), }, [557] = { [sym_for_statement] = STATE(1134), @@ -26051,22 +26181,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(264), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(268), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -26074,22 +26204,22 @@ 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(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__special_characters] = ACTIONS(286), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(300), + [sym_word] = ACTIONS(302), }, [558] = { [sym__assignment] = STATE(1019), - [anon_sym_EQ] = ACTIONS(2238), - [anon_sym_PLUS_EQ] = ACTIONS(2238), + [anon_sym_EQ] = ACTIONS(2272), + [anon_sym_PLUS_EQ] = ACTIONS(2272), [sym_comment] = ACTIONS(56), }, [559] = { @@ -26103,50 +26233,50 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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_variable_name] = ACTIONS(1012), + [anon_sym_PIPE] = ACTIONS(2114), + [anon_sym_PIPE_AMP] = ACTIONS(2116), + [anon_sym_AMP_AMP] = ACTIONS(2116), + [anon_sym_PIPE_PIPE] = ACTIONS(2116), + [sym__special_characters] = ACTIONS(1014), + [anon_sym_DQUOTE] = ACTIONS(1016), + [anon_sym_DOLLAR] = ACTIONS(1018), + [sym_raw_string] = ACTIONS(1020), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1022), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1024), + [anon_sym_BQUOTE] = ACTIONS(2116), + [anon_sym_LT_LPAREN] = ACTIONS(1026), + [anon_sym_GT_LPAREN] = ACTIONS(1026), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(900), - [sym_word] = ACTIONS(1010), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(916), + [sym_word] = ACTIONS(1028), }, [560] = { [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__concat] = ACTIONS(2296), + [anon_sym_PIPE] = ACTIONS(2120), + [anon_sym_PIPE_AMP] = ACTIONS(2122), + [anon_sym_AMP_AMP] = ACTIONS(2122), + [anon_sym_PIPE_PIPE] = ACTIONS(2122), + [sym__special_characters] = ACTIONS(2120), + [anon_sym_DQUOTE] = ACTIONS(2122), + [anon_sym_DOLLAR] = ACTIONS(2120), + [sym_raw_string] = ACTIONS(2122), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2122), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2122), + [anon_sym_BQUOTE] = ACTIONS(2122), + [anon_sym_LT_LPAREN] = ACTIONS(2122), + [anon_sym_GT_LPAREN] = ACTIONS(2122), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2088), - [sym_word] = ACTIONS(712), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2120), + [sym_word] = ACTIONS(724), }, [561] = { [sym_simple_expansion] = STATE(134), [sym_expansion] = STATE(134), [sym_command_substitution] = STATE(134), [aux_sym_string_repeat1] = STATE(1140), - [anon_sym_DQUOTE] = ACTIONS(2262), + [anon_sym_DQUOTE] = ACTIONS(2298), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -26155,52 +26285,53 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(182), }, [562] = { - [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_string] = STATE(1142), + [anon_sym_DQUOTE] = ACTIONS(1032), + [anon_sym_DOLLAR] = ACTIONS(2300), + [sym_raw_string] = ACTIONS(2302), + [anon_sym_POUND] = ACTIONS(2300), + [anon_sym_DASH] = ACTIONS(2300), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2304), + [anon_sym_STAR] = ACTIONS(2300), + [anon_sym_AT] = ACTIONS(2300), + [anon_sym_QMARK] = ACTIONS(2300), + [anon_sym_0] = ACTIONS(2306), + [anon_sym__] = ACTIONS(2306), }, [563] = { [aux_sym_concatenation_repeat1] = STATE(1138), - [sym__concat] = ACTIONS(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__concat] = ACTIONS(2296), + [anon_sym_PIPE] = ACTIONS(2134), + [anon_sym_PIPE_AMP] = ACTIONS(2136), + [anon_sym_AMP_AMP] = ACTIONS(2136), + [anon_sym_PIPE_PIPE] = ACTIONS(2136), + [sym__special_characters] = ACTIONS(2134), + [anon_sym_DQUOTE] = ACTIONS(2136), + [anon_sym_DOLLAR] = ACTIONS(2134), + [sym_raw_string] = ACTIONS(2136), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2136), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2136), + [anon_sym_BQUOTE] = ACTIONS(2136), + [anon_sym_LT_LPAREN] = ACTIONS(2136), + [anon_sym_GT_LPAREN] = ACTIONS(2136), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2100), - [sym_word] = ACTIONS(724), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2134), + [sym_word] = ACTIONS(738), }, [564] = { [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_variable_name] = ACTIONS(2308), + [anon_sym_DOLLAR] = ACTIONS(2310), + [anon_sym_POUND] = ACTIONS(2312), + [anon_sym_DASH] = ACTIONS(2310), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2314), + [anon_sym_STAR] = ACTIONS(2310), + [anon_sym_AT] = ACTIONS(2310), + [anon_sym_QMARK] = ACTIONS(2310), + [anon_sym_0] = ACTIONS(2316), + [anon_sym__] = ACTIONS(2316), }, [565] = { [sym_for_statement] = STATE(1149), @@ -26228,22 +26359,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(264), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(268), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -26251,17 +26382,17 @@ 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(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__special_characters] = ACTIONS(286), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(300), + [sym_word] = ACTIONS(302), }, [566] = { [sym_for_statement] = STATE(1151), @@ -26289,22 +26420,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(304), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(306), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(308), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_LBRACK_LBRACK] = ACTIONS(312), + [anon_sym_declare] = ACTIONS(314), + [anon_sym_typeset] = ACTIONS(314), + [anon_sym_export] = ACTIONS(314), + [anon_sym_readonly] = ACTIONS(314), + [anon_sym_local] = ACTIONS(314), + [anon_sym_unset] = ACTIONS(316), + [anon_sym_unsetenv] = ACTIONS(316), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -26312,17 +26443,17 @@ 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(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__special_characters] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [anon_sym_DOLLAR] = ACTIONS(322), + [sym_raw_string] = ACTIONS(324), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), + [anon_sym_BQUOTE] = ACTIONS(330), + [anon_sym_LT_LPAREN] = ACTIONS(332), + [anon_sym_GT_LPAREN] = ACTIONS(332), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(332), + [sym_word] = ACTIONS(334), }, [567] = { [sym_for_statement] = STATE(1153), @@ -26350,22 +26481,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(264), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(268), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -26373,17 +26504,17 @@ 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(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__special_characters] = ACTIONS(286), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(300), + [sym_word] = ACTIONS(302), }, [568] = { [sym_concatenation] = STATE(508), @@ -26394,22 +26525,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_PIPE] = ACTIONS(2152), + [anon_sym_PIPE_AMP] = ACTIONS(2154), + [anon_sym_AMP_AMP] = ACTIONS(2154), + [anon_sym_PIPE_PIPE] = ACTIONS(2154), + [sym__special_characters] = ACTIONS(1030), + [anon_sym_DQUOTE] = ACTIONS(1032), + [anon_sym_DOLLAR] = ACTIONS(1034), + [sym_raw_string] = ACTIONS(1036), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1038), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1040), + [anon_sym_BQUOTE] = ACTIONS(2154), + [anon_sym_LT_LPAREN] = ACTIONS(1042), + [anon_sym_GT_LPAREN] = ACTIONS(1042), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(924), - [sym_word] = ACTIONS(1026), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(940), + [sym_word] = ACTIONS(1044), }, [569] = { [sym_string] = STATE(1156), @@ -26418,85 +26549,87 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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__special_characters] = ACTIONS(2318), + [anon_sym_DQUOTE] = ACTIONS(320), + [anon_sym_DOLLAR] = ACTIONS(322), + [sym_raw_string] = ACTIONS(2320), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), + [anon_sym_BQUOTE] = ACTIONS(330), + [anon_sym_LT_LPAREN] = ACTIONS(332), + [anon_sym_GT_LPAREN] = ACTIONS(332), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2280), + [sym_word] = ACTIONS(2318), }, [570] = { [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_file_descriptor] = ACTIONS(788), + [sym__concat] = ACTIONS(1046), + [anon_sym_PIPE] = ACTIONS(1567), + [anon_sym_PIPE_AMP] = ACTIONS(788), + [anon_sym_AMP_AMP] = ACTIONS(788), + [anon_sym_PIPE_PIPE] = ACTIONS(788), + [anon_sym_EQ_TILDE] = ACTIONS(1567), + [anon_sym_EQ_EQ] = ACTIONS(1567), + [anon_sym_LT] = ACTIONS(1567), + [anon_sym_GT] = ACTIONS(1567), + [anon_sym_GT_GT] = ACTIONS(788), + [anon_sym_AMP_GT] = ACTIONS(1567), + [anon_sym_AMP_GT_GT] = ACTIONS(788), + [anon_sym_LT_AMP] = ACTIONS(788), + [anon_sym_GT_AMP] = ACTIONS(788), + [anon_sym_LT_LT] = ACTIONS(1567), + [anon_sym_LT_LT_DASH] = ACTIONS(788), + [anon_sym_LT_LT_LT] = ACTIONS(788), + [sym__special_characters] = ACTIONS(1567), + [anon_sym_DQUOTE] = ACTIONS(788), + [anon_sym_DOLLAR] = ACTIONS(1567), + [sym_raw_string] = ACTIONS(788), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(788), + [anon_sym_BQUOTE] = ACTIONS(788), + [anon_sym_LT_LPAREN] = ACTIONS(788), + [anon_sym_GT_LPAREN] = ACTIONS(788), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(774), + [sym_word] = ACTIONS(790), }, [571] = { - [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_file_descriptor] = ACTIONS(792), + [sym__concat] = ACTIONS(792), + [anon_sym_PIPE] = ACTIONS(1569), + [anon_sym_PIPE_AMP] = ACTIONS(792), + [anon_sym_AMP_AMP] = ACTIONS(792), + [anon_sym_PIPE_PIPE] = ACTIONS(792), + [anon_sym_EQ_TILDE] = ACTIONS(1569), + [anon_sym_EQ_EQ] = ACTIONS(1569), + [anon_sym_LT] = ACTIONS(1569), + [anon_sym_GT] = ACTIONS(1569), + [anon_sym_GT_GT] = ACTIONS(792), + [anon_sym_AMP_GT] = ACTIONS(1569), + [anon_sym_AMP_GT_GT] = ACTIONS(792), + [anon_sym_LT_AMP] = ACTIONS(792), + [anon_sym_GT_AMP] = ACTIONS(792), + [anon_sym_LT_LT] = ACTIONS(1569), + [anon_sym_LT_LT_DASH] = ACTIONS(792), + [anon_sym_LT_LT_LT] = ACTIONS(792), + [sym__special_characters] = ACTIONS(1569), + [anon_sym_DQUOTE] = ACTIONS(792), + [anon_sym_DOLLAR] = ACTIONS(1569), + [sym_raw_string] = ACTIONS(792), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(792), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(792), + [anon_sym_BQUOTE] = ACTIONS(792), + [anon_sym_LT_LPAREN] = ACTIONS(792), + [anon_sym_GT_LPAREN] = ACTIONS(792), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(778), + [sym_word] = ACTIONS(794), }, [572] = { [sym_simple_expansion] = STATE(134), [sym_expansion] = STATE(134), [sym_command_substitution] = STATE(134), [aux_sym_string_repeat1] = STATE(447), - [anon_sym_DQUOTE] = ACTIONS(2284), + [anon_sym_DQUOTE] = ACTIONS(2322), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -26505,98 +26638,101 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(182), }, [573] = { - [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_file_descriptor] = ACTIONS(824), + [sym__concat] = ACTIONS(824), + [anon_sym_PIPE] = ACTIONS(1573), + [anon_sym_PIPE_AMP] = ACTIONS(824), + [anon_sym_AMP_AMP] = ACTIONS(824), + [anon_sym_PIPE_PIPE] = ACTIONS(824), + [anon_sym_EQ_TILDE] = ACTIONS(1573), + [anon_sym_EQ_EQ] = ACTIONS(1573), + [anon_sym_LT] = ACTIONS(1573), + [anon_sym_GT] = ACTIONS(1573), + [anon_sym_GT_GT] = ACTIONS(824), + [anon_sym_AMP_GT] = ACTIONS(1573), + [anon_sym_AMP_GT_GT] = ACTIONS(824), + [anon_sym_LT_AMP] = ACTIONS(824), + [anon_sym_GT_AMP] = ACTIONS(824), + [anon_sym_LT_LT] = ACTIONS(1573), + [anon_sym_LT_LT_DASH] = ACTIONS(824), + [anon_sym_LT_LT_LT] = ACTIONS(824), + [sym__special_characters] = ACTIONS(1573), + [anon_sym_DQUOTE] = ACTIONS(824), + [anon_sym_DOLLAR] = ACTIONS(1573), + [sym_raw_string] = ACTIONS(824), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(824), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(824), + [anon_sym_BQUOTE] = ACTIONS(824), + [anon_sym_LT_LPAREN] = ACTIONS(824), + [anon_sym_GT_LPAREN] = ACTIONS(824), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(810), + [sym_word] = ACTIONS(826), }, [574] = { - [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_file_descriptor] = ACTIONS(828), + [sym__concat] = ACTIONS(828), + [anon_sym_PIPE] = ACTIONS(1575), + [anon_sym_PIPE_AMP] = ACTIONS(828), + [anon_sym_AMP_AMP] = ACTIONS(828), + [anon_sym_PIPE_PIPE] = ACTIONS(828), + [anon_sym_EQ_TILDE] = ACTIONS(1575), + [anon_sym_EQ_EQ] = ACTIONS(1575), + [anon_sym_LT] = ACTIONS(1575), + [anon_sym_GT] = ACTIONS(1575), + [anon_sym_GT_GT] = ACTIONS(828), + [anon_sym_AMP_GT] = ACTIONS(1575), + [anon_sym_AMP_GT_GT] = ACTIONS(828), + [anon_sym_LT_AMP] = ACTIONS(828), + [anon_sym_GT_AMP] = ACTIONS(828), + [anon_sym_LT_LT] = ACTIONS(1575), + [anon_sym_LT_LT_DASH] = ACTIONS(828), + [anon_sym_LT_LT_LT] = ACTIONS(828), + [sym__special_characters] = ACTIONS(1575), + [anon_sym_DQUOTE] = ACTIONS(828), + [anon_sym_DOLLAR] = ACTIONS(1575), + [sym_raw_string] = ACTIONS(828), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), + [anon_sym_BQUOTE] = ACTIONS(828), + [anon_sym_LT_LPAREN] = ACTIONS(828), + [anon_sym_GT_LPAREN] = ACTIONS(828), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(814), + [sym_word] = ACTIONS(830), }, [575] = { - [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_file_descriptor] = ACTIONS(832), + [sym__concat] = ACTIONS(832), + [anon_sym_PIPE] = ACTIONS(1577), + [anon_sym_PIPE_AMP] = ACTIONS(832), + [anon_sym_AMP_AMP] = ACTIONS(832), + [anon_sym_PIPE_PIPE] = ACTIONS(832), + [anon_sym_EQ_TILDE] = ACTIONS(1577), + [anon_sym_EQ_EQ] = ACTIONS(1577), + [anon_sym_LT] = ACTIONS(1577), + [anon_sym_GT] = ACTIONS(1577), + [anon_sym_GT_GT] = ACTIONS(832), + [anon_sym_AMP_GT] = ACTIONS(1577), + [anon_sym_AMP_GT_GT] = ACTIONS(832), + [anon_sym_LT_AMP] = ACTIONS(832), + [anon_sym_GT_AMP] = ACTIONS(832), + [anon_sym_LT_LT] = ACTIONS(1577), + [anon_sym_LT_LT_DASH] = ACTIONS(832), + [anon_sym_LT_LT_LT] = ACTIONS(832), + [sym__special_characters] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(832), + [anon_sym_DOLLAR] = ACTIONS(1577), + [sym_raw_string] = ACTIONS(832), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(832), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(832), + [anon_sym_BQUOTE] = ACTIONS(832), + [anon_sym_LT_LPAREN] = ACTIONS(832), + [anon_sym_GT_LPAREN] = ACTIONS(832), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(818), + [sym_word] = ACTIONS(834), }, [576] = { - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(2286), + [anon_sym_LBRACK] = ACTIONS(836), + [anon_sym_EQ] = ACTIONS(2324), [sym_comment] = ACTIONS(56), }, [577] = { @@ -26608,39 +26744,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(2326), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(2328), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [578] = { [sym_subscript] = STATE(1166), - [sym_variable_name] = ACTIONS(2292), - [anon_sym_DOLLAR] = ACTIONS(2294), - [anon_sym_DASH] = ACTIONS(2294), + [sym_variable_name] = ACTIONS(2330), + [anon_sym_DOLLAR] = ACTIONS(2332), + [anon_sym_DASH] = ACTIONS(2332), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2334), + [anon_sym_STAR] = ACTIONS(2332), + [anon_sym_AT] = ACTIONS(2332), + [anon_sym_QMARK] = ACTIONS(2332), + [anon_sym_0] = ACTIONS(2336), + [anon_sym__] = ACTIONS(2336), }, [579] = { [sym_concatenation] = STATE(451), @@ -26651,26 +26787,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(2338), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(2340), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [580] = { [sym_concatenation] = STATE(451), @@ -26681,133 +26817,133 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(2342), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(2344), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [581] = { - [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_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(2346), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), [sym_comment] = ACTIONS(56), }, [582] = { - [sym_file_descriptor] = ACTIONS(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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(2346), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [583] = { - [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), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_PIPE_AMP] = ACTIONS(1072), + [anon_sym_AMP_AMP] = ACTIONS(1074), + [anon_sym_PIPE_PIPE] = ACTIONS(1074), + [anon_sym_BQUOTE] = ACTIONS(2346), [sym_comment] = ACTIONS(56), }, [584] = { - [sym_file_descriptor] = ACTIONS(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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_PIPE_AMP] = ACTIONS(1072), + [anon_sym_AMP_AMP] = ACTIONS(1074), + [anon_sym_PIPE_PIPE] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(2346), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [585] = { - [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_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(2348), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), [sym_comment] = ACTIONS(56), }, [586] = { - [sym_file_descriptor] = ACTIONS(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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(2348), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [587] = { - [anon_sym_RPAREN] = ACTIONS(2312), + [anon_sym_RPAREN] = ACTIONS(2350), [sym_comment] = ACTIONS(56), }, [588] = { @@ -26836,22 +26972,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(304), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(306), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(308), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_LBRACK_LBRACK] = ACTIONS(312), + [anon_sym_declare] = ACTIONS(314), + [anon_sym_typeset] = ACTIONS(314), + [anon_sym_export] = ACTIONS(314), + [anon_sym_readonly] = ACTIONS(314), + [anon_sym_local] = ACTIONS(314), + [anon_sym_unset] = ACTIONS(316), + [anon_sym_unsetenv] = ACTIONS(316), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -26859,17 +26995,17 @@ 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(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__special_characters] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [anon_sym_DOLLAR] = ACTIONS(322), + [sym_raw_string] = ACTIONS(324), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), + [anon_sym_BQUOTE] = ACTIONS(330), + [anon_sym_LT_LPAREN] = ACTIONS(332), + [anon_sym_GT_LPAREN] = ACTIONS(332), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(332), + [sym_word] = ACTIONS(334), }, [589] = { [sym_for_statement] = STATE(1177), @@ -26897,22 +27033,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(304), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(306), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(308), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_LBRACK_LBRACK] = ACTIONS(312), + [anon_sym_declare] = ACTIONS(314), + [anon_sym_typeset] = ACTIONS(314), + [anon_sym_export] = ACTIONS(314), + [anon_sym_readonly] = ACTIONS(314), + [anon_sym_local] = ACTIONS(314), + [anon_sym_unset] = ACTIONS(316), + [anon_sym_unsetenv] = ACTIONS(316), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -26920,26 +27056,26 @@ 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(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__special_characters] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [anon_sym_DOLLAR] = ACTIONS(322), + [sym_raw_string] = ACTIONS(324), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), + [anon_sym_BQUOTE] = ACTIONS(330), + [anon_sym_LT_LPAREN] = ACTIONS(332), + [anon_sym_GT_LPAREN] = ACTIONS(332), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(332), + [sym_word] = ACTIONS(334), }, [590] = { - [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), + [anon_sym_LT] = ACTIONS(2352), + [anon_sym_GT] = ACTIONS(2352), + [anon_sym_GT_GT] = ACTIONS(2354), + [anon_sym_AMP_GT] = ACTIONS(2352), + [anon_sym_AMP_GT_GT] = ACTIONS(2354), + [anon_sym_LT_AMP] = ACTIONS(2354), + [anon_sym_GT_AMP] = ACTIONS(2354), [sym_comment] = ACTIONS(56), }, [591] = { @@ -26950,18 +27086,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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__special_characters] = ACTIONS(2356), + [anon_sym_DQUOTE] = ACTIONS(2358), + [anon_sym_DOLLAR] = ACTIONS(2360), + [sym_raw_string] = ACTIONS(2362), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2364), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2366), + [anon_sym_BQUOTE] = ACTIONS(2368), + [anon_sym_LT_LPAREN] = ACTIONS(2370), + [anon_sym_GT_LPAREN] = ACTIONS(2370), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2324), - [sym_regex] = ACTIONS(2180), + [sym_word] = ACTIONS(2362), + [sym_regex] = ACTIONS(2214), }, [592] = { [sym_concatenation] = STATE(1094), @@ -26971,17 +27107,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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__special_characters] = ACTIONS(2372), + [anon_sym_DQUOTE] = ACTIONS(2374), + [anon_sym_DOLLAR] = ACTIONS(2376), + [sym_raw_string] = ACTIONS(2378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2382), + [anon_sym_BQUOTE] = ACTIONS(2384), + [anon_sym_LT_LPAREN] = ACTIONS(2386), + [anon_sym_GT_LPAREN] = ACTIONS(2386), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2350), + [sym_word] = ACTIONS(2388), }, [593] = { [sym_concatenation] = STATE(1100), @@ -26991,101 +27127,103 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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__special_characters] = ACTIONS(2390), + [anon_sym_DQUOTE] = ACTIONS(2374), + [anon_sym_DOLLAR] = ACTIONS(2376), + [sym_raw_string] = ACTIONS(2392), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2382), + [anon_sym_BQUOTE] = ACTIONS(2384), + [anon_sym_LT_LPAREN] = ACTIONS(2386), + [anon_sym_GT_LPAREN] = ACTIONS(2386), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2356), + [sym_word] = ACTIONS(2394), }, [594] = { [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_file_descriptor] = ACTIONS(606), + [sym__concat] = ACTIONS(1046), + [anon_sym_PIPE] = ACTIONS(604), + [anon_sym_PIPE_AMP] = ACTIONS(606), + [anon_sym_AMP_AMP] = ACTIONS(606), + [anon_sym_PIPE_PIPE] = ACTIONS(606), + [anon_sym_EQ_TILDE] = ACTIONS(604), + [anon_sym_EQ_EQ] = ACTIONS(604), + [anon_sym_LT] = ACTIONS(604), + [anon_sym_GT] = ACTIONS(604), + [anon_sym_GT_GT] = ACTIONS(606), + [anon_sym_AMP_GT] = ACTIONS(604), + [anon_sym_AMP_GT_GT] = ACTIONS(606), + [anon_sym_LT_AMP] = ACTIONS(606), + [anon_sym_GT_AMP] = ACTIONS(606), + [anon_sym_LT_LT] = ACTIONS(604), + [anon_sym_LT_LT_DASH] = ACTIONS(606), + [anon_sym_LT_LT_LT] = ACTIONS(606), + [sym__special_characters] = ACTIONS(604), + [anon_sym_DQUOTE] = ACTIONS(606), + [anon_sym_DOLLAR] = ACTIONS(604), + [sym_raw_string] = ACTIONS(606), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(606), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(606), + [anon_sym_BQUOTE] = ACTIONS(606), + [anon_sym_LT_LPAREN] = ACTIONS(606), + [anon_sym_GT_LPAREN] = ACTIONS(606), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(602), + [sym_word] = ACTIONS(608), }, [595] = { [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_file_descriptor] = ACTIONS(622), + [sym__concat] = ACTIONS(1046), + [anon_sym_PIPE] = ACTIONS(620), + [anon_sym_PIPE_AMP] = ACTIONS(622), + [anon_sym_AMP_AMP] = ACTIONS(622), + [anon_sym_PIPE_PIPE] = ACTIONS(622), + [anon_sym_EQ_TILDE] = ACTIONS(620), + [anon_sym_EQ_EQ] = ACTIONS(620), + [anon_sym_LT] = ACTIONS(620), + [anon_sym_GT] = ACTIONS(620), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_AMP_GT] = ACTIONS(620), + [anon_sym_AMP_GT_GT] = ACTIONS(622), + [anon_sym_LT_AMP] = ACTIONS(622), + [anon_sym_GT_AMP] = ACTIONS(622), + [anon_sym_LT_LT] = ACTIONS(620), + [anon_sym_LT_LT_DASH] = ACTIONS(622), + [anon_sym_LT_LT_LT] = ACTIONS(622), + [sym__special_characters] = ACTIONS(620), + [anon_sym_DQUOTE] = ACTIONS(622), + [anon_sym_DOLLAR] = ACTIONS(620), + [sym_raw_string] = ACTIONS(622), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(622), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(622), + [anon_sym_BQUOTE] = ACTIONS(622), + [anon_sym_LT_LPAREN] = ACTIONS(622), + [anon_sym_GT_LPAREN] = ACTIONS(622), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(616), + [sym_word] = ACTIONS(624), }, [596] = { [sym_file_redirect] = STATE(539), [sym_heredoc_redirect] = STATE(539), [sym_herestring_redirect] = STATE(539), [aux_sym_while_statement_repeat1] = STATE(1192), - [sym_file_descriptor] = ACTIONS(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_file_descriptor] = ACTIONS(1076), + [anon_sym_PIPE] = ACTIONS(2246), + [anon_sym_PIPE_AMP] = ACTIONS(2248), + [anon_sym_AMP_AMP] = ACTIONS(2248), + [anon_sym_PIPE_PIPE] = ACTIONS(2248), + [anon_sym_LT] = ACTIONS(1080), + [anon_sym_GT] = ACTIONS(1080), + [anon_sym_GT_GT] = ACTIONS(1082), + [anon_sym_AMP_GT] = ACTIONS(1080), + [anon_sym_AMP_GT_GT] = ACTIONS(1082), + [anon_sym_LT_AMP] = ACTIONS(1082), + [anon_sym_GT_AMP] = ACTIONS(1082), + [anon_sym_LT_LT] = ACTIONS(992), + [anon_sym_LT_LT_DASH] = ACTIONS(994), + [anon_sym_LT_LT_LT] = ACTIONS(1084), + [anon_sym_BQUOTE] = ACTIONS(2248), [sym_comment] = ACTIONS(56), }, [597] = { @@ -27101,33 +27239,34 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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_file_descriptor] = ACTIONS(1076), + [anon_sym_PIPE] = ACTIONS(2246), + [anon_sym_PIPE_AMP] = ACTIONS(2248), + [anon_sym_AMP_AMP] = ACTIONS(2248), + [anon_sym_PIPE_PIPE] = ACTIONS(2248), + [anon_sym_EQ_TILDE] = ACTIONS(1078), + [anon_sym_EQ_EQ] = ACTIONS(1078), + [anon_sym_LT] = ACTIONS(1080), + [anon_sym_GT] = ACTIONS(1080), + [anon_sym_GT_GT] = ACTIONS(1082), + [anon_sym_AMP_GT] = ACTIONS(1080), + [anon_sym_AMP_GT_GT] = ACTIONS(1082), + [anon_sym_LT_AMP] = ACTIONS(1082), + [anon_sym_GT_AMP] = ACTIONS(1082), + [anon_sym_LT_LT] = ACTIONS(992), + [anon_sym_LT_LT_DASH] = ACTIONS(994), + [anon_sym_LT_LT_LT] = ACTIONS(1084), + [sym__special_characters] = ACTIONS(1086), + [anon_sym_DQUOTE] = ACTIONS(320), + [anon_sym_DOLLAR] = ACTIONS(322), + [sym_raw_string] = ACTIONS(1088), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), + [anon_sym_BQUOTE] = ACTIONS(2248), + [anon_sym_LT_LPAREN] = ACTIONS(332), + [anon_sym_GT_LPAREN] = ACTIONS(332), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1070), + [sym_word] = ACTIONS(1090), }, [598] = { [sym_file_redirect] = STATE(539), @@ -27142,157 +27281,159 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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_file_descriptor] = ACTIONS(1076), + [anon_sym_PIPE] = ACTIONS(2246), + [anon_sym_PIPE_AMP] = ACTIONS(2248), + [anon_sym_AMP_AMP] = ACTIONS(2248), + [anon_sym_PIPE_PIPE] = ACTIONS(2248), + [anon_sym_EQ_TILDE] = ACTIONS(1078), + [anon_sym_EQ_EQ] = ACTIONS(1078), + [anon_sym_LT] = ACTIONS(1080), + [anon_sym_GT] = ACTIONS(1080), + [anon_sym_GT_GT] = ACTIONS(1082), + [anon_sym_AMP_GT] = ACTIONS(1080), + [anon_sym_AMP_GT_GT] = ACTIONS(1082), + [anon_sym_LT_AMP] = ACTIONS(1082), + [anon_sym_GT_AMP] = ACTIONS(1082), + [anon_sym_LT_LT] = ACTIONS(992), + [anon_sym_LT_LT_DASH] = ACTIONS(994), + [anon_sym_LT_LT_LT] = ACTIONS(1084), + [sym__special_characters] = ACTIONS(1086), + [anon_sym_DQUOTE] = ACTIONS(320), + [anon_sym_DOLLAR] = ACTIONS(322), + [sym_raw_string] = ACTIONS(1088), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), + [anon_sym_BQUOTE] = ACTIONS(2248), + [anon_sym_LT_LPAREN] = ACTIONS(332), + [anon_sym_GT_LPAREN] = ACTIONS(332), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1070), + [sym_word] = ACTIONS(1090), }, [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_file_descriptor] = ACTIONS(2396), + [sym__concat] = ACTIONS(2396), + [anon_sym_PIPE] = ACTIONS(2398), + [anon_sym_SEMI_SEMI] = ACTIONS(2398), + [anon_sym_PIPE_AMP] = ACTIONS(2398), + [anon_sym_AMP_AMP] = ACTIONS(2398), + [anon_sym_PIPE_PIPE] = ACTIONS(2398), + [anon_sym_EQ_TILDE] = ACTIONS(2398), + [anon_sym_EQ_EQ] = ACTIONS(2398), + [anon_sym_LT] = ACTIONS(2398), + [anon_sym_GT] = ACTIONS(2398), + [anon_sym_GT_GT] = ACTIONS(2398), + [anon_sym_AMP_GT] = ACTIONS(2398), + [anon_sym_AMP_GT_GT] = ACTIONS(2398), + [anon_sym_LT_AMP] = ACTIONS(2398), + [anon_sym_GT_AMP] = ACTIONS(2398), + [anon_sym_LT_LT] = ACTIONS(2398), + [anon_sym_LT_LT_DASH] = ACTIONS(2398), + [anon_sym_LT_LT_LT] = ACTIONS(2398), + [sym__special_characters] = ACTIONS(2398), + [anon_sym_DQUOTE] = ACTIONS(2398), + [anon_sym_DOLLAR] = ACTIONS(2398), + [sym_raw_string] = ACTIONS(2398), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2398), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2398), + [anon_sym_BQUOTE] = ACTIONS(2398), + [anon_sym_LT_LPAREN] = ACTIONS(2398), + [anon_sym_GT_LPAREN] = ACTIONS(2398), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2360), - [anon_sym_SEMI] = ACTIONS(2360), - [anon_sym_LF] = ACTIONS(2360), - [anon_sym_AMP] = ACTIONS(2360), + [sym_word] = ACTIONS(2398), + [anon_sym_SEMI] = ACTIONS(2398), + [anon_sym_LF] = ACTIONS(2398), + [anon_sym_AMP] = ACTIONS(2398), }, [600] = { [sym_compound_statement] = STATE(1196), - [anon_sym_LBRACE] = ACTIONS(480), + [anon_sym_LBRACE] = ACTIONS(484), [sym_comment] = ACTIONS(56), }, [601] = { - [anon_sym_esac] = ACTIONS(2362), - [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_esac] = ACTIONS(2400), + [anon_sym_PIPE] = ACTIONS(2400), + [anon_sym_RPAREN] = ACTIONS(2400), + [anon_sym_SEMI_SEMI] = ACTIONS(2400), + [anon_sym_PIPE_AMP] = ACTIONS(2400), + [anon_sym_AMP_AMP] = ACTIONS(2400), + [anon_sym_PIPE_PIPE] = ACTIONS(2400), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2362), - [anon_sym_LF] = ACTIONS(2362), - [anon_sym_AMP] = ACTIONS(2362), + [anon_sym_SEMI] = ACTIONS(2400), + [anon_sym_LF] = ACTIONS(2400), + [anon_sym_AMP] = ACTIONS(2400), }, [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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(2400), + [anon_sym_RPAREN] = ACTIONS(2400), + [anon_sym_SEMI_SEMI] = ACTIONS(2400), + [anon_sym_PIPE_AMP] = ACTIONS(2400), + [anon_sym_AMP_AMP] = ACTIONS(2400), + [anon_sym_PIPE_PIPE] = ACTIONS(2400), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(382), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(382), + [anon_sym_LT_AMP] = ACTIONS(382), + [anon_sym_GT_AMP] = ACTIONS(382), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(382), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(382), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(382), + [anon_sym_BQUOTE] = ACTIONS(382), + [anon_sym_LT_LPAREN] = ACTIONS(382), + [anon_sym_GT_LPAREN] = ACTIONS(382), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(380), - [anon_sym_SEMI] = ACTIONS(2362), - [anon_sym_LF] = ACTIONS(2362), - [anon_sym_AMP] = ACTIONS(2362), + [sym_word] = ACTIONS(382), + [anon_sym_SEMI] = ACTIONS(2400), + [anon_sym_LF] = ACTIONS(2400), + [anon_sym_AMP] = ACTIONS(2400), }, [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), + [anon_sym_PIPE] = ACTIONS(346), + [anon_sym_SEMI_SEMI] = ACTIONS(2402), + [anon_sym_PIPE_AMP] = ACTIONS(346), + [anon_sym_AMP_AMP] = ACTIONS(2402), + [anon_sym_PIPE_PIPE] = ACTIONS(2402), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2364), - [anon_sym_LF] = ACTIONS(2364), - [anon_sym_AMP] = ACTIONS(2364), + [anon_sym_SEMI] = ACTIONS(2402), + [anon_sym_LF] = ACTIONS(2402), + [anon_sym_AMP] = ACTIONS(2402), }, [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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(346), + [anon_sym_SEMI_SEMI] = ACTIONS(2402), + [anon_sym_PIPE_AMP] = ACTIONS(346), + [anon_sym_AMP_AMP] = ACTIONS(2402), + [anon_sym_PIPE_PIPE] = ACTIONS(2402), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(382), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(382), + [anon_sym_LT_AMP] = ACTIONS(382), + [anon_sym_GT_AMP] = ACTIONS(382), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(382), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(382), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(382), + [anon_sym_BQUOTE] = ACTIONS(382), + [anon_sym_LT_LPAREN] = ACTIONS(382), + [anon_sym_GT_LPAREN] = ACTIONS(382), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(380), - [anon_sym_SEMI] = ACTIONS(2364), - [anon_sym_LF] = ACTIONS(2364), - [anon_sym_AMP] = ACTIONS(2364), + [sym_word] = ACTIONS(382), + [anon_sym_SEMI] = ACTIONS(2402), + [anon_sym_LF] = ACTIONS(2402), + [anon_sym_AMP] = ACTIONS(2402), }, [605] = { [sym_concatenation] = STATE(1199), @@ -27302,152 +27443,155 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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__special_characters] = ACTIONS(2404), + [anon_sym_DQUOTE] = ACTIONS(1118), + [anon_sym_DOLLAR] = ACTIONS(1120), + [sym_raw_string] = ACTIONS(2406), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1124), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1126), + [anon_sym_BQUOTE] = ACTIONS(1128), + [anon_sym_LT_LPAREN] = ACTIONS(1130), + [anon_sym_GT_LPAREN] = ACTIONS(1130), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2370), + [sym_word] = ACTIONS(2408), }, [606] = { [aux_sym_concatenation_repeat1] = STATE(131), - [sym_file_descriptor] = ACTIONS(1525), + [sym_file_descriptor] = ACTIONS(1553), [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), + [anon_sym_PIPE] = ACTIONS(1555), + [anon_sym_SEMI_SEMI] = ACTIONS(1555), + [anon_sym_PIPE_AMP] = ACTIONS(1555), + [anon_sym_AMP_AMP] = ACTIONS(1555), + [anon_sym_PIPE_PIPE] = ACTIONS(1555), + [anon_sym_EQ_TILDE] = ACTIONS(1555), + [anon_sym_EQ_EQ] = ACTIONS(1555), + [anon_sym_LT] = ACTIONS(1555), + [anon_sym_GT] = ACTIONS(1555), + [anon_sym_GT_GT] = ACTIONS(1555), + [anon_sym_AMP_GT] = ACTIONS(1555), + [anon_sym_AMP_GT_GT] = ACTIONS(1555), + [anon_sym_LT_AMP] = ACTIONS(1555), + [anon_sym_GT_AMP] = ACTIONS(1555), + [anon_sym_LT_LT] = ACTIONS(1555), + [anon_sym_LT_LT_DASH] = ACTIONS(1555), + [anon_sym_LT_LT_LT] = ACTIONS(1555), + [sym__special_characters] = ACTIONS(1555), + [anon_sym_DQUOTE] = ACTIONS(1555), + [anon_sym_DOLLAR] = ACTIONS(1555), + [sym_raw_string] = ACTIONS(1555), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1555), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1555), + [anon_sym_BQUOTE] = ACTIONS(1555), + [anon_sym_LT_LPAREN] = ACTIONS(1555), + [anon_sym_GT_LPAREN] = ACTIONS(1555), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1527), - [anon_sym_SEMI] = ACTIONS(1527), - [anon_sym_LF] = ACTIONS(1527), - [anon_sym_AMP] = ACTIONS(1527), + [sym_word] = ACTIONS(1555), + [anon_sym_SEMI] = ACTIONS(1555), + [anon_sym_LF] = ACTIONS(1555), + [anon_sym_AMP] = ACTIONS(1555), }, [607] = { [aux_sym_concatenation_repeat1] = STATE(131), - [sym_file_descriptor] = ACTIONS(1531), + [sym_file_descriptor] = ACTIONS(1559), [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), + [anon_sym_PIPE] = ACTIONS(1561), + [anon_sym_SEMI_SEMI] = ACTIONS(1561), + [anon_sym_PIPE_AMP] = ACTIONS(1561), + [anon_sym_AMP_AMP] = ACTIONS(1561), + [anon_sym_PIPE_PIPE] = ACTIONS(1561), + [anon_sym_EQ_TILDE] = ACTIONS(1561), + [anon_sym_EQ_EQ] = ACTIONS(1561), + [anon_sym_LT] = ACTIONS(1561), + [anon_sym_GT] = ACTIONS(1561), + [anon_sym_GT_GT] = ACTIONS(1561), + [anon_sym_AMP_GT] = ACTIONS(1561), + [anon_sym_AMP_GT_GT] = ACTIONS(1561), + [anon_sym_LT_AMP] = ACTIONS(1561), + [anon_sym_GT_AMP] = ACTIONS(1561), + [anon_sym_LT_LT] = ACTIONS(1561), + [anon_sym_LT_LT_DASH] = ACTIONS(1561), + [anon_sym_LT_LT_LT] = ACTIONS(1561), + [sym__special_characters] = ACTIONS(1561), + [anon_sym_DQUOTE] = ACTIONS(1561), + [anon_sym_DOLLAR] = ACTIONS(1561), + [sym_raw_string] = ACTIONS(1561), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1561), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1561), + [anon_sym_BQUOTE] = ACTIONS(1561), + [anon_sym_LT_LPAREN] = ACTIONS(1561), + [anon_sym_GT_LPAREN] = ACTIONS(1561), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1533), - [anon_sym_LF] = ACTIONS(1533), - [anon_sym_AMP] = ACTIONS(1533), + [sym_word] = ACTIONS(1561), + [anon_sym_SEMI] = ACTIONS(1561), + [anon_sym_LF] = ACTIONS(1561), + [anon_sym_AMP] = ACTIONS(1561), }, [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_file_descriptor] = ACTIONS(1559), + [anon_sym_PIPE] = ACTIONS(1561), + [anon_sym_RPAREN] = ACTIONS(1561), + [anon_sym_SEMI_SEMI] = ACTIONS(1561), + [anon_sym_PIPE_AMP] = ACTIONS(1561), + [anon_sym_AMP_AMP] = ACTIONS(1561), + [anon_sym_PIPE_PIPE] = ACTIONS(1561), + [anon_sym_EQ_TILDE] = ACTIONS(1561), + [anon_sym_EQ_EQ] = ACTIONS(1561), + [anon_sym_LT] = ACTIONS(1561), + [anon_sym_GT] = ACTIONS(1561), + [anon_sym_GT_GT] = ACTIONS(1561), + [anon_sym_AMP_GT] = ACTIONS(1561), + [anon_sym_AMP_GT_GT] = ACTIONS(1561), + [anon_sym_LT_AMP] = ACTIONS(1561), + [anon_sym_GT_AMP] = ACTIONS(1561), + [anon_sym_LT_LT] = ACTIONS(1561), + [anon_sym_LT_LT_DASH] = ACTIONS(1561), + [anon_sym_LT_LT_LT] = ACTIONS(1561), + [sym__special_characters] = ACTIONS(1561), + [anon_sym_DQUOTE] = ACTIONS(1561), + [anon_sym_DOLLAR] = ACTIONS(1561), + [sym_raw_string] = ACTIONS(1561), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1561), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1561), + [anon_sym_BQUOTE] = ACTIONS(1561), + [anon_sym_LT_LPAREN] = ACTIONS(1561), + [anon_sym_GT_LPAREN] = ACTIONS(1561), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1533), - [anon_sym_LF] = ACTIONS(1533), - [anon_sym_AMP] = ACTIONS(1533), + [sym_word] = ACTIONS(1561), + [anon_sym_SEMI] = ACTIONS(1561), + [anon_sym_LF] = ACTIONS(1561), + [anon_sym_AMP] = ACTIONS(1561), }, [609] = { [aux_sym_concatenation_repeat1] = STATE(1201), - [sym_file_descriptor] = ACTIONS(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_file_descriptor] = ACTIONS(754), + [sym__concat] = ACTIONS(2410), + [anon_sym_PIPE] = ACTIONS(2412), + [anon_sym_SEMI_SEMI] = ACTIONS(2412), + [anon_sym_PIPE_AMP] = ACTIONS(2412), + [anon_sym_AMP_AMP] = ACTIONS(2412), + [anon_sym_PIPE_PIPE] = ACTIONS(2412), + [anon_sym_LT] = ACTIONS(2412), + [anon_sym_GT] = ACTIONS(2412), + [anon_sym_GT_GT] = ACTIONS(2412), + [anon_sym_AMP_GT] = ACTIONS(2412), + [anon_sym_AMP_GT_GT] = ACTIONS(2412), + [anon_sym_LT_AMP] = ACTIONS(2412), + [anon_sym_GT_AMP] = ACTIONS(2412), + [anon_sym_LT_LT] = ACTIONS(2412), + [anon_sym_LT_LT_DASH] = ACTIONS(2412), + [anon_sym_LT_LT_LT] = ACTIONS(2412), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2374), - [anon_sym_LF] = ACTIONS(2374), - [anon_sym_AMP] = ACTIONS(2374), + [anon_sym_SEMI] = ACTIONS(2412), + [anon_sym_LF] = ACTIONS(2412), + [anon_sym_AMP] = ACTIONS(2412), }, [610] = { [sym_simple_expansion] = STATE(134), [sym_expansion] = STATE(134), [sym_command_substitution] = STATE(134), [aux_sym_string_repeat1] = STATE(1203), - [anon_sym_DQUOTE] = ACTIONS(2376), + [anon_sym_DQUOTE] = ACTIONS(2414), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -27456,56 +27600,57 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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_string] = STATE(1205), + [anon_sym_DQUOTE] = ACTIONS(1118), + [anon_sym_DOLLAR] = ACTIONS(2416), + [sym_raw_string] = ACTIONS(2418), + [anon_sym_POUND] = ACTIONS(2416), + [anon_sym_DASH] = ACTIONS(2416), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2420), + [anon_sym_STAR] = ACTIONS(2416), + [anon_sym_AT] = ACTIONS(2416), + [anon_sym_QMARK] = ACTIONS(2416), + [anon_sym_0] = ACTIONS(2422), + [anon_sym__] = ACTIONS(2422), }, [612] = { [aux_sym_concatenation_repeat1] = STATE(1201), - [sym_file_descriptor] = ACTIONS(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_file_descriptor] = ACTIONS(770), + [sym__concat] = ACTIONS(2410), + [anon_sym_PIPE] = ACTIONS(2424), + [anon_sym_SEMI_SEMI] = ACTIONS(2424), + [anon_sym_PIPE_AMP] = ACTIONS(2424), + [anon_sym_AMP_AMP] = ACTIONS(2424), + [anon_sym_PIPE_PIPE] = ACTIONS(2424), + [anon_sym_LT] = ACTIONS(2424), + [anon_sym_GT] = ACTIONS(2424), + [anon_sym_GT_GT] = ACTIONS(2424), + [anon_sym_AMP_GT] = ACTIONS(2424), + [anon_sym_AMP_GT_GT] = ACTIONS(2424), + [anon_sym_LT_AMP] = ACTIONS(2424), + [anon_sym_GT_AMP] = ACTIONS(2424), + [anon_sym_LT_LT] = ACTIONS(2424), + [anon_sym_LT_LT_DASH] = ACTIONS(2424), + [anon_sym_LT_LT_LT] = ACTIONS(2424), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2384), - [anon_sym_LF] = ACTIONS(2384), - [anon_sym_AMP] = ACTIONS(2384), + [anon_sym_SEMI] = ACTIONS(2424), + [anon_sym_LF] = ACTIONS(2424), + [anon_sym_AMP] = ACTIONS(2424), }, [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_variable_name] = ACTIONS(2426), + [anon_sym_DOLLAR] = ACTIONS(2428), + [anon_sym_POUND] = ACTIONS(2430), + [anon_sym_DASH] = ACTIONS(2428), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2432), + [anon_sym_STAR] = ACTIONS(2428), + [anon_sym_AT] = ACTIONS(2428), + [anon_sym_QMARK] = ACTIONS(2428), + [anon_sym_0] = ACTIONS(2434), + [anon_sym__] = ACTIONS(2434), }, [614] = { [sym_for_statement] = STATE(1212), @@ -27533,22 +27678,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(264), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(268), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -27556,17 +27701,17 @@ 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(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__special_characters] = ACTIONS(286), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(300), + [sym_word] = ACTIONS(302), }, [615] = { [sym_for_statement] = STATE(1214), @@ -27594,22 +27739,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(304), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(306), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(308), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_LBRACK_LBRACK] = ACTIONS(312), + [anon_sym_declare] = ACTIONS(314), + [anon_sym_typeset] = ACTIONS(314), + [anon_sym_export] = ACTIONS(314), + [anon_sym_readonly] = ACTIONS(314), + [anon_sym_local] = ACTIONS(314), + [anon_sym_unset] = ACTIONS(316), + [anon_sym_unsetenv] = ACTIONS(316), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -27617,17 +27762,17 @@ 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(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__special_characters] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [anon_sym_DOLLAR] = ACTIONS(322), + [sym_raw_string] = ACTIONS(324), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), + [anon_sym_BQUOTE] = ACTIONS(330), + [anon_sym_LT_LPAREN] = ACTIONS(332), + [anon_sym_GT_LPAREN] = ACTIONS(332), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(332), + [sym_word] = ACTIONS(334), }, [616] = { [sym_for_statement] = STATE(1216), @@ -27655,22 +27800,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(264), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(268), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -27678,223 +27823,223 @@ 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(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__special_characters] = ACTIONS(286), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(300), + [sym_word] = ACTIONS(302), }, [617] = { - [sym_file_descriptor] = ACTIONS(754), - [anon_sym_esac] = ACTIONS(2384), - [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), - [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_file_descriptor] = ACTIONS(770), + [anon_sym_esac] = ACTIONS(2424), + [anon_sym_PIPE] = ACTIONS(2424), + [anon_sym_RPAREN] = ACTIONS(2424), + [anon_sym_SEMI_SEMI] = ACTIONS(2424), + [anon_sym_PIPE_AMP] = ACTIONS(2424), + [anon_sym_AMP_AMP] = ACTIONS(2424), + [anon_sym_PIPE_PIPE] = ACTIONS(2424), + [anon_sym_LT] = ACTIONS(2424), + [anon_sym_GT] = ACTIONS(2424), + [anon_sym_GT_GT] = ACTIONS(2424), + [anon_sym_AMP_GT] = ACTIONS(2424), + [anon_sym_AMP_GT_GT] = ACTIONS(2424), + [anon_sym_LT_AMP] = ACTIONS(2424), + [anon_sym_GT_AMP] = ACTIONS(2424), + [anon_sym_LT_LT] = ACTIONS(2424), + [anon_sym_LT_LT_DASH] = ACTIONS(2424), + [anon_sym_LT_LT_LT] = ACTIONS(2424), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2384), - [anon_sym_LF] = ACTIONS(2384), - [anon_sym_AMP] = ACTIONS(2384), + [anon_sym_SEMI] = ACTIONS(2424), + [anon_sym_LF] = ACTIONS(2424), + [anon_sym_AMP] = ACTIONS(2424), }, [618] = { - [sym_file_descriptor] = ACTIONS(2396), - [anon_sym_esac] = ACTIONS(2398), - [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_file_descriptor] = ACTIONS(2436), + [anon_sym_esac] = ACTIONS(2438), + [anon_sym_PIPE] = ACTIONS(2438), + [anon_sym_RPAREN] = ACTIONS(2438), + [anon_sym_SEMI_SEMI] = ACTIONS(2438), + [anon_sym_PIPE_AMP] = ACTIONS(2438), + [anon_sym_AMP_AMP] = ACTIONS(2438), + [anon_sym_PIPE_PIPE] = ACTIONS(2438), + [anon_sym_LT] = ACTIONS(2438), + [anon_sym_GT] = ACTIONS(2438), + [anon_sym_GT_GT] = ACTIONS(2438), + [anon_sym_AMP_GT] = ACTIONS(2438), + [anon_sym_AMP_GT_GT] = ACTIONS(2438), + [anon_sym_LT_AMP] = ACTIONS(2438), + [anon_sym_GT_AMP] = ACTIONS(2438), + [anon_sym_LT_LT] = ACTIONS(2438), + [anon_sym_LT_LT_DASH] = ACTIONS(2438), + [anon_sym_LT_LT_LT] = ACTIONS(2438), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2398), - [anon_sym_LF] = ACTIONS(2398), - [anon_sym_AMP] = ACTIONS(2398), + [anon_sym_SEMI] = ACTIONS(2438), + [anon_sym_LF] = ACTIONS(2438), + [anon_sym_AMP] = ACTIONS(2438), }, [619] = { [sym_simple_expansion] = STATE(1218), [sym_expansion] = STATE(1218), [aux_sym_heredoc_repeat1] = STATE(1222), - [sym__heredoc_middle] = ACTIONS(2400), - [sym__heredoc_end] = ACTIONS(2402), - [anon_sym_DOLLAR] = ACTIONS(2404), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2406), + [sym__heredoc_middle] = ACTIONS(2440), + [sym__heredoc_end] = ACTIONS(2442), + [anon_sym_DOLLAR] = ACTIONS(2444), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2446), [sym_comment] = ACTIONS(56), }, [620] = { - [sym_file_descriptor] = ACTIONS(2408), - [anon_sym_esac] = ACTIONS(2410), - [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_file_descriptor] = ACTIONS(2448), + [anon_sym_esac] = ACTIONS(2450), + [anon_sym_PIPE] = ACTIONS(2450), + [anon_sym_RPAREN] = ACTIONS(2450), + [anon_sym_SEMI_SEMI] = ACTIONS(2450), + [anon_sym_PIPE_AMP] = ACTIONS(2450), + [anon_sym_AMP_AMP] = ACTIONS(2450), + [anon_sym_PIPE_PIPE] = ACTIONS(2450), + [anon_sym_LT] = ACTIONS(2450), + [anon_sym_GT] = ACTIONS(2450), + [anon_sym_GT_GT] = ACTIONS(2450), + [anon_sym_AMP_GT] = ACTIONS(2450), + [anon_sym_AMP_GT_GT] = ACTIONS(2450), + [anon_sym_LT_AMP] = ACTIONS(2450), + [anon_sym_GT_AMP] = ACTIONS(2450), + [anon_sym_LT_LT] = ACTIONS(2450), + [anon_sym_LT_LT_DASH] = ACTIONS(2450), + [anon_sym_LT_LT_LT] = ACTIONS(2450), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2410), - [anon_sym_LF] = ACTIONS(2410), - [anon_sym_AMP] = ACTIONS(2410), + [anon_sym_SEMI] = ACTIONS(2450), + [anon_sym_LF] = ACTIONS(2450), + [anon_sym_AMP] = ACTIONS(2450), }, [621] = { [aux_sym_concatenation_repeat1] = STATE(1201), - [sym_file_descriptor] = ACTIONS(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_file_descriptor] = ACTIONS(2452), + [sym__concat] = ACTIONS(2410), + [anon_sym_PIPE] = ACTIONS(2454), + [anon_sym_SEMI_SEMI] = ACTIONS(2454), + [anon_sym_PIPE_AMP] = ACTIONS(2454), + [anon_sym_AMP_AMP] = ACTIONS(2454), + [anon_sym_PIPE_PIPE] = ACTIONS(2454), + [anon_sym_LT] = ACTIONS(2454), + [anon_sym_GT] = ACTIONS(2454), + [anon_sym_GT_GT] = ACTIONS(2454), + [anon_sym_AMP_GT] = ACTIONS(2454), + [anon_sym_AMP_GT_GT] = ACTIONS(2454), + [anon_sym_LT_AMP] = ACTIONS(2454), + [anon_sym_GT_AMP] = ACTIONS(2454), + [anon_sym_LT_LT] = ACTIONS(2454), + [anon_sym_LT_LT_DASH] = ACTIONS(2454), + [anon_sym_LT_LT_LT] = ACTIONS(2454), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2414), - [anon_sym_LF] = ACTIONS(2414), - [anon_sym_AMP] = ACTIONS(2414), + [anon_sym_SEMI] = ACTIONS(2454), + [anon_sym_LF] = ACTIONS(2454), + [anon_sym_AMP] = ACTIONS(2454), }, [622] = { [aux_sym_concatenation_repeat1] = STATE(1201), - [sym_file_descriptor] = ACTIONS(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_file_descriptor] = ACTIONS(2456), + [sym__concat] = ACTIONS(2410), + [anon_sym_PIPE] = ACTIONS(2458), + [anon_sym_SEMI_SEMI] = ACTIONS(2458), + [anon_sym_PIPE_AMP] = ACTIONS(2458), + [anon_sym_AMP_AMP] = ACTIONS(2458), + [anon_sym_PIPE_PIPE] = ACTIONS(2458), + [anon_sym_LT] = ACTIONS(2458), + [anon_sym_GT] = ACTIONS(2458), + [anon_sym_GT_GT] = ACTIONS(2458), + [anon_sym_AMP_GT] = ACTIONS(2458), + [anon_sym_AMP_GT_GT] = ACTIONS(2458), + [anon_sym_LT_AMP] = ACTIONS(2458), + [anon_sym_GT_AMP] = ACTIONS(2458), + [anon_sym_LT_LT] = ACTIONS(2458), + [anon_sym_LT_LT_DASH] = ACTIONS(2458), + [anon_sym_LT_LT_LT] = ACTIONS(2458), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_LF] = ACTIONS(2418), - [anon_sym_AMP] = ACTIONS(2418), + [anon_sym_SEMI] = ACTIONS(2458), + [anon_sym_LF] = ACTIONS(2458), + [anon_sym_AMP] = ACTIONS(2458), }, [623] = { - [sym_file_descriptor] = ACTIONS(2416), - [anon_sym_esac] = ACTIONS(2418), - [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_file_descriptor] = ACTIONS(2456), + [anon_sym_esac] = ACTIONS(2458), + [anon_sym_PIPE] = ACTIONS(2458), + [anon_sym_RPAREN] = ACTIONS(2458), + [anon_sym_SEMI_SEMI] = ACTIONS(2458), + [anon_sym_PIPE_AMP] = ACTIONS(2458), + [anon_sym_AMP_AMP] = ACTIONS(2458), + [anon_sym_PIPE_PIPE] = ACTIONS(2458), + [anon_sym_LT] = ACTIONS(2458), + [anon_sym_GT] = ACTIONS(2458), + [anon_sym_GT_GT] = ACTIONS(2458), + [anon_sym_AMP_GT] = ACTIONS(2458), + [anon_sym_AMP_GT_GT] = ACTIONS(2458), + [anon_sym_LT_AMP] = ACTIONS(2458), + [anon_sym_GT_AMP] = ACTIONS(2458), + [anon_sym_LT_LT] = ACTIONS(2458), + [anon_sym_LT_LT_DASH] = ACTIONS(2458), + [anon_sym_LT_LT_LT] = ACTIONS(2458), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_LF] = ACTIONS(2418), - [anon_sym_AMP] = ACTIONS(2418), + [anon_sym_SEMI] = ACTIONS(2458), + [anon_sym_LF] = ACTIONS(2458), + [anon_sym_AMP] = ACTIONS(2458), }, [624] = { [sym_file_redirect] = STATE(207), [sym_heredoc_redirect] = STATE(207), [sym_herestring_redirect] = STATE(207), [aux_sym_while_statement_repeat1] = STATE(624), - [sym_file_descriptor] = ACTIONS(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_file_descriptor] = ACTIONS(2460), + [anon_sym_PIPE] = ACTIONS(2463), + [anon_sym_SEMI_SEMI] = ACTIONS(2463), + [anon_sym_PIPE_AMP] = ACTIONS(2463), + [anon_sym_AMP_AMP] = ACTIONS(2463), + [anon_sym_PIPE_PIPE] = ACTIONS(2463), + [anon_sym_LT] = ACTIONS(2465), + [anon_sym_GT] = ACTIONS(2465), + [anon_sym_GT_GT] = ACTIONS(2465), + [anon_sym_AMP_GT] = ACTIONS(2465), + [anon_sym_AMP_GT_GT] = ACTIONS(2465), + [anon_sym_LT_AMP] = ACTIONS(2465), + [anon_sym_GT_AMP] = ACTIONS(2465), + [anon_sym_LT_LT] = ACTIONS(2468), + [anon_sym_LT_LT_DASH] = ACTIONS(2468), + [anon_sym_LT_LT_LT] = ACTIONS(2471), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2423), - [anon_sym_LF] = ACTIONS(2423), - [anon_sym_AMP] = ACTIONS(2423), + [anon_sym_SEMI] = ACTIONS(2463), + [anon_sym_LF] = ACTIONS(2463), + [anon_sym_AMP] = ACTIONS(2463), }, [625] = { [sym_file_redirect] = STATE(207), [sym_heredoc_redirect] = STATE(207), [sym_herestring_redirect] = STATE(207), [aux_sym_while_statement_repeat1] = STATE(624), - [sym_file_descriptor] = ACTIONS(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_file_descriptor] = ACTIONS(352), + [anon_sym_PIPE] = ACTIONS(2474), + [anon_sym_SEMI_SEMI] = ACTIONS(2474), + [anon_sym_PIPE_AMP] = ACTIONS(2474), + [anon_sym_AMP_AMP] = ACTIONS(2474), + [anon_sym_PIPE_PIPE] = ACTIONS(2474), + [anon_sym_LT] = ACTIONS(358), + [anon_sym_GT] = ACTIONS(358), + [anon_sym_GT_GT] = ACTIONS(358), + [anon_sym_AMP_GT] = ACTIONS(358), + [anon_sym_AMP_GT_GT] = ACTIONS(358), + [anon_sym_LT_AMP] = ACTIONS(358), + [anon_sym_GT_AMP] = ACTIONS(358), + [anon_sym_LT_LT] = ACTIONS(360), + [anon_sym_LT_LT_DASH] = ACTIONS(360), + [anon_sym_LT_LT_LT] = ACTIONS(362), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2434), - [anon_sym_LF] = ACTIONS(2434), - [anon_sym_AMP] = ACTIONS(2434), + [anon_sym_SEMI] = ACTIONS(2474), + [anon_sym_LF] = ACTIONS(2474), + [anon_sym_AMP] = ACTIONS(2474), }, [626] = { [sym_concatenation] = STATE(208), @@ -27905,37 +28050,38 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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_file_descriptor] = ACTIONS(1559), + [anon_sym_PIPE] = ACTIONS(1561), + [anon_sym_SEMI_SEMI] = ACTIONS(1561), + [anon_sym_PIPE_AMP] = ACTIONS(1561), + [anon_sym_AMP_AMP] = ACTIONS(1561), + [anon_sym_PIPE_PIPE] = ACTIONS(1561), + [anon_sym_EQ_TILDE] = ACTIONS(2476), + [anon_sym_EQ_EQ] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(1561), + [anon_sym_GT] = ACTIONS(1561), + [anon_sym_GT_GT] = ACTIONS(1561), + [anon_sym_AMP_GT] = ACTIONS(1561), + [anon_sym_AMP_GT_GT] = ACTIONS(1561), + [anon_sym_LT_AMP] = ACTIONS(1561), + [anon_sym_GT_AMP] = ACTIONS(1561), + [anon_sym_LT_LT] = ACTIONS(1561), + [anon_sym_LT_LT_DASH] = ACTIONS(1561), + [anon_sym_LT_LT_LT] = ACTIONS(1561), + [sym__special_characters] = ACTIONS(2479), + [anon_sym_DQUOTE] = ACTIONS(2482), + [anon_sym_DOLLAR] = ACTIONS(2485), + [sym_raw_string] = ACTIONS(2488), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2491), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2494), + [anon_sym_BQUOTE] = ACTIONS(2497), + [anon_sym_LT_LPAREN] = ACTIONS(2500), + [anon_sym_GT_LPAREN] = ACTIONS(2500), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2448), - [anon_sym_SEMI] = ACTIONS(1533), - [anon_sym_LF] = ACTIONS(1533), - [anon_sym_AMP] = ACTIONS(1533), + [sym_word] = ACTIONS(2488), + [anon_sym_SEMI] = ACTIONS(1561), + [anon_sym_LF] = ACTIONS(1561), + [anon_sym_AMP] = ACTIONS(1561), }, [627] = { [sym_concatenation] = STATE(992), @@ -27946,19 +28092,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__empty_value] = ACTIONS(2036), + [anon_sym_LPAREN] = ACTIONS(2038), + [sym__special_characters] = ACTIONS(2503), [anon_sym_DQUOTE] = ACTIONS(208), [anon_sym_DOLLAR] = ACTIONS(210), - [sym_raw_string] = ACTIONS(2465), + [sym_raw_string] = ACTIONS(2505), [anon_sym_DOLLAR_LBRACE] = ACTIONS(214), [anon_sym_DOLLAR_LPAREN] = ACTIONS(216), [anon_sym_BQUOTE] = ACTIONS(218), [anon_sym_LT_LPAREN] = ACTIONS(220), [anon_sym_GT_LPAREN] = ACTIONS(220), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2467), + [sym_word] = ACTIONS(2507), }, [628] = { [sym_file_redirect] = STATE(207), @@ -27973,37 +28119,38 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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_file_descriptor] = ACTIONS(352), + [anon_sym_PIPE] = ACTIONS(2474), + [anon_sym_SEMI_SEMI] = ACTIONS(2474), + [anon_sym_PIPE_AMP] = ACTIONS(2474), + [anon_sym_AMP_AMP] = ACTIONS(2474), + [anon_sym_PIPE_PIPE] = ACTIONS(2474), + [anon_sym_EQ_TILDE] = ACTIONS(356), + [anon_sym_EQ_EQ] = ACTIONS(356), + [anon_sym_LT] = ACTIONS(358), + [anon_sym_GT] = ACTIONS(358), + [anon_sym_GT_GT] = ACTIONS(358), + [anon_sym_AMP_GT] = ACTIONS(358), + [anon_sym_AMP_GT_GT] = ACTIONS(358), + [anon_sym_LT_AMP] = ACTIONS(358), + [anon_sym_GT_AMP] = ACTIONS(358), + [anon_sym_LT_LT] = ACTIONS(360), + [anon_sym_LT_LT_DASH] = ACTIONS(360), + [anon_sym_LT_LT_LT] = ACTIONS(362), + [sym__special_characters] = ACTIONS(364), + [anon_sym_DQUOTE] = ACTIONS(366), + [anon_sym_DOLLAR] = ACTIONS(368), + [sym_raw_string] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(368), - [anon_sym_SEMI] = ACTIONS(2434), - [anon_sym_LF] = ACTIONS(2434), - [anon_sym_AMP] = ACTIONS(2434), + [sym_word] = ACTIONS(370), + [anon_sym_SEMI] = ACTIONS(2474), + [anon_sym_LF] = ACTIONS(2474), + [anon_sym_AMP] = ACTIONS(2474), }, [629] = { [sym_string] = STATE(1227), @@ -28012,34 +28159,34 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACK] = ACTIONS(2509), + [sym__special_characters] = ACTIONS(2511), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_DOLLAR] = ACTIONS(404), + [sym_raw_string] = ACTIONS(2513), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(408), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(410), + [anon_sym_BQUOTE] = ACTIONS(412), + [anon_sym_LT_LPAREN] = ACTIONS(414), + [anon_sym_GT_LPAREN] = ACTIONS(414), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2475), + [sym_word] = ACTIONS(2515), }, [630] = { - [sym__concat] = ACTIONS(2477), - [anon_sym_EQ] = ACTIONS(2479), - [anon_sym_PLUS_EQ] = ACTIONS(2479), + [sym__concat] = ACTIONS(2517), + [anon_sym_EQ] = ACTIONS(2519), + [anon_sym_PLUS_EQ] = ACTIONS(2519), [sym_comment] = ACTIONS(56), }, [631] = { [aux_sym_concatenation_repeat1] = STATE(1230), - [sym__concat] = ACTIONS(2481), - [anon_sym_RBRACK] = ACTIONS(772), + [sym__concat] = ACTIONS(2521), + [anon_sym_RBRACK] = ACTIONS(788), [sym_comment] = ACTIONS(56), }, [632] = { - [sym__concat] = ACTIONS(776), - [anon_sym_RBRACK] = ACTIONS(776), + [sym__concat] = ACTIONS(792), + [anon_sym_RBRACK] = ACTIONS(792), [sym_comment] = ACTIONS(56), }, [633] = { @@ -28047,7 +28194,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(134), [sym_command_substitution] = STATE(134), [aux_sym_string_repeat1] = STATE(447), - [anon_sym_DQUOTE] = ACTIONS(2483), + [anon_sym_DQUOTE] = ACTIONS(2523), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -28056,18 +28203,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(182), }, [634] = { - [sym__concat] = ACTIONS(808), - [anon_sym_RBRACK] = ACTIONS(808), + [sym__concat] = ACTIONS(824), + [anon_sym_RBRACK] = ACTIONS(824), [sym_comment] = ACTIONS(56), }, [635] = { - [sym__concat] = ACTIONS(812), - [anon_sym_RBRACK] = ACTIONS(812), + [sym__concat] = ACTIONS(828), + [anon_sym_RBRACK] = ACTIONS(828), [sym_comment] = ACTIONS(56), }, [636] = { - [sym__concat] = ACTIONS(816), - [anon_sym_RBRACK] = ACTIONS(816), + [sym__concat] = ACTIONS(832), + [anon_sym_RBRACK] = ACTIONS(832), [sym_comment] = ACTIONS(56), }, [637] = { @@ -28077,28 +28224,28 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACK] = ACTIONS(2525), + [sym__special_characters] = ACTIONS(2511), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_DOLLAR] = ACTIONS(404), + [sym_raw_string] = ACTIONS(2513), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(408), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(410), + [anon_sym_BQUOTE] = ACTIONS(412), + [anon_sym_LT_LPAREN] = ACTIONS(414), + [anon_sym_GT_LPAREN] = ACTIONS(414), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2475), + [sym_word] = ACTIONS(2515), }, [638] = { - [sym__concat] = ACTIONS(2487), - [anon_sym_EQ] = ACTIONS(2489), - [anon_sym_PLUS_EQ] = ACTIONS(2489), + [sym__concat] = ACTIONS(2527), + [anon_sym_EQ] = ACTIONS(2529), + [anon_sym_PLUS_EQ] = ACTIONS(2529), [sym_comment] = ACTIONS(56), }, [639] = { - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(2491), + [anon_sym_LBRACK] = ACTIONS(836), + [anon_sym_EQ] = ACTIONS(2531), [sym_comment] = ACTIONS(56), }, [640] = { @@ -28110,39 +28257,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(2533), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(2535), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [641] = { [sym_subscript] = STATE(1241), - [sym_variable_name] = ACTIONS(2497), - [anon_sym_DOLLAR] = ACTIONS(2499), - [anon_sym_DASH] = ACTIONS(2499), + [sym_variable_name] = ACTIONS(2537), + [anon_sym_DOLLAR] = ACTIONS(2539), + [anon_sym_DASH] = ACTIONS(2539), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2541), + [anon_sym_STAR] = ACTIONS(2539), + [anon_sym_AT] = ACTIONS(2539), + [anon_sym_QMARK] = ACTIONS(2539), + [anon_sym_0] = ACTIONS(2543), + [anon_sym__] = ACTIONS(2543), }, [642] = { [sym_concatenation] = STATE(451), @@ -28153,26 +28300,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(2545), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(2547), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [643] = { [sym_concatenation] = STATE(451), @@ -28183,188 +28330,188 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(2549), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(2551), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [644] = { - [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_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(2553), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), [sym_comment] = ACTIONS(56), }, [645] = { - [sym_file_descriptor] = ACTIONS(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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(2553), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [646] = { - [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), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_PIPE_AMP] = ACTIONS(1072), + [anon_sym_AMP_AMP] = ACTIONS(1074), + [anon_sym_PIPE_PIPE] = ACTIONS(1074), + [anon_sym_BQUOTE] = ACTIONS(2553), [sym_comment] = ACTIONS(56), }, [647] = { - [sym_file_descriptor] = ACTIONS(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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_PIPE_AMP] = ACTIONS(1072), + [anon_sym_AMP_AMP] = ACTIONS(1074), + [anon_sym_PIPE_PIPE] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(2553), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [648] = { - [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_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(2555), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), [sym_comment] = ACTIONS(56), }, [649] = { - [sym_file_descriptor] = ACTIONS(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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(2555), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [650] = { - [anon_sym_RBRACK] = ACTIONS(2485), + [anon_sym_RBRACK] = ACTIONS(2525), [sym_comment] = ACTIONS(56), }, [651] = { - [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_file_descriptor] = ACTIONS(2557), + [sym_variable_name] = ACTIONS(2557), + [anon_sym_PIPE] = ACTIONS(2559), + [anon_sym_RPAREN] = ACTIONS(2559), + [anon_sym_SEMI_SEMI] = ACTIONS(2559), + [anon_sym_PIPE_AMP] = ACTIONS(2559), + [anon_sym_AMP_AMP] = ACTIONS(2559), + [anon_sym_PIPE_PIPE] = ACTIONS(2559), + [anon_sym_LT] = ACTIONS(2559), + [anon_sym_GT] = ACTIONS(2559), + [anon_sym_GT_GT] = ACTIONS(2559), + [anon_sym_AMP_GT] = ACTIONS(2559), + [anon_sym_AMP_GT_GT] = ACTIONS(2559), + [anon_sym_LT_AMP] = ACTIONS(2559), + [anon_sym_GT_AMP] = ACTIONS(2559), + [sym__special_characters] = ACTIONS(2559), + [anon_sym_DQUOTE] = ACTIONS(2559), + [anon_sym_DOLLAR] = ACTIONS(2559), + [sym_raw_string] = ACTIONS(2559), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2559), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2559), + [anon_sym_BQUOTE] = ACTIONS(2559), + [anon_sym_LT_LPAREN] = ACTIONS(2559), + [anon_sym_GT_LPAREN] = ACTIONS(2559), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2519), - [anon_sym_SEMI] = ACTIONS(2519), - [anon_sym_LF] = ACTIONS(2519), - [anon_sym_AMP] = ACTIONS(2519), + [sym_word] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2559), + [anon_sym_LF] = ACTIONS(2559), + [anon_sym_AMP] = ACTIONS(2559), }, [652] = { [aux_sym_concatenation_repeat1] = STATE(1251), - [sym__concat] = ACTIONS(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__concat] = ACTIONS(2561), + [anon_sym_RPAREN] = ACTIONS(2563), + [sym__special_characters] = ACTIONS(2565), + [anon_sym_DQUOTE] = ACTIONS(2563), + [anon_sym_DOLLAR] = ACTIONS(2565), + [sym_raw_string] = ACTIONS(2563), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2563), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2563), + [anon_sym_BQUOTE] = ACTIONS(2563), + [anon_sym_LT_LPAREN] = ACTIONS(2563), + [anon_sym_GT_LPAREN] = ACTIONS(2563), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2525), + [sym_word] = ACTIONS(2565), }, [653] = { [sym_simple_expansion] = STATE(134), [sym_expansion] = STATE(134), [sym_command_substitution] = STATE(134), [aux_sym_string_repeat1] = STATE(1253), - [anon_sym_DQUOTE] = ACTIONS(2527), + [anon_sym_DQUOTE] = ACTIONS(2567), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -28373,48 +28520,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(182), }, [654] = { - [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_string] = STATE(1255), + [anon_sym_DQUOTE] = ACTIONS(1285), + [anon_sym_DOLLAR] = ACTIONS(2569), + [sym_raw_string] = ACTIONS(2571), + [anon_sym_POUND] = ACTIONS(2569), + [anon_sym_DASH] = ACTIONS(2569), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2573), + [anon_sym_STAR] = ACTIONS(2569), + [anon_sym_AT] = ACTIONS(2569), + [anon_sym_QMARK] = ACTIONS(2569), + [anon_sym_0] = ACTIONS(2575), + [anon_sym__] = ACTIONS(2575), }, [655] = { [aux_sym_concatenation_repeat1] = STATE(1251), - [sym__concat] = ACTIONS(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__concat] = ACTIONS(2561), + [anon_sym_RPAREN] = ACTIONS(2577), + [sym__special_characters] = ACTIONS(2579), + [anon_sym_DQUOTE] = ACTIONS(2577), + [anon_sym_DOLLAR] = ACTIONS(2579), + [sym_raw_string] = ACTIONS(2577), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2577), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2577), + [anon_sym_BQUOTE] = ACTIONS(2577), + [anon_sym_LT_LPAREN] = ACTIONS(2577), + [anon_sym_GT_LPAREN] = ACTIONS(2577), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2537), + [sym_word] = ACTIONS(2579), }, [656] = { [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_variable_name] = ACTIONS(2581), + [anon_sym_DOLLAR] = ACTIONS(2583), + [anon_sym_POUND] = ACTIONS(2585), + [anon_sym_DASH] = ACTIONS(2583), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2587), + [anon_sym_STAR] = ACTIONS(2583), + [anon_sym_AT] = ACTIONS(2583), + [anon_sym_QMARK] = ACTIONS(2583), + [anon_sym_0] = ACTIONS(2589), + [anon_sym__] = ACTIONS(2589), }, [657] = { [sym_for_statement] = STATE(1262), @@ -28442,22 +28590,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(264), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(268), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -28465,17 +28613,17 @@ 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(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__special_characters] = ACTIONS(286), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(300), + [sym_word] = ACTIONS(302), }, [658] = { [sym_for_statement] = STATE(1264), @@ -28503,22 +28651,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(304), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(306), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(308), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_LBRACK_LBRACK] = ACTIONS(312), + [anon_sym_declare] = ACTIONS(314), + [anon_sym_typeset] = ACTIONS(314), + [anon_sym_export] = ACTIONS(314), + [anon_sym_readonly] = ACTIONS(314), + [anon_sym_local] = ACTIONS(314), + [anon_sym_unset] = ACTIONS(316), + [anon_sym_unsetenv] = ACTIONS(316), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -28526,17 +28674,17 @@ 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(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__special_characters] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [anon_sym_DOLLAR] = ACTIONS(322), + [sym_raw_string] = ACTIONS(324), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), + [anon_sym_BQUOTE] = ACTIONS(330), + [anon_sym_LT_LPAREN] = ACTIONS(332), + [anon_sym_GT_LPAREN] = ACTIONS(332), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(332), + [sym_word] = ACTIONS(334), }, [659] = { [sym_for_statement] = STATE(1266), @@ -28564,22 +28712,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(264), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(268), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -28587,31 +28735,31 @@ 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(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__special_characters] = ACTIONS(286), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(300), + [sym_word] = ACTIONS(302), }, [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), + [anon_sym_RPAREN] = ACTIONS(2577), + [sym__special_characters] = ACTIONS(2579), + [anon_sym_DQUOTE] = ACTIONS(2577), + [anon_sym_DOLLAR] = ACTIONS(2579), + [sym_raw_string] = ACTIONS(2577), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2577), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2577), + [anon_sym_BQUOTE] = ACTIONS(2577), + [anon_sym_LT_LPAREN] = ACTIONS(2577), + [anon_sym_GT_LPAREN] = ACTIONS(2577), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2537), + [sym_word] = ACTIONS(2579), }, [661] = { [sym_concatenation] = STATE(660), @@ -28622,18 +28770,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RPAREN] = ACTIONS(2591), + [sym__special_characters] = ACTIONS(1283), + [anon_sym_DQUOTE] = ACTIONS(1285), + [anon_sym_DOLLAR] = ACTIONS(1287), + [sym_raw_string] = ACTIONS(1289), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1291), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1293), + [anon_sym_BQUOTE] = ACTIONS(1295), + [anon_sym_LT_LPAREN] = ACTIONS(1297), + [anon_sym_GT_LPAREN] = ACTIONS(1297), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1277), + [sym_word] = ACTIONS(1299), }, [662] = { [sym_string] = STATE(1270), @@ -28642,87 +28790,87 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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__special_characters] = ACTIONS(2593), + [anon_sym_DQUOTE] = ACTIONS(424), + [anon_sym_DOLLAR] = ACTIONS(426), + [sym_raw_string] = ACTIONS(2595), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(430), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(432), + [anon_sym_BQUOTE] = ACTIONS(434), + [anon_sym_LT_LPAREN] = ACTIONS(436), + [anon_sym_GT_LPAREN] = ACTIONS(436), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2551), + [sym_word] = ACTIONS(2593), }, [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_file_descriptor] = ACTIONS(788), + [sym__concat] = ACTIONS(1303), + [sym_variable_name] = ACTIONS(788), + [anon_sym_PIPE] = ACTIONS(790), + [anon_sym_SEMI_SEMI] = ACTIONS(790), + [anon_sym_PIPE_AMP] = ACTIONS(790), + [anon_sym_AMP_AMP] = ACTIONS(790), + [anon_sym_PIPE_PIPE] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(790), + [anon_sym_GT] = ACTIONS(790), + [anon_sym_GT_GT] = ACTIONS(790), + [anon_sym_AMP_GT] = ACTIONS(790), + [anon_sym_AMP_GT_GT] = ACTIONS(790), + [anon_sym_LT_AMP] = ACTIONS(790), + [anon_sym_GT_AMP] = ACTIONS(790), + [sym__special_characters] = ACTIONS(790), + [anon_sym_DQUOTE] = ACTIONS(790), + [anon_sym_DOLLAR] = ACTIONS(790), + [sym_raw_string] = ACTIONS(790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(790), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(790), + [anon_sym_BQUOTE] = ACTIONS(790), + [anon_sym_LT_LPAREN] = ACTIONS(790), + [anon_sym_GT_LPAREN] = ACTIONS(790), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(774), - [anon_sym_SEMI] = ACTIONS(774), - [anon_sym_LF] = ACTIONS(774), - [anon_sym_AMP] = ACTIONS(774), + [sym_word] = ACTIONS(790), + [anon_sym_SEMI] = ACTIONS(790), + [anon_sym_LF] = ACTIONS(790), + [anon_sym_AMP] = ACTIONS(790), }, [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_file_descriptor] = ACTIONS(792), + [sym__concat] = ACTIONS(792), + [sym_variable_name] = ACTIONS(792), + [anon_sym_PIPE] = ACTIONS(794), + [anon_sym_SEMI_SEMI] = ACTIONS(794), + [anon_sym_PIPE_AMP] = ACTIONS(794), + [anon_sym_AMP_AMP] = ACTIONS(794), + [anon_sym_PIPE_PIPE] = ACTIONS(794), + [anon_sym_LT] = ACTIONS(794), + [anon_sym_GT] = ACTIONS(794), + [anon_sym_GT_GT] = ACTIONS(794), + [anon_sym_AMP_GT] = ACTIONS(794), + [anon_sym_AMP_GT_GT] = ACTIONS(794), + [anon_sym_LT_AMP] = ACTIONS(794), + [anon_sym_GT_AMP] = ACTIONS(794), + [sym__special_characters] = ACTIONS(794), + [anon_sym_DQUOTE] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(794), + [sym_raw_string] = ACTIONS(794), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(794), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(794), + [anon_sym_BQUOTE] = ACTIONS(794), + [anon_sym_LT_LPAREN] = ACTIONS(794), + [anon_sym_GT_LPAREN] = ACTIONS(794), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(778), - [anon_sym_SEMI] = ACTIONS(778), - [anon_sym_LF] = ACTIONS(778), - [anon_sym_AMP] = ACTIONS(778), + [sym_word] = ACTIONS(794), + [anon_sym_SEMI] = ACTIONS(794), + [anon_sym_LF] = ACTIONS(794), + [anon_sym_AMP] = ACTIONS(794), }, [665] = { [sym_simple_expansion] = STATE(134), [sym_expansion] = STATE(134), [sym_command_substitution] = STATE(134), [aux_sym_string_repeat1] = STATE(447), - [anon_sym_DQUOTE] = ACTIONS(2555), + [anon_sym_DQUOTE] = ACTIONS(2597), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -28731,101 +28879,101 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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_file_descriptor] = ACTIONS(824), + [sym__concat] = ACTIONS(824), + [sym_variable_name] = ACTIONS(824), + [anon_sym_PIPE] = ACTIONS(826), + [anon_sym_SEMI_SEMI] = ACTIONS(826), + [anon_sym_PIPE_AMP] = ACTIONS(826), + [anon_sym_AMP_AMP] = ACTIONS(826), + [anon_sym_PIPE_PIPE] = ACTIONS(826), + [anon_sym_LT] = ACTIONS(826), + [anon_sym_GT] = ACTIONS(826), + [anon_sym_GT_GT] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(826), + [anon_sym_AMP_GT_GT] = ACTIONS(826), + [anon_sym_LT_AMP] = ACTIONS(826), + [anon_sym_GT_AMP] = ACTIONS(826), + [sym__special_characters] = ACTIONS(826), + [anon_sym_DQUOTE] = ACTIONS(826), + [anon_sym_DOLLAR] = ACTIONS(826), + [sym_raw_string] = ACTIONS(826), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(826), + [anon_sym_BQUOTE] = ACTIONS(826), + [anon_sym_LT_LPAREN] = ACTIONS(826), + [anon_sym_GT_LPAREN] = ACTIONS(826), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(810), - [anon_sym_SEMI] = ACTIONS(810), - [anon_sym_LF] = ACTIONS(810), - [anon_sym_AMP] = ACTIONS(810), + [sym_word] = ACTIONS(826), + [anon_sym_SEMI] = ACTIONS(826), + [anon_sym_LF] = ACTIONS(826), + [anon_sym_AMP] = ACTIONS(826), }, [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_file_descriptor] = ACTIONS(828), + [sym__concat] = ACTIONS(828), + [sym_variable_name] = ACTIONS(828), + [anon_sym_PIPE] = ACTIONS(830), + [anon_sym_SEMI_SEMI] = ACTIONS(830), + [anon_sym_PIPE_AMP] = ACTIONS(830), + [anon_sym_AMP_AMP] = ACTIONS(830), + [anon_sym_PIPE_PIPE] = ACTIONS(830), + [anon_sym_LT] = ACTIONS(830), + [anon_sym_GT] = ACTIONS(830), + [anon_sym_GT_GT] = ACTIONS(830), + [anon_sym_AMP_GT] = ACTIONS(830), + [anon_sym_AMP_GT_GT] = ACTIONS(830), + [anon_sym_LT_AMP] = ACTIONS(830), + [anon_sym_GT_AMP] = ACTIONS(830), + [sym__special_characters] = ACTIONS(830), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(830), + [sym_raw_string] = ACTIONS(830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(830), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_LT_LPAREN] = ACTIONS(830), + [anon_sym_GT_LPAREN] = ACTIONS(830), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(814), - [anon_sym_SEMI] = ACTIONS(814), - [anon_sym_LF] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(814), + [sym_word] = ACTIONS(830), + [anon_sym_SEMI] = ACTIONS(830), + [anon_sym_LF] = ACTIONS(830), + [anon_sym_AMP] = ACTIONS(830), }, [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_file_descriptor] = ACTIONS(832), + [sym__concat] = ACTIONS(832), + [sym_variable_name] = ACTIONS(832), + [anon_sym_PIPE] = ACTIONS(834), + [anon_sym_SEMI_SEMI] = ACTIONS(834), + [anon_sym_PIPE_AMP] = ACTIONS(834), + [anon_sym_AMP_AMP] = ACTIONS(834), + [anon_sym_PIPE_PIPE] = ACTIONS(834), + [anon_sym_LT] = ACTIONS(834), + [anon_sym_GT] = ACTIONS(834), + [anon_sym_GT_GT] = ACTIONS(834), + [anon_sym_AMP_GT] = ACTIONS(834), + [anon_sym_AMP_GT_GT] = ACTIONS(834), + [anon_sym_LT_AMP] = ACTIONS(834), + [anon_sym_GT_AMP] = ACTIONS(834), + [sym__special_characters] = ACTIONS(834), + [anon_sym_DQUOTE] = ACTIONS(834), + [anon_sym_DOLLAR] = ACTIONS(834), + [sym_raw_string] = ACTIONS(834), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(834), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(834), + [anon_sym_BQUOTE] = ACTIONS(834), + [anon_sym_LT_LPAREN] = ACTIONS(834), + [anon_sym_GT_LPAREN] = ACTIONS(834), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(818), - [anon_sym_SEMI] = ACTIONS(818), - [anon_sym_LF] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(818), + [sym_word] = ACTIONS(834), + [anon_sym_SEMI] = ACTIONS(834), + [anon_sym_LF] = ACTIONS(834), + [anon_sym_AMP] = ACTIONS(834), }, [669] = { - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(2557), + [anon_sym_LBRACK] = ACTIONS(836), + [anon_sym_EQ] = ACTIONS(2599), [sym_comment] = ACTIONS(56), }, [670] = { @@ -28837,39 +28985,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(2601), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(2603), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [671] = { [sym_subscript] = STATE(1280), - [sym_variable_name] = ACTIONS(2563), - [anon_sym_DOLLAR] = ACTIONS(2565), - [anon_sym_DASH] = ACTIONS(2565), + [sym_variable_name] = ACTIONS(2605), + [anon_sym_DOLLAR] = ACTIONS(2607), + [anon_sym_DASH] = ACTIONS(2607), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2609), + [anon_sym_STAR] = ACTIONS(2607), + [anon_sym_AT] = ACTIONS(2607), + [anon_sym_QMARK] = ACTIONS(2607), + [anon_sym_0] = ACTIONS(2611), + [anon_sym__] = ACTIONS(2611), }, [672] = { [sym_concatenation] = STATE(451), @@ -28880,26 +29028,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(2613), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(2615), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [673] = { [sym_concatenation] = STATE(451), @@ -28910,156 +29058,156 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(2617), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(2619), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [674] = { - [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_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(2621), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), [sym_comment] = ACTIONS(56), }, [675] = { - [sym_file_descriptor] = ACTIONS(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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(2621), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [676] = { - [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), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_PIPE_AMP] = ACTIONS(1072), + [anon_sym_AMP_AMP] = ACTIONS(1074), + [anon_sym_PIPE_PIPE] = ACTIONS(1074), + [anon_sym_BQUOTE] = ACTIONS(2621), [sym_comment] = ACTIONS(56), }, [677] = { - [sym_file_descriptor] = ACTIONS(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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_PIPE_AMP] = ACTIONS(1072), + [anon_sym_AMP_AMP] = ACTIONS(1074), + [anon_sym_PIPE_PIPE] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(2621), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [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), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(2623), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), [sym_comment] = ACTIONS(56), }, [679] = { - [sym_file_descriptor] = ACTIONS(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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(2623), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [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__concat] = ACTIONS(2625), + [anon_sym_SEMI_SEMI] = ACTIONS(2627), + [sym__special_characters] = ACTIONS(2627), + [anon_sym_DQUOTE] = ACTIONS(2627), + [anon_sym_DOLLAR] = ACTIONS(2627), + [sym_raw_string] = ACTIONS(2627), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2627), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2627), + [anon_sym_BQUOTE] = ACTIONS(2627), + [anon_sym_LT_LPAREN] = ACTIONS(2627), + [anon_sym_GT_LPAREN] = ACTIONS(2627), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2585), - [anon_sym_SEMI] = ACTIONS(2585), - [anon_sym_LF] = ACTIONS(2585), - [anon_sym_AMP] = ACTIONS(2585), + [sym_word] = ACTIONS(2627), + [anon_sym_SEMI] = ACTIONS(2627), + [anon_sym_LF] = ACTIONS(2627), + [anon_sym_AMP] = ACTIONS(2627), }, [681] = { [sym_simple_expansion] = STATE(134), [sym_expansion] = STATE(134), [sym_command_substitution] = STATE(134), [aux_sym_string_repeat1] = STATE(1292), - [anon_sym_DQUOTE] = ACTIONS(2587), + [anon_sym_DQUOTE] = ACTIONS(2629), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -29068,51 +29216,52 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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_string] = STATE(1294), + [anon_sym_DQUOTE] = ACTIONS(1329), + [anon_sym_DOLLAR] = ACTIONS(2631), + [sym_raw_string] = ACTIONS(2633), + [anon_sym_POUND] = ACTIONS(2631), + [anon_sym_DASH] = ACTIONS(2631), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2635), + [anon_sym_STAR] = ACTIONS(2631), + [anon_sym_AT] = ACTIONS(2631), + [anon_sym_QMARK] = ACTIONS(2631), + [anon_sym_0] = ACTIONS(2637), + [anon_sym__] = ACTIONS(2637), }, [683] = { [aux_sym_concatenation_repeat1] = STATE(1290), - [sym__concat] = ACTIONS(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__concat] = ACTIONS(2625), + [anon_sym_SEMI_SEMI] = ACTIONS(2639), + [sym__special_characters] = ACTIONS(2639), + [anon_sym_DQUOTE] = ACTIONS(2639), + [anon_sym_DOLLAR] = ACTIONS(2639), + [sym_raw_string] = ACTIONS(2639), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2639), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2639), + [anon_sym_BQUOTE] = ACTIONS(2639), + [anon_sym_LT_LPAREN] = ACTIONS(2639), + [anon_sym_GT_LPAREN] = ACTIONS(2639), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2595), - [anon_sym_SEMI] = ACTIONS(2595), - [anon_sym_LF] = ACTIONS(2595), - [anon_sym_AMP] = ACTIONS(2595), + [sym_word] = ACTIONS(2639), + [anon_sym_SEMI] = ACTIONS(2639), + [anon_sym_LF] = ACTIONS(2639), + [anon_sym_AMP] = ACTIONS(2639), }, [684] = { [sym_subscript] = STATE(1300), - [sym_variable_name] = ACTIONS(2597), - [anon_sym_DOLLAR] = ACTIONS(2599), - [anon_sym_POUND] = ACTIONS(2601), - [anon_sym_DASH] = ACTIONS(2599), + [sym_variable_name] = ACTIONS(2641), + [anon_sym_DOLLAR] = ACTIONS(2643), + [anon_sym_POUND] = ACTIONS(2645), + [anon_sym_DASH] = ACTIONS(2643), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2647), + [anon_sym_STAR] = ACTIONS(2643), + [anon_sym_AT] = ACTIONS(2643), + [anon_sym_QMARK] = ACTIONS(2643), + [anon_sym_0] = ACTIONS(2649), + [anon_sym__] = ACTIONS(2649), }, [685] = { [sym_for_statement] = STATE(1301), @@ -29140,22 +29289,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(264), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(268), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -29163,17 +29312,17 @@ 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(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__special_characters] = ACTIONS(286), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(300), + [sym_word] = ACTIONS(302), }, [686] = { [sym_for_statement] = STATE(1303), @@ -29201,22 +29350,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(304), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(306), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(308), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_LBRACK_LBRACK] = ACTIONS(312), + [anon_sym_declare] = ACTIONS(314), + [anon_sym_typeset] = ACTIONS(314), + [anon_sym_export] = ACTIONS(314), + [anon_sym_readonly] = ACTIONS(314), + [anon_sym_local] = ACTIONS(314), + [anon_sym_unset] = ACTIONS(316), + [anon_sym_unsetenv] = ACTIONS(316), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -29224,17 +29373,17 @@ 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(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__special_characters] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [anon_sym_DOLLAR] = ACTIONS(322), + [sym_raw_string] = ACTIONS(324), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), + [anon_sym_BQUOTE] = ACTIONS(330), + [anon_sym_LT_LPAREN] = ACTIONS(332), + [anon_sym_GT_LPAREN] = ACTIONS(332), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(332), + [sym_word] = ACTIONS(334), }, [687] = { [sym_for_statement] = STATE(1305), @@ -29262,22 +29411,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(264), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(268), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -29285,34 +29434,34 @@ 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(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__special_characters] = ACTIONS(286), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(300), + [sym_word] = ACTIONS(302), }, [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), + [anon_sym_SEMI_SEMI] = ACTIONS(2639), + [sym__special_characters] = ACTIONS(2639), + [anon_sym_DQUOTE] = ACTIONS(2639), + [anon_sym_DOLLAR] = ACTIONS(2639), + [sym_raw_string] = ACTIONS(2639), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2639), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2639), + [anon_sym_BQUOTE] = ACTIONS(2639), + [anon_sym_LT_LPAREN] = ACTIONS(2639), + [anon_sym_GT_LPAREN] = ACTIONS(2639), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2595), - [anon_sym_SEMI] = ACTIONS(2595), - [anon_sym_LF] = ACTIONS(2595), - [anon_sym_AMP] = ACTIONS(2595), + [sym_word] = ACTIONS(2639), + [anon_sym_SEMI] = ACTIONS(2639), + [anon_sym_LF] = ACTIONS(2639), + [anon_sym_AMP] = ACTIONS(2639), }, [689] = { [sym_concatenation] = STATE(688), @@ -29323,124 +29472,124 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_SEMI_SEMI] = ACTIONS(2651), + [sym__special_characters] = ACTIONS(2653), + [anon_sym_DQUOTE] = ACTIONS(2655), + [anon_sym_DOLLAR] = ACTIONS(2657), + [sym_raw_string] = ACTIONS(2659), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2661), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2663), + [anon_sym_BQUOTE] = ACTIONS(2665), + [anon_sym_LT_LPAREN] = ACTIONS(2667), + [anon_sym_GT_LPAREN] = ACTIONS(2667), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2615), - [anon_sym_SEMI] = ACTIONS(2607), - [anon_sym_LF] = ACTIONS(2607), - [anon_sym_AMP] = ACTIONS(2607), + [sym_word] = ACTIONS(2659), + [anon_sym_SEMI] = ACTIONS(2651), + [anon_sym_LF] = ACTIONS(2651), + [anon_sym_AMP] = ACTIONS(2651), }, [690] = { - [sym_file_descriptor] = ACTIONS(2625), - [anon_sym_esac] = ACTIONS(2627), - [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_file_descriptor] = ACTIONS(2669), + [anon_sym_esac] = ACTIONS(2671), + [anon_sym_PIPE] = ACTIONS(2671), + [anon_sym_RPAREN] = ACTIONS(2671), + [anon_sym_SEMI_SEMI] = ACTIONS(2671), + [anon_sym_PIPE_AMP] = ACTIONS(2671), + [anon_sym_AMP_AMP] = ACTIONS(2671), + [anon_sym_PIPE_PIPE] = ACTIONS(2671), + [anon_sym_LT] = ACTIONS(2671), + [anon_sym_GT] = ACTIONS(2671), + [anon_sym_GT_GT] = ACTIONS(2671), + [anon_sym_AMP_GT] = ACTIONS(2671), + [anon_sym_AMP_GT_GT] = ACTIONS(2671), + [anon_sym_LT_AMP] = ACTIONS(2671), + [anon_sym_GT_AMP] = ACTIONS(2671), + [anon_sym_LT_LT] = ACTIONS(2671), + [anon_sym_LT_LT_DASH] = ACTIONS(2671), + [anon_sym_LT_LT_LT] = ACTIONS(2671), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2627), - [anon_sym_LF] = ACTIONS(2627), - [anon_sym_AMP] = ACTIONS(2627), + [anon_sym_SEMI] = ACTIONS(2671), + [anon_sym_LF] = ACTIONS(2671), + [anon_sym_AMP] = ACTIONS(2671), }, [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_file_descriptor] = ACTIONS(340), + [sym_variable_name] = ACTIONS(340), + [anon_sym_for] = ACTIONS(342), + [anon_sym_while] = ACTIONS(342), + [anon_sym_done] = ACTIONS(342), + [anon_sym_if] = ACTIONS(342), + [anon_sym_case] = ACTIONS(342), + [anon_sym_function] = ACTIONS(342), + [anon_sym_LPAREN] = ACTIONS(340), + [anon_sym_LBRACK] = ACTIONS(342), + [anon_sym_LBRACK_LBRACK] = ACTIONS(340), + [anon_sym_declare] = ACTIONS(342), + [anon_sym_typeset] = ACTIONS(342), + [anon_sym_export] = ACTIONS(342), + [anon_sym_readonly] = ACTIONS(342), + [anon_sym_local] = ACTIONS(342), + [anon_sym_unset] = ACTIONS(342), + [anon_sym_unsetenv] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(342), + [anon_sym_GT] = ACTIONS(342), + [anon_sym_GT_GT] = ACTIONS(340), + [anon_sym_AMP_GT] = ACTIONS(342), + [anon_sym_AMP_GT_GT] = ACTIONS(340), + [anon_sym_LT_AMP] = ACTIONS(340), + [anon_sym_GT_AMP] = ACTIONS(340), + [sym__special_characters] = ACTIONS(344), + [anon_sym_DQUOTE] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(342), + [sym_raw_string] = ACTIONS(340), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(340), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(340), + [anon_sym_BQUOTE] = ACTIONS(340), + [anon_sym_LT_LPAREN] = ACTIONS(340), + [anon_sym_GT_LPAREN] = ACTIONS(340), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(342), + [sym_word] = ACTIONS(344), }, [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), + [anon_sym_PIPE] = ACTIONS(346), + [anon_sym_SEMI_SEMI] = ACTIONS(2673), + [anon_sym_PIPE_AMP] = ACTIONS(346), + [anon_sym_AMP_AMP] = ACTIONS(350), + [anon_sym_PIPE_PIPE] = ACTIONS(350), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2629), - [anon_sym_LF] = ACTIONS(2629), - [anon_sym_AMP] = ACTIONS(2629), + [anon_sym_SEMI] = ACTIONS(2673), + [anon_sym_LF] = ACTIONS(2673), + [anon_sym_AMP] = ACTIONS(2673), }, [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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(346), + [anon_sym_SEMI_SEMI] = ACTIONS(2673), + [anon_sym_PIPE_AMP] = ACTIONS(346), + [anon_sym_AMP_AMP] = ACTIONS(350), + [anon_sym_PIPE_PIPE] = ACTIONS(350), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(382), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(382), + [anon_sym_LT_AMP] = ACTIONS(382), + [anon_sym_GT_AMP] = ACTIONS(382), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(382), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(382), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(382), + [anon_sym_BQUOTE] = ACTIONS(382), + [anon_sym_LT_LPAREN] = ACTIONS(382), + [anon_sym_GT_LPAREN] = ACTIONS(382), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(380), - [anon_sym_SEMI] = ACTIONS(2629), - [anon_sym_LF] = ACTIONS(2629), - [anon_sym_AMP] = ACTIONS(2629), + [sym_word] = ACTIONS(382), + [anon_sym_SEMI] = ACTIONS(2673), + [anon_sym_LF] = ACTIONS(2673), + [anon_sym_AMP] = ACTIONS(2673), }, [694] = { [sym__terminated_statement] = STATE(691), @@ -29473,7 +29622,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(12), [anon_sym_for] = ACTIONS(16), [anon_sym_while] = ACTIONS(18), - [anon_sym_done] = ACTIONS(2631), + [anon_sym_done] = ACTIONS(2675), [anon_sym_if] = ACTIONS(20), [anon_sym_case] = ACTIONS(22), [anon_sym_function] = ACTIONS(24), @@ -29511,39 +29660,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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_file_descriptor] = ACTIONS(352), + [anon_sym_PIPE] = ACTIONS(2677), + [anon_sym_SEMI_SEMI] = ACTIONS(2677), + [anon_sym_PIPE_AMP] = ACTIONS(2677), + [anon_sym_AMP_AMP] = ACTIONS(2677), + [anon_sym_PIPE_PIPE] = ACTIONS(2677), + [anon_sym_LT] = ACTIONS(358), + [anon_sym_GT] = ACTIONS(358), + [anon_sym_GT_GT] = ACTIONS(358), + [anon_sym_AMP_GT] = ACTIONS(358), + [anon_sym_AMP_GT_GT] = ACTIONS(358), + [anon_sym_LT_AMP] = ACTIONS(358), + [anon_sym_GT_AMP] = ACTIONS(358), + [anon_sym_LT_LT] = ACTIONS(360), + [anon_sym_LT_LT_DASH] = ACTIONS(360), + [anon_sym_LT_LT_LT] = ACTIONS(362), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2633), - [anon_sym_LF] = ACTIONS(2633), - [anon_sym_AMP] = ACTIONS(2633), + [anon_sym_SEMI] = ACTIONS(2677), + [anon_sym_LF] = ACTIONS(2677), + [anon_sym_AMP] = ACTIONS(2677), }, [696] = { - [anon_sym_esac] = ACTIONS(2635), - [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), + [anon_sym_esac] = ACTIONS(2679), + [anon_sym_PIPE] = ACTIONS(2679), + [anon_sym_RPAREN] = ACTIONS(2679), + [anon_sym_SEMI_SEMI] = ACTIONS(2679), + [anon_sym_PIPE_AMP] = ACTIONS(2679), + [anon_sym_AMP_AMP] = ACTIONS(2679), + [anon_sym_PIPE_PIPE] = ACTIONS(2679), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2635), - [anon_sym_LF] = ACTIONS(2635), - [anon_sym_AMP] = ACTIONS(2635), + [anon_sym_SEMI] = ACTIONS(2679), + [anon_sym_LF] = ACTIONS(2679), + [anon_sym_AMP] = ACTIONS(2679), }, [697] = { [sym__terminated_statement] = STATE(1312), @@ -29639,7 +29788,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(16), [anon_sym_while] = ACTIONS(18), [anon_sym_if] = ACTIONS(20), - [anon_sym_fi] = ACTIONS(2637), + [anon_sym_fi] = ACTIONS(2681), [anon_sym_case] = ACTIONS(22), [anon_sym_function] = ACTIONS(24), [anon_sym_LPAREN] = ACTIONS(26), @@ -29672,95 +29821,95 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(58), }, [699] = { - [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_file_descriptor] = ACTIONS(340), + [sym_variable_name] = ACTIONS(340), + [anon_sym_for] = ACTIONS(342), + [anon_sym_while] = ACTIONS(342), + [anon_sym_if] = ACTIONS(342), + [anon_sym_fi] = ACTIONS(342), + [anon_sym_elif] = ACTIONS(342), + [anon_sym_else] = ACTIONS(342), + [anon_sym_case] = ACTIONS(342), + [anon_sym_function] = ACTIONS(342), + [anon_sym_LPAREN] = ACTIONS(340), + [anon_sym_LBRACK] = ACTIONS(342), + [anon_sym_LBRACK_LBRACK] = ACTIONS(340), + [anon_sym_declare] = ACTIONS(342), + [anon_sym_typeset] = ACTIONS(342), + [anon_sym_export] = ACTIONS(342), + [anon_sym_readonly] = ACTIONS(342), + [anon_sym_local] = ACTIONS(342), + [anon_sym_unset] = ACTIONS(342), + [anon_sym_unsetenv] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(342), + [anon_sym_GT] = ACTIONS(342), + [anon_sym_GT_GT] = ACTIONS(340), + [anon_sym_AMP_GT] = ACTIONS(342), + [anon_sym_AMP_GT_GT] = ACTIONS(340), + [anon_sym_LT_AMP] = ACTIONS(340), + [anon_sym_GT_AMP] = ACTIONS(340), + [sym__special_characters] = ACTIONS(344), + [anon_sym_DQUOTE] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(342), + [sym_raw_string] = ACTIONS(340), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(340), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(340), + [anon_sym_BQUOTE] = ACTIONS(340), + [anon_sym_LT_LPAREN] = ACTIONS(340), + [anon_sym_GT_LPAREN] = ACTIONS(340), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(342), + [sym_word] = ACTIONS(344), }, [700] = { - [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_PIPE] = ACTIONS(346), + [anon_sym_SEMI_SEMI] = ACTIONS(2683), + [anon_sym_PIPE_AMP] = ACTIONS(346), + [anon_sym_AMP_AMP] = ACTIONS(350), + [anon_sym_PIPE_PIPE] = ACTIONS(350), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2639), - [anon_sym_LF] = ACTIONS(2639), - [anon_sym_AMP] = ACTIONS(2639), + [anon_sym_SEMI] = ACTIONS(2683), + [anon_sym_LF] = ACTIONS(2683), + [anon_sym_AMP] = ACTIONS(2683), }, [701] = { - [anon_sym_fi] = ACTIONS(2641), - [anon_sym_elif] = ACTIONS(2641), - [anon_sym_else] = ACTIONS(2641), + [anon_sym_fi] = ACTIONS(2685), + [anon_sym_elif] = ACTIONS(2685), + [anon_sym_else] = ACTIONS(2685), [sym_comment] = ACTIONS(56), }, [702] = { - [anon_sym_fi] = ACTIONS(2643), + [anon_sym_fi] = ACTIONS(2687), [sym_comment] = ACTIONS(56), }, [703] = { - [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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(346), + [anon_sym_SEMI_SEMI] = ACTIONS(2683), + [anon_sym_PIPE_AMP] = ACTIONS(346), + [anon_sym_AMP_AMP] = ACTIONS(350), + [anon_sym_PIPE_PIPE] = ACTIONS(350), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(382), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(382), + [anon_sym_LT_AMP] = ACTIONS(382), + [anon_sym_GT_AMP] = ACTIONS(382), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(382), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(382), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(382), + [anon_sym_BQUOTE] = ACTIONS(382), + [anon_sym_LT_LPAREN] = ACTIONS(382), + [anon_sym_GT_LPAREN] = ACTIONS(382), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(380), - [anon_sym_SEMI] = ACTIONS(2639), - [anon_sym_LF] = ACTIONS(2639), - [anon_sym_AMP] = ACTIONS(2639), + [sym_word] = ACTIONS(382), + [anon_sym_SEMI] = ACTIONS(2683), + [anon_sym_LF] = ACTIONS(2683), + [anon_sym_AMP] = ACTIONS(2683), }, [704] = { [sym__terminated_statement] = STATE(699), @@ -29797,9 +29946,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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_fi] = ACTIONS(2689), + [anon_sym_elif] = ACTIONS(1351), + [anon_sym_else] = ACTIONS(1353), [anon_sym_case] = ACTIONS(22), [anon_sym_function] = ACTIONS(24), [anon_sym_LPAREN] = ACTIONS(26), @@ -29835,19 +29984,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_fi] = ACTIONS(2687), + [anon_sym_elif] = ACTIONS(2691), + [anon_sym_else] = ACTIONS(2693), [sym_comment] = ACTIONS(56), }, [706] = { - [sym__concat] = ACTIONS(1858), - [anon_sym_in] = ACTIONS(1860), - [anon_sym_SEMI_SEMI] = ACTIONS(1860), + [sym__concat] = ACTIONS(1886), + [anon_sym_in] = ACTIONS(1888), + [anon_sym_SEMI_SEMI] = ACTIONS(1888), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1860), - [anon_sym_LF] = ACTIONS(1860), - [anon_sym_AMP] = ACTIONS(1860), + [anon_sym_SEMI] = ACTIONS(1888), + [anon_sym_LF] = ACTIONS(1888), + [anon_sym_AMP] = ACTIONS(1888), }, [707] = { [sym_case_item] = STATE(1332), @@ -29860,44 +30009,44 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_esac] = ACTIONS(2695), + [sym__special_characters] = ACTIONS(2697), + [anon_sym_DQUOTE] = ACTIONS(2699), + [anon_sym_DOLLAR] = ACTIONS(2701), + [sym_raw_string] = ACTIONS(2703), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2705), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2707), + [anon_sym_BQUOTE] = ACTIONS(2709), + [anon_sym_LT_LPAREN] = ACTIONS(2711), + [anon_sym_GT_LPAREN] = ACTIONS(2711), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2669), + [sym_word] = ACTIONS(2713), }, [708] = { - [anon_sym_SEMI_SEMI] = ACTIONS(2671), + [anon_sym_SEMI_SEMI] = ACTIONS(2715), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2671), - [anon_sym_LF] = ACTIONS(2671), - [anon_sym_AMP] = ACTIONS(2671), + [anon_sym_SEMI] = ACTIONS(2715), + [anon_sym_LF] = ACTIONS(2715), + [anon_sym_AMP] = ACTIONS(2715), }, [709] = { [aux_sym_concatenation_repeat1] = STATE(709), - [sym__concat] = ACTIONS(2673), - [anon_sym_in] = ACTIONS(1860), - [anon_sym_SEMI_SEMI] = ACTIONS(1860), + [sym__concat] = ACTIONS(2717), + [anon_sym_in] = ACTIONS(1888), + [anon_sym_SEMI_SEMI] = ACTIONS(1888), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1860), - [anon_sym_LF] = ACTIONS(1860), - [anon_sym_AMP] = ACTIONS(1860), + [anon_sym_SEMI] = ACTIONS(1888), + [anon_sym_LF] = ACTIONS(1888), + [anon_sym_AMP] = ACTIONS(1888), }, [710] = { - [sym__concat] = ACTIONS(1895), - [anon_sym_in] = ACTIONS(1897), - [anon_sym_SEMI_SEMI] = ACTIONS(1897), + [sym__concat] = ACTIONS(1923), + [anon_sym_in] = ACTIONS(1925), + [anon_sym_SEMI_SEMI] = ACTIONS(1925), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1897), - [anon_sym_LF] = ACTIONS(1897), - [anon_sym_AMP] = ACTIONS(1897), + [anon_sym_SEMI] = ACTIONS(1925), + [anon_sym_LF] = ACTIONS(1925), + [anon_sym_AMP] = ACTIONS(1925), }, [711] = { [sym_case_item] = STATE(1332), @@ -29910,25 +30059,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_esac] = ACTIONS(2720), + [sym__special_characters] = ACTIONS(2697), + [anon_sym_DQUOTE] = ACTIONS(2699), + [anon_sym_DOLLAR] = ACTIONS(2701), + [sym_raw_string] = ACTIONS(2703), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2705), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2707), + [anon_sym_BQUOTE] = ACTIONS(2709), + [anon_sym_LT_LPAREN] = ACTIONS(2711), + [anon_sym_GT_LPAREN] = ACTIONS(2711), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2669), + [sym_word] = ACTIONS(2713), }, [712] = { - [anon_sym_SEMI_SEMI] = ACTIONS(2678), + [anon_sym_SEMI_SEMI] = ACTIONS(2722), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2678), - [anon_sym_LF] = ACTIONS(2678), - [anon_sym_AMP] = ACTIONS(2678), + [anon_sym_SEMI] = ACTIONS(2722), + [anon_sym_LF] = ACTIONS(2722), + [anon_sym_AMP] = ACTIONS(2722), }, [713] = { [sym_concatenation] = STATE(1344), @@ -29938,31 +30087,31 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(2724), + [sym__special_characters] = ACTIONS(2726), + [anon_sym_DQUOTE] = ACTIONS(1952), + [anon_sym_DOLLAR] = ACTIONS(1954), + [sym_raw_string] = ACTIONS(2728), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), + [anon_sym_BQUOTE] = ACTIONS(1962), + [anon_sym_LT_LPAREN] = ACTIONS(1964), + [anon_sym_GT_LPAREN] = ACTIONS(1964), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2686), + [sym_word] = ACTIONS(2730), }, [714] = { - [sym__concat] = ACTIONS(1940), - [anon_sym_in] = ACTIONS(1942), - [anon_sym_SEMI_SEMI] = ACTIONS(1942), + [sym__concat] = ACTIONS(1968), + [anon_sym_in] = ACTIONS(1970), + [anon_sym_SEMI_SEMI] = ACTIONS(1970), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1942), - [anon_sym_LF] = ACTIONS(1942), - [anon_sym_AMP] = ACTIONS(1942), + [anon_sym_SEMI] = ACTIONS(1970), + [anon_sym_LF] = ACTIONS(1970), + [anon_sym_AMP] = ACTIONS(1970), }, [715] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(2688), + [sym_regex_without_right_brace] = ACTIONS(2732), }, [716] = { [sym_concatenation] = STATE(451), @@ -29973,29 +30122,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(2734), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [717] = { - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(2692), + [anon_sym_LBRACK] = ACTIONS(836), + [anon_sym_EQ] = ACTIONS(2736), [sym_comment] = ACTIONS(56), }, [718] = { @@ -30007,26 +30156,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(2738), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(2740), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [719] = { [sym_concatenation] = STATE(451), @@ -30037,26 +30186,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(2742), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(2744), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [720] = { [sym_concatenation] = STATE(451), @@ -30067,39 +30216,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(2724), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(2746), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [721] = { - [sym__concat] = ACTIONS(1992), - [anon_sym_in] = ACTIONS(1994), - [anon_sym_SEMI_SEMI] = ACTIONS(1994), + [sym__concat] = ACTIONS(2022), + [anon_sym_in] = ACTIONS(2024), + [anon_sym_SEMI_SEMI] = ACTIONS(2024), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1994), - [anon_sym_LF] = ACTIONS(1994), - [anon_sym_AMP] = ACTIONS(1994), + [anon_sym_SEMI] = ACTIONS(2024), + [anon_sym_LF] = ACTIONS(2024), + [anon_sym_AMP] = ACTIONS(2024), }, [722] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(2704), + [sym_regex_without_right_brace] = ACTIONS(2748), }, [723] = { [sym_concatenation] = STATE(451), @@ -30110,38 +30259,38 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(2750), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [724] = { - [sym__concat] = ACTIONS(2000), - [anon_sym_in] = ACTIONS(2002), - [anon_sym_SEMI_SEMI] = ACTIONS(2002), + [sym__concat] = ACTIONS(2030), + [anon_sym_in] = ACTIONS(2032), + [anon_sym_SEMI_SEMI] = ACTIONS(2032), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2002), - [anon_sym_LF] = ACTIONS(2002), - [anon_sym_AMP] = ACTIONS(2002), + [anon_sym_SEMI] = ACTIONS(2032), + [anon_sym_LF] = ACTIONS(2032), + [anon_sym_AMP] = ACTIONS(2032), }, [725] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(2708), + [sym_regex_without_right_brace] = ACTIONS(2752), }, [726] = { [sym_concatenation] = STATE(451), @@ -30152,148 +30301,148 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(2724), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [727] = { - [sym__concat] = ACTIONS(2156), - [anon_sym_in] = ACTIONS(2158), - [anon_sym_SEMI_SEMI] = ACTIONS(2158), + [sym__concat] = ACTIONS(2190), + [anon_sym_in] = ACTIONS(2192), + [anon_sym_SEMI_SEMI] = ACTIONS(2192), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2158), - [anon_sym_LF] = ACTIONS(2158), - [anon_sym_AMP] = ACTIONS(2158), + [anon_sym_SEMI] = ACTIONS(2192), + [anon_sym_LF] = ACTIONS(2192), + [anon_sym_AMP] = ACTIONS(2192), }, [728] = { - [sym__concat] = ACTIONS(2358), - [anon_sym_in] = ACTIONS(2360), - [anon_sym_SEMI_SEMI] = ACTIONS(2360), + [sym__concat] = ACTIONS(2396), + [anon_sym_in] = ACTIONS(2398), + [anon_sym_SEMI_SEMI] = ACTIONS(2398), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2360), - [anon_sym_LF] = ACTIONS(2360), - [anon_sym_AMP] = ACTIONS(2360), + [anon_sym_SEMI] = ACTIONS(2398), + [anon_sym_LF] = ACTIONS(2398), + [anon_sym_AMP] = ACTIONS(2398), }, [729] = { [sym_compound_statement] = STATE(1359), - [anon_sym_LBRACE] = ACTIONS(480), + [anon_sym_LBRACE] = ACTIONS(484), [sym_comment] = ACTIONS(56), }, [730] = { - [sym_file_descriptor] = ACTIONS(2710), - [anon_sym_esac] = ACTIONS(2712), - [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_file_descriptor] = ACTIONS(2754), + [anon_sym_esac] = ACTIONS(2756), + [anon_sym_PIPE] = ACTIONS(2756), + [anon_sym_RPAREN] = ACTIONS(2756), + [anon_sym_SEMI_SEMI] = ACTIONS(2756), + [anon_sym_PIPE_AMP] = ACTIONS(2756), + [anon_sym_AMP_AMP] = ACTIONS(2756), + [anon_sym_PIPE_PIPE] = ACTIONS(2756), + [anon_sym_LT] = ACTIONS(2756), + [anon_sym_GT] = ACTIONS(2756), + [anon_sym_GT_GT] = ACTIONS(2756), + [anon_sym_AMP_GT] = ACTIONS(2756), + [anon_sym_AMP_GT_GT] = ACTIONS(2756), + [anon_sym_LT_AMP] = ACTIONS(2756), + [anon_sym_GT_AMP] = ACTIONS(2756), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2712), - [anon_sym_LF] = ACTIONS(2712), - [anon_sym_AMP] = ACTIONS(2712), + [anon_sym_SEMI] = ACTIONS(2756), + [anon_sym_LF] = ACTIONS(2756), + [anon_sym_AMP] = ACTIONS(2756), }, [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_file_descriptor] = ACTIONS(340), + [sym_variable_name] = ACTIONS(340), + [anon_sym_for] = ACTIONS(342), + [anon_sym_while] = ACTIONS(342), + [anon_sym_if] = ACTIONS(342), + [anon_sym_case] = ACTIONS(342), + [anon_sym_function] = ACTIONS(342), + [anon_sym_LPAREN] = ACTIONS(340), + [anon_sym_RBRACE] = ACTIONS(340), + [anon_sym_LBRACK] = ACTIONS(342), + [anon_sym_LBRACK_LBRACK] = ACTIONS(340), + [anon_sym_declare] = ACTIONS(342), + [anon_sym_typeset] = ACTIONS(342), + [anon_sym_export] = ACTIONS(342), + [anon_sym_readonly] = ACTIONS(342), + [anon_sym_local] = ACTIONS(342), + [anon_sym_unset] = ACTIONS(342), + [anon_sym_unsetenv] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(342), + [anon_sym_GT] = ACTIONS(342), + [anon_sym_GT_GT] = ACTIONS(340), + [anon_sym_AMP_GT] = ACTIONS(342), + [anon_sym_AMP_GT_GT] = ACTIONS(340), + [anon_sym_LT_AMP] = ACTIONS(340), + [anon_sym_GT_AMP] = ACTIONS(340), + [sym__special_characters] = ACTIONS(344), + [anon_sym_DQUOTE] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(342), + [sym_raw_string] = ACTIONS(340), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(340), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(340), + [anon_sym_BQUOTE] = ACTIONS(340), + [anon_sym_LT_LPAREN] = ACTIONS(340), + [anon_sym_GT_LPAREN] = ACTIONS(340), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(342), + [sym_word] = ACTIONS(344), }, [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), + [anon_sym_PIPE] = ACTIONS(346), + [anon_sym_SEMI_SEMI] = ACTIONS(2758), + [anon_sym_PIPE_AMP] = ACTIONS(346), + [anon_sym_AMP_AMP] = ACTIONS(350), + [anon_sym_PIPE_PIPE] = ACTIONS(350), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2714), - [anon_sym_LF] = ACTIONS(2714), - [anon_sym_AMP] = ACTIONS(2714), + [anon_sym_SEMI] = ACTIONS(2758), + [anon_sym_LF] = ACTIONS(2758), + [anon_sym_AMP] = ACTIONS(2758), }, [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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(346), + [anon_sym_SEMI_SEMI] = ACTIONS(2758), + [anon_sym_PIPE_AMP] = ACTIONS(346), + [anon_sym_AMP_AMP] = ACTIONS(350), + [anon_sym_PIPE_PIPE] = ACTIONS(350), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(382), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(382), + [anon_sym_LT_AMP] = ACTIONS(382), + [anon_sym_GT_AMP] = ACTIONS(382), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(382), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(382), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(382), + [anon_sym_BQUOTE] = ACTIONS(382), + [anon_sym_LT_LPAREN] = ACTIONS(382), + [anon_sym_GT_LPAREN] = ACTIONS(382), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(380), - [anon_sym_SEMI] = ACTIONS(2714), - [anon_sym_LF] = ACTIONS(2714), - [anon_sym_AMP] = ACTIONS(2714), + [sym_word] = ACTIONS(382), + [anon_sym_SEMI] = ACTIONS(2758), + [anon_sym_LF] = ACTIONS(2758), + [anon_sym_AMP] = ACTIONS(2758), }, [734] = { [sym__terminated_statement] = STATE(731), @@ -30330,7 +30479,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(2716), + [anon_sym_RBRACE] = ACTIONS(2760), [anon_sym_LBRACK] = ACTIONS(28), [anon_sym_LBRACK_LBRACK] = ACTIONS(30), [anon_sym_declare] = ACTIONS(32), @@ -30360,13 +30509,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(58), }, [735] = { - [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), + [anon_sym_LT] = ACTIONS(2762), + [anon_sym_GT] = ACTIONS(2762), + [anon_sym_GT_GT] = ACTIONS(2764), + [anon_sym_AMP_GT] = ACTIONS(2762), + [anon_sym_AMP_GT_GT] = ACTIONS(2764), + [anon_sym_LT_AMP] = ACTIONS(2764), + [anon_sym_GT_AMP] = ACTIONS(2764), [sym_comment] = ACTIONS(56), }, [736] = { @@ -30377,70 +30526,70 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(1367), [sym_command_substitution] = STATE(1367), [sym_process_substitution] = STATE(1367), - [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__special_characters] = ACTIONS(2766), + [anon_sym_DQUOTE] = ACTIONS(2768), + [anon_sym_DOLLAR] = ACTIONS(2770), + [sym_raw_string] = ACTIONS(2772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2774), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2776), + [anon_sym_BQUOTE] = ACTIONS(2778), + [anon_sym_LT_LPAREN] = ACTIONS(2780), + [anon_sym_GT_LPAREN] = ACTIONS(2780), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2738), + [sym_word] = ACTIONS(2782), }, [737] = { - [anon_sym_esac] = ACTIONS(2740), - [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_esac] = ACTIONS(2784), + [anon_sym_PIPE] = ACTIONS(2784), + [anon_sym_RPAREN] = ACTIONS(2784), + [anon_sym_SEMI_SEMI] = ACTIONS(2784), + [anon_sym_PIPE_AMP] = ACTIONS(2784), + [anon_sym_AMP_AMP] = ACTIONS(2784), + [anon_sym_PIPE_PIPE] = ACTIONS(2784), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2740), - [anon_sym_LF] = ACTIONS(2740), - [anon_sym_AMP] = ACTIONS(2740), + [anon_sym_SEMI] = ACTIONS(2784), + [anon_sym_LF] = ACTIONS(2784), + [anon_sym_AMP] = ACTIONS(2784), }, [738] = { [aux_sym_concatenation_repeat1] = STATE(1374), - [sym_file_descriptor] = ACTIONS(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(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_file_descriptor] = ACTIONS(1301), + [sym__concat] = ACTIONS(2786), + [sym_variable_name] = ACTIONS(1301), + [anon_sym_PIPE] = ACTIONS(1305), + [anon_sym_RPAREN] = ACTIONS(1305), + [anon_sym_SEMI_SEMI] = ACTIONS(1305), + [anon_sym_PIPE_AMP] = ACTIONS(1305), + [anon_sym_AMP_AMP] = ACTIONS(1305), + [anon_sym_PIPE_PIPE] = ACTIONS(1305), + [anon_sym_LT] = ACTIONS(1305), + [anon_sym_GT] = ACTIONS(1305), + [anon_sym_GT_GT] = ACTIONS(1305), + [anon_sym_AMP_GT] = ACTIONS(1305), + [anon_sym_AMP_GT_GT] = ACTIONS(1305), + [anon_sym_LT_AMP] = ACTIONS(1305), + [anon_sym_GT_AMP] = ACTIONS(1305), + [sym__special_characters] = ACTIONS(1305), + [anon_sym_DQUOTE] = ACTIONS(1305), + [anon_sym_DOLLAR] = ACTIONS(1305), + [sym_raw_string] = ACTIONS(1305), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1305), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1305), + [anon_sym_BQUOTE] = ACTIONS(1305), + [anon_sym_LT_LPAREN] = ACTIONS(1305), + [anon_sym_GT_LPAREN] = ACTIONS(1305), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1283), - [anon_sym_SEMI] = ACTIONS(1283), - [anon_sym_LF] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1283), + [sym_word] = ACTIONS(1305), + [anon_sym_SEMI] = ACTIONS(1305), + [anon_sym_LF] = ACTIONS(1305), + [anon_sym_AMP] = ACTIONS(1305), }, [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_DQUOTE] = ACTIONS(2788), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -30449,65 +30598,66 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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_string] = STATE(1378), + [anon_sym_DQUOTE] = ACTIONS(1407), + [anon_sym_DOLLAR] = ACTIONS(2790), + [sym_raw_string] = ACTIONS(2792), + [anon_sym_POUND] = ACTIONS(2790), + [anon_sym_DASH] = ACTIONS(2790), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2794), + [anon_sym_STAR] = ACTIONS(2790), + [anon_sym_AT] = ACTIONS(2790), + [anon_sym_QMARK] = ACTIONS(2790), + [anon_sym_0] = ACTIONS(2796), + [anon_sym__] = ACTIONS(2796), }, [741] = { [aux_sym_concatenation_repeat1] = STATE(1374), - [sym_file_descriptor] = ACTIONS(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_file_descriptor] = ACTIONS(1277), + [sym__concat] = ACTIONS(2786), + [sym_variable_name] = ACTIONS(1277), + [anon_sym_PIPE] = ACTIONS(1279), + [anon_sym_RPAREN] = ACTIONS(1279), + [anon_sym_SEMI_SEMI] = ACTIONS(1279), + [anon_sym_PIPE_AMP] = ACTIONS(1279), + [anon_sym_AMP_AMP] = ACTIONS(1279), + [anon_sym_PIPE_PIPE] = ACTIONS(1279), + [anon_sym_LT] = ACTIONS(1279), + [anon_sym_GT] = ACTIONS(1279), + [anon_sym_GT_GT] = ACTIONS(1279), + [anon_sym_AMP_GT] = ACTIONS(1279), + [anon_sym_AMP_GT_GT] = ACTIONS(1279), + [anon_sym_LT_AMP] = ACTIONS(1279), + [anon_sym_GT_AMP] = ACTIONS(1279), + [sym__special_characters] = ACTIONS(1279), + [anon_sym_DQUOTE] = ACTIONS(1279), + [anon_sym_DOLLAR] = ACTIONS(1279), + [sym_raw_string] = ACTIONS(1279), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1279), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1279), + [anon_sym_BQUOTE] = ACTIONS(1279), + [anon_sym_LT_LPAREN] = ACTIONS(1279), + [anon_sym_GT_LPAREN] = ACTIONS(1279), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1257), - [anon_sym_SEMI] = ACTIONS(1257), - [anon_sym_LF] = ACTIONS(1257), - [anon_sym_AMP] = ACTIONS(1257), + [sym_word] = ACTIONS(1279), + [anon_sym_SEMI] = ACTIONS(1279), + [anon_sym_LF] = ACTIONS(1279), + [anon_sym_AMP] = ACTIONS(1279), }, [742] = { [sym_subscript] = STATE(1384), - [sym_variable_name] = ACTIONS(2752), - [anon_sym_DOLLAR] = ACTIONS(2754), - [anon_sym_POUND] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2754), + [sym_variable_name] = ACTIONS(2798), + [anon_sym_DOLLAR] = ACTIONS(2800), + [anon_sym_POUND] = ACTIONS(2802), + [anon_sym_DASH] = ACTIONS(2800), [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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2804), + [anon_sym_STAR] = ACTIONS(2800), + [anon_sym_AT] = ACTIONS(2800), + [anon_sym_QMARK] = ACTIONS(2800), + [anon_sym_0] = ACTIONS(2806), + [anon_sym__] = ACTIONS(2806), }, [743] = { [sym_for_statement] = STATE(1385), @@ -30535,22 +30685,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(264), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(268), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -30558,17 +30708,17 @@ 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(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__special_characters] = ACTIONS(286), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(300), + [sym_word] = ACTIONS(302), }, [744] = { [sym_for_statement] = STATE(1387), @@ -30596,22 +30746,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(304), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(306), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(308), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_LBRACK_LBRACK] = ACTIONS(312), + [anon_sym_declare] = ACTIONS(314), + [anon_sym_typeset] = ACTIONS(314), + [anon_sym_export] = ACTIONS(314), + [anon_sym_readonly] = ACTIONS(314), + [anon_sym_local] = ACTIONS(314), + [anon_sym_unset] = ACTIONS(316), + [anon_sym_unsetenv] = ACTIONS(316), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -30619,17 +30769,17 @@ 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(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__special_characters] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [anon_sym_DOLLAR] = ACTIONS(322), + [sym_raw_string] = ACTIONS(324), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), + [anon_sym_BQUOTE] = ACTIONS(330), + [anon_sym_LT_LPAREN] = ACTIONS(332), + [anon_sym_GT_LPAREN] = ACTIONS(332), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(332), + [sym_word] = ACTIONS(334), }, [745] = { [sym_for_statement] = STATE(1389), @@ -30657,22 +30807,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(264), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(268), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -30680,96 +30830,96 @@ 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(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__special_characters] = ACTIONS(286), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(300), + [sym_word] = ACTIONS(302), }, [746] = { [sym_file_redirect] = STATE(207), [sym_heredoc_redirect] = STATE(207), [sym_herestring_redirect] = STATE(207), [aux_sym_while_statement_repeat1] = STATE(1391), - [sym_file_descriptor] = ACTIONS(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_file_descriptor] = ACTIONS(556), + [anon_sym_PIPE] = ACTIONS(1347), + [anon_sym_RPAREN] = ACTIONS(1347), + [anon_sym_SEMI_SEMI] = ACTIONS(1347), + [anon_sym_PIPE_AMP] = ACTIONS(1347), + [anon_sym_AMP_AMP] = ACTIONS(1347), + [anon_sym_PIPE_PIPE] = ACTIONS(1347), + [anon_sym_LT] = ACTIONS(560), + [anon_sym_GT] = ACTIONS(560), + [anon_sym_GT_GT] = ACTIONS(560), + [anon_sym_AMP_GT] = ACTIONS(560), + [anon_sym_AMP_GT_GT] = ACTIONS(560), + [anon_sym_LT_AMP] = ACTIONS(560), + [anon_sym_GT_AMP] = ACTIONS(560), + [anon_sym_LT_LT] = ACTIONS(360), + [anon_sym_LT_LT_DASH] = ACTIONS(360), + [anon_sym_LT_LT_LT] = ACTIONS(562), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1323), - [anon_sym_LF] = ACTIONS(1323), - [anon_sym_AMP] = ACTIONS(1323), + [anon_sym_SEMI] = ACTIONS(1347), + [anon_sym_LF] = ACTIONS(1347), + [anon_sym_AMP] = ACTIONS(1347), }, [747] = { - [anon_sym_RPAREN] = ACTIONS(2762), + [anon_sym_RPAREN] = ACTIONS(2808), [sym_comment] = ACTIONS(56), }, [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_file_descriptor] = ACTIONS(2810), + [anon_sym_PIPE] = ACTIONS(1401), + [anon_sym_RPAREN] = ACTIONS(1401), + [anon_sym_SEMI_SEMI] = ACTIONS(1401), + [anon_sym_PIPE_AMP] = ACTIONS(1401), + [anon_sym_AMP_AMP] = ACTIONS(1401), + [anon_sym_PIPE_PIPE] = ACTIONS(1401), + [anon_sym_LT] = ACTIONS(2812), + [anon_sym_GT] = ACTIONS(2812), + [anon_sym_GT_GT] = ACTIONS(2812), + [anon_sym_AMP_GT] = ACTIONS(2812), + [anon_sym_AMP_GT_GT] = ACTIONS(2812), + [anon_sym_LT_AMP] = ACTIONS(2812), + [anon_sym_GT_AMP] = ACTIONS(2812), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1377), - [anon_sym_LF] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1377), + [anon_sym_SEMI] = ACTIONS(1401), + [anon_sym_LF] = ACTIONS(1401), + [anon_sym_AMP] = ACTIONS(1401), }, [749] = { [sym_file_redirect] = STATE(207), [sym_heredoc_redirect] = STATE(207), [sym_herestring_redirect] = STATE(207), [aux_sym_while_statement_repeat1] = STATE(1395), - [sym_file_descriptor] = ACTIONS(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_file_descriptor] = ACTIONS(556), + [anon_sym_PIPE] = ACTIONS(1605), + [anon_sym_RPAREN] = ACTIONS(1605), + [anon_sym_SEMI_SEMI] = ACTIONS(1605), + [anon_sym_PIPE_AMP] = ACTIONS(1605), + [anon_sym_AMP_AMP] = ACTIONS(1605), + [anon_sym_PIPE_PIPE] = ACTIONS(1605), + [anon_sym_LT] = ACTIONS(560), + [anon_sym_GT] = ACTIONS(560), + [anon_sym_GT_GT] = ACTIONS(560), + [anon_sym_AMP_GT] = ACTIONS(560), + [anon_sym_AMP_GT_GT] = ACTIONS(560), + [anon_sym_LT_AMP] = ACTIONS(560), + [anon_sym_GT_AMP] = ACTIONS(560), + [anon_sym_LT_LT] = ACTIONS(360), + [anon_sym_LT_LT_DASH] = ACTIONS(360), + [anon_sym_LT_LT_LT] = ACTIONS(562), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1577), - [anon_sym_LF] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), + [anon_sym_SEMI] = ACTIONS(1605), + [anon_sym_LF] = ACTIONS(1605), + [anon_sym_AMP] = ACTIONS(1605), }, [750] = { [sym_concatenation] = STATE(869), @@ -30780,19 +30930,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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__empty_value] = ACTIONS(1699), + [anon_sym_LPAREN] = ACTIONS(1701), + [sym__special_characters] = ACTIONS(2814), + [anon_sym_DQUOTE] = ACTIONS(1433), + [anon_sym_DOLLAR] = ACTIONS(2816), + [sym_raw_string] = ACTIONS(2818), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2820), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2822), + [anon_sym_BQUOTE] = ACTIONS(2824), + [anon_sym_LT_LPAREN] = ACTIONS(2826), + [anon_sym_GT_LPAREN] = ACTIONS(2826), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2782), + [sym_word] = ACTIONS(2828), }, [751] = { [sym_string] = STATE(1398), @@ -30801,75 +30951,75 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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__special_characters] = ACTIONS(2830), + [anon_sym_DQUOTE] = ACTIONS(1433), + [anon_sym_DOLLAR] = ACTIONS(2816), + [sym_raw_string] = ACTIONS(2832), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2820), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2822), + [anon_sym_BQUOTE] = ACTIONS(2824), + [anon_sym_LT_LPAREN] = ACTIONS(2826), + [anon_sym_GT_LPAREN] = ACTIONS(2826), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2784), + [sym_word] = ACTIONS(2830), }, [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__concat] = ACTIONS(1429), + [sym_variable_name] = ACTIONS(788), + [anon_sym_PIPE] = ACTIONS(790), + [anon_sym_RPAREN] = ACTIONS(790), + [anon_sym_SEMI_SEMI] = ACTIONS(790), + [anon_sym_PIPE_AMP] = ACTIONS(790), + [anon_sym_AMP_AMP] = ACTIONS(790), + [anon_sym_PIPE_PIPE] = ACTIONS(790), + [sym__special_characters] = ACTIONS(790), + [anon_sym_DQUOTE] = ACTIONS(790), + [anon_sym_DOLLAR] = ACTIONS(790), + [sym_raw_string] = ACTIONS(790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(790), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(790), + [anon_sym_BQUOTE] = ACTIONS(790), + [anon_sym_LT_LPAREN] = ACTIONS(790), + [anon_sym_GT_LPAREN] = ACTIONS(790), [sym_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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(790), + [sym_word] = ACTIONS(790), + [anon_sym_SEMI] = ACTIONS(790), + [anon_sym_LF] = ACTIONS(790), + [anon_sym_AMP] = ACTIONS(790), }, [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__concat] = ACTIONS(792), + [sym_variable_name] = ACTIONS(792), + [anon_sym_PIPE] = ACTIONS(794), + [anon_sym_RPAREN] = ACTIONS(794), + [anon_sym_SEMI_SEMI] = ACTIONS(794), + [anon_sym_PIPE_AMP] = ACTIONS(794), + [anon_sym_AMP_AMP] = ACTIONS(794), + [anon_sym_PIPE_PIPE] = ACTIONS(794), + [sym__special_characters] = ACTIONS(794), + [anon_sym_DQUOTE] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(794), + [sym_raw_string] = ACTIONS(794), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(794), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(794), + [anon_sym_BQUOTE] = ACTIONS(794), + [anon_sym_LT_LPAREN] = ACTIONS(794), + [anon_sym_GT_LPAREN] = ACTIONS(794), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(778), - [sym_word] = ACTIONS(778), - [anon_sym_SEMI] = ACTIONS(778), - [anon_sym_LF] = ACTIONS(778), - [anon_sym_AMP] = ACTIONS(778), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(794), + [sym_word] = ACTIONS(794), + [anon_sym_SEMI] = ACTIONS(794), + [anon_sym_LF] = ACTIONS(794), + [anon_sym_AMP] = ACTIONS(794), }, [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_DQUOTE] = ACTIONS(2834), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -30878,83 +31028,83 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(182), }, [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__concat] = ACTIONS(824), + [sym_variable_name] = ACTIONS(824), + [anon_sym_PIPE] = ACTIONS(826), + [anon_sym_RPAREN] = ACTIONS(826), + [anon_sym_SEMI_SEMI] = ACTIONS(826), + [anon_sym_PIPE_AMP] = ACTIONS(826), + [anon_sym_AMP_AMP] = ACTIONS(826), + [anon_sym_PIPE_PIPE] = ACTIONS(826), + [sym__special_characters] = ACTIONS(826), + [anon_sym_DQUOTE] = ACTIONS(826), + [anon_sym_DOLLAR] = ACTIONS(826), + [sym_raw_string] = ACTIONS(826), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(826), + [anon_sym_BQUOTE] = ACTIONS(826), + [anon_sym_LT_LPAREN] = ACTIONS(826), + [anon_sym_GT_LPAREN] = ACTIONS(826), [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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(826), + [sym_word] = ACTIONS(826), + [anon_sym_SEMI] = ACTIONS(826), + [anon_sym_LF] = ACTIONS(826), + [anon_sym_AMP] = ACTIONS(826), }, [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__concat] = ACTIONS(828), + [sym_variable_name] = ACTIONS(828), + [anon_sym_PIPE] = ACTIONS(830), + [anon_sym_RPAREN] = ACTIONS(830), + [anon_sym_SEMI_SEMI] = ACTIONS(830), + [anon_sym_PIPE_AMP] = ACTIONS(830), + [anon_sym_AMP_AMP] = ACTIONS(830), + [anon_sym_PIPE_PIPE] = ACTIONS(830), + [sym__special_characters] = ACTIONS(830), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(830), + [sym_raw_string] = ACTIONS(830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(830), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_LT_LPAREN] = ACTIONS(830), + [anon_sym_GT_LPAREN] = ACTIONS(830), [sym_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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(830), + [sym_word] = ACTIONS(830), + [anon_sym_SEMI] = ACTIONS(830), + [anon_sym_LF] = ACTIONS(830), + [anon_sym_AMP] = ACTIONS(830), }, [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(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__concat] = ACTIONS(832), + [sym_variable_name] = ACTIONS(832), + [anon_sym_PIPE] = ACTIONS(834), + [anon_sym_RPAREN] = ACTIONS(834), + [anon_sym_SEMI_SEMI] = ACTIONS(834), + [anon_sym_PIPE_AMP] = ACTIONS(834), + [anon_sym_AMP_AMP] = ACTIONS(834), + [anon_sym_PIPE_PIPE] = ACTIONS(834), + [sym__special_characters] = ACTIONS(834), + [anon_sym_DQUOTE] = ACTIONS(834), + [anon_sym_DOLLAR] = ACTIONS(834), + [sym_raw_string] = ACTIONS(834), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(834), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(834), + [anon_sym_BQUOTE] = ACTIONS(834), + [anon_sym_LT_LPAREN] = ACTIONS(834), + [anon_sym_GT_LPAREN] = ACTIONS(834), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(818), - [sym_word] = ACTIONS(818), - [anon_sym_SEMI] = ACTIONS(818), - [anon_sym_LF] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(818), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(834), + [sym_word] = ACTIONS(834), + [anon_sym_SEMI] = ACTIONS(834), + [anon_sym_LF] = ACTIONS(834), + [anon_sym_AMP] = ACTIONS(834), }, [758] = { - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(2790), + [anon_sym_LBRACK] = ACTIONS(836), + [anon_sym_EQ] = ACTIONS(2836), [sym_comment] = ACTIONS(56), }, [759] = { @@ -30966,39 +31116,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(2838), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(2840), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [760] = { [sym_subscript] = STATE(1408), - [sym_variable_name] = ACTIONS(2796), - [anon_sym_DOLLAR] = ACTIONS(2798), - [anon_sym_DASH] = ACTIONS(2798), + [sym_variable_name] = ACTIONS(2842), + [anon_sym_DOLLAR] = ACTIONS(2844), + [anon_sym_DASH] = ACTIONS(2844), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2846), + [anon_sym_STAR] = ACTIONS(2844), + [anon_sym_AT] = ACTIONS(2844), + [anon_sym_QMARK] = ACTIONS(2844), + [anon_sym_0] = ACTIONS(2848), + [anon_sym__] = ACTIONS(2848), }, [761] = { [sym_concatenation] = STATE(451), @@ -31009,26 +31159,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(2850), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(2852), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [762] = { [sym_concatenation] = STATE(451), @@ -31039,130 +31189,130 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(2854), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(2856), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(2858), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), [sym_comment] = ACTIONS(56), }, [764] = { - [sym_file_descriptor] = ACTIONS(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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(2858), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [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), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_PIPE_AMP] = ACTIONS(1072), + [anon_sym_AMP_AMP] = ACTIONS(1074), + [anon_sym_PIPE_PIPE] = ACTIONS(1074), + [anon_sym_BQUOTE] = ACTIONS(2858), [sym_comment] = ACTIONS(56), }, [766] = { - [sym_file_descriptor] = ACTIONS(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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_PIPE_AMP] = ACTIONS(1072), + [anon_sym_AMP_AMP] = ACTIONS(1074), + [anon_sym_PIPE_PIPE] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(2858), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [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), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(2860), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), [sym_comment] = ACTIONS(56), }, [768] = { - [sym_file_descriptor] = ACTIONS(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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(2860), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [769] = { [sym_variable_assignment] = STATE(107), @@ -31175,28 +31325,28 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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_variable_name] = ACTIONS(2862), + [anon_sym_PIPE] = ACTIONS(1754), + [anon_sym_RPAREN] = ACTIONS(1754), + [anon_sym_SEMI_SEMI] = ACTIONS(1754), + [anon_sym_PIPE_AMP] = ACTIONS(1754), + [anon_sym_AMP_AMP] = ACTIONS(1754), + [anon_sym_PIPE_PIPE] = ACTIONS(1754), + [sym__special_characters] = ACTIONS(2865), + [anon_sym_DQUOTE] = ACTIONS(2868), + [anon_sym_DOLLAR] = ACTIONS(2871), + [sym_raw_string] = ACTIONS(2874), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2877), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2880), + [anon_sym_BQUOTE] = ACTIONS(2883), + [anon_sym_LT_LPAREN] = ACTIONS(2886), + [anon_sym_GT_LPAREN] = ACTIONS(2886), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1752), - [sym_word] = ACTIONS(2828), - [anon_sym_SEMI] = ACTIONS(1726), - [anon_sym_LF] = ACTIONS(1726), - [anon_sym_AMP] = ACTIONS(1726), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1780), + [sym_word] = ACTIONS(2874), + [anon_sym_SEMI] = ACTIONS(1754), + [anon_sym_LF] = ACTIONS(1754), + [anon_sym_AMP] = ACTIONS(1754), }, [770] = { [sym_string] = STATE(1417), @@ -31205,73 +31355,73 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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__special_characters] = ACTIONS(2889), + [anon_sym_DQUOTE] = ACTIONS(1457), + [anon_sym_DOLLAR] = ACTIONS(2891), + [sym_raw_string] = ACTIONS(2893), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2895), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2897), + [anon_sym_BQUOTE] = ACTIONS(2899), + [anon_sym_LT_LPAREN] = ACTIONS(2901), + [anon_sym_GT_LPAREN] = ACTIONS(2901), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2843), + [sym_word] = ACTIONS(2889), }, [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__concat] = ACTIONS(1453), + [anon_sym_PIPE] = ACTIONS(790), + [anon_sym_RPAREN] = ACTIONS(790), + [anon_sym_SEMI_SEMI] = ACTIONS(790), + [anon_sym_PIPE_AMP] = ACTIONS(790), + [anon_sym_AMP_AMP] = ACTIONS(790), + [anon_sym_PIPE_PIPE] = ACTIONS(790), + [sym__special_characters] = ACTIONS(790), + [anon_sym_DQUOTE] = ACTIONS(790), + [anon_sym_DOLLAR] = ACTIONS(790), + [sym_raw_string] = ACTIONS(790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(790), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(790), + [anon_sym_BQUOTE] = ACTIONS(790), + [anon_sym_LT_LPAREN] = ACTIONS(790), + [anon_sym_GT_LPAREN] = ACTIONS(790), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(774), - [sym_word] = ACTIONS(774), - [anon_sym_SEMI] = ACTIONS(774), - [anon_sym_LF] = ACTIONS(774), - [anon_sym_AMP] = ACTIONS(774), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(790), + [sym_word] = ACTIONS(790), + [anon_sym_SEMI] = ACTIONS(790), + [anon_sym_LF] = ACTIONS(790), + [anon_sym_AMP] = ACTIONS(790), }, [772] = { - [sym__concat] = ACTIONS(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__concat] = ACTIONS(792), + [anon_sym_PIPE] = ACTIONS(794), + [anon_sym_RPAREN] = ACTIONS(794), + [anon_sym_SEMI_SEMI] = ACTIONS(794), + [anon_sym_PIPE_AMP] = ACTIONS(794), + [anon_sym_AMP_AMP] = ACTIONS(794), + [anon_sym_PIPE_PIPE] = ACTIONS(794), + [sym__special_characters] = ACTIONS(794), + [anon_sym_DQUOTE] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(794), + [sym_raw_string] = ACTIONS(794), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(794), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(794), + [anon_sym_BQUOTE] = ACTIONS(794), + [anon_sym_LT_LPAREN] = ACTIONS(794), + [anon_sym_GT_LPAREN] = ACTIONS(794), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(778), - [sym_word] = ACTIONS(778), - [anon_sym_SEMI] = ACTIONS(778), - [anon_sym_LF] = ACTIONS(778), - [anon_sym_AMP] = ACTIONS(778), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(794), + [sym_word] = ACTIONS(794), + [anon_sym_SEMI] = ACTIONS(794), + [anon_sym_LF] = ACTIONS(794), + [anon_sym_AMP] = ACTIONS(794), }, [773] = { [sym_simple_expansion] = STATE(134), [sym_expansion] = STATE(134), [sym_command_substitution] = STATE(134), [aux_sym_string_repeat1] = STATE(447), - [anon_sym_DQUOTE] = ACTIONS(2857), + [anon_sym_DQUOTE] = ACTIONS(2903), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -31280,80 +31430,80 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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__concat] = ACTIONS(824), + [anon_sym_PIPE] = ACTIONS(826), + [anon_sym_RPAREN] = ACTIONS(826), + [anon_sym_SEMI_SEMI] = ACTIONS(826), + [anon_sym_PIPE_AMP] = ACTIONS(826), + [anon_sym_AMP_AMP] = ACTIONS(826), + [anon_sym_PIPE_PIPE] = ACTIONS(826), + [sym__special_characters] = ACTIONS(826), + [anon_sym_DQUOTE] = ACTIONS(826), + [anon_sym_DOLLAR] = ACTIONS(826), + [sym_raw_string] = ACTIONS(826), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(826), + [anon_sym_BQUOTE] = ACTIONS(826), + [anon_sym_LT_LPAREN] = ACTIONS(826), + [anon_sym_GT_LPAREN] = ACTIONS(826), [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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(826), + [sym_word] = ACTIONS(826), + [anon_sym_SEMI] = ACTIONS(826), + [anon_sym_LF] = ACTIONS(826), + [anon_sym_AMP] = ACTIONS(826), }, [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__concat] = ACTIONS(828), + [anon_sym_PIPE] = ACTIONS(830), + [anon_sym_RPAREN] = ACTIONS(830), + [anon_sym_SEMI_SEMI] = ACTIONS(830), + [anon_sym_PIPE_AMP] = ACTIONS(830), + [anon_sym_AMP_AMP] = ACTIONS(830), + [anon_sym_PIPE_PIPE] = ACTIONS(830), + [sym__special_characters] = ACTIONS(830), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(830), + [sym_raw_string] = ACTIONS(830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(830), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_LT_LPAREN] = ACTIONS(830), + [anon_sym_GT_LPAREN] = ACTIONS(830), [sym_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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(830), + [sym_word] = ACTIONS(830), + [anon_sym_SEMI] = ACTIONS(830), + [anon_sym_LF] = ACTIONS(830), + [anon_sym_AMP] = ACTIONS(830), }, [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(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__concat] = ACTIONS(832), + [anon_sym_PIPE] = ACTIONS(834), + [anon_sym_RPAREN] = ACTIONS(834), + [anon_sym_SEMI_SEMI] = ACTIONS(834), + [anon_sym_PIPE_AMP] = ACTIONS(834), + [anon_sym_AMP_AMP] = ACTIONS(834), + [anon_sym_PIPE_PIPE] = ACTIONS(834), + [sym__special_characters] = ACTIONS(834), + [anon_sym_DQUOTE] = ACTIONS(834), + [anon_sym_DOLLAR] = ACTIONS(834), + [sym_raw_string] = ACTIONS(834), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(834), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(834), + [anon_sym_BQUOTE] = ACTIONS(834), + [anon_sym_LT_LPAREN] = ACTIONS(834), + [anon_sym_GT_LPAREN] = ACTIONS(834), [sym_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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(834), + [sym_word] = ACTIONS(834), + [anon_sym_SEMI] = ACTIONS(834), + [anon_sym_LF] = ACTIONS(834), + [anon_sym_AMP] = ACTIONS(834), }, [777] = { - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(2859), + [anon_sym_LBRACK] = ACTIONS(836), + [anon_sym_EQ] = ACTIONS(2905), [sym_comment] = ACTIONS(56), }, [778] = { @@ -31365,39 +31515,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(2907), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(2909), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [779] = { [sym_subscript] = STATE(1427), - [sym_variable_name] = ACTIONS(2865), - [anon_sym_DOLLAR] = ACTIONS(2867), - [anon_sym_DASH] = ACTIONS(2867), + [sym_variable_name] = ACTIONS(2911), + [anon_sym_DOLLAR] = ACTIONS(2913), + [anon_sym_DASH] = ACTIONS(2913), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2915), + [anon_sym_STAR] = ACTIONS(2913), + [anon_sym_AT] = ACTIONS(2913), + [anon_sym_QMARK] = ACTIONS(2913), + [anon_sym_0] = ACTIONS(2917), + [anon_sym__] = ACTIONS(2917), }, [780] = { [sym_concatenation] = STATE(451), @@ -31408,26 +31558,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(2919), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(2921), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [781] = { [sym_concatenation] = STATE(451), @@ -31438,130 +31588,130 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(2923), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(2925), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(2927), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), [sym_comment] = ACTIONS(56), }, [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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(2927), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [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), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_PIPE_AMP] = ACTIONS(1072), + [anon_sym_AMP_AMP] = ACTIONS(1074), + [anon_sym_PIPE_PIPE] = ACTIONS(1074), + [anon_sym_BQUOTE] = ACTIONS(2927), [sym_comment] = ACTIONS(56), }, [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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_PIPE_AMP] = ACTIONS(1072), + [anon_sym_AMP_AMP] = ACTIONS(1074), + [anon_sym_PIPE_PIPE] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(2927), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [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), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(2929), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), [sym_comment] = ACTIONS(56), }, [787] = { - [sym_file_descriptor] = ACTIONS(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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(2929), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [788] = { [sym_concatenation] = STATE(119), @@ -31572,133 +31722,136 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_PIPE] = ACTIONS(1825), + [anon_sym_RPAREN] = ACTIONS(1825), + [anon_sym_SEMI_SEMI] = ACTIONS(1825), + [anon_sym_PIPE_AMP] = ACTIONS(1825), + [anon_sym_AMP_AMP] = ACTIONS(1825), + [anon_sym_PIPE_PIPE] = ACTIONS(1825), + [sym__special_characters] = ACTIONS(2931), + [anon_sym_DQUOTE] = ACTIONS(2934), + [anon_sym_DOLLAR] = ACTIONS(2937), + [sym_raw_string] = ACTIONS(2940), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2946), + [anon_sym_BQUOTE] = ACTIONS(2949), + [anon_sym_LT_LPAREN] = ACTIONS(2952), + [anon_sym_GT_LPAREN] = ACTIONS(2952), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1823), - [sym_word] = ACTIONS(2894), - [anon_sym_SEMI] = ACTIONS(1797), - [anon_sym_LF] = ACTIONS(1797), - [anon_sym_AMP] = ACTIONS(1797), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1851), + [sym_word] = ACTIONS(2940), + [anon_sym_SEMI] = ACTIONS(1825), + [anon_sym_LF] = ACTIONS(1825), + [anon_sym_AMP] = ACTIONS(1825), }, [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(1860), - [anon_sym_GT_LPAREN] = ACTIONS(1860), + [sym_file_descriptor] = ACTIONS(1886), + [sym__concat] = ACTIONS(1886), + [anon_sym_PIPE] = ACTIONS(1888), + [anon_sym_RPAREN] = ACTIONS(1888), + [anon_sym_SEMI_SEMI] = ACTIONS(1888), + [anon_sym_PIPE_AMP] = ACTIONS(1888), + [anon_sym_AMP_AMP] = ACTIONS(1888), + [anon_sym_PIPE_PIPE] = ACTIONS(1888), + [anon_sym_EQ_TILDE] = ACTIONS(1888), + [anon_sym_EQ_EQ] = ACTIONS(1888), + [anon_sym_LT] = ACTIONS(1888), + [anon_sym_GT] = ACTIONS(1888), + [anon_sym_GT_GT] = ACTIONS(1888), + [anon_sym_AMP_GT] = ACTIONS(1888), + [anon_sym_AMP_GT_GT] = ACTIONS(1888), + [anon_sym_LT_AMP] = ACTIONS(1888), + [anon_sym_GT_AMP] = ACTIONS(1888), + [anon_sym_LT_LT] = ACTIONS(1888), + [anon_sym_LT_LT_DASH] = ACTIONS(1888), + [anon_sym_LT_LT_LT] = ACTIONS(1888), + [sym__special_characters] = ACTIONS(1888), + [anon_sym_DQUOTE] = ACTIONS(1888), + [anon_sym_DOLLAR] = ACTIONS(1888), + [sym_raw_string] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1888), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1888), + [anon_sym_BQUOTE] = ACTIONS(1888), + [anon_sym_LT_LPAREN] = ACTIONS(1888), + [anon_sym_GT_LPAREN] = ACTIONS(1888), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1860), - [anon_sym_SEMI] = ACTIONS(1860), - [anon_sym_LF] = ACTIONS(1860), - [anon_sym_AMP] = ACTIONS(1860), + [sym_word] = ACTIONS(1888), + [anon_sym_SEMI] = ACTIONS(1888), + [anon_sym_LF] = ACTIONS(1888), + [anon_sym_AMP] = ACTIONS(1888), }, [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(1860), - [anon_sym_GT_LPAREN] = ACTIONS(1860), + [sym_file_descriptor] = ACTIONS(1886), + [sym__concat] = ACTIONS(2955), + [anon_sym_PIPE] = ACTIONS(1888), + [anon_sym_RPAREN] = ACTIONS(1888), + [anon_sym_SEMI_SEMI] = ACTIONS(1888), + [anon_sym_PIPE_AMP] = ACTIONS(1888), + [anon_sym_AMP_AMP] = ACTIONS(1888), + [anon_sym_PIPE_PIPE] = ACTIONS(1888), + [anon_sym_EQ_TILDE] = ACTIONS(1888), + [anon_sym_EQ_EQ] = ACTIONS(1888), + [anon_sym_LT] = ACTIONS(1888), + [anon_sym_GT] = ACTIONS(1888), + [anon_sym_GT_GT] = ACTIONS(1888), + [anon_sym_AMP_GT] = ACTIONS(1888), + [anon_sym_AMP_GT_GT] = ACTIONS(1888), + [anon_sym_LT_AMP] = ACTIONS(1888), + [anon_sym_GT_AMP] = ACTIONS(1888), + [anon_sym_LT_LT] = ACTIONS(1888), + [anon_sym_LT_LT_DASH] = ACTIONS(1888), + [anon_sym_LT_LT_LT] = ACTIONS(1888), + [sym__special_characters] = ACTIONS(1888), + [anon_sym_DQUOTE] = ACTIONS(1888), + [anon_sym_DOLLAR] = ACTIONS(1888), + [sym_raw_string] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1888), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1888), + [anon_sym_BQUOTE] = ACTIONS(1888), + [anon_sym_LT_LPAREN] = ACTIONS(1888), + [anon_sym_GT_LPAREN] = ACTIONS(1888), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1860), - [anon_sym_SEMI] = ACTIONS(1860), - [anon_sym_LF] = ACTIONS(1860), - [anon_sym_AMP] = ACTIONS(1860), + [sym_word] = ACTIONS(1888), + [anon_sym_SEMI] = ACTIONS(1888), + [anon_sym_LF] = ACTIONS(1888), + [anon_sym_AMP] = ACTIONS(1888), }, [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_file_descriptor] = ACTIONS(1923), + [sym__concat] = ACTIONS(1923), + [anon_sym_PIPE] = ACTIONS(1925), + [anon_sym_RPAREN] = ACTIONS(1925), + [anon_sym_SEMI_SEMI] = ACTIONS(1925), + [anon_sym_PIPE_AMP] = ACTIONS(1925), + [anon_sym_AMP_AMP] = ACTIONS(1925), + [anon_sym_PIPE_PIPE] = ACTIONS(1925), + [anon_sym_EQ_TILDE] = ACTIONS(1925), + [anon_sym_EQ_EQ] = ACTIONS(1925), + [anon_sym_LT] = ACTIONS(1925), + [anon_sym_GT] = ACTIONS(1925), + [anon_sym_GT_GT] = ACTIONS(1925), + [anon_sym_AMP_GT] = ACTIONS(1925), + [anon_sym_AMP_GT_GT] = ACTIONS(1925), + [anon_sym_LT_AMP] = ACTIONS(1925), + [anon_sym_GT_AMP] = ACTIONS(1925), + [anon_sym_LT_LT] = ACTIONS(1925), + [anon_sym_LT_LT_DASH] = ACTIONS(1925), + [anon_sym_LT_LT_LT] = ACTIONS(1925), + [sym__special_characters] = ACTIONS(1925), + [anon_sym_DQUOTE] = ACTIONS(1925), + [anon_sym_DOLLAR] = ACTIONS(1925), + [sym_raw_string] = ACTIONS(1925), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1925), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1925), + [anon_sym_BQUOTE] = ACTIONS(1925), + [anon_sym_LT_LPAREN] = ACTIONS(1925), + [anon_sym_GT_LPAREN] = ACTIONS(1925), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1897), - [anon_sym_SEMI] = ACTIONS(1897), - [anon_sym_LF] = ACTIONS(1897), - [anon_sym_AMP] = ACTIONS(1897), + [sym_word] = ACTIONS(1925), + [anon_sym_SEMI] = ACTIONS(1925), + [anon_sym_LF] = ACTIONS(1925), + [anon_sym_AMP] = ACTIONS(1925), }, [792] = { [sym_concatenation] = STATE(1439), @@ -31708,57 +31861,58 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(2958), + [sym__special_characters] = ACTIONS(2960), + [anon_sym_DQUOTE] = ACTIONS(1952), + [anon_sym_DOLLAR] = ACTIONS(1954), + [sym_raw_string] = ACTIONS(2962), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), + [anon_sym_BQUOTE] = ACTIONS(1962), + [anon_sym_LT_LPAREN] = ACTIONS(1964), + [anon_sym_GT_LPAREN] = ACTIONS(1964), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2918), + [sym_word] = ACTIONS(2964), }, [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_file_descriptor] = ACTIONS(1968), + [sym__concat] = ACTIONS(1968), + [anon_sym_PIPE] = ACTIONS(1970), + [anon_sym_RPAREN] = ACTIONS(1970), + [anon_sym_SEMI_SEMI] = ACTIONS(1970), + [anon_sym_PIPE_AMP] = ACTIONS(1970), + [anon_sym_AMP_AMP] = ACTIONS(1970), + [anon_sym_PIPE_PIPE] = ACTIONS(1970), + [anon_sym_EQ_TILDE] = ACTIONS(1970), + [anon_sym_EQ_EQ] = ACTIONS(1970), + [anon_sym_LT] = ACTIONS(1970), + [anon_sym_GT] = ACTIONS(1970), + [anon_sym_GT_GT] = ACTIONS(1970), + [anon_sym_AMP_GT] = ACTIONS(1970), + [anon_sym_AMP_GT_GT] = ACTIONS(1970), + [anon_sym_LT_AMP] = ACTIONS(1970), + [anon_sym_GT_AMP] = ACTIONS(1970), + [anon_sym_LT_LT] = ACTIONS(1970), + [anon_sym_LT_LT_DASH] = ACTIONS(1970), + [anon_sym_LT_LT_LT] = ACTIONS(1970), + [sym__special_characters] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1970), + [anon_sym_DOLLAR] = ACTIONS(1970), + [sym_raw_string] = ACTIONS(1970), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1970), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1970), + [anon_sym_BQUOTE] = ACTIONS(1970), + [anon_sym_LT_LPAREN] = ACTIONS(1970), + [anon_sym_GT_LPAREN] = ACTIONS(1970), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1942), - [anon_sym_SEMI] = ACTIONS(1942), - [anon_sym_LF] = ACTIONS(1942), - [anon_sym_AMP] = ACTIONS(1942), + [sym_word] = ACTIONS(1970), + [anon_sym_SEMI] = ACTIONS(1970), + [anon_sym_LF] = ACTIONS(1970), + [anon_sym_AMP] = ACTIONS(1970), }, [794] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(2920), + [sym_regex_without_right_brace] = ACTIONS(2966), }, [795] = { [sym_concatenation] = STATE(451), @@ -31769,29 +31923,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(2968), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [796] = { - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(2924), + [anon_sym_LBRACK] = ACTIONS(836), + [anon_sym_EQ] = ACTIONS(2970), [sym_comment] = ACTIONS(56), }, [797] = { @@ -31803,26 +31957,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(2972), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(2974), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [798] = { [sym_concatenation] = STATE(451), @@ -31833,26 +31987,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(2976), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(2978), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [799] = { [sym_concatenation] = STATE(451), @@ -31863,65 +32017,66 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(2958), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(2980), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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_file_descriptor] = ACTIONS(2022), + [sym__concat] = ACTIONS(2022), + [anon_sym_PIPE] = ACTIONS(2024), + [anon_sym_RPAREN] = ACTIONS(2024), + [anon_sym_SEMI_SEMI] = ACTIONS(2024), + [anon_sym_PIPE_AMP] = ACTIONS(2024), + [anon_sym_AMP_AMP] = ACTIONS(2024), + [anon_sym_PIPE_PIPE] = ACTIONS(2024), + [anon_sym_EQ_TILDE] = ACTIONS(2024), + [anon_sym_EQ_EQ] = ACTIONS(2024), + [anon_sym_LT] = ACTIONS(2024), + [anon_sym_GT] = ACTIONS(2024), + [anon_sym_GT_GT] = ACTIONS(2024), + [anon_sym_AMP_GT] = ACTIONS(2024), + [anon_sym_AMP_GT_GT] = ACTIONS(2024), + [anon_sym_LT_AMP] = ACTIONS(2024), + [anon_sym_GT_AMP] = ACTIONS(2024), + [anon_sym_LT_LT] = ACTIONS(2024), + [anon_sym_LT_LT_DASH] = ACTIONS(2024), + [anon_sym_LT_LT_LT] = ACTIONS(2024), + [sym__special_characters] = ACTIONS(2024), + [anon_sym_DQUOTE] = ACTIONS(2024), + [anon_sym_DOLLAR] = ACTIONS(2024), + [sym_raw_string] = ACTIONS(2024), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2024), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2024), + [anon_sym_BQUOTE] = ACTIONS(2024), + [anon_sym_LT_LPAREN] = ACTIONS(2024), + [anon_sym_GT_LPAREN] = ACTIONS(2024), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1994), - [anon_sym_SEMI] = ACTIONS(1994), - [anon_sym_LF] = ACTIONS(1994), - [anon_sym_AMP] = ACTIONS(1994), + [sym_word] = ACTIONS(2024), + [anon_sym_SEMI] = ACTIONS(2024), + [anon_sym_LF] = ACTIONS(2024), + [anon_sym_AMP] = ACTIONS(2024), }, [801] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(2936), + [sym_regex_without_right_brace] = ACTIONS(2982), }, [802] = { [sym_concatenation] = STATE(451), @@ -31932,64 +32087,65 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(2984), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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_file_descriptor] = ACTIONS(2030), + [sym__concat] = ACTIONS(2030), + [anon_sym_PIPE] = ACTIONS(2032), + [anon_sym_RPAREN] = ACTIONS(2032), + [anon_sym_SEMI_SEMI] = ACTIONS(2032), + [anon_sym_PIPE_AMP] = ACTIONS(2032), + [anon_sym_AMP_AMP] = ACTIONS(2032), + [anon_sym_PIPE_PIPE] = ACTIONS(2032), + [anon_sym_EQ_TILDE] = ACTIONS(2032), + [anon_sym_EQ_EQ] = ACTIONS(2032), + [anon_sym_LT] = ACTIONS(2032), + [anon_sym_GT] = ACTIONS(2032), + [anon_sym_GT_GT] = ACTIONS(2032), + [anon_sym_AMP_GT] = ACTIONS(2032), + [anon_sym_AMP_GT_GT] = ACTIONS(2032), + [anon_sym_LT_AMP] = ACTIONS(2032), + [anon_sym_GT_AMP] = ACTIONS(2032), + [anon_sym_LT_LT] = ACTIONS(2032), + [anon_sym_LT_LT_DASH] = ACTIONS(2032), + [anon_sym_LT_LT_LT] = ACTIONS(2032), + [sym__special_characters] = ACTIONS(2032), + [anon_sym_DQUOTE] = ACTIONS(2032), + [anon_sym_DOLLAR] = ACTIONS(2032), + [sym_raw_string] = ACTIONS(2032), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2032), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2032), + [anon_sym_BQUOTE] = ACTIONS(2032), + [anon_sym_LT_LPAREN] = ACTIONS(2032), + [anon_sym_GT_LPAREN] = ACTIONS(2032), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2002), - [anon_sym_SEMI] = ACTIONS(2002), - [anon_sym_LF] = ACTIONS(2002), - [anon_sym_AMP] = ACTIONS(2002), + [sym_word] = ACTIONS(2032), + [anon_sym_SEMI] = ACTIONS(2032), + [anon_sym_LF] = ACTIONS(2032), + [anon_sym_AMP] = ACTIONS(2032), }, [804] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(2940), + [sym_regex_without_right_brace] = ACTIONS(2986), }, [805] = { [sym_concatenation] = STATE(451), @@ -32000,156 +32156,158 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(2958), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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_file_descriptor] = ACTIONS(2190), + [sym__concat] = ACTIONS(2190), + [anon_sym_PIPE] = ACTIONS(2192), + [anon_sym_RPAREN] = ACTIONS(2192), + [anon_sym_SEMI_SEMI] = ACTIONS(2192), + [anon_sym_PIPE_AMP] = ACTIONS(2192), + [anon_sym_AMP_AMP] = ACTIONS(2192), + [anon_sym_PIPE_PIPE] = ACTIONS(2192), + [anon_sym_EQ_TILDE] = ACTIONS(2192), + [anon_sym_EQ_EQ] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(2192), + [anon_sym_GT] = ACTIONS(2192), + [anon_sym_GT_GT] = ACTIONS(2192), + [anon_sym_AMP_GT] = ACTIONS(2192), + [anon_sym_AMP_GT_GT] = ACTIONS(2192), + [anon_sym_LT_AMP] = ACTIONS(2192), + [anon_sym_GT_AMP] = ACTIONS(2192), + [anon_sym_LT_LT] = ACTIONS(2192), + [anon_sym_LT_LT_DASH] = ACTIONS(2192), + [anon_sym_LT_LT_LT] = ACTIONS(2192), + [sym__special_characters] = ACTIONS(2192), + [anon_sym_DQUOTE] = ACTIONS(2192), + [anon_sym_DOLLAR] = ACTIONS(2192), + [sym_raw_string] = ACTIONS(2192), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2192), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2192), + [anon_sym_BQUOTE] = ACTIONS(2192), + [anon_sym_LT_LPAREN] = ACTIONS(2192), + [anon_sym_GT_LPAREN] = ACTIONS(2192), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2158), - [anon_sym_SEMI] = ACTIONS(2158), - [anon_sym_LF] = ACTIONS(2158), - [anon_sym_AMP] = ACTIONS(2158), + [sym_word] = ACTIONS(2192), + [anon_sym_SEMI] = ACTIONS(2192), + [anon_sym_LF] = ACTIONS(2192), + [anon_sym_AMP] = ACTIONS(2192), }, [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_file_descriptor] = ACTIONS(2396), + [sym__concat] = ACTIONS(2396), + [anon_sym_PIPE] = ACTIONS(2398), + [anon_sym_RPAREN] = ACTIONS(2398), + [anon_sym_SEMI_SEMI] = ACTIONS(2398), + [anon_sym_PIPE_AMP] = ACTIONS(2398), + [anon_sym_AMP_AMP] = ACTIONS(2398), + [anon_sym_PIPE_PIPE] = ACTIONS(2398), + [anon_sym_EQ_TILDE] = ACTIONS(2398), + [anon_sym_EQ_EQ] = ACTIONS(2398), + [anon_sym_LT] = ACTIONS(2398), + [anon_sym_GT] = ACTIONS(2398), + [anon_sym_GT_GT] = ACTIONS(2398), + [anon_sym_AMP_GT] = ACTIONS(2398), + [anon_sym_AMP_GT_GT] = ACTIONS(2398), + [anon_sym_LT_AMP] = ACTIONS(2398), + [anon_sym_GT_AMP] = ACTIONS(2398), + [anon_sym_LT_LT] = ACTIONS(2398), + [anon_sym_LT_LT_DASH] = ACTIONS(2398), + [anon_sym_LT_LT_LT] = ACTIONS(2398), + [sym__special_characters] = ACTIONS(2398), + [anon_sym_DQUOTE] = ACTIONS(2398), + [anon_sym_DOLLAR] = ACTIONS(2398), + [sym_raw_string] = ACTIONS(2398), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2398), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2398), + [anon_sym_BQUOTE] = ACTIONS(2398), + [anon_sym_LT_LPAREN] = ACTIONS(2398), + [anon_sym_GT_LPAREN] = ACTIONS(2398), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2360), - [anon_sym_SEMI] = ACTIONS(2360), - [anon_sym_LF] = ACTIONS(2360), - [anon_sym_AMP] = ACTIONS(2360), + [sym_word] = ACTIONS(2398), + [anon_sym_SEMI] = ACTIONS(2398), + [anon_sym_LF] = ACTIONS(2398), + [anon_sym_AMP] = ACTIONS(2398), }, [808] = { [sym_compound_statement] = STATE(1454), - [anon_sym_LBRACE] = ACTIONS(480), + [anon_sym_LBRACE] = ACTIONS(484), [sym_comment] = ACTIONS(56), }, [809] = { - [anon_sym_esac] = ACTIONS(2942), - [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), + [anon_sym_esac] = ACTIONS(2988), + [anon_sym_PIPE] = ACTIONS(2988), + [anon_sym_RPAREN] = ACTIONS(2988), + [anon_sym_SEMI_SEMI] = ACTIONS(2988), + [anon_sym_PIPE_AMP] = ACTIONS(2988), + [anon_sym_AMP_AMP] = ACTIONS(2988), + [anon_sym_PIPE_PIPE] = ACTIONS(2988), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2942), - [anon_sym_LF] = ACTIONS(2942), - [anon_sym_AMP] = ACTIONS(2942), + [anon_sym_SEMI] = ACTIONS(2988), + [anon_sym_LF] = ACTIONS(2988), + [anon_sym_AMP] = ACTIONS(2988), }, [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), + [anon_sym_PIPE] = ACTIONS(548), + [anon_sym_RPAREN] = ACTIONS(2402), + [anon_sym_SEMI_SEMI] = ACTIONS(2402), + [anon_sym_PIPE_AMP] = ACTIONS(548), + [anon_sym_AMP_AMP] = ACTIONS(2402), + [anon_sym_PIPE_PIPE] = ACTIONS(2402), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2364), - [anon_sym_LF] = ACTIONS(2364), - [anon_sym_AMP] = ACTIONS(2364), + [anon_sym_SEMI] = ACTIONS(2402), + [anon_sym_LF] = ACTIONS(2402), + [anon_sym_AMP] = ACTIONS(2402), }, [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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(548), + [anon_sym_RPAREN] = ACTIONS(2402), + [anon_sym_SEMI_SEMI] = ACTIONS(2402), + [anon_sym_PIPE_AMP] = ACTIONS(548), + [anon_sym_AMP_AMP] = ACTIONS(2402), + [anon_sym_PIPE_PIPE] = ACTIONS(2402), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(382), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(382), + [anon_sym_LT_AMP] = ACTIONS(382), + [anon_sym_GT_AMP] = ACTIONS(382), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(382), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(382), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(382), + [anon_sym_BQUOTE] = ACTIONS(382), + [anon_sym_LT_LPAREN] = ACTIONS(382), + [anon_sym_GT_LPAREN] = ACTIONS(382), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(380), - [anon_sym_SEMI] = ACTIONS(2364), - [anon_sym_LF] = ACTIONS(2364), - [anon_sym_AMP] = ACTIONS(2364), + [sym_word] = ACTIONS(382), + [anon_sym_SEMI] = ACTIONS(2402), + [anon_sym_LF] = ACTIONS(2402), + [anon_sym_AMP] = ACTIONS(2402), }, [812] = { [sym_concatenation] = STATE(1199), @@ -32159,121 +32317,123 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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__special_characters] = ACTIONS(2990), + [anon_sym_DQUOTE] = ACTIONS(1525), + [anon_sym_DOLLAR] = ACTIONS(1527), + [sym_raw_string] = ACTIONS(2992), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1531), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1533), + [anon_sym_BQUOTE] = ACTIONS(1535), + [anon_sym_LT_LPAREN] = ACTIONS(1537), + [anon_sym_GT_LPAREN] = ACTIONS(1537), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2948), + [sym_word] = ACTIONS(2994), }, [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_file_descriptor] = ACTIONS(1553), + [sym__concat] = ACTIONS(524), + [anon_sym_PIPE] = ACTIONS(1555), + [anon_sym_RPAREN] = ACTIONS(1555), + [anon_sym_SEMI_SEMI] = ACTIONS(1555), + [anon_sym_PIPE_AMP] = ACTIONS(1555), + [anon_sym_AMP_AMP] = ACTIONS(1555), + [anon_sym_PIPE_PIPE] = ACTIONS(1555), + [anon_sym_EQ_TILDE] = ACTIONS(1555), + [anon_sym_EQ_EQ] = ACTIONS(1555), + [anon_sym_LT] = ACTIONS(1555), + [anon_sym_GT] = ACTIONS(1555), + [anon_sym_GT_GT] = ACTIONS(1555), + [anon_sym_AMP_GT] = ACTIONS(1555), + [anon_sym_AMP_GT_GT] = ACTIONS(1555), + [anon_sym_LT_AMP] = ACTIONS(1555), + [anon_sym_GT_AMP] = ACTIONS(1555), + [anon_sym_LT_LT] = ACTIONS(1555), + [anon_sym_LT_LT_DASH] = ACTIONS(1555), + [anon_sym_LT_LT_LT] = ACTIONS(1555), + [sym__special_characters] = ACTIONS(1555), + [anon_sym_DQUOTE] = ACTIONS(1555), + [anon_sym_DOLLAR] = ACTIONS(1555), + [sym_raw_string] = ACTIONS(1555), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1555), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1555), + [anon_sym_BQUOTE] = ACTIONS(1555), + [anon_sym_LT_LPAREN] = ACTIONS(1555), + [anon_sym_GT_LPAREN] = ACTIONS(1555), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1527), - [anon_sym_SEMI] = ACTIONS(1527), - [anon_sym_LF] = ACTIONS(1527), - [anon_sym_AMP] = ACTIONS(1527), + [sym_word] = ACTIONS(1555), + [anon_sym_SEMI] = ACTIONS(1555), + [anon_sym_LF] = ACTIONS(1555), + [anon_sym_AMP] = ACTIONS(1555), }, [814] = { [aux_sym_concatenation_repeat1] = STATE(294), - [sym_file_descriptor] = ACTIONS(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_file_descriptor] = ACTIONS(1559), + [sym__concat] = ACTIONS(524), + [anon_sym_PIPE] = ACTIONS(1561), + [anon_sym_RPAREN] = ACTIONS(1561), + [anon_sym_SEMI_SEMI] = ACTIONS(1561), + [anon_sym_PIPE_AMP] = ACTIONS(1561), + [anon_sym_AMP_AMP] = ACTIONS(1561), + [anon_sym_PIPE_PIPE] = ACTIONS(1561), + [anon_sym_EQ_TILDE] = ACTIONS(1561), + [anon_sym_EQ_EQ] = ACTIONS(1561), + [anon_sym_LT] = ACTIONS(1561), + [anon_sym_GT] = ACTIONS(1561), + [anon_sym_GT_GT] = ACTIONS(1561), + [anon_sym_AMP_GT] = ACTIONS(1561), + [anon_sym_AMP_GT_GT] = ACTIONS(1561), + [anon_sym_LT_AMP] = ACTIONS(1561), + [anon_sym_GT_AMP] = ACTIONS(1561), + [anon_sym_LT_LT] = ACTIONS(1561), + [anon_sym_LT_LT_DASH] = ACTIONS(1561), + [anon_sym_LT_LT_LT] = ACTIONS(1561), + [sym__special_characters] = ACTIONS(1561), + [anon_sym_DQUOTE] = ACTIONS(1561), + [anon_sym_DOLLAR] = ACTIONS(1561), + [sym_raw_string] = ACTIONS(1561), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1561), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1561), + [anon_sym_BQUOTE] = ACTIONS(1561), + [anon_sym_LT_LPAREN] = ACTIONS(1561), + [anon_sym_GT_LPAREN] = ACTIONS(1561), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1533), - [anon_sym_LF] = ACTIONS(1533), - [anon_sym_AMP] = ACTIONS(1533), + [sym_word] = ACTIONS(1561), + [anon_sym_SEMI] = ACTIONS(1561), + [anon_sym_LF] = ACTIONS(1561), + [anon_sym_AMP] = ACTIONS(1561), }, [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_file_descriptor] = ACTIONS(754), + [sym__concat] = ACTIONS(2996), + [anon_sym_PIPE] = ACTIONS(2412), + [anon_sym_RPAREN] = ACTIONS(2412), + [anon_sym_SEMI_SEMI] = ACTIONS(2412), + [anon_sym_PIPE_AMP] = ACTIONS(2412), + [anon_sym_AMP_AMP] = ACTIONS(2412), + [anon_sym_PIPE_PIPE] = ACTIONS(2412), + [anon_sym_LT] = ACTIONS(2412), + [anon_sym_GT] = ACTIONS(2412), + [anon_sym_GT_GT] = ACTIONS(2412), + [anon_sym_AMP_GT] = ACTIONS(2412), + [anon_sym_AMP_GT_GT] = ACTIONS(2412), + [anon_sym_LT_AMP] = ACTIONS(2412), + [anon_sym_GT_AMP] = ACTIONS(2412), + [anon_sym_LT_LT] = ACTIONS(2412), + [anon_sym_LT_LT_DASH] = ACTIONS(2412), + [anon_sym_LT_LT_LT] = ACTIONS(2412), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2374), - [anon_sym_LF] = ACTIONS(2374), - [anon_sym_AMP] = ACTIONS(2374), + [anon_sym_SEMI] = ACTIONS(2412), + [anon_sym_LF] = ACTIONS(2412), + [anon_sym_AMP] = ACTIONS(2412), }, [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_DQUOTE] = ACTIONS(2998), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -32282,57 +32442,58 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(182), }, [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_string] = STATE(1462), + [anon_sym_DQUOTE] = ACTIONS(1525), + [anon_sym_DOLLAR] = ACTIONS(3000), + [sym_raw_string] = ACTIONS(3002), + [anon_sym_POUND] = ACTIONS(3000), + [anon_sym_DASH] = ACTIONS(3000), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3004), + [anon_sym_STAR] = ACTIONS(3000), + [anon_sym_AT] = ACTIONS(3000), + [anon_sym_QMARK] = ACTIONS(3000), + [anon_sym_0] = ACTIONS(3006), + [anon_sym__] = ACTIONS(3006), }, [818] = { [aux_sym_concatenation_repeat1] = STATE(1458), - [sym_file_descriptor] = ACTIONS(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), - [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_file_descriptor] = ACTIONS(770), + [sym__concat] = ACTIONS(2996), + [anon_sym_PIPE] = ACTIONS(2424), + [anon_sym_RPAREN] = ACTIONS(2424), + [anon_sym_SEMI_SEMI] = ACTIONS(2424), + [anon_sym_PIPE_AMP] = ACTIONS(2424), + [anon_sym_AMP_AMP] = ACTIONS(2424), + [anon_sym_PIPE_PIPE] = ACTIONS(2424), + [anon_sym_LT] = ACTIONS(2424), + [anon_sym_GT] = ACTIONS(2424), + [anon_sym_GT_GT] = ACTIONS(2424), + [anon_sym_AMP_GT] = ACTIONS(2424), + [anon_sym_AMP_GT_GT] = ACTIONS(2424), + [anon_sym_LT_AMP] = ACTIONS(2424), + [anon_sym_GT_AMP] = ACTIONS(2424), + [anon_sym_LT_LT] = ACTIONS(2424), + [anon_sym_LT_LT_DASH] = ACTIONS(2424), + [anon_sym_LT_LT_LT] = ACTIONS(2424), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2384), - [anon_sym_LF] = ACTIONS(2384), - [anon_sym_AMP] = ACTIONS(2384), + [anon_sym_SEMI] = ACTIONS(2424), + [anon_sym_LF] = ACTIONS(2424), + [anon_sym_AMP] = ACTIONS(2424), }, [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_variable_name] = ACTIONS(3008), + [anon_sym_DOLLAR] = ACTIONS(3010), + [anon_sym_POUND] = ACTIONS(3012), + [anon_sym_DASH] = ACTIONS(3010), [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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3014), + [anon_sym_STAR] = ACTIONS(3010), + [anon_sym_AT] = ACTIONS(3010), + [anon_sym_QMARK] = ACTIONS(3010), + [anon_sym_0] = ACTIONS(3016), + [anon_sym__] = ACTIONS(3016), }, [820] = { [sym_for_statement] = STATE(1469), @@ -32360,22 +32521,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(264), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(268), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -32383,17 +32544,17 @@ 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(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__special_characters] = ACTIONS(286), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(300), + [sym_word] = ACTIONS(302), }, [821] = { [sym_for_statement] = STATE(1471), @@ -32421,22 +32582,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(304), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(306), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(308), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_LBRACK_LBRACK] = ACTIONS(312), + [anon_sym_declare] = ACTIONS(314), + [anon_sym_typeset] = ACTIONS(314), + [anon_sym_export] = ACTIONS(314), + [anon_sym_readonly] = ACTIONS(314), + [anon_sym_local] = ACTIONS(314), + [anon_sym_unset] = ACTIONS(316), + [anon_sym_unsetenv] = ACTIONS(316), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -32444,17 +32605,17 @@ 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(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__special_characters] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [anon_sym_DOLLAR] = ACTIONS(322), + [sym_raw_string] = ACTIONS(324), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), + [anon_sym_BQUOTE] = ACTIONS(330), + [anon_sym_LT_LPAREN] = ACTIONS(332), + [anon_sym_GT_LPAREN] = ACTIONS(332), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(332), + [sym_word] = ACTIONS(334), }, [822] = { [sym_for_statement] = STATE(1473), @@ -32482,22 +32643,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(264), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(268), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -32505,121 +32666,121 @@ 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(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__special_characters] = ACTIONS(286), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(300), + [sym_word] = ACTIONS(302), }, [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_file_descriptor] = ACTIONS(2452), + [sym__concat] = ACTIONS(2996), + [anon_sym_PIPE] = ACTIONS(2454), + [anon_sym_RPAREN] = ACTIONS(2454), + [anon_sym_SEMI_SEMI] = ACTIONS(2454), + [anon_sym_PIPE_AMP] = ACTIONS(2454), + [anon_sym_AMP_AMP] = ACTIONS(2454), + [anon_sym_PIPE_PIPE] = ACTIONS(2454), + [anon_sym_LT] = ACTIONS(2454), + [anon_sym_GT] = ACTIONS(2454), + [anon_sym_GT_GT] = ACTIONS(2454), + [anon_sym_AMP_GT] = ACTIONS(2454), + [anon_sym_AMP_GT_GT] = ACTIONS(2454), + [anon_sym_LT_AMP] = ACTIONS(2454), + [anon_sym_GT_AMP] = ACTIONS(2454), + [anon_sym_LT_LT] = ACTIONS(2454), + [anon_sym_LT_LT_DASH] = ACTIONS(2454), + [anon_sym_LT_LT_LT] = ACTIONS(2454), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2414), - [anon_sym_LF] = ACTIONS(2414), - [anon_sym_AMP] = ACTIONS(2414), + [anon_sym_SEMI] = ACTIONS(2454), + [anon_sym_LF] = ACTIONS(2454), + [anon_sym_AMP] = ACTIONS(2454), }, [824] = { [aux_sym_concatenation_repeat1] = STATE(1458), - [sym_file_descriptor] = ACTIONS(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_file_descriptor] = ACTIONS(2456), + [sym__concat] = ACTIONS(2996), + [anon_sym_PIPE] = ACTIONS(2458), + [anon_sym_RPAREN] = ACTIONS(2458), + [anon_sym_SEMI_SEMI] = ACTIONS(2458), + [anon_sym_PIPE_AMP] = ACTIONS(2458), + [anon_sym_AMP_AMP] = ACTIONS(2458), + [anon_sym_PIPE_PIPE] = ACTIONS(2458), + [anon_sym_LT] = ACTIONS(2458), + [anon_sym_GT] = ACTIONS(2458), + [anon_sym_GT_GT] = ACTIONS(2458), + [anon_sym_AMP_GT] = ACTIONS(2458), + [anon_sym_AMP_GT_GT] = ACTIONS(2458), + [anon_sym_LT_AMP] = ACTIONS(2458), + [anon_sym_GT_AMP] = ACTIONS(2458), + [anon_sym_LT_LT] = ACTIONS(2458), + [anon_sym_LT_LT_DASH] = ACTIONS(2458), + [anon_sym_LT_LT_LT] = ACTIONS(2458), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_LF] = ACTIONS(2418), - [anon_sym_AMP] = ACTIONS(2418), + [anon_sym_SEMI] = ACTIONS(2458), + [anon_sym_LF] = ACTIONS(2458), + [anon_sym_AMP] = ACTIONS(2458), }, [825] = { [sym_file_redirect] = STATE(207), [sym_heredoc_redirect] = STATE(207), [sym_herestring_redirect] = STATE(207), [aux_sym_while_statement_repeat1] = STATE(825), - [sym_file_descriptor] = ACTIONS(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_file_descriptor] = ACTIONS(3018), + [anon_sym_PIPE] = ACTIONS(2463), + [anon_sym_RPAREN] = ACTIONS(2463), + [anon_sym_SEMI_SEMI] = ACTIONS(2463), + [anon_sym_PIPE_AMP] = ACTIONS(2463), + [anon_sym_AMP_AMP] = ACTIONS(2463), + [anon_sym_PIPE_PIPE] = ACTIONS(2463), + [anon_sym_LT] = ACTIONS(3021), + [anon_sym_GT] = ACTIONS(3021), + [anon_sym_GT_GT] = ACTIONS(3021), + [anon_sym_AMP_GT] = ACTIONS(3021), + [anon_sym_AMP_GT_GT] = ACTIONS(3021), + [anon_sym_LT_AMP] = ACTIONS(3021), + [anon_sym_GT_AMP] = ACTIONS(3021), + [anon_sym_LT_LT] = ACTIONS(2468), + [anon_sym_LT_LT_DASH] = ACTIONS(2468), + [anon_sym_LT_LT_LT] = ACTIONS(3024), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2423), - [anon_sym_LF] = ACTIONS(2423), - [anon_sym_AMP] = ACTIONS(2423), + [anon_sym_SEMI] = ACTIONS(2463), + [anon_sym_LF] = ACTIONS(2463), + [anon_sym_AMP] = ACTIONS(2463), }, [826] = { [sym_file_redirect] = STATE(207), [sym_heredoc_redirect] = STATE(207), [sym_herestring_redirect] = STATE(207), [aux_sym_while_statement_repeat1] = STATE(825), - [sym_file_descriptor] = ACTIONS(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_file_descriptor] = ACTIONS(556), + [anon_sym_PIPE] = ACTIONS(2474), + [anon_sym_RPAREN] = ACTIONS(2474), + [anon_sym_SEMI_SEMI] = ACTIONS(2474), + [anon_sym_PIPE_AMP] = ACTIONS(2474), + [anon_sym_AMP_AMP] = ACTIONS(2474), + [anon_sym_PIPE_PIPE] = ACTIONS(2474), + [anon_sym_LT] = ACTIONS(560), + [anon_sym_GT] = ACTIONS(560), + [anon_sym_GT_GT] = ACTIONS(560), + [anon_sym_AMP_GT] = ACTIONS(560), + [anon_sym_AMP_GT_GT] = ACTIONS(560), + [anon_sym_LT_AMP] = ACTIONS(560), + [anon_sym_GT_AMP] = ACTIONS(560), + [anon_sym_LT_LT] = ACTIONS(360), + [anon_sym_LT_LT_DASH] = ACTIONS(360), + [anon_sym_LT_LT_LT] = ACTIONS(562), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2434), - [anon_sym_LF] = ACTIONS(2434), - [anon_sym_AMP] = ACTIONS(2434), + [anon_sym_SEMI] = ACTIONS(2474), + [anon_sym_LF] = ACTIONS(2474), + [anon_sym_AMP] = ACTIONS(2474), }, [827] = { [sym_concatenation] = STATE(208), @@ -32630,76 +32791,77 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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_file_descriptor] = ACTIONS(1559), + [anon_sym_PIPE] = ACTIONS(1561), + [anon_sym_RPAREN] = ACTIONS(1561), + [anon_sym_SEMI_SEMI] = ACTIONS(1561), + [anon_sym_PIPE_AMP] = ACTIONS(1561), + [anon_sym_AMP_AMP] = ACTIONS(1561), + [anon_sym_PIPE_PIPE] = ACTIONS(1561), + [anon_sym_EQ_TILDE] = ACTIONS(3027), + [anon_sym_EQ_EQ] = ACTIONS(3027), + [anon_sym_LT] = ACTIONS(1561), + [anon_sym_GT] = ACTIONS(1561), + [anon_sym_GT_GT] = ACTIONS(1561), + [anon_sym_AMP_GT] = ACTIONS(1561), + [anon_sym_AMP_GT_GT] = ACTIONS(1561), + [anon_sym_LT_AMP] = ACTIONS(1561), + [anon_sym_GT_AMP] = ACTIONS(1561), + [anon_sym_LT_LT] = ACTIONS(1561), + [anon_sym_LT_LT_DASH] = ACTIONS(1561), + [anon_sym_LT_LT_LT] = ACTIONS(1561), + [sym__special_characters] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3033), + [anon_sym_DOLLAR] = ACTIONS(3036), + [sym_raw_string] = ACTIONS(3039), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3042), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3045), + [anon_sym_BQUOTE] = ACTIONS(3048), + [anon_sym_LT_LPAREN] = ACTIONS(3051), + [anon_sym_GT_LPAREN] = ACTIONS(3051), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2991), - [anon_sym_SEMI] = ACTIONS(1533), - [anon_sym_LF] = ACTIONS(1533), - [anon_sym_AMP] = ACTIONS(1533), + [sym_word] = ACTIONS(3039), + [anon_sym_SEMI] = ACTIONS(1561), + [anon_sym_LF] = ACTIONS(1561), + [anon_sym_AMP] = ACTIONS(1561), }, [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_file_descriptor] = ACTIONS(1100), + [sym_variable_name] = ACTIONS(1100), + [anon_sym_for] = ACTIONS(1102), + [anon_sym_while] = ACTIONS(1102), + [anon_sym_if] = ACTIONS(1102), + [anon_sym_case] = ACTIONS(1102), + [anon_sym_RPAREN] = ACTIONS(3054), + [anon_sym_function] = ACTIONS(1102), + [anon_sym_LPAREN] = ACTIONS(1100), + [anon_sym_LBRACK] = ACTIONS(1102), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1100), + [anon_sym_declare] = ACTIONS(1102), + [anon_sym_typeset] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(1102), + [anon_sym_readonly] = ACTIONS(1102), + [anon_sym_local] = ACTIONS(1102), + [anon_sym_unset] = ACTIONS(1102), + [anon_sym_unsetenv] = ACTIONS(1102), + [anon_sym_LT] = ACTIONS(1102), + [anon_sym_GT] = ACTIONS(1102), + [anon_sym_GT_GT] = ACTIONS(1100), + [anon_sym_AMP_GT] = ACTIONS(1102), + [anon_sym_AMP_GT_GT] = ACTIONS(1100), + [anon_sym_LT_AMP] = ACTIONS(1100), + [anon_sym_GT_AMP] = ACTIONS(1100), + [sym__special_characters] = ACTIONS(1104), + [anon_sym_DQUOTE] = ACTIONS(1100), + [anon_sym_DOLLAR] = ACTIONS(1102), + [sym_raw_string] = ACTIONS(1100), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1100), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1100), + [anon_sym_BQUOTE] = ACTIONS(1100), + [anon_sym_LT_LPAREN] = ACTIONS(1100), + [anon_sym_GT_LPAREN] = ACTIONS(1100), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1084), + [sym_word] = ACTIONS(1104), }, [829] = { [sym_file_redirect] = STATE(207), @@ -32714,87 +32876,91 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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_file_descriptor] = ACTIONS(556), + [anon_sym_PIPE] = ACTIONS(2474), + [anon_sym_RPAREN] = ACTIONS(2474), + [anon_sym_SEMI_SEMI] = ACTIONS(2474), + [anon_sym_PIPE_AMP] = ACTIONS(2474), + [anon_sym_AMP_AMP] = ACTIONS(2474), + [anon_sym_PIPE_PIPE] = ACTIONS(2474), + [anon_sym_EQ_TILDE] = ACTIONS(558), + [anon_sym_EQ_EQ] = ACTIONS(558), + [anon_sym_LT] = ACTIONS(560), + [anon_sym_GT] = ACTIONS(560), + [anon_sym_GT_GT] = ACTIONS(560), + [anon_sym_AMP_GT] = ACTIONS(560), + [anon_sym_AMP_GT_GT] = ACTIONS(560), + [anon_sym_LT_AMP] = ACTIONS(560), + [anon_sym_GT_AMP] = ACTIONS(560), + [anon_sym_LT_LT] = ACTIONS(360), + [anon_sym_LT_LT_DASH] = ACTIONS(360), + [anon_sym_LT_LT_LT] = ACTIONS(562), + [sym__special_characters] = ACTIONS(564), + [anon_sym_DQUOTE] = ACTIONS(566), + [anon_sym_DOLLAR] = ACTIONS(568), + [sym_raw_string] = ACTIONS(570), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(572), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(574), + [anon_sym_BQUOTE] = ACTIONS(576), + [anon_sym_LT_LPAREN] = ACTIONS(578), + [anon_sym_GT_LPAREN] = ACTIONS(578), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(564), - [anon_sym_SEMI] = ACTIONS(2434), - [anon_sym_LF] = ACTIONS(2434), - [anon_sym_AMP] = ACTIONS(2434), + [sym_word] = ACTIONS(570), + [anon_sym_SEMI] = ACTIONS(2474), + [anon_sym_LF] = ACTIONS(2474), + [anon_sym_AMP] = ACTIONS(2474), }, [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__concat] = ACTIONS(1886), + [anon_sym_EQ_TILDE] = ACTIONS(3056), + [anon_sym_EQ_EQ] = ACTIONS(3056), + [anon_sym_RBRACK] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(1888), + [anon_sym_DQUOTE] = ACTIONS(1886), + [anon_sym_DOLLAR] = ACTIONS(3056), + [sym_raw_string] = ACTIONS(1886), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1886), + [anon_sym_BQUOTE] = ACTIONS(1886), + [anon_sym_LT_LPAREN] = ACTIONS(1886), + [anon_sym_GT_LPAREN] = ACTIONS(1886), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1860), + [sym_word] = ACTIONS(1888), }, [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__concat] = ACTIONS(3058), + [anon_sym_EQ_TILDE] = ACTIONS(3056), + [anon_sym_EQ_EQ] = ACTIONS(3056), + [anon_sym_RBRACK] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(1888), + [anon_sym_DQUOTE] = ACTIONS(1886), + [anon_sym_DOLLAR] = ACTIONS(3056), + [sym_raw_string] = ACTIONS(1886), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1886), + [anon_sym_BQUOTE] = ACTIONS(1886), + [anon_sym_LT_LPAREN] = ACTIONS(1886), + [anon_sym_GT_LPAREN] = ACTIONS(1886), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1860), + [sym_word] = ACTIONS(1888), }, [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__concat] = ACTIONS(1923), + [anon_sym_EQ_TILDE] = ACTIONS(3061), + [anon_sym_EQ_EQ] = ACTIONS(3061), + [anon_sym_RBRACK] = ACTIONS(1923), + [sym__special_characters] = ACTIONS(1925), + [anon_sym_DQUOTE] = ACTIONS(1923), + [anon_sym_DOLLAR] = ACTIONS(3061), + [sym_raw_string] = ACTIONS(1923), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1923), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1923), + [anon_sym_BQUOTE] = ACTIONS(1923), + [anon_sym_LT_LPAREN] = ACTIONS(1923), + [anon_sym_GT_LPAREN] = ACTIONS(1923), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1897), + [sym_word] = ACTIONS(1925), }, [833] = { [sym_concatenation] = STATE(1480), @@ -32804,38 +32970,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(3063), + [sym__special_characters] = ACTIONS(3065), + [anon_sym_DQUOTE] = ACTIONS(1952), + [anon_sym_DOLLAR] = ACTIONS(1954), + [sym_raw_string] = ACTIONS(3067), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), + [anon_sym_BQUOTE] = ACTIONS(1962), + [anon_sym_LT_LPAREN] = ACTIONS(1964), + [anon_sym_GT_LPAREN] = ACTIONS(1964), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3021), + [sym_word] = ACTIONS(3069), }, [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__concat] = ACTIONS(1968), + [anon_sym_EQ_TILDE] = ACTIONS(3071), + [anon_sym_EQ_EQ] = ACTIONS(3071), + [anon_sym_RBRACK] = ACTIONS(1968), + [sym__special_characters] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1968), + [anon_sym_DOLLAR] = ACTIONS(3071), + [sym_raw_string] = ACTIONS(1968), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1968), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1968), + [anon_sym_BQUOTE] = ACTIONS(1968), + [anon_sym_LT_LPAREN] = ACTIONS(1968), + [anon_sym_GT_LPAREN] = ACTIONS(1968), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1942), + [sym_word] = ACTIONS(1970), }, [835] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(3025), + [sym_regex_without_right_brace] = ACTIONS(3073), }, [836] = { [sym_concatenation] = STATE(451), @@ -32846,29 +33013,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(3075), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [837] = { - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(3029), + [anon_sym_LBRACK] = ACTIONS(836), + [anon_sym_EQ] = ACTIONS(3077), [sym_comment] = ACTIONS(56), }, [838] = { @@ -32880,26 +33047,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(3079), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(3081), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [839] = { [sym_concatenation] = STATE(451), @@ -32910,26 +33077,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(3083), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(3085), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [840] = { [sym_concatenation] = STATE(451), @@ -32940,46 +33107,47 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(3063), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(3087), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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__concat] = ACTIONS(2022), + [anon_sym_EQ_TILDE] = ACTIONS(3089), + [anon_sym_EQ_EQ] = ACTIONS(3089), + [anon_sym_RBRACK] = ACTIONS(2022), + [sym__special_characters] = ACTIONS(2024), + [anon_sym_DQUOTE] = ACTIONS(2022), + [anon_sym_DOLLAR] = ACTIONS(3089), + [sym_raw_string] = ACTIONS(2022), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2022), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2022), + [anon_sym_BQUOTE] = ACTIONS(2022), + [anon_sym_LT_LPAREN] = ACTIONS(2022), + [anon_sym_GT_LPAREN] = ACTIONS(2022), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1994), + [sym_word] = ACTIONS(2024), }, [842] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(3043), + [sym_regex_without_right_brace] = ACTIONS(3091), }, [843] = { [sym_concatenation] = STATE(451), @@ -32990,45 +33158,46 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(3093), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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__concat] = ACTIONS(2030), + [anon_sym_EQ_TILDE] = ACTIONS(3095), + [anon_sym_EQ_EQ] = ACTIONS(3095), + [anon_sym_RBRACK] = ACTIONS(2030), + [sym__special_characters] = ACTIONS(2032), + [anon_sym_DQUOTE] = ACTIONS(2030), + [anon_sym_DOLLAR] = ACTIONS(3095), + [sym_raw_string] = ACTIONS(2030), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2030), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2030), + [anon_sym_BQUOTE] = ACTIONS(2030), + [anon_sym_LT_LPAREN] = ACTIONS(2030), + [anon_sym_GT_LPAREN] = ACTIONS(2030), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2002), + [sym_word] = ACTIONS(2032), }, [845] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(3049), + [sym_regex_without_right_brace] = ACTIONS(3097), }, [846] = { [sym_concatenation] = STATE(451), @@ -33039,132 +33208,137 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(3063), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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__concat] = ACTIONS(2190), + [anon_sym_EQ_TILDE] = ACTIONS(3099), + [anon_sym_EQ_EQ] = ACTIONS(3099), + [anon_sym_RBRACK] = ACTIONS(2190), + [sym__special_characters] = ACTIONS(2192), + [anon_sym_DQUOTE] = ACTIONS(2190), + [anon_sym_DOLLAR] = ACTIONS(3099), + [sym_raw_string] = ACTIONS(2190), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2190), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2190), + [anon_sym_BQUOTE] = ACTIONS(2190), + [anon_sym_LT_LPAREN] = ACTIONS(2190), + [anon_sym_GT_LPAREN] = ACTIONS(2190), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2158), + [sym_word] = ACTIONS(2192), }, [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__concat] = ACTIONS(2396), + [anon_sym_EQ_TILDE] = ACTIONS(3101), + [anon_sym_EQ_EQ] = ACTIONS(3101), + [anon_sym_RBRACK] = ACTIONS(2396), + [sym__special_characters] = ACTIONS(2398), + [anon_sym_DQUOTE] = ACTIONS(2396), + [anon_sym_DOLLAR] = ACTIONS(3101), + [sym_raw_string] = ACTIONS(2396), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2396), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2396), + [anon_sym_BQUOTE] = ACTIONS(2396), + [anon_sym_LT_LPAREN] = ACTIONS(2396), + [anon_sym_GT_LPAREN] = ACTIONS(2396), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2360), + [sym_word] = ACTIONS(2398), }, [849] = { [sym_file_redirect] = STATE(207), [sym_heredoc_redirect] = STATE(207), [sym_herestring_redirect] = STATE(207), [aux_sym_while_statement_repeat1] = STATE(624), - [sym_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_file_descriptor] = ACTIONS(352), + [anon_sym_PIPE] = ACTIONS(3103), + [anon_sym_SEMI_SEMI] = ACTIONS(3103), + [anon_sym_PIPE_AMP] = ACTIONS(3103), + [anon_sym_AMP_AMP] = ACTIONS(3103), + [anon_sym_PIPE_PIPE] = ACTIONS(3103), + [anon_sym_LT] = ACTIONS(358), + [anon_sym_GT] = ACTIONS(358), + [anon_sym_GT_GT] = ACTIONS(358), + [anon_sym_AMP_GT] = ACTIONS(358), + [anon_sym_AMP_GT_GT] = ACTIONS(358), + [anon_sym_LT_AMP] = ACTIONS(358), + [anon_sym_GT_AMP] = ACTIONS(358), + [anon_sym_LT_LT] = ACTIONS(360), + [anon_sym_LT_LT_DASH] = ACTIONS(360), + [anon_sym_LT_LT_LT] = ACTIONS(362), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3055), - [anon_sym_LF] = ACTIONS(3055), - [anon_sym_AMP] = ACTIONS(3055), + [anon_sym_SEMI] = ACTIONS(3103), + [anon_sym_LF] = ACTIONS(3103), + [anon_sym_AMP] = ACTIONS(3103), }, [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__concat] = ACTIONS(1886), + [anon_sym_EQ_TILDE] = ACTIONS(3056), + [anon_sym_EQ_EQ] = ACTIONS(3056), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(1888), + [anon_sym_DQUOTE] = ACTIONS(1886), + [anon_sym_DOLLAR] = ACTIONS(3056), + [sym_raw_string] = ACTIONS(1886), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1886), + [anon_sym_BQUOTE] = ACTIONS(1886), + [anon_sym_LT_LPAREN] = ACTIONS(1886), + [anon_sym_GT_LPAREN] = ACTIONS(1886), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1860), + [sym_word] = ACTIONS(1888), }, [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__concat] = ACTIONS(3105), + [anon_sym_EQ_TILDE] = ACTIONS(3056), + [anon_sym_EQ_EQ] = ACTIONS(3056), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(1888), + [anon_sym_DQUOTE] = ACTIONS(1886), + [anon_sym_DOLLAR] = ACTIONS(3056), + [sym_raw_string] = ACTIONS(1886), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1886), + [anon_sym_BQUOTE] = ACTIONS(1886), + [anon_sym_LT_LPAREN] = ACTIONS(1886), + [anon_sym_GT_LPAREN] = ACTIONS(1886), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1860), + [sym_word] = ACTIONS(1888), }, [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__concat] = ACTIONS(1923), + [anon_sym_EQ_TILDE] = ACTIONS(3061), + [anon_sym_EQ_EQ] = ACTIONS(3061), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1923), + [sym__special_characters] = ACTIONS(1925), + [anon_sym_DQUOTE] = ACTIONS(1923), + [anon_sym_DOLLAR] = ACTIONS(3061), + [sym_raw_string] = ACTIONS(1923), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1923), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1923), + [anon_sym_BQUOTE] = ACTIONS(1923), + [anon_sym_LT_LPAREN] = ACTIONS(1923), + [anon_sym_GT_LPAREN] = ACTIONS(1923), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1897), + [sym_word] = ACTIONS(1925), }, [853] = { [sym_concatenation] = STATE(1498), @@ -33174,38 +33348,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(3108), + [sym__special_characters] = ACTIONS(3110), + [anon_sym_DQUOTE] = ACTIONS(1952), + [anon_sym_DOLLAR] = ACTIONS(1954), + [sym_raw_string] = ACTIONS(3112), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), + [anon_sym_BQUOTE] = ACTIONS(1962), + [anon_sym_LT_LPAREN] = ACTIONS(1964), + [anon_sym_GT_LPAREN] = ACTIONS(1964), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3066), + [sym_word] = ACTIONS(3114), }, [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__concat] = ACTIONS(1968), + [anon_sym_EQ_TILDE] = ACTIONS(3071), + [anon_sym_EQ_EQ] = ACTIONS(3071), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1968), + [sym__special_characters] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1968), + [anon_sym_DOLLAR] = ACTIONS(3071), + [sym_raw_string] = ACTIONS(1968), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1968), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1968), + [anon_sym_BQUOTE] = ACTIONS(1968), + [anon_sym_LT_LPAREN] = ACTIONS(1968), + [anon_sym_GT_LPAREN] = ACTIONS(1968), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1942), + [sym_word] = ACTIONS(1970), }, [855] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(3068), + [sym_regex_without_right_brace] = ACTIONS(3116), }, [856] = { [sym_concatenation] = STATE(451), @@ -33216,29 +33391,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(3118), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [857] = { - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(3072), + [anon_sym_LBRACK] = ACTIONS(836), + [anon_sym_EQ] = ACTIONS(3120), [sym_comment] = ACTIONS(56), }, [858] = { @@ -33250,26 +33425,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(3122), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(3124), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [859] = { [sym_concatenation] = STATE(451), @@ -33280,26 +33455,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(3126), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(3128), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [860] = { [sym_concatenation] = STATE(451), @@ -33310,46 +33485,47 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(3108), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(3130), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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__concat] = ACTIONS(2022), + [anon_sym_EQ_TILDE] = ACTIONS(3089), + [anon_sym_EQ_EQ] = ACTIONS(3089), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2022), + [sym__special_characters] = ACTIONS(2024), + [anon_sym_DQUOTE] = ACTIONS(2022), + [anon_sym_DOLLAR] = ACTIONS(3089), + [sym_raw_string] = ACTIONS(2022), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2022), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2022), + [anon_sym_BQUOTE] = ACTIONS(2022), + [anon_sym_LT_LPAREN] = ACTIONS(2022), + [anon_sym_GT_LPAREN] = ACTIONS(2022), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1994), + [sym_word] = ACTIONS(2024), }, [862] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(3084), + [sym_regex_without_right_brace] = ACTIONS(3132), }, [863] = { [sym_concatenation] = STATE(451), @@ -33360,45 +33536,46 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(3134), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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__concat] = ACTIONS(2030), + [anon_sym_EQ_TILDE] = ACTIONS(3095), + [anon_sym_EQ_EQ] = ACTIONS(3095), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2030), + [sym__special_characters] = ACTIONS(2032), + [anon_sym_DQUOTE] = ACTIONS(2030), + [anon_sym_DOLLAR] = ACTIONS(3095), + [sym_raw_string] = ACTIONS(2030), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2030), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2030), + [anon_sym_BQUOTE] = ACTIONS(2030), + [anon_sym_LT_LPAREN] = ACTIONS(2030), + [anon_sym_GT_LPAREN] = ACTIONS(2030), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2002), + [sym_word] = ACTIONS(2032), }, [865] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(3088), + [sym_regex_without_right_brace] = ACTIONS(3136), }, [866] = { [sym_concatenation] = STATE(451), @@ -33409,81 +33586,83 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(3108), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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__concat] = ACTIONS(2190), + [anon_sym_EQ_TILDE] = ACTIONS(3099), + [anon_sym_EQ_EQ] = ACTIONS(3099), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2190), + [sym__special_characters] = ACTIONS(2192), + [anon_sym_DQUOTE] = ACTIONS(2190), + [anon_sym_DOLLAR] = ACTIONS(3099), + [sym_raw_string] = ACTIONS(2190), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2190), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2190), + [anon_sym_BQUOTE] = ACTIONS(2190), + [anon_sym_LT_LPAREN] = ACTIONS(2190), + [anon_sym_GT_LPAREN] = ACTIONS(2190), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2158), + [sym_word] = ACTIONS(2192), }, [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__concat] = ACTIONS(2396), + [anon_sym_EQ_TILDE] = ACTIONS(3101), + [anon_sym_EQ_EQ] = ACTIONS(3101), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2396), + [sym__special_characters] = ACTIONS(2398), + [anon_sym_DQUOTE] = ACTIONS(2396), + [anon_sym_DOLLAR] = ACTIONS(3101), + [sym_raw_string] = ACTIONS(2396), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2396), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2396), + [anon_sym_BQUOTE] = ACTIONS(2396), + [anon_sym_LT_LPAREN] = ACTIONS(2396), + [anon_sym_GT_LPAREN] = ACTIONS(2396), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2360), + [sym_word] = ACTIONS(2398), }, [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_variable_name] = ACTIONS(1277), + [anon_sym_PIPE] = ACTIONS(1279), + [anon_sym_RPAREN] = ACTIONS(1279), + [anon_sym_SEMI_SEMI] = ACTIONS(1279), + [anon_sym_PIPE_AMP] = ACTIONS(1279), + [anon_sym_AMP_AMP] = ACTIONS(1279), + [anon_sym_PIPE_PIPE] = ACTIONS(1279), + [sym__special_characters] = ACTIONS(1279), + [anon_sym_DQUOTE] = ACTIONS(1279), + [anon_sym_DOLLAR] = ACTIONS(1279), + [sym_raw_string] = ACTIONS(1279), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1279), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1279), + [anon_sym_BQUOTE] = ACTIONS(1279), + [anon_sym_LT_LPAREN] = ACTIONS(1279), + [anon_sym_GT_LPAREN] = ACTIONS(1279), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1257), - [sym_word] = ACTIONS(1257), - [anon_sym_SEMI] = ACTIONS(1257), - [anon_sym_LF] = ACTIONS(1257), - [anon_sym_AMP] = ACTIONS(1257), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1279), + [sym_word] = ACTIONS(1279), + [anon_sym_SEMI] = ACTIONS(1279), + [anon_sym_LF] = ACTIONS(1279), + [anon_sym_AMP] = ACTIONS(1279), }, [870] = { [sym_concatenation] = STATE(660), @@ -33494,141 +33673,141 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RPAREN] = ACTIONS(3138), + [sym__special_characters] = ACTIONS(1283), + [anon_sym_DQUOTE] = ACTIONS(1285), + [anon_sym_DOLLAR] = ACTIONS(1287), + [sym_raw_string] = ACTIONS(1289), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1291), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1293), + [anon_sym_BQUOTE] = ACTIONS(1295), + [anon_sym_LT_LPAREN] = ACTIONS(1297), + [anon_sym_GT_LPAREN] = ACTIONS(1297), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1277), + [sym_word] = ACTIONS(1299), }, [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__concat] = ACTIONS(684), + [sym_variable_name] = ACTIONS(1301), + [anon_sym_PIPE] = ACTIONS(1305), + [anon_sym_SEMI_SEMI] = ACTIONS(1305), + [anon_sym_PIPE_AMP] = ACTIONS(1305), + [anon_sym_AMP_AMP] = ACTIONS(1305), + [anon_sym_PIPE_PIPE] = ACTIONS(1305), + [sym__special_characters] = ACTIONS(1305), + [anon_sym_DQUOTE] = ACTIONS(1305), + [anon_sym_DOLLAR] = ACTIONS(1305), + [sym_raw_string] = ACTIONS(1305), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1305), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1305), + [anon_sym_BQUOTE] = ACTIONS(1305), + [anon_sym_LT_LPAREN] = ACTIONS(1305), + [anon_sym_GT_LPAREN] = ACTIONS(1305), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1283), - [sym_word] = ACTIONS(1283), - [anon_sym_SEMI] = ACTIONS(1283), - [anon_sym_LF] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1283), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1305), + [sym_word] = ACTIONS(1305), + [anon_sym_SEMI] = ACTIONS(1305), + [anon_sym_LF] = ACTIONS(1305), + [anon_sym_AMP] = ACTIONS(1305), }, [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__concat] = ACTIONS(684), + [sym_variable_name] = ACTIONS(1277), + [anon_sym_PIPE] = ACTIONS(1279), + [anon_sym_SEMI_SEMI] = ACTIONS(1279), + [anon_sym_PIPE_AMP] = ACTIONS(1279), + [anon_sym_AMP_AMP] = ACTIONS(1279), + [anon_sym_PIPE_PIPE] = ACTIONS(1279), + [sym__special_characters] = ACTIONS(1279), + [anon_sym_DQUOTE] = ACTIONS(1279), + [anon_sym_DOLLAR] = ACTIONS(1279), + [sym_raw_string] = ACTIONS(1279), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1279), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1279), + [anon_sym_BQUOTE] = ACTIONS(1279), + [anon_sym_LT_LPAREN] = ACTIONS(1279), + [anon_sym_GT_LPAREN] = ACTIONS(1279), [sym_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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1279), + [sym_word] = ACTIONS(1279), + [anon_sym_SEMI] = ACTIONS(1279), + [anon_sym_LF] = ACTIONS(1279), + [anon_sym_AMP] = ACTIONS(1279), }, [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(1860), - [anon_sym_GT_LPAREN] = ACTIONS(1860), + [sym__concat] = ACTIONS(1886), + [sym_variable_name] = ACTIONS(1886), + [anon_sym_PIPE] = ACTIONS(1888), + [anon_sym_SEMI_SEMI] = ACTIONS(1888), + [anon_sym_PIPE_AMP] = ACTIONS(1888), + [anon_sym_AMP_AMP] = ACTIONS(1888), + [anon_sym_PIPE_PIPE] = ACTIONS(1888), + [sym__special_characters] = ACTIONS(1888), + [anon_sym_DQUOTE] = ACTIONS(1888), + [anon_sym_DOLLAR] = ACTIONS(1888), + [sym_raw_string] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1888), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1888), + [anon_sym_BQUOTE] = ACTIONS(1888), + [anon_sym_LT_LPAREN] = ACTIONS(1888), + [anon_sym_GT_LPAREN] = ACTIONS(1888), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1860), - [sym_word] = ACTIONS(1860), - [anon_sym_SEMI] = ACTIONS(1860), - [anon_sym_LF] = ACTIONS(1860), - [anon_sym_AMP] = ACTIONS(1860), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1888), + [sym_word] = ACTIONS(1888), + [anon_sym_SEMI] = ACTIONS(1888), + [anon_sym_LF] = ACTIONS(1888), + [anon_sym_AMP] = ACTIONS(1888), }, [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(1860), - [anon_sym_GT_LPAREN] = ACTIONS(1860), + [sym__concat] = ACTIONS(3140), + [sym_variable_name] = ACTIONS(1886), + [anon_sym_PIPE] = ACTIONS(1888), + [anon_sym_SEMI_SEMI] = ACTIONS(1888), + [anon_sym_PIPE_AMP] = ACTIONS(1888), + [anon_sym_AMP_AMP] = ACTIONS(1888), + [anon_sym_PIPE_PIPE] = ACTIONS(1888), + [sym__special_characters] = ACTIONS(1888), + [anon_sym_DQUOTE] = ACTIONS(1888), + [anon_sym_DOLLAR] = ACTIONS(1888), + [sym_raw_string] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1888), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1888), + [anon_sym_BQUOTE] = ACTIONS(1888), + [anon_sym_LT_LPAREN] = ACTIONS(1888), + [anon_sym_GT_LPAREN] = ACTIONS(1888), [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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1888), + [sym_word] = ACTIONS(1888), + [anon_sym_SEMI] = ACTIONS(1888), + [anon_sym_LF] = ACTIONS(1888), + [anon_sym_AMP] = ACTIONS(1888), }, [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__concat] = ACTIONS(1923), + [sym_variable_name] = ACTIONS(1923), + [anon_sym_PIPE] = ACTIONS(1925), + [anon_sym_SEMI_SEMI] = ACTIONS(1925), + [anon_sym_PIPE_AMP] = ACTIONS(1925), + [anon_sym_AMP_AMP] = ACTIONS(1925), + [anon_sym_PIPE_PIPE] = ACTIONS(1925), + [sym__special_characters] = ACTIONS(1925), + [anon_sym_DQUOTE] = ACTIONS(1925), + [anon_sym_DOLLAR] = ACTIONS(1925), + [sym_raw_string] = ACTIONS(1925), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1925), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1925), + [anon_sym_BQUOTE] = ACTIONS(1925), + [anon_sym_LT_LPAREN] = ACTIONS(1925), + [anon_sym_GT_LPAREN] = ACTIONS(1925), [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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1925), + [sym_word] = ACTIONS(1925), + [anon_sym_SEMI] = ACTIONS(1925), + [anon_sym_LF] = ACTIONS(1925), + [anon_sym_AMP] = ACTIONS(1925), }, [876] = { [sym_concatenation] = STATE(1518), @@ -33638,46 +33817,46 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(3143), + [sym__special_characters] = ACTIONS(3145), + [anon_sym_DQUOTE] = ACTIONS(1952), + [anon_sym_DOLLAR] = ACTIONS(1954), + [sym_raw_string] = ACTIONS(3147), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), + [anon_sym_BQUOTE] = ACTIONS(1962), + [anon_sym_LT_LPAREN] = ACTIONS(1964), + [anon_sym_GT_LPAREN] = ACTIONS(1964), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3101), + [sym_word] = ACTIONS(3149), }, [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__concat] = ACTIONS(1968), + [sym_variable_name] = ACTIONS(1968), + [anon_sym_PIPE] = ACTIONS(1970), + [anon_sym_SEMI_SEMI] = ACTIONS(1970), + [anon_sym_PIPE_AMP] = ACTIONS(1970), + [anon_sym_AMP_AMP] = ACTIONS(1970), + [anon_sym_PIPE_PIPE] = ACTIONS(1970), + [sym__special_characters] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1970), + [anon_sym_DOLLAR] = ACTIONS(1970), + [sym_raw_string] = ACTIONS(1970), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1970), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1970), + [anon_sym_BQUOTE] = ACTIONS(1970), + [anon_sym_LT_LPAREN] = ACTIONS(1970), + [anon_sym_GT_LPAREN] = ACTIONS(1970), [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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1970), + [sym_word] = ACTIONS(1970), + [anon_sym_SEMI] = ACTIONS(1970), + [anon_sym_LF] = ACTIONS(1970), + [anon_sym_AMP] = ACTIONS(1970), }, [878] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(3103), + [sym_regex_without_right_brace] = ACTIONS(3151), }, [879] = { [sym_concatenation] = STATE(451), @@ -33688,29 +33867,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(3153), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [880] = { - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(3107), + [anon_sym_LBRACK] = ACTIONS(836), + [anon_sym_EQ] = ACTIONS(3155), [sym_comment] = ACTIONS(56), }, [881] = { @@ -33722,26 +33901,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(3157), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(3159), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [882] = { [sym_concatenation] = STATE(451), @@ -33752,26 +33931,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(3161), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(3163), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [883] = { [sym_concatenation] = STATE(451), @@ -33782,54 +33961,54 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(3143), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(3165), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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__concat] = ACTIONS(2022), + [sym_variable_name] = ACTIONS(2022), + [anon_sym_PIPE] = ACTIONS(2024), + [anon_sym_SEMI_SEMI] = ACTIONS(2024), + [anon_sym_PIPE_AMP] = ACTIONS(2024), + [anon_sym_AMP_AMP] = ACTIONS(2024), + [anon_sym_PIPE_PIPE] = ACTIONS(2024), + [sym__special_characters] = ACTIONS(2024), + [anon_sym_DQUOTE] = ACTIONS(2024), + [anon_sym_DOLLAR] = ACTIONS(2024), + [sym_raw_string] = ACTIONS(2024), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2024), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2024), + [anon_sym_BQUOTE] = ACTIONS(2024), + [anon_sym_LT_LPAREN] = ACTIONS(2024), + [anon_sym_GT_LPAREN] = ACTIONS(2024), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1994), - [sym_word] = ACTIONS(1994), - [anon_sym_SEMI] = ACTIONS(1994), - [anon_sym_LF] = ACTIONS(1994), - [anon_sym_AMP] = ACTIONS(1994), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2024), + [sym_word] = ACTIONS(2024), + [anon_sym_SEMI] = ACTIONS(2024), + [anon_sym_LF] = ACTIONS(2024), + [anon_sym_AMP] = ACTIONS(2024), }, [885] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(3119), + [sym_regex_without_right_brace] = ACTIONS(3167), }, [886] = { [sym_concatenation] = STATE(451), @@ -33840,53 +34019,53 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(3169), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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__concat] = ACTIONS(2030), + [sym_variable_name] = ACTIONS(2030), + [anon_sym_PIPE] = ACTIONS(2032), + [anon_sym_SEMI_SEMI] = ACTIONS(2032), + [anon_sym_PIPE_AMP] = ACTIONS(2032), + [anon_sym_AMP_AMP] = ACTIONS(2032), + [anon_sym_PIPE_PIPE] = ACTIONS(2032), + [sym__special_characters] = ACTIONS(2032), + [anon_sym_DQUOTE] = ACTIONS(2032), + [anon_sym_DOLLAR] = ACTIONS(2032), + [sym_raw_string] = ACTIONS(2032), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2032), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2032), + [anon_sym_BQUOTE] = ACTIONS(2032), + [anon_sym_LT_LPAREN] = ACTIONS(2032), + [anon_sym_GT_LPAREN] = ACTIONS(2032), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2002), - [sym_word] = ACTIONS(2002), - [anon_sym_SEMI] = ACTIONS(2002), - [anon_sym_LF] = ACTIONS(2002), - [anon_sym_AMP] = ACTIONS(2002), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2032), + [sym_word] = ACTIONS(2032), + [anon_sym_SEMI] = ACTIONS(2032), + [anon_sym_LF] = ACTIONS(2032), + [anon_sym_AMP] = ACTIONS(2032), }, [888] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(3123), + [sym_regex_without_right_brace] = ACTIONS(3171), }, [889] = { [sym_concatenation] = STATE(451), @@ -33897,143 +34076,143 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(3143), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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__concat] = ACTIONS(2190), + [sym_variable_name] = ACTIONS(2190), + [anon_sym_PIPE] = ACTIONS(2192), + [anon_sym_SEMI_SEMI] = ACTIONS(2192), + [anon_sym_PIPE_AMP] = ACTIONS(2192), + [anon_sym_AMP_AMP] = ACTIONS(2192), + [anon_sym_PIPE_PIPE] = ACTIONS(2192), + [sym__special_characters] = ACTIONS(2192), + [anon_sym_DQUOTE] = ACTIONS(2192), + [anon_sym_DOLLAR] = ACTIONS(2192), + [sym_raw_string] = ACTIONS(2192), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2192), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2192), + [anon_sym_BQUOTE] = ACTIONS(2192), + [anon_sym_LT_LPAREN] = ACTIONS(2192), + [anon_sym_GT_LPAREN] = ACTIONS(2192), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2158), - [sym_word] = ACTIONS(2158), - [anon_sym_SEMI] = ACTIONS(2158), - [anon_sym_LF] = ACTIONS(2158), - [anon_sym_AMP] = ACTIONS(2158), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2192), + [sym_word] = ACTIONS(2192), + [anon_sym_SEMI] = ACTIONS(2192), + [anon_sym_LF] = ACTIONS(2192), + [anon_sym_AMP] = ACTIONS(2192), }, [891] = { - [sym__concat] = ACTIONS(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(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__concat] = ACTIONS(2396), + [sym_variable_name] = ACTIONS(2396), + [anon_sym_PIPE] = ACTIONS(2398), + [anon_sym_SEMI_SEMI] = ACTIONS(2398), + [anon_sym_PIPE_AMP] = ACTIONS(2398), + [anon_sym_AMP_AMP] = ACTIONS(2398), + [anon_sym_PIPE_PIPE] = ACTIONS(2398), + [sym__special_characters] = ACTIONS(2398), + [anon_sym_DQUOTE] = ACTIONS(2398), + [anon_sym_DOLLAR] = ACTIONS(2398), + [sym_raw_string] = ACTIONS(2398), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2398), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2398), + [anon_sym_BQUOTE] = ACTIONS(2398), + [anon_sym_LT_LPAREN] = ACTIONS(2398), + [anon_sym_GT_LPAREN] = ACTIONS(2398), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2360), - [sym_word] = ACTIONS(2360), - [anon_sym_SEMI] = ACTIONS(2360), - [anon_sym_LF] = ACTIONS(2360), - [anon_sym_AMP] = ACTIONS(2360), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2398), + [sym_word] = ACTIONS(2398), + [anon_sym_SEMI] = ACTIONS(2398), + [anon_sym_LF] = ACTIONS(2398), + [anon_sym_AMP] = ACTIONS(2398), }, [892] = { - [sym__concat] = ACTIONS(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__concat] = ACTIONS(1886), + [anon_sym_PIPE] = ACTIONS(1888), + [anon_sym_SEMI_SEMI] = ACTIONS(1888), + [anon_sym_PIPE_AMP] = ACTIONS(1888), + [anon_sym_AMP_AMP] = ACTIONS(1888), + [anon_sym_PIPE_PIPE] = ACTIONS(1888), + [sym__special_characters] = ACTIONS(1888), + [anon_sym_DQUOTE] = ACTIONS(1888), + [anon_sym_DOLLAR] = ACTIONS(1888), + [sym_raw_string] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1888), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1888), + [anon_sym_BQUOTE] = ACTIONS(1888), + [anon_sym_LT_LPAREN] = ACTIONS(1888), + [anon_sym_GT_LPAREN] = ACTIONS(1888), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1860), - [sym_word] = ACTIONS(1860), - [anon_sym_SEMI] = ACTIONS(1860), - [anon_sym_LF] = ACTIONS(1860), - [anon_sym_AMP] = ACTIONS(1860), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1888), + [sym_word] = ACTIONS(1888), + [anon_sym_SEMI] = ACTIONS(1888), + [anon_sym_LF] = ACTIONS(1888), + [anon_sym_AMP] = ACTIONS(1888), }, [893] = { [aux_sym_concatenation_repeat1] = STATE(893), - [sym__concat] = ACTIONS(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__concat] = ACTIONS(3173), + [anon_sym_PIPE] = ACTIONS(1888), + [anon_sym_SEMI_SEMI] = ACTIONS(1888), + [anon_sym_PIPE_AMP] = ACTIONS(1888), + [anon_sym_AMP_AMP] = ACTIONS(1888), + [anon_sym_PIPE_PIPE] = ACTIONS(1888), + [sym__special_characters] = ACTIONS(1888), + [anon_sym_DQUOTE] = ACTIONS(1888), + [anon_sym_DOLLAR] = ACTIONS(1888), + [sym_raw_string] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1888), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1888), + [anon_sym_BQUOTE] = ACTIONS(1888), + [anon_sym_LT_LPAREN] = ACTIONS(1888), + [anon_sym_GT_LPAREN] = ACTIONS(1888), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1860), - [sym_word] = ACTIONS(1860), - [anon_sym_SEMI] = ACTIONS(1860), - [anon_sym_LF] = ACTIONS(1860), - [anon_sym_AMP] = ACTIONS(1860), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1888), + [sym_word] = ACTIONS(1888), + [anon_sym_SEMI] = ACTIONS(1888), + [anon_sym_LF] = ACTIONS(1888), + [anon_sym_AMP] = ACTIONS(1888), }, [894] = { - [sym__concat] = ACTIONS(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__concat] = ACTIONS(1923), + [anon_sym_PIPE] = ACTIONS(1925), + [anon_sym_SEMI_SEMI] = ACTIONS(1925), + [anon_sym_PIPE_AMP] = ACTIONS(1925), + [anon_sym_AMP_AMP] = ACTIONS(1925), + [anon_sym_PIPE_PIPE] = ACTIONS(1925), + [sym__special_characters] = ACTIONS(1925), + [anon_sym_DQUOTE] = ACTIONS(1925), + [anon_sym_DOLLAR] = ACTIONS(1925), + [sym_raw_string] = ACTIONS(1925), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1925), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1925), + [anon_sym_BQUOTE] = ACTIONS(1925), + [anon_sym_LT_LPAREN] = ACTIONS(1925), + [anon_sym_GT_LPAREN] = ACTIONS(1925), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1897), - [sym_word] = ACTIONS(1897), - [anon_sym_SEMI] = ACTIONS(1897), - [anon_sym_LF] = ACTIONS(1897), - [anon_sym_AMP] = ACTIONS(1897), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1925), + [sym_word] = ACTIONS(1925), + [anon_sym_SEMI] = ACTIONS(1925), + [anon_sym_LF] = ACTIONS(1925), + [anon_sym_AMP] = ACTIONS(1925), }, [895] = { [sym_concatenation] = STATE(1536), @@ -34043,45 +34222,45 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(3176), + [sym__special_characters] = ACTIONS(3178), + [anon_sym_DQUOTE] = ACTIONS(1952), + [anon_sym_DOLLAR] = ACTIONS(1954), + [sym_raw_string] = ACTIONS(3180), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), + [anon_sym_BQUOTE] = ACTIONS(1962), + [anon_sym_LT_LPAREN] = ACTIONS(1964), + [anon_sym_GT_LPAREN] = ACTIONS(1964), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3134), + [sym_word] = ACTIONS(3182), }, [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__concat] = ACTIONS(1968), + [anon_sym_PIPE] = ACTIONS(1970), + [anon_sym_SEMI_SEMI] = ACTIONS(1970), + [anon_sym_PIPE_AMP] = ACTIONS(1970), + [anon_sym_AMP_AMP] = ACTIONS(1970), + [anon_sym_PIPE_PIPE] = ACTIONS(1970), + [sym__special_characters] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1970), + [anon_sym_DOLLAR] = ACTIONS(1970), + [sym_raw_string] = ACTIONS(1970), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1970), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1970), + [anon_sym_BQUOTE] = ACTIONS(1970), + [anon_sym_LT_LPAREN] = ACTIONS(1970), + [anon_sym_GT_LPAREN] = ACTIONS(1970), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1942), - [sym_word] = ACTIONS(1942), - [anon_sym_SEMI] = ACTIONS(1942), - [anon_sym_LF] = ACTIONS(1942), - [anon_sym_AMP] = ACTIONS(1942), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1970), + [sym_word] = ACTIONS(1970), + [anon_sym_SEMI] = ACTIONS(1970), + [anon_sym_LF] = ACTIONS(1970), + [anon_sym_AMP] = ACTIONS(1970), }, [897] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(3136), + [sym_regex_without_right_brace] = ACTIONS(3184), }, [898] = { [sym_concatenation] = STATE(451), @@ -34092,29 +34271,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(3186), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [899] = { - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(3140), + [anon_sym_LBRACK] = ACTIONS(836), + [anon_sym_EQ] = ACTIONS(3188), [sym_comment] = ACTIONS(56), }, [900] = { @@ -34126,26 +34305,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(3190), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(3192), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [901] = { [sym_concatenation] = STATE(451), @@ -34156,26 +34335,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(3194), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(3196), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [902] = { [sym_concatenation] = STATE(451), @@ -34186,53 +34365,53 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(3176), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(3198), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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__concat] = ACTIONS(2022), + [anon_sym_PIPE] = ACTIONS(2024), + [anon_sym_SEMI_SEMI] = ACTIONS(2024), + [anon_sym_PIPE_AMP] = ACTIONS(2024), + [anon_sym_AMP_AMP] = ACTIONS(2024), + [anon_sym_PIPE_PIPE] = ACTIONS(2024), + [sym__special_characters] = ACTIONS(2024), + [anon_sym_DQUOTE] = ACTIONS(2024), + [anon_sym_DOLLAR] = ACTIONS(2024), + [sym_raw_string] = ACTIONS(2024), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2024), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2024), + [anon_sym_BQUOTE] = ACTIONS(2024), + [anon_sym_LT_LPAREN] = ACTIONS(2024), + [anon_sym_GT_LPAREN] = ACTIONS(2024), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1994), - [sym_word] = ACTIONS(1994), - [anon_sym_SEMI] = ACTIONS(1994), - [anon_sym_LF] = ACTIONS(1994), - [anon_sym_AMP] = ACTIONS(1994), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2024), + [sym_word] = ACTIONS(2024), + [anon_sym_SEMI] = ACTIONS(2024), + [anon_sym_LF] = ACTIONS(2024), + [anon_sym_AMP] = ACTIONS(2024), }, [904] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(3152), + [sym_regex_without_right_brace] = ACTIONS(3200), }, [905] = { [sym_concatenation] = STATE(451), @@ -34243,52 +34422,52 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(3202), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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__concat] = ACTIONS(2030), + [anon_sym_PIPE] = ACTIONS(2032), + [anon_sym_SEMI_SEMI] = ACTIONS(2032), + [anon_sym_PIPE_AMP] = ACTIONS(2032), + [anon_sym_AMP_AMP] = ACTIONS(2032), + [anon_sym_PIPE_PIPE] = ACTIONS(2032), + [sym__special_characters] = ACTIONS(2032), + [anon_sym_DQUOTE] = ACTIONS(2032), + [anon_sym_DOLLAR] = ACTIONS(2032), + [sym_raw_string] = ACTIONS(2032), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2032), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2032), + [anon_sym_BQUOTE] = ACTIONS(2032), + [anon_sym_LT_LPAREN] = ACTIONS(2032), + [anon_sym_GT_LPAREN] = ACTIONS(2032), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2002), - [sym_word] = ACTIONS(2002), - [anon_sym_SEMI] = ACTIONS(2002), - [anon_sym_LF] = ACTIONS(2002), - [anon_sym_AMP] = ACTIONS(2002), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2032), + [sym_word] = ACTIONS(2032), + [anon_sym_SEMI] = ACTIONS(2032), + [anon_sym_LF] = ACTIONS(2032), + [anon_sym_AMP] = ACTIONS(2032), }, [907] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(3156), + [sym_regex_without_right_brace] = ACTIONS(3204), }, [908] = { [sym_concatenation] = STATE(451), @@ -34299,141 +34478,141 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(3176), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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__concat] = ACTIONS(2190), + [anon_sym_PIPE] = ACTIONS(2192), + [anon_sym_SEMI_SEMI] = ACTIONS(2192), + [anon_sym_PIPE_AMP] = ACTIONS(2192), + [anon_sym_AMP_AMP] = ACTIONS(2192), + [anon_sym_PIPE_PIPE] = ACTIONS(2192), + [sym__special_characters] = ACTIONS(2192), + [anon_sym_DQUOTE] = ACTIONS(2192), + [anon_sym_DOLLAR] = ACTIONS(2192), + [sym_raw_string] = ACTIONS(2192), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2192), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2192), + [anon_sym_BQUOTE] = ACTIONS(2192), + [anon_sym_LT_LPAREN] = ACTIONS(2192), + [anon_sym_GT_LPAREN] = ACTIONS(2192), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2158), - [sym_word] = ACTIONS(2158), - [anon_sym_SEMI] = ACTIONS(2158), - [anon_sym_LF] = ACTIONS(2158), - [anon_sym_AMP] = ACTIONS(2158), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2192), + [sym_word] = ACTIONS(2192), + [anon_sym_SEMI] = ACTIONS(2192), + [anon_sym_LF] = ACTIONS(2192), + [anon_sym_AMP] = ACTIONS(2192), }, [910] = { - [sym__concat] = ACTIONS(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__concat] = ACTIONS(2396), + [anon_sym_PIPE] = ACTIONS(2398), + [anon_sym_SEMI_SEMI] = ACTIONS(2398), + [anon_sym_PIPE_AMP] = ACTIONS(2398), + [anon_sym_AMP_AMP] = ACTIONS(2398), + [anon_sym_PIPE_PIPE] = ACTIONS(2398), + [sym__special_characters] = ACTIONS(2398), + [anon_sym_DQUOTE] = ACTIONS(2398), + [anon_sym_DOLLAR] = ACTIONS(2398), + [sym_raw_string] = ACTIONS(2398), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2398), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2398), + [anon_sym_BQUOTE] = ACTIONS(2398), + [anon_sym_LT_LPAREN] = ACTIONS(2398), + [anon_sym_GT_LPAREN] = ACTIONS(2398), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2360), - [sym_word] = ACTIONS(2360), - [anon_sym_SEMI] = ACTIONS(2360), - [anon_sym_LF] = ACTIONS(2360), - [anon_sym_AMP] = ACTIONS(2360), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2398), + [sym_word] = ACTIONS(2398), + [anon_sym_SEMI] = ACTIONS(2398), + [anon_sym_LF] = ACTIONS(2398), + [anon_sym_AMP] = ACTIONS(2398), }, [911] = { - [sym_file_descriptor] = ACTIONS(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_file_descriptor] = ACTIONS(1886), + [sym__concat] = ACTIONS(1886), + [sym_variable_name] = ACTIONS(1886), + [anon_sym_LT] = ACTIONS(3056), + [anon_sym_GT] = ACTIONS(3056), + [anon_sym_GT_GT] = ACTIONS(1886), + [anon_sym_AMP_GT] = ACTIONS(3056), + [anon_sym_AMP_GT_GT] = ACTIONS(1886), + [anon_sym_LT_AMP] = ACTIONS(1886), + [anon_sym_GT_AMP] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(3056), + [anon_sym_DQUOTE] = ACTIONS(1886), + [anon_sym_DOLLAR] = ACTIONS(3056), + [sym_raw_string] = ACTIONS(1886), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1886), + [anon_sym_BQUOTE] = ACTIONS(1886), + [anon_sym_LT_LPAREN] = ACTIONS(1886), + [anon_sym_GT_LPAREN] = ACTIONS(1886), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3008), + [sym_word] = ACTIONS(3056), }, [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_file_descriptor] = ACTIONS(1886), + [sym__concat] = ACTIONS(3206), + [sym_variable_name] = ACTIONS(1886), + [anon_sym_LT] = ACTIONS(3056), + [anon_sym_GT] = ACTIONS(3056), + [anon_sym_GT_GT] = ACTIONS(1886), + [anon_sym_AMP_GT] = ACTIONS(3056), + [anon_sym_AMP_GT_GT] = ACTIONS(1886), + [anon_sym_LT_AMP] = ACTIONS(1886), + [anon_sym_GT_AMP] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(3056), + [anon_sym_DQUOTE] = ACTIONS(1886), + [anon_sym_DOLLAR] = ACTIONS(3056), + [sym_raw_string] = ACTIONS(1886), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1886), + [anon_sym_BQUOTE] = ACTIONS(1886), + [anon_sym_LT_LPAREN] = ACTIONS(1886), + [anon_sym_GT_LPAREN] = ACTIONS(1886), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3008), + [sym_word] = ACTIONS(3056), }, [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_file_descriptor] = ACTIONS(1923), + [sym__concat] = ACTIONS(1923), + [sym_variable_name] = ACTIONS(1923), + [anon_sym_LT] = ACTIONS(3061), + [anon_sym_GT] = ACTIONS(3061), + [anon_sym_GT_GT] = ACTIONS(1923), + [anon_sym_AMP_GT] = ACTIONS(3061), + [anon_sym_AMP_GT_GT] = ACTIONS(1923), + [anon_sym_LT_AMP] = ACTIONS(1923), + [anon_sym_GT_AMP] = ACTIONS(1923), + [sym__special_characters] = ACTIONS(3061), + [anon_sym_DQUOTE] = ACTIONS(1923), + [anon_sym_DOLLAR] = ACTIONS(3061), + [sym_raw_string] = ACTIONS(1923), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1923), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1923), + [anon_sym_BQUOTE] = ACTIONS(1923), + [anon_sym_LT_LPAREN] = ACTIONS(1923), + [anon_sym_GT_LPAREN] = ACTIONS(1923), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3013), + [sym_word] = ACTIONS(3061), }, [914] = { [sym_concatenation] = STATE(1554), @@ -34443,45 +34622,45 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(3209), + [sym__special_characters] = ACTIONS(3211), + [anon_sym_DQUOTE] = ACTIONS(1952), + [anon_sym_DOLLAR] = ACTIONS(1954), + [sym_raw_string] = ACTIONS(3213), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), + [anon_sym_BQUOTE] = ACTIONS(1962), + [anon_sym_LT_LPAREN] = ACTIONS(1964), + [anon_sym_GT_LPAREN] = ACTIONS(1964), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3167), + [sym_word] = ACTIONS(3215), }, [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_file_descriptor] = ACTIONS(1968), + [sym__concat] = ACTIONS(1968), + [sym_variable_name] = ACTIONS(1968), + [anon_sym_LT] = ACTIONS(3071), + [anon_sym_GT] = ACTIONS(3071), + [anon_sym_GT_GT] = ACTIONS(1968), + [anon_sym_AMP_GT] = ACTIONS(3071), + [anon_sym_AMP_GT_GT] = ACTIONS(1968), + [anon_sym_LT_AMP] = ACTIONS(1968), + [anon_sym_GT_AMP] = ACTIONS(1968), + [sym__special_characters] = ACTIONS(3071), + [anon_sym_DQUOTE] = ACTIONS(1968), + [anon_sym_DOLLAR] = ACTIONS(3071), + [sym_raw_string] = ACTIONS(1968), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1968), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1968), + [anon_sym_BQUOTE] = ACTIONS(1968), + [anon_sym_LT_LPAREN] = ACTIONS(1968), + [anon_sym_GT_LPAREN] = ACTIONS(1968), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3023), + [sym_word] = ACTIONS(3071), }, [916] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(3169), + [sym_regex_without_right_brace] = ACTIONS(3217), }, [917] = { [sym_concatenation] = STATE(451), @@ -34492,29 +34671,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(3219), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [918] = { - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(3173), + [anon_sym_LBRACK] = ACTIONS(836), + [anon_sym_EQ] = ACTIONS(3221), [sym_comment] = ACTIONS(56), }, [919] = { @@ -34526,26 +34705,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(3223), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(3225), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [920] = { [sym_concatenation] = STATE(451), @@ -34556,26 +34735,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(3227), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(3229), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [921] = { [sym_concatenation] = STATE(451), @@ -34586,53 +34765,53 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(3209), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(3231), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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_file_descriptor] = ACTIONS(2022), + [sym__concat] = ACTIONS(2022), + [sym_variable_name] = ACTIONS(2022), + [anon_sym_LT] = ACTIONS(3089), + [anon_sym_GT] = ACTIONS(3089), + [anon_sym_GT_GT] = ACTIONS(2022), + [anon_sym_AMP_GT] = ACTIONS(3089), + [anon_sym_AMP_GT_GT] = ACTIONS(2022), + [anon_sym_LT_AMP] = ACTIONS(2022), + [anon_sym_GT_AMP] = ACTIONS(2022), + [sym__special_characters] = ACTIONS(3089), + [anon_sym_DQUOTE] = ACTIONS(2022), + [anon_sym_DOLLAR] = ACTIONS(3089), + [sym_raw_string] = ACTIONS(2022), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2022), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2022), + [anon_sym_BQUOTE] = ACTIONS(2022), + [anon_sym_LT_LPAREN] = ACTIONS(2022), + [anon_sym_GT_LPAREN] = ACTIONS(2022), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3041), + [sym_word] = ACTIONS(3089), }, [923] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(3185), + [sym_regex_without_right_brace] = ACTIONS(3233), }, [924] = { [sym_concatenation] = STATE(451), @@ -34643,52 +34822,52 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(3235), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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_file_descriptor] = ACTIONS(2030), + [sym__concat] = ACTIONS(2030), + [sym_variable_name] = ACTIONS(2030), + [anon_sym_LT] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(3095), + [anon_sym_GT_GT] = ACTIONS(2030), + [anon_sym_AMP_GT] = ACTIONS(3095), + [anon_sym_AMP_GT_GT] = ACTIONS(2030), + [anon_sym_LT_AMP] = ACTIONS(2030), + [anon_sym_GT_AMP] = ACTIONS(2030), + [sym__special_characters] = ACTIONS(3095), + [anon_sym_DQUOTE] = ACTIONS(2030), + [anon_sym_DOLLAR] = ACTIONS(3095), + [sym_raw_string] = ACTIONS(2030), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2030), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2030), + [anon_sym_BQUOTE] = ACTIONS(2030), + [anon_sym_LT_LPAREN] = ACTIONS(2030), + [anon_sym_GT_LPAREN] = ACTIONS(2030), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3047), + [sym_word] = ACTIONS(3095), }, [926] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(3189), + [sym_regex_without_right_brace] = ACTIONS(3237), }, [927] = { [sym_concatenation] = STATE(451), @@ -34699,79 +34878,79 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(3209), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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_file_descriptor] = ACTIONS(2190), + [sym__concat] = ACTIONS(2190), + [sym_variable_name] = ACTIONS(2190), + [anon_sym_LT] = ACTIONS(3099), + [anon_sym_GT] = ACTIONS(3099), + [anon_sym_GT_GT] = ACTIONS(2190), + [anon_sym_AMP_GT] = ACTIONS(3099), + [anon_sym_AMP_GT_GT] = ACTIONS(2190), + [anon_sym_LT_AMP] = ACTIONS(2190), + [anon_sym_GT_AMP] = ACTIONS(2190), + [sym__special_characters] = ACTIONS(3099), + [anon_sym_DQUOTE] = ACTIONS(2190), + [anon_sym_DOLLAR] = ACTIONS(3099), + [sym_raw_string] = ACTIONS(2190), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2190), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2190), + [anon_sym_BQUOTE] = ACTIONS(2190), + [anon_sym_LT_LPAREN] = ACTIONS(2190), + [anon_sym_GT_LPAREN] = ACTIONS(2190), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3051), + [sym_word] = ACTIONS(3099), }, [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_file_descriptor] = ACTIONS(2396), + [sym__concat] = ACTIONS(2396), + [sym_variable_name] = ACTIONS(2396), + [anon_sym_LT] = ACTIONS(3101), + [anon_sym_GT] = ACTIONS(3101), + [anon_sym_GT_GT] = ACTIONS(2396), + [anon_sym_AMP_GT] = ACTIONS(3101), + [anon_sym_AMP_GT_GT] = ACTIONS(2396), + [anon_sym_LT_AMP] = ACTIONS(2396), + [anon_sym_GT_AMP] = ACTIONS(2396), + [sym__special_characters] = ACTIONS(3101), + [anon_sym_DQUOTE] = ACTIONS(2396), + [anon_sym_DOLLAR] = ACTIONS(3101), + [sym_raw_string] = ACTIONS(2396), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2396), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2396), + [anon_sym_BQUOTE] = ACTIONS(2396), + [anon_sym_LT_LPAREN] = ACTIONS(2396), + [anon_sym_GT_LPAREN] = ACTIONS(2396), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3053), + [sym_word] = ACTIONS(3101), }, [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), + [anon_sym_DQUOTE] = ACTIONS(3239), + [anon_sym_DOLLAR] = ACTIONS(3239), + [sym__string_content] = ACTIONS(3241), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3239), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3239), + [anon_sym_BQUOTE] = ACTIONS(3239), [sym_comment] = ACTIONS(182), }, [931] = { @@ -34782,32 +34961,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(3243), + [sym__special_characters] = ACTIONS(3245), + [anon_sym_DQUOTE] = ACTIONS(1952), + [anon_sym_DOLLAR] = ACTIONS(1954), + [sym_raw_string] = ACTIONS(3247), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), + [anon_sym_BQUOTE] = ACTIONS(1962), + [anon_sym_LT_LPAREN] = ACTIONS(1964), + [anon_sym_GT_LPAREN] = ACTIONS(1964), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3201), + [sym_word] = ACTIONS(3249), }, [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__concat] = ACTIONS(1968), + [anon_sym_DQUOTE] = ACTIONS(1970), + [anon_sym_DOLLAR] = ACTIONS(1970), + [sym__string_content] = ACTIONS(3071), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1970), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1970), + [anon_sym_BQUOTE] = ACTIONS(1970), [sym_comment] = ACTIONS(182), }, [933] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(3203), + [sym_regex_without_right_brace] = ACTIONS(3251), }, [934] = { [sym_concatenation] = STATE(451), @@ -34818,29 +34997,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(3253), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [935] = { - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(3207), + [anon_sym_LBRACK] = ACTIONS(836), + [anon_sym_EQ] = ACTIONS(3255), [sym_comment] = ACTIONS(56), }, [936] = { @@ -34852,26 +35031,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(3257), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(3259), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [937] = { [sym_concatenation] = STATE(451), @@ -34882,26 +35061,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(3261), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(3263), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [938] = { [sym_concatenation] = STATE(451), @@ -34912,40 +35091,40 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(3243), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(3265), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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__concat] = ACTIONS(2022), + [anon_sym_DQUOTE] = ACTIONS(2024), + [anon_sym_DOLLAR] = ACTIONS(2024), + [sym__string_content] = ACTIONS(3089), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2024), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2024), + [anon_sym_BQUOTE] = ACTIONS(2024), [sym_comment] = ACTIONS(182), }, [940] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(3219), + [sym_regex_without_right_brace] = ACTIONS(3267), }, [941] = { [sym_concatenation] = STATE(451), @@ -34956,39 +35135,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(3269), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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__concat] = ACTIONS(2030), + [anon_sym_DQUOTE] = ACTIONS(2032), + [anon_sym_DOLLAR] = ACTIONS(2032), + [sym__string_content] = ACTIONS(3095), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2032), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2032), + [anon_sym_BQUOTE] = ACTIONS(2032), [sym_comment] = ACTIONS(182), }, [943] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(3223), + [sym_regex_without_right_brace] = ACTIONS(3271), }, [944] = { [sym_concatenation] = STATE(451), @@ -34999,91 +35178,92 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(3243), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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__concat] = ACTIONS(2190), + [anon_sym_DQUOTE] = ACTIONS(2192), + [anon_sym_DOLLAR] = ACTIONS(2192), + [sym__string_content] = ACTIONS(3099), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2192), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2192), + [anon_sym_BQUOTE] = ACTIONS(2192), [sym_comment] = ACTIONS(182), }, [946] = { [aux_sym_concatenation_repeat1] = STATE(631), - [sym__concat] = ACTIONS(3225), - [anon_sym_RBRACK] = ACTIONS(3227), + [sym__concat] = ACTIONS(3273), + [anon_sym_RBRACK] = ACTIONS(3275), [sym_comment] = ACTIONS(56), }, [947] = { [aux_sym_concatenation_repeat1] = STATE(631), - [sym__concat] = ACTIONS(3229), - [anon_sym_RBRACK] = ACTIONS(3231), + [sym__concat] = ACTIONS(3277), + [anon_sym_RBRACK] = ACTIONS(3279), [sym_comment] = ACTIONS(56), }, [948] = { - [sym__concat] = ACTIONS(3233), - [anon_sym_RBRACK] = ACTIONS(3231), + [sym__concat] = ACTIONS(3281), + [anon_sym_RBRACK] = ACTIONS(3279), [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_file_descriptor] = ACTIONS(3283), + [sym__concat] = ACTIONS(3283), + [anon_sym_PIPE] = ACTIONS(3285), + [anon_sym_SEMI_SEMI] = ACTIONS(3285), + [anon_sym_PIPE_AMP] = ACTIONS(3285), + [anon_sym_AMP_AMP] = ACTIONS(3285), + [anon_sym_PIPE_PIPE] = ACTIONS(3285), + [anon_sym_EQ_TILDE] = ACTIONS(3285), + [anon_sym_EQ_EQ] = ACTIONS(3285), + [anon_sym_LT] = ACTIONS(3285), + [anon_sym_GT] = ACTIONS(3285), + [anon_sym_GT_GT] = ACTIONS(3285), + [anon_sym_AMP_GT] = ACTIONS(3285), + [anon_sym_AMP_GT_GT] = ACTIONS(3285), + [anon_sym_LT_AMP] = ACTIONS(3285), + [anon_sym_GT_AMP] = ACTIONS(3285), + [anon_sym_LT_LT] = ACTIONS(3285), + [anon_sym_LT_LT_DASH] = ACTIONS(3285), + [anon_sym_LT_LT_LT] = ACTIONS(3285), + [sym__special_characters] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3285), + [anon_sym_DOLLAR] = ACTIONS(3285), + [sym_raw_string] = ACTIONS(3285), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3285), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3285), + [anon_sym_BQUOTE] = ACTIONS(3285), + [anon_sym_LT_LPAREN] = ACTIONS(3285), + [anon_sym_GT_LPAREN] = ACTIONS(3285), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3237), - [anon_sym_SEMI] = ACTIONS(3237), - [anon_sym_LF] = ACTIONS(3237), - [anon_sym_AMP] = ACTIONS(3237), + [sym_word] = ACTIONS(3285), + [anon_sym_SEMI] = ACTIONS(3285), + [anon_sym_LF] = ACTIONS(3285), + [anon_sym_AMP] = ACTIONS(3285), }, [950] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(3241), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(3289), [sym_comment] = ACTIONS(56), }, [951] = { @@ -35091,7 +35271,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(134), [sym_command_substitution] = STATE(134), [aux_sym_string_repeat1] = STATE(1596), - [anon_sym_DQUOTE] = ACTIONS(3243), + [anon_sym_DQUOTE] = ACTIONS(3291), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -35100,38 +35280,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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_string] = STATE(1598), + [anon_sym_DQUOTE] = ACTIONS(1952), + [anon_sym_DOLLAR] = ACTIONS(3293), + [sym_raw_string] = ACTIONS(3295), + [anon_sym_POUND] = ACTIONS(3293), + [anon_sym_DASH] = ACTIONS(3293), [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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3297), + [anon_sym_STAR] = ACTIONS(3293), + [anon_sym_AT] = ACTIONS(3293), + [anon_sym_QMARK] = ACTIONS(3293), + [anon_sym_0] = ACTIONS(3299), + [anon_sym__] = ACTIONS(3299), }, [953] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(3251), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(3301), [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_variable_name] = ACTIONS(3303), + [anon_sym_DOLLAR] = ACTIONS(3305), + [anon_sym_POUND] = ACTIONS(3307), + [anon_sym_DASH] = ACTIONS(3305), [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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3309), + [anon_sym_STAR] = ACTIONS(3305), + [anon_sym_AT] = ACTIONS(3305), + [anon_sym_QMARK] = ACTIONS(3305), + [anon_sym_0] = ACTIONS(3311), + [anon_sym__] = ACTIONS(3311), }, [955] = { [sym_for_statement] = STATE(1606), @@ -35159,22 +35340,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(264), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(268), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -35182,17 +35363,17 @@ 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(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__special_characters] = ACTIONS(286), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(300), + [sym_word] = ACTIONS(302), }, [956] = { [sym_for_statement] = STATE(1608), @@ -35220,22 +35401,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(304), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(306), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(308), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_LBRACK_LBRACK] = ACTIONS(312), + [anon_sym_declare] = ACTIONS(314), + [anon_sym_typeset] = ACTIONS(314), + [anon_sym_export] = ACTIONS(314), + [anon_sym_readonly] = ACTIONS(314), + [anon_sym_local] = ACTIONS(314), + [anon_sym_unset] = ACTIONS(316), + [anon_sym_unsetenv] = ACTIONS(316), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -35243,17 +35424,17 @@ 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(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__special_characters] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [anon_sym_DOLLAR] = ACTIONS(322), + [sym_raw_string] = ACTIONS(324), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), + [anon_sym_BQUOTE] = ACTIONS(330), + [anon_sym_LT_LPAREN] = ACTIONS(332), + [anon_sym_GT_LPAREN] = ACTIONS(332), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(332), + [sym_word] = ACTIONS(334), }, [957] = { [sym_for_statement] = STATE(1610), @@ -35281,22 +35462,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(264), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(268), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -35304,20 +35485,20 @@ 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(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__special_characters] = ACTIONS(286), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(300), + [sym_word] = ACTIONS(302), }, [958] = { - [anon_sym_RBRACE] = ACTIONS(3251), + [anon_sym_RBRACE] = ACTIONS(3301), [sym_comment] = ACTIONS(56), }, [959] = { @@ -35327,69 +35508,69 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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__special_characters] = ACTIONS(3313), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(3315), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3263), + [sym_word] = ACTIONS(3313), }, [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__concat] = ACTIONS(1978), + [anon_sym_RBRACE] = ACTIONS(788), + [anon_sym_EQ] = ACTIONS(1567), + [sym__special_characters] = ACTIONS(790), + [anon_sym_DQUOTE] = ACTIONS(788), + [anon_sym_DOLLAR] = ACTIONS(1567), + [sym_raw_string] = ACTIONS(788), + [anon_sym_POUND] = ACTIONS(788), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(788), + [anon_sym_COLON] = ACTIONS(1567), + [anon_sym_COLON_QMARK] = ACTIONS(1567), + [anon_sym_COLON_DASH] = ACTIONS(1567), + [anon_sym_PERCENT] = ACTIONS(1567), + [anon_sym_DASH] = ACTIONS(1567), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(788), + [anon_sym_BQUOTE] = ACTIONS(788), + [anon_sym_LT_LPAREN] = ACTIONS(788), + [anon_sym_GT_LPAREN] = ACTIONS(788), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(774), + [sym_word] = ACTIONS(790), }, [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__concat] = ACTIONS(792), + [anon_sym_RBRACE] = ACTIONS(792), + [anon_sym_EQ] = ACTIONS(1569), + [sym__special_characters] = ACTIONS(794), + [anon_sym_DQUOTE] = ACTIONS(792), + [anon_sym_DOLLAR] = ACTIONS(1569), + [sym_raw_string] = ACTIONS(792), + [anon_sym_POUND] = ACTIONS(792), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(792), + [anon_sym_COLON] = ACTIONS(1569), + [anon_sym_COLON_QMARK] = ACTIONS(1569), + [anon_sym_COLON_DASH] = ACTIONS(1569), + [anon_sym_PERCENT] = ACTIONS(1569), + [anon_sym_DASH] = ACTIONS(1569), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(792), + [anon_sym_BQUOTE] = ACTIONS(792), + [anon_sym_LT_LPAREN] = ACTIONS(792), + [anon_sym_GT_LPAREN] = ACTIONS(792), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(778), + [sym_word] = ACTIONS(794), }, [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_DQUOTE] = ACTIONS(3317), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -35398,74 +35579,74 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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__concat] = ACTIONS(824), + [anon_sym_RBRACE] = ACTIONS(824), + [anon_sym_EQ] = ACTIONS(1573), + [sym__special_characters] = ACTIONS(826), + [anon_sym_DQUOTE] = ACTIONS(824), + [anon_sym_DOLLAR] = ACTIONS(1573), + [sym_raw_string] = ACTIONS(824), + [anon_sym_POUND] = ACTIONS(824), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(824), + [anon_sym_COLON] = ACTIONS(1573), + [anon_sym_COLON_QMARK] = ACTIONS(1573), + [anon_sym_COLON_DASH] = ACTIONS(1573), + [anon_sym_PERCENT] = ACTIONS(1573), + [anon_sym_DASH] = ACTIONS(1573), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(824), + [anon_sym_BQUOTE] = ACTIONS(824), + [anon_sym_LT_LPAREN] = ACTIONS(824), + [anon_sym_GT_LPAREN] = ACTIONS(824), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(810), + [sym_word] = ACTIONS(826), }, [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__concat] = ACTIONS(828), + [anon_sym_RBRACE] = ACTIONS(828), + [anon_sym_EQ] = ACTIONS(1575), + [sym__special_characters] = ACTIONS(830), + [anon_sym_DQUOTE] = ACTIONS(828), + [anon_sym_DOLLAR] = ACTIONS(1575), + [sym_raw_string] = ACTIONS(828), + [anon_sym_POUND] = ACTIONS(828), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(828), + [anon_sym_COLON] = ACTIONS(1575), + [anon_sym_COLON_QMARK] = ACTIONS(1575), + [anon_sym_COLON_DASH] = ACTIONS(1575), + [anon_sym_PERCENT] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(1575), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), + [anon_sym_BQUOTE] = ACTIONS(828), + [anon_sym_LT_LPAREN] = ACTIONS(828), + [anon_sym_GT_LPAREN] = ACTIONS(828), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(814), + [sym_word] = ACTIONS(830), }, [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__concat] = ACTIONS(832), + [anon_sym_RBRACE] = ACTIONS(832), + [anon_sym_EQ] = ACTIONS(1577), + [sym__special_characters] = ACTIONS(834), + [anon_sym_DQUOTE] = ACTIONS(832), + [anon_sym_DOLLAR] = ACTIONS(1577), + [sym_raw_string] = ACTIONS(832), + [anon_sym_POUND] = ACTIONS(832), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(832), + [anon_sym_COLON] = ACTIONS(1577), + [anon_sym_COLON_QMARK] = ACTIONS(1577), + [anon_sym_COLON_DASH] = ACTIONS(1577), + [anon_sym_PERCENT] = ACTIONS(1577), + [anon_sym_DASH] = ACTIONS(1577), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(832), + [anon_sym_BQUOTE] = ACTIONS(832), + [anon_sym_LT_LPAREN] = ACTIONS(832), + [anon_sym_GT_LPAREN] = ACTIONS(832), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(818), + [sym_word] = ACTIONS(834), }, [966] = { - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(3269), + [anon_sym_LBRACK] = ACTIONS(836), + [anon_sym_EQ] = ACTIONS(3319), [sym_comment] = ACTIONS(56), }, [967] = { @@ -35477,39 +35658,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(3321), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(3323), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [968] = { [sym_subscript] = STATE(1622), - [sym_variable_name] = ACTIONS(3275), - [anon_sym_DOLLAR] = ACTIONS(3277), - [anon_sym_DASH] = ACTIONS(3277), + [sym_variable_name] = ACTIONS(3325), + [anon_sym_DOLLAR] = ACTIONS(3327), + [anon_sym_DASH] = ACTIONS(3327), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3329), + [anon_sym_STAR] = ACTIONS(3327), + [anon_sym_AT] = ACTIONS(3327), + [anon_sym_QMARK] = ACTIONS(3327), + [anon_sym_0] = ACTIONS(3331), + [anon_sym__] = ACTIONS(3331), }, [969] = { [sym_concatenation] = STATE(451), @@ -35520,26 +35701,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(3333), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(3335), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [970] = { [sym_concatenation] = STATE(451), @@ -35550,26 +35731,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(3337), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(3339), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [971] = { [sym_concatenation] = STATE(451), @@ -35580,163 +35761,164 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(3341), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(3343), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), [sym_comment] = ACTIONS(56), }, [973] = { - [sym_file_descriptor] = ACTIONS(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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(3343), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [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), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_PIPE_AMP] = ACTIONS(1072), + [anon_sym_AMP_AMP] = ACTIONS(1074), + [anon_sym_PIPE_PIPE] = ACTIONS(1074), + [anon_sym_BQUOTE] = ACTIONS(3343), [sym_comment] = ACTIONS(56), }, [975] = { - [sym_file_descriptor] = ACTIONS(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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_PIPE_AMP] = ACTIONS(1072), + [anon_sym_AMP_AMP] = ACTIONS(1074), + [anon_sym_PIPE_PIPE] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(3343), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [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), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(3345), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), [sym_comment] = ACTIONS(56), }, [977] = { - [sym_file_descriptor] = ACTIONS(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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(3345), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [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_file_descriptor] = ACTIONS(3347), + [sym__concat] = ACTIONS(3347), + [anon_sym_PIPE] = ACTIONS(3349), + [anon_sym_SEMI_SEMI] = ACTIONS(3349), + [anon_sym_PIPE_AMP] = ACTIONS(3349), + [anon_sym_AMP_AMP] = ACTIONS(3349), + [anon_sym_PIPE_PIPE] = ACTIONS(3349), + [anon_sym_EQ_TILDE] = ACTIONS(3349), + [anon_sym_EQ_EQ] = ACTIONS(3349), + [anon_sym_LT] = ACTIONS(3349), + [anon_sym_GT] = ACTIONS(3349), + [anon_sym_GT_GT] = ACTIONS(3349), + [anon_sym_AMP_GT] = ACTIONS(3349), + [anon_sym_AMP_GT_GT] = ACTIONS(3349), + [anon_sym_LT_AMP] = ACTIONS(3349), + [anon_sym_GT_AMP] = ACTIONS(3349), + [anon_sym_LT_LT] = ACTIONS(3349), + [anon_sym_LT_LT_DASH] = ACTIONS(3349), + [anon_sym_LT_LT_LT] = ACTIONS(3349), + [sym__special_characters] = ACTIONS(3349), + [anon_sym_DQUOTE] = ACTIONS(3349), + [anon_sym_DOLLAR] = ACTIONS(3349), + [sym_raw_string] = ACTIONS(3349), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3349), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3349), + [anon_sym_BQUOTE] = ACTIONS(3349), + [anon_sym_LT_LPAREN] = ACTIONS(3349), + [anon_sym_GT_LPAREN] = ACTIONS(3349), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3299), - [anon_sym_SEMI] = ACTIONS(3299), - [anon_sym_LF] = ACTIONS(3299), - [anon_sym_AMP] = ACTIONS(3299), + [sym_word] = ACTIONS(3349), + [anon_sym_SEMI] = ACTIONS(3349), + [anon_sym_LF] = ACTIONS(3349), + [anon_sym_AMP] = ACTIONS(3349), }, [979] = { [sym_concatenation] = STATE(451), @@ -35747,25 +35929,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(3351), + [anon_sym_EQ] = ACTIONS(3353), + [sym__special_characters] = ACTIONS(3356), + [anon_sym_DQUOTE] = ACTIONS(3359), + [anon_sym_DOLLAR] = ACTIONS(3362), + [sym_raw_string] = ACTIONS(3365), + [anon_sym_POUND] = ACTIONS(3368), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3371), + [anon_sym_COLON] = ACTIONS(3353), + [anon_sym_COLON_QMARK] = ACTIONS(3353), + [anon_sym_COLON_DASH] = ACTIONS(3353), + [anon_sym_PERCENT] = ACTIONS(3353), + [anon_sym_DASH] = ACTIONS(3353), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3374), + [anon_sym_BQUOTE] = ACTIONS(3377), + [anon_sym_LT_LPAREN] = ACTIONS(3380), + [anon_sym_GT_LPAREN] = ACTIONS(3380), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3333), + [sym_word] = ACTIONS(3383), }, [980] = { [sym_concatenation] = STATE(1635), @@ -35775,56 +35957,57 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(3301), + [sym__special_characters] = ACTIONS(3386), + [anon_sym_DQUOTE] = ACTIONS(1952), + [anon_sym_DOLLAR] = ACTIONS(1954), + [sym_raw_string] = ACTIONS(3388), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), + [anon_sym_BQUOTE] = ACTIONS(1962), + [anon_sym_LT_LPAREN] = ACTIONS(1964), + [anon_sym_GT_LPAREN] = ACTIONS(1964), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3340), + [sym_word] = ACTIONS(3390), }, [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_file_descriptor] = ACTIONS(3392), + [sym__concat] = ACTIONS(3392), + [anon_sym_PIPE] = ACTIONS(3394), + [anon_sym_SEMI_SEMI] = ACTIONS(3394), + [anon_sym_PIPE_AMP] = ACTIONS(3394), + [anon_sym_AMP_AMP] = ACTIONS(3394), + [anon_sym_PIPE_PIPE] = ACTIONS(3394), + [anon_sym_EQ_TILDE] = ACTIONS(3394), + [anon_sym_EQ_EQ] = ACTIONS(3394), + [anon_sym_LT] = ACTIONS(3394), + [anon_sym_GT] = ACTIONS(3394), + [anon_sym_GT_GT] = ACTIONS(3394), + [anon_sym_AMP_GT] = ACTIONS(3394), + [anon_sym_AMP_GT_GT] = ACTIONS(3394), + [anon_sym_LT_AMP] = ACTIONS(3394), + [anon_sym_GT_AMP] = ACTIONS(3394), + [anon_sym_LT_LT] = ACTIONS(3394), + [anon_sym_LT_LT_DASH] = ACTIONS(3394), + [anon_sym_LT_LT_LT] = ACTIONS(3394), + [sym__special_characters] = ACTIONS(3394), + [anon_sym_DQUOTE] = ACTIONS(3394), + [anon_sym_DOLLAR] = ACTIONS(3394), + [sym_raw_string] = ACTIONS(3394), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3394), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3394), + [anon_sym_BQUOTE] = ACTIONS(3394), + [anon_sym_LT_LPAREN] = ACTIONS(3394), + [anon_sym_GT_LPAREN] = ACTIONS(3394), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(3344), - [anon_sym_LF] = ACTIONS(3344), - [anon_sym_AMP] = ACTIONS(3344), + [sym_word] = ACTIONS(3394), + [anon_sym_SEMI] = ACTIONS(3394), + [anon_sym_LF] = ACTIONS(3394), + [anon_sym_AMP] = ACTIONS(3394), }, [982] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(3346), + [sym_regex_without_right_brace] = ACTIONS(3396), }, [983] = { [sym_concatenation] = STATE(451), @@ -35835,63 +36018,64 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(3398), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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_file_descriptor] = ACTIONS(3400), + [sym__concat] = ACTIONS(3400), + [anon_sym_PIPE] = ACTIONS(3402), + [anon_sym_SEMI_SEMI] = ACTIONS(3402), + [anon_sym_PIPE_AMP] = ACTIONS(3402), + [anon_sym_AMP_AMP] = ACTIONS(3402), + [anon_sym_PIPE_PIPE] = ACTIONS(3402), + [anon_sym_EQ_TILDE] = ACTIONS(3402), + [anon_sym_EQ_EQ] = ACTIONS(3402), + [anon_sym_LT] = ACTIONS(3402), + [anon_sym_GT] = ACTIONS(3402), + [anon_sym_GT_GT] = ACTIONS(3402), + [anon_sym_AMP_GT] = ACTIONS(3402), + [anon_sym_AMP_GT_GT] = ACTIONS(3402), + [anon_sym_LT_AMP] = ACTIONS(3402), + [anon_sym_GT_AMP] = ACTIONS(3402), + [anon_sym_LT_LT] = ACTIONS(3402), + [anon_sym_LT_LT_DASH] = ACTIONS(3402), + [anon_sym_LT_LT_LT] = ACTIONS(3402), + [sym__special_characters] = ACTIONS(3402), + [anon_sym_DQUOTE] = ACTIONS(3402), + [anon_sym_DOLLAR] = ACTIONS(3402), + [sym_raw_string] = ACTIONS(3402), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3402), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3402), + [anon_sym_BQUOTE] = ACTIONS(3402), + [anon_sym_LT_LPAREN] = ACTIONS(3402), + [anon_sym_GT_LPAREN] = ACTIONS(3402), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3352), - [anon_sym_SEMI] = ACTIONS(3352), - [anon_sym_LF] = ACTIONS(3352), - [anon_sym_AMP] = ACTIONS(3352), + [sym_word] = ACTIONS(3402), + [anon_sym_SEMI] = ACTIONS(3402), + [anon_sym_LF] = ACTIONS(3402), + [anon_sym_AMP] = ACTIONS(3402), }, [985] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(3354), + [sym_regex_without_right_brace] = ACTIONS(3404), }, [986] = { [sym_concatenation] = STATE(451), @@ -35902,29 +36086,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(3406), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [987] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(3358), + [sym_regex_without_right_brace] = ACTIONS(3408), }, [988] = { [sym_concatenation] = STATE(451), @@ -35935,25 +36119,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(3301), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [989] = { [sym_concatenation] = STATE(451), @@ -35964,59 +36148,60 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(3410), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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_file_descriptor] = ACTIONS(3412), + [sym__concat] = ACTIONS(3412), + [anon_sym_PIPE] = ACTIONS(3414), + [anon_sym_SEMI_SEMI] = ACTIONS(3414), + [anon_sym_PIPE_AMP] = ACTIONS(3414), + [anon_sym_AMP_AMP] = ACTIONS(3414), + [anon_sym_PIPE_PIPE] = ACTIONS(3414), + [anon_sym_EQ_TILDE] = ACTIONS(3414), + [anon_sym_EQ_EQ] = ACTIONS(3414), + [anon_sym_LT] = ACTIONS(3414), + [anon_sym_GT] = ACTIONS(3414), + [anon_sym_GT_GT] = ACTIONS(3414), + [anon_sym_AMP_GT] = ACTIONS(3414), + [anon_sym_AMP_GT_GT] = ACTIONS(3414), + [anon_sym_LT_AMP] = ACTIONS(3414), + [anon_sym_GT_AMP] = ACTIONS(3414), + [anon_sym_LT_LT] = ACTIONS(3414), + [anon_sym_LT_LT_DASH] = ACTIONS(3414), + [anon_sym_LT_LT_LT] = ACTIONS(3414), + [sym__special_characters] = ACTIONS(3414), + [anon_sym_DQUOTE] = ACTIONS(3414), + [anon_sym_DOLLAR] = ACTIONS(3414), + [sym_raw_string] = ACTIONS(3414), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3414), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3414), + [anon_sym_BQUOTE] = ACTIONS(3414), + [anon_sym_LT_LPAREN] = ACTIONS(3414), + [anon_sym_GT_LPAREN] = ACTIONS(3414), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3364), - [anon_sym_SEMI] = ACTIONS(3364), - [anon_sym_LF] = ACTIONS(3364), - [anon_sym_AMP] = ACTIONS(3364), + [sym_word] = ACTIONS(3414), + [anon_sym_SEMI] = ACTIONS(3414), + [anon_sym_LF] = ACTIONS(3414), + [anon_sym_AMP] = ACTIONS(3414), }, [991] = { [sym_concatenation] = STATE(451), @@ -36027,52 +36212,52 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(3416), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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_file_descriptor] = ACTIONS(1277), + [sym_variable_name] = ACTIONS(1277), + [anon_sym_PIPE] = ACTIONS(3418), + [anon_sym_RPAREN] = ACTIONS(1277), + [anon_sym_PIPE_AMP] = ACTIONS(1277), + [anon_sym_AMP_AMP] = ACTIONS(1277), + [anon_sym_PIPE_PIPE] = ACTIONS(1277), + [anon_sym_LT] = ACTIONS(3418), + [anon_sym_GT] = ACTIONS(3418), + [anon_sym_GT_GT] = ACTIONS(1277), + [anon_sym_AMP_GT] = ACTIONS(3418), + [anon_sym_AMP_GT_GT] = ACTIONS(1277), + [anon_sym_LT_AMP] = ACTIONS(1277), + [anon_sym_GT_AMP] = ACTIONS(1277), + [sym__special_characters] = ACTIONS(3418), + [anon_sym_DQUOTE] = ACTIONS(1277), + [anon_sym_DOLLAR] = ACTIONS(3418), + [sym_raw_string] = ACTIONS(1277), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1277), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1277), + [anon_sym_BQUOTE] = ACTIONS(1277), + [anon_sym_LT_LPAREN] = ACTIONS(1277), + [anon_sym_GT_LPAREN] = ACTIONS(1277), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3368), + [sym_word] = ACTIONS(3418), }, [993] = { [sym_concatenation] = STATE(660), @@ -36083,54 +36268,54 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RPAREN] = ACTIONS(3420), + [sym__special_characters] = ACTIONS(1283), + [anon_sym_DQUOTE] = ACTIONS(1285), + [anon_sym_DOLLAR] = ACTIONS(1287), + [sym_raw_string] = ACTIONS(1289), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1291), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1293), + [anon_sym_BQUOTE] = ACTIONS(1295), + [anon_sym_LT_LPAREN] = ACTIONS(1297), + [anon_sym_GT_LPAREN] = ACTIONS(1297), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1277), + [sym_word] = ACTIONS(1299), }, [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_file_descriptor] = ACTIONS(1301), + [sym__concat] = ACTIONS(3422), + [sym_variable_name] = ACTIONS(1301), + [anon_sym_PIPE] = ACTIONS(3424), + [anon_sym_RPAREN] = ACTIONS(1301), + [anon_sym_PIPE_AMP] = ACTIONS(1301), + [anon_sym_AMP_AMP] = ACTIONS(1301), + [anon_sym_PIPE_PIPE] = ACTIONS(1301), + [anon_sym_LT] = ACTIONS(3424), + [anon_sym_GT] = ACTIONS(3424), + [anon_sym_GT_GT] = ACTIONS(1301), + [anon_sym_AMP_GT] = ACTIONS(3424), + [anon_sym_AMP_GT_GT] = ACTIONS(1301), + [anon_sym_LT_AMP] = ACTIONS(1301), + [anon_sym_GT_AMP] = ACTIONS(1301), + [sym__special_characters] = ACTIONS(3424), + [anon_sym_DQUOTE] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(3424), + [sym_raw_string] = ACTIONS(1301), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1301), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1301), + [anon_sym_BQUOTE] = ACTIONS(1301), + [anon_sym_LT_LPAREN] = ACTIONS(1301), + [anon_sym_GT_LPAREN] = ACTIONS(1301), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3374), + [sym_word] = ACTIONS(3424), }, [995] = { [sym_simple_expansion] = STATE(134), [sym_expansion] = STATE(134), [sym_command_substitution] = STATE(134), [aux_sym_string_repeat1] = STATE(1650), - [anon_sym_DQUOTE] = ACTIONS(3376), + [anon_sym_DQUOTE] = ACTIONS(3426), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -36139,61 +36324,62 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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_string] = STATE(1652), + [anon_sym_DQUOTE] = ACTIONS(2042), + [anon_sym_DOLLAR] = ACTIONS(3428), + [sym_raw_string] = ACTIONS(3430), + [anon_sym_POUND] = ACTIONS(3428), + [anon_sym_DASH] = ACTIONS(3428), [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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3432), + [anon_sym_STAR] = ACTIONS(3428), + [anon_sym_AT] = ACTIONS(3428), + [anon_sym_QMARK] = ACTIONS(3428), + [anon_sym_0] = ACTIONS(3434), + [anon_sym__] = ACTIONS(3434), }, [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_file_descriptor] = ACTIONS(1277), + [sym__concat] = ACTIONS(3422), + [sym_variable_name] = ACTIONS(1277), + [anon_sym_PIPE] = ACTIONS(3418), + [anon_sym_RPAREN] = ACTIONS(1277), + [anon_sym_PIPE_AMP] = ACTIONS(1277), + [anon_sym_AMP_AMP] = ACTIONS(1277), + [anon_sym_PIPE_PIPE] = ACTIONS(1277), + [anon_sym_LT] = ACTIONS(3418), + [anon_sym_GT] = ACTIONS(3418), + [anon_sym_GT_GT] = ACTIONS(1277), + [anon_sym_AMP_GT] = ACTIONS(3418), + [anon_sym_AMP_GT_GT] = ACTIONS(1277), + [anon_sym_LT_AMP] = ACTIONS(1277), + [anon_sym_GT_AMP] = ACTIONS(1277), + [sym__special_characters] = ACTIONS(3418), + [anon_sym_DQUOTE] = ACTIONS(1277), + [anon_sym_DOLLAR] = ACTIONS(3418), + [sym_raw_string] = ACTIONS(1277), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1277), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1277), + [anon_sym_BQUOTE] = ACTIONS(1277), + [anon_sym_LT_LPAREN] = ACTIONS(1277), + [anon_sym_GT_LPAREN] = ACTIONS(1277), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3368), + [sym_word] = ACTIONS(3418), }, [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_variable_name] = ACTIONS(3436), + [anon_sym_DOLLAR] = ACTIONS(3438), + [anon_sym_POUND] = ACTIONS(3440), + [anon_sym_DASH] = ACTIONS(3438), [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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(3438), + [anon_sym_AT] = ACTIONS(3438), + [anon_sym_QMARK] = ACTIONS(3438), + [anon_sym_0] = ACTIONS(3444), + [anon_sym__] = ACTIONS(3444), }, [999] = { [sym_for_statement] = STATE(1659), @@ -36221,22 +36407,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(264), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(268), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -36244,17 +36430,17 @@ 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(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__special_characters] = ACTIONS(286), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(300), + [sym_word] = ACTIONS(302), }, [1000] = { [sym_for_statement] = STATE(1661), @@ -36282,22 +36468,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(304), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(306), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(308), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_LBRACK_LBRACK] = ACTIONS(312), + [anon_sym_declare] = ACTIONS(314), + [anon_sym_typeset] = ACTIONS(314), + [anon_sym_export] = ACTIONS(314), + [anon_sym_readonly] = ACTIONS(314), + [anon_sym_local] = ACTIONS(314), + [anon_sym_unset] = ACTIONS(316), + [anon_sym_unsetenv] = ACTIONS(316), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -36305,17 +36491,17 @@ 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(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__special_characters] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [anon_sym_DOLLAR] = ACTIONS(322), + [sym_raw_string] = ACTIONS(324), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), + [anon_sym_BQUOTE] = ACTIONS(330), + [anon_sym_LT_LPAREN] = ACTIONS(332), + [anon_sym_GT_LPAREN] = ACTIONS(332), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(332), + [sym_word] = ACTIONS(334), }, [1001] = { [sym_for_statement] = STATE(1663), @@ -36343,22 +36529,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(264), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(268), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -36366,17 +36552,17 @@ 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(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__special_characters] = ACTIONS(286), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(300), + [sym_word] = ACTIONS(302), }, [1002] = { [sym_concatenation] = STATE(688), @@ -36387,17 +36573,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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__special_characters] = ACTIONS(1327), + [anon_sym_DQUOTE] = ACTIONS(1329), + [anon_sym_DOLLAR] = ACTIONS(1331), + [sym_raw_string] = ACTIONS(1333), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1335), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1337), + [anon_sym_BQUOTE] = ACTIONS(1339), + [anon_sym_LT_LPAREN] = ACTIONS(1341), + [anon_sym_GT_LPAREN] = ACTIONS(1341), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1319), + [sym_word] = ACTIONS(1343), }, [1003] = { [sym__terminated_statement] = STATE(691), @@ -36430,7 +36616,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(12), [anon_sym_for] = ACTIONS(16), [anon_sym_while] = ACTIONS(18), - [anon_sym_done] = ACTIONS(3394), + [anon_sym_done] = ACTIONS(3446), [anon_sym_if] = ACTIONS(20), [anon_sym_case] = ACTIONS(22), [anon_sym_function] = ACTIONS(24), @@ -36468,22 +36654,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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_file_descriptor] = ACTIONS(980), + [anon_sym_PIPE] = ACTIONS(3448), + [anon_sym_RPAREN] = ACTIONS(3450), + [anon_sym_PIPE_AMP] = ACTIONS(3450), + [anon_sym_AMP_AMP] = ACTIONS(3450), + [anon_sym_PIPE_PIPE] = ACTIONS(3450), + [anon_sym_LT] = ACTIONS(988), + [anon_sym_GT] = ACTIONS(988), + [anon_sym_GT_GT] = ACTIONS(990), + [anon_sym_AMP_GT] = ACTIONS(988), + [anon_sym_AMP_GT_GT] = ACTIONS(990), + [anon_sym_LT_AMP] = ACTIONS(990), + [anon_sym_GT_AMP] = ACTIONS(990), + [anon_sym_LT_LT] = ACTIONS(992), + [anon_sym_LT_LT_DASH] = ACTIONS(994), + [anon_sym_LT_LT_LT] = ACTIONS(996), [sym_comment] = ACTIONS(56), }, [1005] = { @@ -36521,9 +36707,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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_fi] = ACTIONS(3452), + [anon_sym_elif] = ACTIONS(1351), + [anon_sym_else] = ACTIONS(1353), [anon_sym_case] = ACTIONS(22), [anon_sym_function] = ACTIONS(24), [anon_sym_LPAREN] = ACTIONS(26), @@ -36556,29 +36742,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(58), }, [1006] = { - [anon_sym_SEMI_SEMI] = ACTIONS(3402), + [anon_sym_SEMI_SEMI] = ACTIONS(3454), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3402), - [anon_sym_LF] = ACTIONS(3402), - [anon_sym_AMP] = ACTIONS(3402), + [anon_sym_SEMI] = ACTIONS(3454), + [anon_sym_LF] = ACTIONS(3454), + [anon_sym_AMP] = ACTIONS(3454), }, [1007] = { - [anon_sym_in] = ACTIONS(3404), + [anon_sym_in] = ACTIONS(3456), [sym_comment] = ACTIONS(56), }, [1008] = { - [anon_sym_SEMI_SEMI] = ACTIONS(3406), + [anon_sym_SEMI_SEMI] = ACTIONS(3458), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3406), - [anon_sym_LF] = ACTIONS(3406), - [anon_sym_AMP] = ACTIONS(3406), + [anon_sym_SEMI] = ACTIONS(3458), + [anon_sym_LF] = ACTIONS(3458), + [anon_sym_AMP] = ACTIONS(3458), }, [1009] = { - [anon_sym_in] = ACTIONS(3408), + [anon_sym_in] = ACTIONS(3460), [sym_comment] = ACTIONS(56), }, [1010] = { - [anon_sym_RPAREN] = ACTIONS(3410), + [anon_sym_RPAREN] = ACTIONS(3462), [sym_comment] = ACTIONS(56), }, [1011] = { @@ -36616,7 +36802,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(3412), + [anon_sym_RBRACE] = ACTIONS(3464), [anon_sym_LBRACK] = ACTIONS(28), [anon_sym_LBRACK_LBRACK] = ACTIONS(30), [anon_sym_declare] = ACTIONS(32), @@ -36647,132 +36833,132 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [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_file_descriptor] = ACTIONS(3466), + [anon_sym_PIPE] = ACTIONS(3468), + [anon_sym_RPAREN] = ACTIONS(3470), + [anon_sym_PIPE_AMP] = ACTIONS(3470), + [anon_sym_AMP_AMP] = ACTIONS(3470), + [anon_sym_PIPE_PIPE] = ACTIONS(3470), + [anon_sym_LT] = ACTIONS(3472), + [anon_sym_GT] = ACTIONS(3472), + [anon_sym_GT_GT] = ACTIONS(3474), + [anon_sym_AMP_GT] = ACTIONS(3472), + [anon_sym_AMP_GT_GT] = ACTIONS(3474), + [anon_sym_LT_AMP] = ACTIONS(3474), + [anon_sym_GT_AMP] = ACTIONS(3474), [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), + [anon_sym_PIPE] = ACTIONS(3476), + [anon_sym_RPAREN] = ACTIONS(3478), + [anon_sym_PIPE_AMP] = ACTIONS(3478), + [anon_sym_AMP_AMP] = ACTIONS(3478), + [anon_sym_PIPE_PIPE] = ACTIONS(3478), + [anon_sym_BQUOTE] = ACTIONS(3478), [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_file_descriptor] = ACTIONS(1100), + [sym_variable_name] = ACTIONS(1100), + [anon_sym_for] = ACTIONS(1102), + [anon_sym_while] = ACTIONS(1102), + [anon_sym_if] = ACTIONS(1102), + [anon_sym_case] = ACTIONS(1102), + [anon_sym_RPAREN] = ACTIONS(3480), + [anon_sym_function] = ACTIONS(1102), + [anon_sym_LPAREN] = ACTIONS(1100), + [anon_sym_LBRACK] = ACTIONS(1102), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1100), + [anon_sym_declare] = ACTIONS(1102), + [anon_sym_typeset] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(1102), + [anon_sym_readonly] = ACTIONS(1102), + [anon_sym_local] = ACTIONS(1102), + [anon_sym_unset] = ACTIONS(1102), + [anon_sym_unsetenv] = ACTIONS(1102), + [anon_sym_LT] = ACTIONS(1102), + [anon_sym_GT] = ACTIONS(1102), + [anon_sym_GT_GT] = ACTIONS(1100), + [anon_sym_AMP_GT] = ACTIONS(1102), + [anon_sym_AMP_GT_GT] = ACTIONS(1100), + [anon_sym_LT_AMP] = ACTIONS(1100), + [anon_sym_GT_AMP] = ACTIONS(1100), + [sym__special_characters] = ACTIONS(1104), + [anon_sym_DQUOTE] = ACTIONS(1100), + [anon_sym_DOLLAR] = ACTIONS(1102), + [sym_raw_string] = ACTIONS(1100), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1100), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1100), + [anon_sym_BQUOTE] = ACTIONS(1100), + [anon_sym_LT_LPAREN] = ACTIONS(1100), + [anon_sym_GT_LPAREN] = ACTIONS(1100), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1084), + [sym_word] = ACTIONS(1104), }, [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), + [anon_sym_PIPE] = ACTIONS(548), + [anon_sym_RPAREN] = ACTIONS(3482), + [anon_sym_SEMI_SEMI] = ACTIONS(3484), + [anon_sym_PIPE_AMP] = ACTIONS(548), + [anon_sym_AMP_AMP] = ACTIONS(554), + [anon_sym_PIPE_PIPE] = ACTIONS(554), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3432), - [anon_sym_LF] = ACTIONS(3432), - [anon_sym_AMP] = ACTIONS(3432), + [anon_sym_SEMI] = ACTIONS(3484), + [anon_sym_LF] = ACTIONS(3484), + [anon_sym_AMP] = ACTIONS(3484), }, [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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(548), + [anon_sym_RPAREN] = ACTIONS(3482), + [anon_sym_SEMI_SEMI] = ACTIONS(3484), + [anon_sym_PIPE_AMP] = ACTIONS(548), + [anon_sym_AMP_AMP] = ACTIONS(554), + [anon_sym_PIPE_PIPE] = ACTIONS(554), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(382), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(382), + [anon_sym_LT_AMP] = ACTIONS(382), + [anon_sym_GT_AMP] = ACTIONS(382), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(382), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(382), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(382), + [anon_sym_BQUOTE] = ACTIONS(382), + [anon_sym_LT_LPAREN] = ACTIONS(382), + [anon_sym_GT_LPAREN] = ACTIONS(382), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(380), - [anon_sym_SEMI] = ACTIONS(3432), - [anon_sym_LF] = ACTIONS(3432), - [anon_sym_AMP] = ACTIONS(3432), + [sym_word] = ACTIONS(382), + [anon_sym_SEMI] = ACTIONS(3484), + [anon_sym_LF] = ACTIONS(3484), + [anon_sym_AMP] = ACTIONS(3484), }, [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_file_descriptor] = ACTIONS(980), + [anon_sym_PIPE] = ACTIONS(3486), + [anon_sym_RPAREN] = ACTIONS(3488), + [anon_sym_PIPE_AMP] = ACTIONS(3488), + [anon_sym_AMP_AMP] = ACTIONS(3488), + [anon_sym_PIPE_PIPE] = ACTIONS(3488), + [anon_sym_LT] = ACTIONS(988), + [anon_sym_GT] = ACTIONS(988), + [anon_sym_GT_GT] = ACTIONS(990), + [anon_sym_AMP_GT] = ACTIONS(988), + [anon_sym_AMP_GT_GT] = ACTIONS(990), + [anon_sym_LT_AMP] = ACTIONS(990), + [anon_sym_GT_AMP] = ACTIONS(990), + [anon_sym_LT_LT] = ACTIONS(992), + [anon_sym_LT_LT_DASH] = ACTIONS(994), + [anon_sym_LT_LT_LT] = ACTIONS(996), [sym_comment] = ACTIONS(56), }, [1018] = { @@ -36784,39 +36970,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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__empty_value] = ACTIONS(3490), + [anon_sym_LPAREN] = ACTIONS(3492), + [sym__special_characters] = ACTIONS(3494), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_DOLLAR] = ACTIONS(904), + [sym_raw_string] = ACTIONS(3496), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(908), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(910), + [anon_sym_BQUOTE] = ACTIONS(912), + [anon_sym_LT_LPAREN] = ACTIONS(914), + [anon_sym_GT_LPAREN] = ACTIONS(914), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3446), + [sym_word] = ACTIONS(3498), }, [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_variable_name] = ACTIONS(440), + [anon_sym_PIPE] = ACTIONS(2058), + [anon_sym_RPAREN] = ACTIONS(440), + [anon_sym_PIPE_AMP] = ACTIONS(440), + [anon_sym_AMP_AMP] = ACTIONS(440), + [anon_sym_PIPE_PIPE] = ACTIONS(440), + [sym__special_characters] = ACTIONS(2058), + [anon_sym_DQUOTE] = ACTIONS(440), + [anon_sym_DOLLAR] = ACTIONS(2058), + [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(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2028), - [sym_word] = ACTIONS(440), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2058), + [sym_word] = ACTIONS(442), }, [1020] = { [sym_string] = STATE(1690), @@ -36825,67 +37011,67 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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__special_characters] = ACTIONS(3500), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_DOLLAR] = ACTIONS(904), + [sym_raw_string] = ACTIONS(3502), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(908), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(910), + [anon_sym_BQUOTE] = ACTIONS(912), + [anon_sym_LT_LPAREN] = ACTIONS(914), + [anon_sym_GT_LPAREN] = ACTIONS(914), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3448), + [sym_word] = ACTIONS(3500), }, [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__concat] = ACTIONS(2086), + [sym_variable_name] = ACTIONS(788), + [anon_sym_PIPE] = ACTIONS(1567), + [anon_sym_RPAREN] = ACTIONS(788), + [anon_sym_PIPE_AMP] = ACTIONS(788), + [anon_sym_AMP_AMP] = ACTIONS(788), + [anon_sym_PIPE_PIPE] = ACTIONS(788), + [sym__special_characters] = ACTIONS(1567), + [anon_sym_DQUOTE] = ACTIONS(788), + [anon_sym_DOLLAR] = ACTIONS(1567), + [sym_raw_string] = ACTIONS(788), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(788), + [anon_sym_BQUOTE] = ACTIONS(788), + [anon_sym_LT_LPAREN] = ACTIONS(788), + [anon_sym_GT_LPAREN] = ACTIONS(788), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1539), - [sym_word] = ACTIONS(774), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1567), + [sym_word] = ACTIONS(790), }, [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__concat] = ACTIONS(792), + [sym_variable_name] = ACTIONS(792), + [anon_sym_PIPE] = ACTIONS(1569), + [anon_sym_RPAREN] = ACTIONS(792), + [anon_sym_PIPE_AMP] = ACTIONS(792), + [anon_sym_AMP_AMP] = ACTIONS(792), + [anon_sym_PIPE_PIPE] = ACTIONS(792), + [sym__special_characters] = ACTIONS(1569), + [anon_sym_DQUOTE] = ACTIONS(792), + [anon_sym_DOLLAR] = ACTIONS(1569), + [sym_raw_string] = ACTIONS(792), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(792), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(792), + [anon_sym_BQUOTE] = ACTIONS(792), + [anon_sym_LT_LPAREN] = ACTIONS(792), + [anon_sym_GT_LPAREN] = ACTIONS(792), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1541), - [sym_word] = ACTIONS(778), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1569), + [sym_word] = ACTIONS(794), }, [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_DQUOTE] = ACTIONS(3504), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -36894,71 +37080,71 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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__concat] = ACTIONS(824), + [sym_variable_name] = ACTIONS(824), + [anon_sym_PIPE] = ACTIONS(1573), + [anon_sym_RPAREN] = ACTIONS(824), + [anon_sym_PIPE_AMP] = ACTIONS(824), + [anon_sym_AMP_AMP] = ACTIONS(824), + [anon_sym_PIPE_PIPE] = ACTIONS(824), + [sym__special_characters] = ACTIONS(1573), + [anon_sym_DQUOTE] = ACTIONS(824), + [anon_sym_DOLLAR] = ACTIONS(1573), + [sym_raw_string] = ACTIONS(824), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(824), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(824), + [anon_sym_BQUOTE] = ACTIONS(824), + [anon_sym_LT_LPAREN] = ACTIONS(824), + [anon_sym_GT_LPAREN] = ACTIONS(824), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1545), - [sym_word] = ACTIONS(810), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1573), + [sym_word] = ACTIONS(826), }, [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__concat] = ACTIONS(828), + [sym_variable_name] = ACTIONS(828), + [anon_sym_PIPE] = ACTIONS(1575), + [anon_sym_RPAREN] = ACTIONS(828), + [anon_sym_PIPE_AMP] = ACTIONS(828), + [anon_sym_AMP_AMP] = ACTIONS(828), + [anon_sym_PIPE_PIPE] = ACTIONS(828), + [sym__special_characters] = ACTIONS(1575), + [anon_sym_DQUOTE] = ACTIONS(828), + [anon_sym_DOLLAR] = ACTIONS(1575), + [sym_raw_string] = ACTIONS(828), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), + [anon_sym_BQUOTE] = ACTIONS(828), + [anon_sym_LT_LPAREN] = ACTIONS(828), + [anon_sym_GT_LPAREN] = ACTIONS(828), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1547), - [sym_word] = ACTIONS(814), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1575), + [sym_word] = ACTIONS(830), }, [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__concat] = ACTIONS(832), + [sym_variable_name] = ACTIONS(832), + [anon_sym_PIPE] = ACTIONS(1577), + [anon_sym_RPAREN] = ACTIONS(832), + [anon_sym_PIPE_AMP] = ACTIONS(832), + [anon_sym_AMP_AMP] = ACTIONS(832), + [anon_sym_PIPE_PIPE] = ACTIONS(832), + [sym__special_characters] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(832), + [anon_sym_DOLLAR] = ACTIONS(1577), + [sym_raw_string] = ACTIONS(832), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(832), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(832), + [anon_sym_BQUOTE] = ACTIONS(832), + [anon_sym_LT_LPAREN] = ACTIONS(832), + [anon_sym_GT_LPAREN] = ACTIONS(832), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1549), - [sym_word] = ACTIONS(818), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1577), + [sym_word] = ACTIONS(834), }, [1027] = { - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(3454), + [anon_sym_LBRACK] = ACTIONS(836), + [anon_sym_EQ] = ACTIONS(3506), [sym_comment] = ACTIONS(56), }, [1028] = { @@ -36970,39 +37156,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(3508), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(3510), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1029] = { [sym_subscript] = STATE(1700), - [sym_variable_name] = ACTIONS(3460), - [anon_sym_DOLLAR] = ACTIONS(3462), - [anon_sym_DASH] = ACTIONS(3462), + [sym_variable_name] = ACTIONS(3512), + [anon_sym_DOLLAR] = ACTIONS(3514), + [anon_sym_DASH] = ACTIONS(3514), [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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3516), + [anon_sym_STAR] = ACTIONS(3514), + [anon_sym_AT] = ACTIONS(3514), + [anon_sym_QMARK] = ACTIONS(3514), + [anon_sym_0] = ACTIONS(3518), + [anon_sym__] = ACTIONS(3518), }, [1030] = { [sym_concatenation] = STATE(451), @@ -37013,26 +37199,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(3520), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(3522), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1031] = { [sym_concatenation] = STATE(451), @@ -37043,130 +37229,130 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(3524), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(3526), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(3528), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), [sym_comment] = ACTIONS(56), }, [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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(3528), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [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), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_PIPE_AMP] = ACTIONS(1072), + [anon_sym_AMP_AMP] = ACTIONS(1074), + [anon_sym_PIPE_PIPE] = ACTIONS(1074), + [anon_sym_BQUOTE] = ACTIONS(3528), [sym_comment] = ACTIONS(56), }, [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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_PIPE_AMP] = ACTIONS(1072), + [anon_sym_AMP_AMP] = ACTIONS(1074), + [anon_sym_PIPE_PIPE] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(3528), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [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), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(3530), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), [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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(3530), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [1038] = { [sym_variable_assignment] = STATE(496), @@ -37179,24 +37365,24 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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_variable_name] = ACTIONS(3532), + [anon_sym_PIPE] = ACTIONS(3535), + [anon_sym_RPAREN] = ACTIONS(3537), + [anon_sym_PIPE_AMP] = ACTIONS(3537), + [anon_sym_AMP_AMP] = ACTIONS(3537), + [anon_sym_PIPE_PIPE] = ACTIONS(3537), + [sym__special_characters] = ACTIONS(3539), + [anon_sym_DQUOTE] = ACTIONS(3542), + [anon_sym_DOLLAR] = ACTIONS(3545), + [sym_raw_string] = ACTIONS(3548), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3551), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3554), + [anon_sym_BQUOTE] = ACTIONS(3557), + [anon_sym_LT_LPAREN] = ACTIONS(3560), + [anon_sym_GT_LPAREN] = ACTIONS(3560), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3511), - [sym_word] = ACTIONS(3514), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3563), + [sym_word] = ACTIONS(3566), }, [1039] = { [sym_string] = STATE(1709), @@ -37205,65 +37391,65 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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__special_characters] = ACTIONS(3569), + [anon_sym_DQUOTE] = ACTIONS(926), + [anon_sym_DOLLAR] = ACTIONS(928), + [sym_raw_string] = ACTIONS(3571), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(932), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(934), + [anon_sym_BQUOTE] = ACTIONS(936), + [anon_sym_LT_LPAREN] = ACTIONS(938), + [anon_sym_GT_LPAREN] = ACTIONS(938), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3517), + [sym_word] = ACTIONS(3569), }, [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__concat] = ACTIONS(2118), + [anon_sym_PIPE] = ACTIONS(1567), + [anon_sym_RPAREN] = ACTIONS(788), + [anon_sym_PIPE_AMP] = ACTIONS(788), + [anon_sym_AMP_AMP] = ACTIONS(788), + [anon_sym_PIPE_PIPE] = ACTIONS(788), + [sym__special_characters] = ACTIONS(1567), + [anon_sym_DQUOTE] = ACTIONS(788), + [anon_sym_DOLLAR] = ACTIONS(1567), + [sym_raw_string] = ACTIONS(788), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(788), + [anon_sym_BQUOTE] = ACTIONS(788), + [anon_sym_LT_LPAREN] = ACTIONS(788), + [anon_sym_GT_LPAREN] = ACTIONS(788), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1539), - [sym_word] = ACTIONS(774), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1567), + [sym_word] = ACTIONS(790), }, [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__concat] = ACTIONS(792), + [anon_sym_PIPE] = ACTIONS(1569), + [anon_sym_RPAREN] = ACTIONS(792), + [anon_sym_PIPE_AMP] = ACTIONS(792), + [anon_sym_AMP_AMP] = ACTIONS(792), + [anon_sym_PIPE_PIPE] = ACTIONS(792), + [sym__special_characters] = ACTIONS(1569), + [anon_sym_DQUOTE] = ACTIONS(792), + [anon_sym_DOLLAR] = ACTIONS(1569), + [sym_raw_string] = ACTIONS(792), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(792), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(792), + [anon_sym_BQUOTE] = ACTIONS(792), + [anon_sym_LT_LPAREN] = ACTIONS(792), + [anon_sym_GT_LPAREN] = ACTIONS(792), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1541), - [sym_word] = ACTIONS(778), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1569), + [sym_word] = ACTIONS(794), }, [1042] = { [sym_simple_expansion] = STATE(134), [sym_expansion] = STATE(134), [sym_command_substitution] = STATE(134), [aux_sym_string_repeat1] = STATE(447), - [anon_sym_DQUOTE] = ACTIONS(3521), + [anon_sym_DQUOTE] = ACTIONS(3573), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -37272,68 +37458,68 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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__concat] = ACTIONS(824), + [anon_sym_PIPE] = ACTIONS(1573), + [anon_sym_RPAREN] = ACTIONS(824), + [anon_sym_PIPE_AMP] = ACTIONS(824), + [anon_sym_AMP_AMP] = ACTIONS(824), + [anon_sym_PIPE_PIPE] = ACTIONS(824), + [sym__special_characters] = ACTIONS(1573), + [anon_sym_DQUOTE] = ACTIONS(824), + [anon_sym_DOLLAR] = ACTIONS(1573), + [sym_raw_string] = ACTIONS(824), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(824), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(824), + [anon_sym_BQUOTE] = ACTIONS(824), + [anon_sym_LT_LPAREN] = ACTIONS(824), + [anon_sym_GT_LPAREN] = ACTIONS(824), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1545), - [sym_word] = ACTIONS(810), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1573), + [sym_word] = ACTIONS(826), }, [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__concat] = ACTIONS(828), + [anon_sym_PIPE] = ACTIONS(1575), + [anon_sym_RPAREN] = ACTIONS(828), + [anon_sym_PIPE_AMP] = ACTIONS(828), + [anon_sym_AMP_AMP] = ACTIONS(828), + [anon_sym_PIPE_PIPE] = ACTIONS(828), + [sym__special_characters] = ACTIONS(1575), + [anon_sym_DQUOTE] = ACTIONS(828), + [anon_sym_DOLLAR] = ACTIONS(1575), + [sym_raw_string] = ACTIONS(828), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), + [anon_sym_BQUOTE] = ACTIONS(828), + [anon_sym_LT_LPAREN] = ACTIONS(828), + [anon_sym_GT_LPAREN] = ACTIONS(828), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1547), - [sym_word] = ACTIONS(814), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1575), + [sym_word] = ACTIONS(830), }, [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__concat] = ACTIONS(832), + [anon_sym_PIPE] = ACTIONS(1577), + [anon_sym_RPAREN] = ACTIONS(832), + [anon_sym_PIPE_AMP] = ACTIONS(832), + [anon_sym_AMP_AMP] = ACTIONS(832), + [anon_sym_PIPE_PIPE] = ACTIONS(832), + [sym__special_characters] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(832), + [anon_sym_DOLLAR] = ACTIONS(1577), + [sym_raw_string] = ACTIONS(832), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(832), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(832), + [anon_sym_BQUOTE] = ACTIONS(832), + [anon_sym_LT_LPAREN] = ACTIONS(832), + [anon_sym_GT_LPAREN] = ACTIONS(832), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1549), - [sym_word] = ACTIONS(818), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1577), + [sym_word] = ACTIONS(834), }, [1046] = { - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(3523), + [anon_sym_LBRACK] = ACTIONS(836), + [anon_sym_EQ] = ACTIONS(3575), [sym_comment] = ACTIONS(56), }, [1047] = { @@ -37345,39 +37531,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(3577), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(3579), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1048] = { [sym_subscript] = STATE(1719), - [sym_variable_name] = ACTIONS(3529), - [anon_sym_DOLLAR] = ACTIONS(3531), - [anon_sym_DASH] = ACTIONS(3531), + [sym_variable_name] = ACTIONS(3581), + [anon_sym_DOLLAR] = ACTIONS(3583), + [anon_sym_DASH] = ACTIONS(3583), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3585), + [anon_sym_STAR] = ACTIONS(3583), + [anon_sym_AT] = ACTIONS(3583), + [anon_sym_QMARK] = ACTIONS(3583), + [anon_sym_0] = ACTIONS(3587), + [anon_sym__] = ACTIONS(3587), }, [1049] = { [sym_concatenation] = STATE(451), @@ -37388,26 +37574,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(3589), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(3591), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1050] = { [sym_concatenation] = STATE(451), @@ -37418,130 +37604,130 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(3593), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(3595), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(3597), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), [sym_comment] = ACTIONS(56), }, [1052] = { - [sym_file_descriptor] = ACTIONS(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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(3597), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [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), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_PIPE_AMP] = ACTIONS(1072), + [anon_sym_AMP_AMP] = ACTIONS(1074), + [anon_sym_PIPE_PIPE] = ACTIONS(1074), + [anon_sym_BQUOTE] = ACTIONS(3597), [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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_PIPE_AMP] = ACTIONS(1072), + [anon_sym_AMP_AMP] = ACTIONS(1074), + [anon_sym_PIPE_PIPE] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(3597), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [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), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(3599), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), [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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(3599), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [1057] = { [sym_concatenation] = STATE(508), @@ -37552,117 +37738,120 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_PIPE] = ACTIONS(3601), + [anon_sym_RPAREN] = ACTIONS(3603), + [anon_sym_PIPE_AMP] = ACTIONS(3603), + [anon_sym_AMP_AMP] = ACTIONS(3603), + [anon_sym_PIPE_PIPE] = ACTIONS(3603), + [sym__special_characters] = ACTIONS(3605), + [anon_sym_DQUOTE] = ACTIONS(3608), + [anon_sym_DOLLAR] = ACTIONS(3611), + [sym_raw_string] = ACTIONS(3614), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3617), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3620), + [anon_sym_BQUOTE] = ACTIONS(3623), + [anon_sym_LT_LPAREN] = ACTIONS(3626), + [anon_sym_GT_LPAREN] = ACTIONS(3626), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3577), - [sym_word] = ACTIONS(3580), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3629), + [sym_word] = ACTIONS(3632), }, [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_file_descriptor] = ACTIONS(1886), + [sym__concat] = ACTIONS(1886), + [anon_sym_PIPE] = ACTIONS(3056), + [anon_sym_RPAREN] = ACTIONS(1886), + [anon_sym_PIPE_AMP] = ACTIONS(1886), + [anon_sym_AMP_AMP] = ACTIONS(1886), + [anon_sym_PIPE_PIPE] = ACTIONS(1886), + [anon_sym_EQ_TILDE] = ACTIONS(3056), + [anon_sym_EQ_EQ] = ACTIONS(3056), + [anon_sym_LT] = ACTIONS(3056), + [anon_sym_GT] = ACTIONS(3056), + [anon_sym_GT_GT] = ACTIONS(1886), + [anon_sym_AMP_GT] = ACTIONS(3056), + [anon_sym_AMP_GT_GT] = ACTIONS(1886), + [anon_sym_LT_AMP] = ACTIONS(1886), + [anon_sym_GT_AMP] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(3056), + [anon_sym_LT_LT_DASH] = ACTIONS(1886), + [anon_sym_LT_LT_LT] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(3056), + [anon_sym_DQUOTE] = ACTIONS(1886), + [anon_sym_DOLLAR] = ACTIONS(3056), + [sym_raw_string] = ACTIONS(1886), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1886), + [anon_sym_BQUOTE] = ACTIONS(1886), + [anon_sym_LT_LPAREN] = ACTIONS(1886), + [anon_sym_GT_LPAREN] = ACTIONS(1886), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1860), + [sym_word] = ACTIONS(1888), }, [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_file_descriptor] = ACTIONS(1886), + [sym__concat] = ACTIONS(3635), + [anon_sym_PIPE] = ACTIONS(3056), + [anon_sym_RPAREN] = ACTIONS(1886), + [anon_sym_PIPE_AMP] = ACTIONS(1886), + [anon_sym_AMP_AMP] = ACTIONS(1886), + [anon_sym_PIPE_PIPE] = ACTIONS(1886), + [anon_sym_EQ_TILDE] = ACTIONS(3056), + [anon_sym_EQ_EQ] = ACTIONS(3056), + [anon_sym_LT] = ACTIONS(3056), + [anon_sym_GT] = ACTIONS(3056), + [anon_sym_GT_GT] = ACTIONS(1886), + [anon_sym_AMP_GT] = ACTIONS(3056), + [anon_sym_AMP_GT_GT] = ACTIONS(1886), + [anon_sym_LT_AMP] = ACTIONS(1886), + [anon_sym_GT_AMP] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(3056), + [anon_sym_LT_LT_DASH] = ACTIONS(1886), + [anon_sym_LT_LT_LT] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(3056), + [anon_sym_DQUOTE] = ACTIONS(1886), + [anon_sym_DOLLAR] = ACTIONS(3056), + [sym_raw_string] = ACTIONS(1886), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1886), + [anon_sym_BQUOTE] = ACTIONS(1886), + [anon_sym_LT_LPAREN] = ACTIONS(1886), + [anon_sym_GT_LPAREN] = ACTIONS(1886), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1860), + [sym_word] = ACTIONS(1888), }, [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_file_descriptor] = ACTIONS(1923), + [sym__concat] = ACTIONS(1923), + [anon_sym_PIPE] = ACTIONS(3061), + [anon_sym_RPAREN] = ACTIONS(1923), + [anon_sym_PIPE_AMP] = ACTIONS(1923), + [anon_sym_AMP_AMP] = ACTIONS(1923), + [anon_sym_PIPE_PIPE] = ACTIONS(1923), + [anon_sym_EQ_TILDE] = ACTIONS(3061), + [anon_sym_EQ_EQ] = ACTIONS(3061), + [anon_sym_LT] = ACTIONS(3061), + [anon_sym_GT] = ACTIONS(3061), + [anon_sym_GT_GT] = ACTIONS(1923), + [anon_sym_AMP_GT] = ACTIONS(3061), + [anon_sym_AMP_GT_GT] = ACTIONS(1923), + [anon_sym_LT_AMP] = ACTIONS(1923), + [anon_sym_GT_AMP] = ACTIONS(1923), + [anon_sym_LT_LT] = ACTIONS(3061), + [anon_sym_LT_LT_DASH] = ACTIONS(1923), + [anon_sym_LT_LT_LT] = ACTIONS(1923), + [sym__special_characters] = ACTIONS(3061), + [anon_sym_DQUOTE] = ACTIONS(1923), + [anon_sym_DOLLAR] = ACTIONS(3061), + [sym_raw_string] = ACTIONS(1923), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1923), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1923), + [anon_sym_BQUOTE] = ACTIONS(1923), + [anon_sym_LT_LPAREN] = ACTIONS(1923), + [anon_sym_GT_LPAREN] = ACTIONS(1923), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1897), + [sym_word] = ACTIONS(1925), }, [1061] = { [sym_concatenation] = STATE(1731), @@ -37672,53 +37861,54 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(3638), + [sym__special_characters] = ACTIONS(3640), + [anon_sym_DQUOTE] = ACTIONS(1952), + [anon_sym_DOLLAR] = ACTIONS(1954), + [sym_raw_string] = ACTIONS(3642), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), + [anon_sym_BQUOTE] = ACTIONS(1962), + [anon_sym_LT_LPAREN] = ACTIONS(1964), + [anon_sym_GT_LPAREN] = ACTIONS(1964), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3592), + [sym_word] = ACTIONS(3644), }, [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_file_descriptor] = ACTIONS(1968), + [sym__concat] = ACTIONS(1968), + [anon_sym_PIPE] = ACTIONS(3071), + [anon_sym_RPAREN] = ACTIONS(1968), + [anon_sym_PIPE_AMP] = ACTIONS(1968), + [anon_sym_AMP_AMP] = ACTIONS(1968), + [anon_sym_PIPE_PIPE] = ACTIONS(1968), + [anon_sym_EQ_TILDE] = ACTIONS(3071), + [anon_sym_EQ_EQ] = ACTIONS(3071), + [anon_sym_LT] = ACTIONS(3071), + [anon_sym_GT] = ACTIONS(3071), + [anon_sym_GT_GT] = ACTIONS(1968), + [anon_sym_AMP_GT] = ACTIONS(3071), + [anon_sym_AMP_GT_GT] = ACTIONS(1968), + [anon_sym_LT_AMP] = ACTIONS(1968), + [anon_sym_GT_AMP] = ACTIONS(1968), + [anon_sym_LT_LT] = ACTIONS(3071), + [anon_sym_LT_LT_DASH] = ACTIONS(1968), + [anon_sym_LT_LT_LT] = ACTIONS(1968), + [sym__special_characters] = ACTIONS(3071), + [anon_sym_DQUOTE] = ACTIONS(1968), + [anon_sym_DOLLAR] = ACTIONS(3071), + [sym_raw_string] = ACTIONS(1968), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1968), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1968), + [anon_sym_BQUOTE] = ACTIONS(1968), + [anon_sym_LT_LPAREN] = ACTIONS(1968), + [anon_sym_GT_LPAREN] = ACTIONS(1968), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1942), + [sym_word] = ACTIONS(1970), }, [1063] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(3594), + [sym_regex_without_right_brace] = ACTIONS(3646), }, [1064] = { [sym_concatenation] = STATE(451), @@ -37729,29 +37919,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(3648), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1065] = { - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(3598), + [anon_sym_LBRACK] = ACTIONS(836), + [anon_sym_EQ] = ACTIONS(3650), [sym_comment] = ACTIONS(56), }, [1066] = { @@ -37763,26 +37953,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(3652), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(3654), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1067] = { [sym_concatenation] = STATE(451), @@ -37793,26 +37983,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(3656), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(3658), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1068] = { [sym_concatenation] = STATE(451), @@ -37823,61 +38013,62 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(3638), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(3660), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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_file_descriptor] = ACTIONS(2022), + [sym__concat] = ACTIONS(2022), + [anon_sym_PIPE] = ACTIONS(3089), + [anon_sym_RPAREN] = ACTIONS(2022), + [anon_sym_PIPE_AMP] = ACTIONS(2022), + [anon_sym_AMP_AMP] = ACTIONS(2022), + [anon_sym_PIPE_PIPE] = ACTIONS(2022), + [anon_sym_EQ_TILDE] = ACTIONS(3089), + [anon_sym_EQ_EQ] = ACTIONS(3089), + [anon_sym_LT] = ACTIONS(3089), + [anon_sym_GT] = ACTIONS(3089), + [anon_sym_GT_GT] = ACTIONS(2022), + [anon_sym_AMP_GT] = ACTIONS(3089), + [anon_sym_AMP_GT_GT] = ACTIONS(2022), + [anon_sym_LT_AMP] = ACTIONS(2022), + [anon_sym_GT_AMP] = ACTIONS(2022), + [anon_sym_LT_LT] = ACTIONS(3089), + [anon_sym_LT_LT_DASH] = ACTIONS(2022), + [anon_sym_LT_LT_LT] = ACTIONS(2022), + [sym__special_characters] = ACTIONS(3089), + [anon_sym_DQUOTE] = ACTIONS(2022), + [anon_sym_DOLLAR] = ACTIONS(3089), + [sym_raw_string] = ACTIONS(2022), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2022), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2022), + [anon_sym_BQUOTE] = ACTIONS(2022), + [anon_sym_LT_LPAREN] = ACTIONS(2022), + [anon_sym_GT_LPAREN] = ACTIONS(2022), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1994), + [sym_word] = ACTIONS(2024), }, [1070] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(3610), + [sym_regex_without_right_brace] = ACTIONS(3662), }, [1071] = { [sym_concatenation] = STATE(451), @@ -37888,60 +38079,61 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(3664), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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_file_descriptor] = ACTIONS(2030), + [sym__concat] = ACTIONS(2030), + [anon_sym_PIPE] = ACTIONS(3095), + [anon_sym_RPAREN] = ACTIONS(2030), + [anon_sym_PIPE_AMP] = ACTIONS(2030), + [anon_sym_AMP_AMP] = ACTIONS(2030), + [anon_sym_PIPE_PIPE] = ACTIONS(2030), + [anon_sym_EQ_TILDE] = ACTIONS(3095), + [anon_sym_EQ_EQ] = ACTIONS(3095), + [anon_sym_LT] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(3095), + [anon_sym_GT_GT] = ACTIONS(2030), + [anon_sym_AMP_GT] = ACTIONS(3095), + [anon_sym_AMP_GT_GT] = ACTIONS(2030), + [anon_sym_LT_AMP] = ACTIONS(2030), + [anon_sym_GT_AMP] = ACTIONS(2030), + [anon_sym_LT_LT] = ACTIONS(3095), + [anon_sym_LT_LT_DASH] = ACTIONS(2030), + [anon_sym_LT_LT_LT] = ACTIONS(2030), + [sym__special_characters] = ACTIONS(3095), + [anon_sym_DQUOTE] = ACTIONS(2030), + [anon_sym_DOLLAR] = ACTIONS(3095), + [sym_raw_string] = ACTIONS(2030), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2030), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2030), + [anon_sym_BQUOTE] = ACTIONS(2030), + [anon_sym_LT_LPAREN] = ACTIONS(2030), + [anon_sym_GT_LPAREN] = ACTIONS(2030), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2002), + [sym_word] = ACTIONS(2032), }, [1073] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(3614), + [sym_regex_without_right_brace] = ACTIONS(3666), }, [1074] = { [sym_concatenation] = STATE(451), @@ -37952,163 +38144,165 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(3638), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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_file_descriptor] = ACTIONS(2190), + [sym__concat] = ACTIONS(2190), + [anon_sym_PIPE] = ACTIONS(3099), + [anon_sym_RPAREN] = ACTIONS(2190), + [anon_sym_PIPE_AMP] = ACTIONS(2190), + [anon_sym_AMP_AMP] = ACTIONS(2190), + [anon_sym_PIPE_PIPE] = ACTIONS(2190), + [anon_sym_EQ_TILDE] = ACTIONS(3099), + [anon_sym_EQ_EQ] = ACTIONS(3099), + [anon_sym_LT] = ACTIONS(3099), + [anon_sym_GT] = ACTIONS(3099), + [anon_sym_GT_GT] = ACTIONS(2190), + [anon_sym_AMP_GT] = ACTIONS(3099), + [anon_sym_AMP_GT_GT] = ACTIONS(2190), + [anon_sym_LT_AMP] = ACTIONS(2190), + [anon_sym_GT_AMP] = ACTIONS(2190), + [anon_sym_LT_LT] = ACTIONS(3099), + [anon_sym_LT_LT_DASH] = ACTIONS(2190), + [anon_sym_LT_LT_LT] = ACTIONS(2190), + [sym__special_characters] = ACTIONS(3099), + [anon_sym_DQUOTE] = ACTIONS(2190), + [anon_sym_DOLLAR] = ACTIONS(3099), + [sym_raw_string] = ACTIONS(2190), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2190), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2190), + [anon_sym_BQUOTE] = ACTIONS(2190), + [anon_sym_LT_LPAREN] = ACTIONS(2190), + [anon_sym_GT_LPAREN] = ACTIONS(2190), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2158), + [sym_word] = ACTIONS(2192), }, [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_file_descriptor] = ACTIONS(2396), + [sym__concat] = ACTIONS(2396), + [anon_sym_PIPE] = ACTIONS(3101), + [anon_sym_RPAREN] = ACTIONS(2396), + [anon_sym_PIPE_AMP] = ACTIONS(2396), + [anon_sym_AMP_AMP] = ACTIONS(2396), + [anon_sym_PIPE_PIPE] = ACTIONS(2396), + [anon_sym_EQ_TILDE] = ACTIONS(3101), + [anon_sym_EQ_EQ] = ACTIONS(3101), + [anon_sym_LT] = ACTIONS(3101), + [anon_sym_GT] = ACTIONS(3101), + [anon_sym_GT_GT] = ACTIONS(2396), + [anon_sym_AMP_GT] = ACTIONS(3101), + [anon_sym_AMP_GT_GT] = ACTIONS(2396), + [anon_sym_LT_AMP] = ACTIONS(2396), + [anon_sym_GT_AMP] = ACTIONS(2396), + [anon_sym_LT_LT] = ACTIONS(3101), + [anon_sym_LT_LT_DASH] = ACTIONS(2396), + [anon_sym_LT_LT_LT] = ACTIONS(2396), + [sym__special_characters] = ACTIONS(3101), + [anon_sym_DQUOTE] = ACTIONS(2396), + [anon_sym_DOLLAR] = ACTIONS(3101), + [sym_raw_string] = ACTIONS(2396), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2396), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2396), + [anon_sym_BQUOTE] = ACTIONS(2396), + [anon_sym_LT_LPAREN] = ACTIONS(2396), + [anon_sym_GT_LPAREN] = ACTIONS(2396), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2360), + [sym_word] = ACTIONS(2398), }, [1077] = { [sym_compound_statement] = STATE(1746), - [anon_sym_LBRACE] = ACTIONS(2046), + [anon_sym_LBRACE] = ACTIONS(2076), [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), + [anon_sym_PIPE] = ACTIONS(3668), + [anon_sym_RPAREN] = ACTIONS(3670), + [anon_sym_PIPE_AMP] = ACTIONS(3670), + [anon_sym_AMP_AMP] = ACTIONS(3670), + [anon_sym_PIPE_PIPE] = ACTIONS(3670), + [anon_sym_BQUOTE] = ACTIONS(3670), [sym_comment] = ACTIONS(56), }, [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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(3668), + [anon_sym_RPAREN] = ACTIONS(3670), + [anon_sym_PIPE_AMP] = ACTIONS(3670), + [anon_sym_AMP_AMP] = ACTIONS(3670), + [anon_sym_PIPE_PIPE] = ACTIONS(3670), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [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), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(3672), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(3672), + [anon_sym_PIPE_PIPE] = ACTIONS(3672), [sym_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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(3672), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(3672), + [anon_sym_PIPE_PIPE] = ACTIONS(3672), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [1082] = { [sym_concatenation] = STATE(1749), @@ -38118,131 +38312,134 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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__special_characters] = ACTIONS(3674), + [anon_sym_DQUOTE] = ACTIONS(2218), + [anon_sym_DOLLAR] = ACTIONS(2220), + [sym_raw_string] = ACTIONS(3676), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2224), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2226), + [anon_sym_BQUOTE] = ACTIONS(2228), + [anon_sym_LT_LPAREN] = ACTIONS(2230), + [anon_sym_GT_LPAREN] = ACTIONS(2230), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3626), + [sym_word] = ACTIONS(3678), }, [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_file_descriptor] = ACTIONS(1553), + [sym__concat] = ACTIONS(944), + [anon_sym_PIPE] = ACTIONS(1551), + [anon_sym_RPAREN] = ACTIONS(1553), + [anon_sym_PIPE_AMP] = ACTIONS(1553), + [anon_sym_AMP_AMP] = ACTIONS(1553), + [anon_sym_PIPE_PIPE] = ACTIONS(1553), + [anon_sym_EQ_TILDE] = ACTIONS(1551), + [anon_sym_EQ_EQ] = ACTIONS(1551), + [anon_sym_LT] = ACTIONS(1551), + [anon_sym_GT] = ACTIONS(1551), + [anon_sym_GT_GT] = ACTIONS(1553), + [anon_sym_AMP_GT] = ACTIONS(1551), + [anon_sym_AMP_GT_GT] = ACTIONS(1553), + [anon_sym_LT_AMP] = ACTIONS(1553), + [anon_sym_GT_AMP] = ACTIONS(1553), + [anon_sym_LT_LT] = ACTIONS(1551), + [anon_sym_LT_LT_DASH] = ACTIONS(1553), + [anon_sym_LT_LT_LT] = ACTIONS(1553), + [sym__special_characters] = ACTIONS(1551), + [anon_sym_DQUOTE] = ACTIONS(1553), + [anon_sym_DOLLAR] = ACTIONS(1551), + [sym_raw_string] = ACTIONS(1553), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1553), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1553), + [anon_sym_BQUOTE] = ACTIONS(1553), + [anon_sym_LT_LPAREN] = ACTIONS(1553), + [anon_sym_GT_LPAREN] = ACTIONS(1553), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1527), + [sym_word] = ACTIONS(1555), }, [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_file_descriptor] = ACTIONS(1559), + [sym__concat] = ACTIONS(944), + [anon_sym_PIPE] = ACTIONS(1557), + [anon_sym_RPAREN] = ACTIONS(1559), + [anon_sym_PIPE_AMP] = ACTIONS(1559), + [anon_sym_AMP_AMP] = ACTIONS(1559), + [anon_sym_PIPE_PIPE] = ACTIONS(1559), + [anon_sym_EQ_TILDE] = ACTIONS(1557), + [anon_sym_EQ_EQ] = ACTIONS(1557), + [anon_sym_LT] = ACTIONS(1557), + [anon_sym_GT] = ACTIONS(1557), + [anon_sym_GT_GT] = ACTIONS(1559), + [anon_sym_AMP_GT] = ACTIONS(1557), + [anon_sym_AMP_GT_GT] = ACTIONS(1559), + [anon_sym_LT_AMP] = ACTIONS(1559), + [anon_sym_GT_AMP] = ACTIONS(1559), + [anon_sym_LT_LT] = ACTIONS(1557), + [anon_sym_LT_LT_DASH] = ACTIONS(1559), + [anon_sym_LT_LT_LT] = ACTIONS(1559), + [sym__special_characters] = ACTIONS(1557), + [anon_sym_DQUOTE] = ACTIONS(1559), + [anon_sym_DOLLAR] = ACTIONS(1557), + [sym_raw_string] = ACTIONS(1559), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1559), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1559), + [anon_sym_BQUOTE] = ACTIONS(1559), + [anon_sym_LT_LPAREN] = ACTIONS(1559), + [anon_sym_GT_LPAREN] = ACTIONS(1559), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1533), + [sym_word] = ACTIONS(1561), }, [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_file_descriptor] = ACTIONS(1559), + [anon_sym_PIPE] = ACTIONS(1557), + [anon_sym_RPAREN] = ACTIONS(1559), + [anon_sym_PIPE_AMP] = ACTIONS(1559), + [anon_sym_AMP_AMP] = ACTIONS(1559), + [anon_sym_PIPE_PIPE] = ACTIONS(1559), + [anon_sym_EQ_TILDE] = ACTIONS(1557), + [anon_sym_EQ_EQ] = ACTIONS(1557), + [anon_sym_LT] = ACTIONS(1557), + [anon_sym_GT] = ACTIONS(1557), + [anon_sym_GT_GT] = ACTIONS(1559), + [anon_sym_AMP_GT] = ACTIONS(1557), + [anon_sym_AMP_GT_GT] = ACTIONS(1559), + [anon_sym_LT_AMP] = ACTIONS(1559), + [anon_sym_GT_AMP] = ACTIONS(1559), + [anon_sym_LT_LT] = ACTIONS(1557), + [anon_sym_LT_LT_DASH] = ACTIONS(1559), + [anon_sym_LT_LT_LT] = ACTIONS(1559), + [sym__special_characters] = ACTIONS(1557), + [anon_sym_DQUOTE] = ACTIONS(1559), + [anon_sym_DOLLAR] = ACTIONS(1557), + [sym_raw_string] = ACTIONS(1559), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1559), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1559), + [anon_sym_BQUOTE] = ACTIONS(1559), + [anon_sym_LT_LPAREN] = ACTIONS(1559), + [anon_sym_GT_LPAREN] = ACTIONS(1559), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1533), + [sym_word] = ACTIONS(1561), }, [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_file_descriptor] = ACTIONS(754), + [sym__concat] = ACTIONS(3680), + [anon_sym_PIPE] = ACTIONS(758), + [anon_sym_RPAREN] = ACTIONS(754), + [anon_sym_PIPE_AMP] = ACTIONS(754), + [anon_sym_AMP_AMP] = ACTIONS(754), + [anon_sym_PIPE_PIPE] = ACTIONS(754), + [anon_sym_LT] = ACTIONS(758), + [anon_sym_GT] = ACTIONS(758), + [anon_sym_GT_GT] = ACTIONS(754), + [anon_sym_AMP_GT] = ACTIONS(758), + [anon_sym_AMP_GT_GT] = ACTIONS(754), + [anon_sym_LT_AMP] = ACTIONS(754), + [anon_sym_GT_AMP] = ACTIONS(754), + [anon_sym_LT_LT] = ACTIONS(758), + [anon_sym_LT_LT_DASH] = ACTIONS(754), + [anon_sym_LT_LT_LT] = ACTIONS(754), [sym_comment] = ACTIONS(56), }, [1087] = { @@ -38250,7 +38447,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(134), [sym_command_substitution] = STATE(134), [aux_sym_string_repeat1] = STATE(1753), - [anon_sym_DQUOTE] = ACTIONS(3630), + [anon_sym_DQUOTE] = ACTIONS(3682), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -38259,53 +38456,54 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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_string] = STATE(1755), + [anon_sym_DQUOTE] = ACTIONS(2218), + [anon_sym_DOLLAR] = ACTIONS(3684), + [sym_raw_string] = ACTIONS(3686), + [anon_sym_POUND] = ACTIONS(3684), + [anon_sym_DASH] = ACTIONS(3684), [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), + [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), }, [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_file_descriptor] = ACTIONS(770), + [sym__concat] = ACTIONS(3680), + [anon_sym_PIPE] = ACTIONS(772), + [anon_sym_RPAREN] = ACTIONS(770), + [anon_sym_PIPE_AMP] = ACTIONS(770), + [anon_sym_AMP_AMP] = ACTIONS(770), + [anon_sym_PIPE_PIPE] = ACTIONS(770), + [anon_sym_LT] = ACTIONS(772), + [anon_sym_GT] = ACTIONS(772), + [anon_sym_GT_GT] = ACTIONS(770), + [anon_sym_AMP_GT] = ACTIONS(772), + [anon_sym_AMP_GT_GT] = ACTIONS(770), + [anon_sym_LT_AMP] = ACTIONS(770), + [anon_sym_GT_AMP] = ACTIONS(770), + [anon_sym_LT_LT] = ACTIONS(772), + [anon_sym_LT_LT_DASH] = ACTIONS(770), + [anon_sym_LT_LT_LT] = ACTIONS(770), [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_variable_name] = ACTIONS(3692), + [anon_sym_DOLLAR] = ACTIONS(3694), + [anon_sym_POUND] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3694), [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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3698), + [anon_sym_STAR] = ACTIONS(3694), + [anon_sym_AT] = ACTIONS(3694), + [anon_sym_QMARK] = ACTIONS(3694), + [anon_sym_0] = ACTIONS(3700), + [anon_sym__] = ACTIONS(3700), }, [1091] = { [sym_for_statement] = STATE(1762), @@ -38333,22 +38531,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(264), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(268), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -38356,17 +38554,17 @@ 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(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__special_characters] = ACTIONS(286), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(300), + [sym_word] = ACTIONS(302), }, [1092] = { [sym_for_statement] = STATE(1764), @@ -38394,22 +38592,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(304), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(306), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(308), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_LBRACK_LBRACK] = ACTIONS(312), + [anon_sym_declare] = ACTIONS(314), + [anon_sym_typeset] = ACTIONS(314), + [anon_sym_export] = ACTIONS(314), + [anon_sym_readonly] = ACTIONS(314), + [anon_sym_local] = ACTIONS(314), + [anon_sym_unset] = ACTIONS(316), + [anon_sym_unsetenv] = ACTIONS(316), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -38417,17 +38615,17 @@ 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(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__special_characters] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [anon_sym_DOLLAR] = ACTIONS(322), + [sym_raw_string] = ACTIONS(324), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), + [anon_sym_BQUOTE] = ACTIONS(330), + [anon_sym_LT_LPAREN] = ACTIONS(332), + [anon_sym_GT_LPAREN] = ACTIONS(332), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(332), + [sym_word] = ACTIONS(334), }, [1093] = { [sym_for_statement] = STATE(1766), @@ -38455,22 +38653,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(264), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(268), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -38478,148 +38676,148 @@ 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(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__special_characters] = ACTIONS(286), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(300), + [sym_word] = ACTIONS(302), }, [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_file_descriptor] = ACTIONS(770), + [anon_sym_PIPE] = ACTIONS(772), + [anon_sym_RPAREN] = ACTIONS(770), + [anon_sym_PIPE_AMP] = ACTIONS(770), + [anon_sym_AMP_AMP] = ACTIONS(770), + [anon_sym_PIPE_PIPE] = ACTIONS(770), + [anon_sym_LT] = ACTIONS(772), + [anon_sym_GT] = ACTIONS(772), + [anon_sym_GT_GT] = ACTIONS(770), + [anon_sym_AMP_GT] = ACTIONS(772), + [anon_sym_AMP_GT_GT] = ACTIONS(770), + [anon_sym_LT_AMP] = ACTIONS(770), + [anon_sym_GT_AMP] = ACTIONS(770), + [anon_sym_LT_LT] = ACTIONS(772), + [anon_sym_LT_LT_DASH] = ACTIONS(770), + [anon_sym_LT_LT_LT] = ACTIONS(770), + [anon_sym_BQUOTE] = ACTIONS(770), [sym_comment] = ACTIONS(56), }, [1095] = { - [sym_file_descriptor] = ACTIONS(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_file_descriptor] = ACTIONS(2436), + [anon_sym_PIPE] = ACTIONS(3702), + [anon_sym_RPAREN] = ACTIONS(2436), + [anon_sym_PIPE_AMP] = ACTIONS(2436), + [anon_sym_AMP_AMP] = ACTIONS(2436), + [anon_sym_PIPE_PIPE] = ACTIONS(2436), + [anon_sym_LT] = ACTIONS(3702), + [anon_sym_GT] = ACTIONS(3702), + [anon_sym_GT_GT] = ACTIONS(2436), + [anon_sym_AMP_GT] = ACTIONS(3702), + [anon_sym_AMP_GT_GT] = ACTIONS(2436), + [anon_sym_LT_AMP] = ACTIONS(2436), + [anon_sym_GT_AMP] = ACTIONS(2436), + [anon_sym_LT_LT] = ACTIONS(3702), + [anon_sym_LT_LT_DASH] = ACTIONS(2436), + [anon_sym_LT_LT_LT] = ACTIONS(2436), + [anon_sym_BQUOTE] = ACTIONS(2436), [sym_comment] = ACTIONS(56), }, [1096] = { [sym_simple_expansion] = STATE(1218), [sym_expansion] = STATE(1218), [aux_sym_heredoc_repeat1] = STATE(1769), - [sym__heredoc_middle] = ACTIONS(2400), - [sym__heredoc_end] = ACTIONS(3650), - [anon_sym_DOLLAR] = ACTIONS(2404), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2406), + [sym__heredoc_middle] = ACTIONS(2440), + [sym__heredoc_end] = ACTIONS(3704), + [anon_sym_DOLLAR] = ACTIONS(2444), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2446), [sym_comment] = ACTIONS(56), }, [1097] = { - [sym_file_descriptor] = ACTIONS(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_file_descriptor] = ACTIONS(2448), + [anon_sym_PIPE] = ACTIONS(3706), + [anon_sym_RPAREN] = ACTIONS(2448), + [anon_sym_PIPE_AMP] = ACTIONS(2448), + [anon_sym_AMP_AMP] = ACTIONS(2448), + [anon_sym_PIPE_PIPE] = ACTIONS(2448), + [anon_sym_LT] = ACTIONS(3706), + [anon_sym_GT] = ACTIONS(3706), + [anon_sym_GT_GT] = ACTIONS(2448), + [anon_sym_AMP_GT] = ACTIONS(3706), + [anon_sym_AMP_GT_GT] = ACTIONS(2448), + [anon_sym_LT_AMP] = ACTIONS(2448), + [anon_sym_GT_AMP] = ACTIONS(2448), + [anon_sym_LT_LT] = ACTIONS(3706), + [anon_sym_LT_LT_DASH] = ACTIONS(2448), + [anon_sym_LT_LT_LT] = ACTIONS(2448), + [anon_sym_BQUOTE] = ACTIONS(2448), [sym_comment] = ACTIONS(56), }, [1098] = { [aux_sym_concatenation_repeat1] = STATE(1751), - [sym_file_descriptor] = ACTIONS(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_file_descriptor] = ACTIONS(2452), + [sym__concat] = ACTIONS(3680), + [anon_sym_PIPE] = ACTIONS(3708), + [anon_sym_RPAREN] = ACTIONS(2452), + [anon_sym_PIPE_AMP] = ACTIONS(2452), + [anon_sym_AMP_AMP] = ACTIONS(2452), + [anon_sym_PIPE_PIPE] = ACTIONS(2452), + [anon_sym_LT] = ACTIONS(3708), + [anon_sym_GT] = ACTIONS(3708), + [anon_sym_GT_GT] = ACTIONS(2452), + [anon_sym_AMP_GT] = ACTIONS(3708), + [anon_sym_AMP_GT_GT] = ACTIONS(2452), + [anon_sym_LT_AMP] = ACTIONS(2452), + [anon_sym_GT_AMP] = ACTIONS(2452), + [anon_sym_LT_LT] = ACTIONS(3708), + [anon_sym_LT_LT_DASH] = ACTIONS(2452), + [anon_sym_LT_LT_LT] = ACTIONS(2452), [sym_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_file_descriptor] = ACTIONS(2456), + [sym__concat] = ACTIONS(3680), + [anon_sym_PIPE] = ACTIONS(3710), + [anon_sym_RPAREN] = ACTIONS(2456), + [anon_sym_PIPE_AMP] = ACTIONS(2456), + [anon_sym_AMP_AMP] = ACTIONS(2456), + [anon_sym_PIPE_PIPE] = ACTIONS(2456), + [anon_sym_LT] = ACTIONS(3710), + [anon_sym_GT] = ACTIONS(3710), + [anon_sym_GT_GT] = ACTIONS(2456), + [anon_sym_AMP_GT] = ACTIONS(3710), + [anon_sym_AMP_GT_GT] = ACTIONS(2456), + [anon_sym_LT_AMP] = ACTIONS(2456), + [anon_sym_GT_AMP] = ACTIONS(2456), + [anon_sym_LT_LT] = ACTIONS(3710), + [anon_sym_LT_LT_DASH] = ACTIONS(2456), + [anon_sym_LT_LT_LT] = ACTIONS(2456), [sym_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_file_descriptor] = ACTIONS(2456), + [anon_sym_PIPE] = ACTIONS(3710), + [anon_sym_RPAREN] = ACTIONS(2456), + [anon_sym_PIPE_AMP] = ACTIONS(2456), + [anon_sym_AMP_AMP] = ACTIONS(2456), + [anon_sym_PIPE_PIPE] = ACTIONS(2456), + [anon_sym_LT] = ACTIONS(3710), + [anon_sym_GT] = ACTIONS(3710), + [anon_sym_GT_GT] = ACTIONS(2456), + [anon_sym_AMP_GT] = ACTIONS(3710), + [anon_sym_AMP_GT_GT] = ACTIONS(2456), + [anon_sym_LT_AMP] = ACTIONS(2456), + [anon_sym_GT_AMP] = ACTIONS(2456), + [anon_sym_LT_LT] = ACTIONS(3710), + [anon_sym_LT_LT_DASH] = ACTIONS(2456), + [anon_sym_LT_LT_LT] = ACTIONS(2456), + [anon_sym_BQUOTE] = ACTIONS(2456), [sym_comment] = ACTIONS(56), }, [1101] = { @@ -38627,22 +38825,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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_file_descriptor] = ACTIONS(3712), + [anon_sym_PIPE] = ACTIONS(3715), + [anon_sym_RPAREN] = ACTIONS(3717), + [anon_sym_PIPE_AMP] = ACTIONS(3717), + [anon_sym_AMP_AMP] = ACTIONS(3717), + [anon_sym_PIPE_PIPE] = ACTIONS(3717), + [anon_sym_LT] = ACTIONS(3719), + [anon_sym_GT] = ACTIONS(3719), + [anon_sym_GT_GT] = ACTIONS(3722), + [anon_sym_AMP_GT] = ACTIONS(3719), + [anon_sym_AMP_GT_GT] = ACTIONS(3722), + [anon_sym_LT_AMP] = ACTIONS(3722), + [anon_sym_GT_AMP] = ACTIONS(3722), + [anon_sym_LT_LT] = ACTIONS(3725), + [anon_sym_LT_LT_DASH] = ACTIONS(3728), + [anon_sym_LT_LT_LT] = ACTIONS(3731), [sym_comment] = ACTIONS(56), }, [1102] = { @@ -38650,22 +38848,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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_file_descriptor] = ACTIONS(980), + [anon_sym_PIPE] = ACTIONS(3734), + [anon_sym_RPAREN] = ACTIONS(3736), + [anon_sym_PIPE_AMP] = ACTIONS(3736), + [anon_sym_AMP_AMP] = ACTIONS(3736), + [anon_sym_PIPE_PIPE] = ACTIONS(3736), + [anon_sym_LT] = ACTIONS(988), + [anon_sym_GT] = ACTIONS(988), + [anon_sym_GT_GT] = ACTIONS(990), + [anon_sym_AMP_GT] = ACTIONS(988), + [anon_sym_AMP_GT_GT] = ACTIONS(990), + [anon_sym_LT_AMP] = ACTIONS(990), + [anon_sym_GT_AMP] = ACTIONS(990), + [anon_sym_LT_LT] = ACTIONS(992), + [anon_sym_LT_LT_DASH] = ACTIONS(994), + [anon_sym_LT_LT_LT] = ACTIONS(996), [sym_comment] = ACTIONS(56), }, [1103] = { @@ -38677,34 +38875,35 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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_file_descriptor] = ACTIONS(1559), + [anon_sym_PIPE] = ACTIONS(1557), + [anon_sym_RPAREN] = ACTIONS(1559), + [anon_sym_PIPE_AMP] = ACTIONS(1559), + [anon_sym_AMP_AMP] = ACTIONS(1559), + [anon_sym_PIPE_PIPE] = ACTIONS(1559), + [anon_sym_EQ_TILDE] = ACTIONS(3738), + [anon_sym_EQ_EQ] = ACTIONS(3738), + [anon_sym_LT] = ACTIONS(1557), + [anon_sym_GT] = ACTIONS(1557), + [anon_sym_GT_GT] = ACTIONS(1559), + [anon_sym_AMP_GT] = ACTIONS(1557), + [anon_sym_AMP_GT_GT] = ACTIONS(1559), + [anon_sym_LT_AMP] = ACTIONS(1559), + [anon_sym_GT_AMP] = ACTIONS(1559), + [anon_sym_LT_LT] = ACTIONS(1557), + [anon_sym_LT_LT_DASH] = ACTIONS(1559), + [anon_sym_LT_LT_LT] = ACTIONS(1559), + [sym__special_characters] = ACTIONS(3741), + [anon_sym_DQUOTE] = ACTIONS(3744), + [anon_sym_DOLLAR] = ACTIONS(3747), + [sym_raw_string] = ACTIONS(3750), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3753), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3756), + [anon_sym_BQUOTE] = ACTIONS(3759), + [anon_sym_LT_LPAREN] = ACTIONS(3762), + [anon_sym_GT_LPAREN] = ACTIONS(3762), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3711), + [sym_word] = ACTIONS(3765), }, [1104] = { [sym_file_redirect] = STATE(539), @@ -38719,69 +38918,70 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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_file_descriptor] = ACTIONS(980), + [anon_sym_PIPE] = ACTIONS(3734), + [anon_sym_RPAREN] = ACTIONS(3736), + [anon_sym_PIPE_AMP] = ACTIONS(3736), + [anon_sym_AMP_AMP] = ACTIONS(3736), + [anon_sym_PIPE_PIPE] = ACTIONS(3736), + [anon_sym_EQ_TILDE] = ACTIONS(986), + [anon_sym_EQ_EQ] = ACTIONS(986), + [anon_sym_LT] = ACTIONS(988), + [anon_sym_GT] = ACTIONS(988), + [anon_sym_GT_GT] = ACTIONS(990), + [anon_sym_AMP_GT] = ACTIONS(988), + [anon_sym_AMP_GT_GT] = ACTIONS(990), + [anon_sym_LT_AMP] = ACTIONS(990), + [anon_sym_GT_AMP] = ACTIONS(990), + [anon_sym_LT_LT] = ACTIONS(992), + [anon_sym_LT_LT_DASH] = ACTIONS(994), + [anon_sym_LT_LT_LT] = ACTIONS(996), + [sym__special_characters] = ACTIONS(998), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(1000), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(984), + [sym_word] = ACTIONS(1002), }, [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_file_descriptor] = ACTIONS(1301), + [sym__concat] = ACTIONS(3768), + [sym_variable_name] = ACTIONS(1301), + [anon_sym_PIPE] = ACTIONS(3424), + [anon_sym_PIPE_AMP] = ACTIONS(1301), + [anon_sym_AMP_AMP] = ACTIONS(1301), + [anon_sym_PIPE_PIPE] = ACTIONS(1301), + [anon_sym_LT] = ACTIONS(3424), + [anon_sym_GT] = ACTIONS(3424), + [anon_sym_GT_GT] = ACTIONS(1301), + [anon_sym_AMP_GT] = ACTIONS(3424), + [anon_sym_AMP_GT_GT] = ACTIONS(1301), + [anon_sym_LT_AMP] = ACTIONS(1301), + [anon_sym_GT_AMP] = ACTIONS(1301), + [sym__special_characters] = ACTIONS(3424), + [anon_sym_DQUOTE] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(3424), + [sym_raw_string] = ACTIONS(1301), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1301), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1301), + [anon_sym_BQUOTE] = ACTIONS(1301), + [anon_sym_LT_LPAREN] = ACTIONS(1301), + [anon_sym_GT_LPAREN] = ACTIONS(1301), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3374), + [sym_word] = ACTIONS(3424), }, [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_DQUOTE] = ACTIONS(3770), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -38790,60 +38990,61 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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_string] = STATE(1776), + [anon_sym_DQUOTE] = ACTIONS(2252), + [anon_sym_DOLLAR] = ACTIONS(3772), + [sym_raw_string] = ACTIONS(3774), + [anon_sym_POUND] = ACTIONS(3772), + [anon_sym_DASH] = ACTIONS(3772), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3776), + [anon_sym_STAR] = ACTIONS(3772), + [anon_sym_AT] = ACTIONS(3772), + [anon_sym_QMARK] = ACTIONS(3772), + [anon_sym_0] = ACTIONS(3778), + [anon_sym__] = ACTIONS(3778), }, [1108] = { [aux_sym_concatenation_repeat1] = STATE(1772), - [sym_file_descriptor] = ACTIONS(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_file_descriptor] = ACTIONS(1277), + [sym__concat] = ACTIONS(3768), + [sym_variable_name] = ACTIONS(1277), + [anon_sym_PIPE] = ACTIONS(3418), + [anon_sym_PIPE_AMP] = ACTIONS(1277), + [anon_sym_AMP_AMP] = ACTIONS(1277), + [anon_sym_PIPE_PIPE] = ACTIONS(1277), + [anon_sym_LT] = ACTIONS(3418), + [anon_sym_GT] = ACTIONS(3418), + [anon_sym_GT_GT] = ACTIONS(1277), + [anon_sym_AMP_GT] = ACTIONS(3418), + [anon_sym_AMP_GT_GT] = ACTIONS(1277), + [anon_sym_LT_AMP] = ACTIONS(1277), + [anon_sym_GT_AMP] = ACTIONS(1277), + [sym__special_characters] = ACTIONS(3418), + [anon_sym_DQUOTE] = ACTIONS(1277), + [anon_sym_DOLLAR] = ACTIONS(3418), + [sym_raw_string] = ACTIONS(1277), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1277), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1277), + [anon_sym_BQUOTE] = ACTIONS(1277), + [anon_sym_LT_LPAREN] = ACTIONS(1277), + [anon_sym_GT_LPAREN] = ACTIONS(1277), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3368), + [sym_word] = ACTIONS(3418), }, [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_variable_name] = ACTIONS(3780), + [anon_sym_DOLLAR] = ACTIONS(3782), + [anon_sym_POUND] = ACTIONS(3784), + [anon_sym_DASH] = ACTIONS(3782), [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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3786), + [anon_sym_STAR] = ACTIONS(3782), + [anon_sym_AT] = ACTIONS(3782), + [anon_sym_QMARK] = ACTIONS(3782), + [anon_sym_0] = ACTIONS(3788), + [anon_sym__] = ACTIONS(3788), }, [1110] = { [sym_for_statement] = STATE(1783), @@ -38871,22 +39072,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(264), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(268), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -38894,17 +39095,17 @@ 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(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__special_characters] = ACTIONS(286), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(300), + [sym_word] = ACTIONS(302), }, [1111] = { [sym_for_statement] = STATE(1785), @@ -38932,22 +39133,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(304), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(306), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(308), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_LBRACK_LBRACK] = ACTIONS(312), + [anon_sym_declare] = ACTIONS(314), + [anon_sym_typeset] = ACTIONS(314), + [anon_sym_export] = ACTIONS(314), + [anon_sym_readonly] = ACTIONS(314), + [anon_sym_local] = ACTIONS(314), + [anon_sym_unset] = ACTIONS(316), + [anon_sym_unsetenv] = ACTIONS(316), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -38955,17 +39156,17 @@ 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(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__special_characters] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [anon_sym_DOLLAR] = ACTIONS(322), + [sym_raw_string] = ACTIONS(324), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), + [anon_sym_BQUOTE] = ACTIONS(330), + [anon_sym_LT_LPAREN] = ACTIONS(332), + [anon_sym_GT_LPAREN] = ACTIONS(332), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(332), + [sym_word] = ACTIONS(334), }, [1112] = { [sym_for_statement] = STATE(1787), @@ -38993,22 +39194,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(264), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(268), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -39016,60 +39217,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(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__special_characters] = ACTIONS(286), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(300), + [sym_word] = ACTIONS(302), }, [1113] = { [sym_file_redirect] = STATE(539), [sym_heredoc_redirect] = STATE(539), [sym_herestring_redirect] = STATE(539), [aux_sym_while_statement_repeat1] = STATE(1789), - [sym_file_descriptor] = ACTIONS(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_file_descriptor] = ACTIONS(1076), + [anon_sym_PIPE] = ACTIONS(3448), + [anon_sym_PIPE_AMP] = ACTIONS(3450), + [anon_sym_AMP_AMP] = ACTIONS(3450), + [anon_sym_PIPE_PIPE] = ACTIONS(3450), + [anon_sym_LT] = ACTIONS(1080), + [anon_sym_GT] = ACTIONS(1080), + [anon_sym_GT_GT] = ACTIONS(1082), + [anon_sym_AMP_GT] = ACTIONS(1080), + [anon_sym_AMP_GT_GT] = ACTIONS(1082), + [anon_sym_LT_AMP] = ACTIONS(1082), + [anon_sym_GT_AMP] = ACTIONS(1082), + [anon_sym_LT_LT] = ACTIONS(992), + [anon_sym_LT_LT_DASH] = ACTIONS(994), + [anon_sym_LT_LT_LT] = ACTIONS(1084), + [anon_sym_BQUOTE] = ACTIONS(3450), [sym_comment] = ACTIONS(56), }, [1114] = { - [anon_sym_RPAREN] = ACTIONS(3734), + [anon_sym_RPAREN] = ACTIONS(3790), [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_file_descriptor] = ACTIONS(3792), + [anon_sym_PIPE] = ACTIONS(3468), + [anon_sym_PIPE_AMP] = ACTIONS(3470), + [anon_sym_AMP_AMP] = ACTIONS(3470), + [anon_sym_PIPE_PIPE] = ACTIONS(3470), + [anon_sym_LT] = ACTIONS(3794), + [anon_sym_GT] = ACTIONS(3794), + [anon_sym_GT_GT] = ACTIONS(3796), + [anon_sym_AMP_GT] = ACTIONS(3794), + [anon_sym_AMP_GT_GT] = ACTIONS(3796), + [anon_sym_LT_AMP] = ACTIONS(3796), + [anon_sym_GT_AMP] = ACTIONS(3796), + [anon_sym_BQUOTE] = ACTIONS(3470), [sym_comment] = ACTIONS(56), }, [1116] = { @@ -39077,22 +39278,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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_file_descriptor] = ACTIONS(1076), + [anon_sym_PIPE] = ACTIONS(3486), + [anon_sym_PIPE_AMP] = ACTIONS(3488), + [anon_sym_AMP_AMP] = ACTIONS(3488), + [anon_sym_PIPE_PIPE] = ACTIONS(3488), + [anon_sym_LT] = ACTIONS(1080), + [anon_sym_GT] = ACTIONS(1080), + [anon_sym_GT_GT] = ACTIONS(1082), + [anon_sym_AMP_GT] = ACTIONS(1080), + [anon_sym_AMP_GT_GT] = ACTIONS(1082), + [anon_sym_LT_AMP] = ACTIONS(1082), + [anon_sym_GT_AMP] = ACTIONS(1082), + [anon_sym_LT_LT] = ACTIONS(992), + [anon_sym_LT_LT_DASH] = ACTIONS(994), + [anon_sym_LT_LT_LT] = ACTIONS(1084), + [anon_sym_BQUOTE] = ACTIONS(3488), [sym_comment] = ACTIONS(56), }, [1117] = { @@ -39104,19 +39305,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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__empty_value] = ACTIONS(3490), + [anon_sym_LPAREN] = ACTIONS(3492), + [sym__special_characters] = ACTIONS(3798), + [anon_sym_DQUOTE] = ACTIONS(1016), + [anon_sym_DOLLAR] = ACTIONS(1018), + [sym_raw_string] = ACTIONS(3800), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1022), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1024), + [anon_sym_BQUOTE] = ACTIONS(3802), + [anon_sym_LT_LPAREN] = ACTIONS(1026), + [anon_sym_GT_LPAREN] = ACTIONS(1026), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3748), + [sym_word] = ACTIONS(3804), }, [1118] = { [sym_string] = STATE(1796), @@ -39125,65 +39326,65 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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__special_characters] = ACTIONS(3806), + [anon_sym_DQUOTE] = ACTIONS(1016), + [anon_sym_DOLLAR] = ACTIONS(1018), + [sym_raw_string] = ACTIONS(3808), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1022), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1024), + [anon_sym_BQUOTE] = ACTIONS(3802), + [anon_sym_LT_LPAREN] = ACTIONS(1026), + [anon_sym_GT_LPAREN] = ACTIONS(1026), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3750), + [sym_word] = ACTIONS(3806), }, [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__concat] = ACTIONS(2274), + [sym_variable_name] = ACTIONS(788), + [anon_sym_PIPE] = ACTIONS(1567), + [anon_sym_PIPE_AMP] = ACTIONS(788), + [anon_sym_AMP_AMP] = ACTIONS(788), + [anon_sym_PIPE_PIPE] = ACTIONS(788), + [sym__special_characters] = ACTIONS(1567), + [anon_sym_DQUOTE] = ACTIONS(788), + [anon_sym_DOLLAR] = ACTIONS(1567), + [sym_raw_string] = ACTIONS(788), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(788), + [anon_sym_BQUOTE] = ACTIONS(788), + [anon_sym_LT_LPAREN] = ACTIONS(788), + [anon_sym_GT_LPAREN] = ACTIONS(788), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1539), - [sym_word] = ACTIONS(774), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1567), + [sym_word] = ACTIONS(790), }, [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__concat] = ACTIONS(792), + [sym_variable_name] = ACTIONS(792), + [anon_sym_PIPE] = ACTIONS(1569), + [anon_sym_PIPE_AMP] = ACTIONS(792), + [anon_sym_AMP_AMP] = ACTIONS(792), + [anon_sym_PIPE_PIPE] = ACTIONS(792), + [sym__special_characters] = ACTIONS(1569), + [anon_sym_DQUOTE] = ACTIONS(792), + [anon_sym_DOLLAR] = ACTIONS(1569), + [sym_raw_string] = ACTIONS(792), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(792), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(792), + [anon_sym_BQUOTE] = ACTIONS(792), + [anon_sym_LT_LPAREN] = ACTIONS(792), + [anon_sym_GT_LPAREN] = ACTIONS(792), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1541), - [sym_word] = ACTIONS(778), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1569), + [sym_word] = ACTIONS(794), }, [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_DQUOTE] = ACTIONS(3810), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -39192,68 +39393,68 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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__concat] = ACTIONS(824), + [sym_variable_name] = ACTIONS(824), + [anon_sym_PIPE] = ACTIONS(1573), + [anon_sym_PIPE_AMP] = ACTIONS(824), + [anon_sym_AMP_AMP] = ACTIONS(824), + [anon_sym_PIPE_PIPE] = ACTIONS(824), + [sym__special_characters] = ACTIONS(1573), + [anon_sym_DQUOTE] = ACTIONS(824), + [anon_sym_DOLLAR] = ACTIONS(1573), + [sym_raw_string] = ACTIONS(824), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(824), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(824), + [anon_sym_BQUOTE] = ACTIONS(824), + [anon_sym_LT_LPAREN] = ACTIONS(824), + [anon_sym_GT_LPAREN] = ACTIONS(824), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1545), - [sym_word] = ACTIONS(810), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1573), + [sym_word] = ACTIONS(826), }, [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__concat] = ACTIONS(828), + [sym_variable_name] = ACTIONS(828), + [anon_sym_PIPE] = ACTIONS(1575), + [anon_sym_PIPE_AMP] = ACTIONS(828), + [anon_sym_AMP_AMP] = ACTIONS(828), + [anon_sym_PIPE_PIPE] = ACTIONS(828), + [sym__special_characters] = ACTIONS(1575), + [anon_sym_DQUOTE] = ACTIONS(828), + [anon_sym_DOLLAR] = ACTIONS(1575), + [sym_raw_string] = ACTIONS(828), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), + [anon_sym_BQUOTE] = ACTIONS(828), + [anon_sym_LT_LPAREN] = ACTIONS(828), + [anon_sym_GT_LPAREN] = ACTIONS(828), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1547), - [sym_word] = ACTIONS(814), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1575), + [sym_word] = ACTIONS(830), }, [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__concat] = ACTIONS(832), + [sym_variable_name] = ACTIONS(832), + [anon_sym_PIPE] = ACTIONS(1577), + [anon_sym_PIPE_AMP] = ACTIONS(832), + [anon_sym_AMP_AMP] = ACTIONS(832), + [anon_sym_PIPE_PIPE] = ACTIONS(832), + [sym__special_characters] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(832), + [anon_sym_DOLLAR] = ACTIONS(1577), + [sym_raw_string] = ACTIONS(832), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(832), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(832), + [anon_sym_BQUOTE] = ACTIONS(832), + [anon_sym_LT_LPAREN] = ACTIONS(832), + [anon_sym_GT_LPAREN] = ACTIONS(832), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1549), - [sym_word] = ACTIONS(818), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1577), + [sym_word] = ACTIONS(834), }, [1125] = { - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(3756), + [anon_sym_LBRACK] = ACTIONS(836), + [anon_sym_EQ] = ACTIONS(3812), [sym_comment] = ACTIONS(56), }, [1126] = { @@ -39265,39 +39466,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(3814), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(3816), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1127] = { [sym_subscript] = STATE(1806), - [sym_variable_name] = ACTIONS(3762), - [anon_sym_DOLLAR] = ACTIONS(3764), - [anon_sym_DASH] = ACTIONS(3764), + [sym_variable_name] = ACTIONS(3818), + [anon_sym_DOLLAR] = ACTIONS(3820), + [anon_sym_DASH] = ACTIONS(3820), [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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3822), + [anon_sym_STAR] = ACTIONS(3820), + [anon_sym_AT] = ACTIONS(3820), + [anon_sym_QMARK] = ACTIONS(3820), + [anon_sym_0] = ACTIONS(3824), + [anon_sym__] = ACTIONS(3824), }, [1128] = { [sym_concatenation] = STATE(451), @@ -39308,26 +39509,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(3826), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(3828), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1129] = { [sym_concatenation] = STATE(451), @@ -39338,130 +39539,130 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(3830), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(3832), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(3834), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), [sym_comment] = ACTIONS(56), }, [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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(3834), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [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), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_PIPE_AMP] = ACTIONS(1072), + [anon_sym_AMP_AMP] = ACTIONS(1074), + [anon_sym_PIPE_PIPE] = ACTIONS(1074), + [anon_sym_BQUOTE] = ACTIONS(3834), [sym_comment] = ACTIONS(56), }, [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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_PIPE_AMP] = ACTIONS(1072), + [anon_sym_AMP_AMP] = ACTIONS(1074), + [anon_sym_PIPE_PIPE] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(3834), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [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), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(3836), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), [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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(3836), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [1136] = { [sym_variable_assignment] = STATE(496), @@ -39474,23 +39675,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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_variable_name] = ACTIONS(3838), + [anon_sym_PIPE] = ACTIONS(3535), + [anon_sym_PIPE_AMP] = ACTIONS(3537), + [anon_sym_AMP_AMP] = ACTIONS(3537), + [anon_sym_PIPE_PIPE] = ACTIONS(3537), + [sym__special_characters] = ACTIONS(3841), + [anon_sym_DQUOTE] = ACTIONS(3844), + [anon_sym_DOLLAR] = ACTIONS(3847), + [sym_raw_string] = ACTIONS(3850), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3853), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3856), + [anon_sym_BQUOTE] = ACTIONS(3859), + [anon_sym_LT_LPAREN] = ACTIONS(3862), + [anon_sym_GT_LPAREN] = ACTIONS(3862), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3511), - [sym_word] = ACTIONS(3809), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3563), + [sym_word] = ACTIONS(3865), }, [1137] = { [sym_string] = STATE(1815), @@ -39499,63 +39700,63 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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__special_characters] = ACTIONS(3868), + [anon_sym_DQUOTE] = ACTIONS(1032), + [anon_sym_DOLLAR] = ACTIONS(1034), + [sym_raw_string] = ACTIONS(3870), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1038), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1040), + [anon_sym_BQUOTE] = ACTIONS(3872), + [anon_sym_LT_LPAREN] = ACTIONS(1042), + [anon_sym_GT_LPAREN] = ACTIONS(1042), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3812), + [sym_word] = ACTIONS(3868), }, [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__concat] = ACTIONS(2296), + [anon_sym_PIPE] = ACTIONS(1567), + [anon_sym_PIPE_AMP] = ACTIONS(788), + [anon_sym_AMP_AMP] = ACTIONS(788), + [anon_sym_PIPE_PIPE] = ACTIONS(788), + [sym__special_characters] = ACTIONS(1567), + [anon_sym_DQUOTE] = ACTIONS(788), + [anon_sym_DOLLAR] = ACTIONS(1567), + [sym_raw_string] = ACTIONS(788), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(788), + [anon_sym_BQUOTE] = ACTIONS(788), + [anon_sym_LT_LPAREN] = ACTIONS(788), + [anon_sym_GT_LPAREN] = ACTIONS(788), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1539), - [sym_word] = ACTIONS(774), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1567), + [sym_word] = ACTIONS(790), }, [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__concat] = ACTIONS(792), + [anon_sym_PIPE] = ACTIONS(1569), + [anon_sym_PIPE_AMP] = ACTIONS(792), + [anon_sym_AMP_AMP] = ACTIONS(792), + [anon_sym_PIPE_PIPE] = ACTIONS(792), + [sym__special_characters] = ACTIONS(1569), + [anon_sym_DQUOTE] = ACTIONS(792), + [anon_sym_DOLLAR] = ACTIONS(1569), + [sym_raw_string] = ACTIONS(792), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(792), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(792), + [anon_sym_BQUOTE] = ACTIONS(792), + [anon_sym_LT_LPAREN] = ACTIONS(792), + [anon_sym_GT_LPAREN] = ACTIONS(792), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1541), - [sym_word] = ACTIONS(778), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1569), + [sym_word] = ACTIONS(794), }, [1140] = { [sym_simple_expansion] = STATE(134), [sym_expansion] = STATE(134), [sym_command_substitution] = STATE(134), [aux_sym_string_repeat1] = STATE(447), - [anon_sym_DQUOTE] = ACTIONS(3818), + [anon_sym_DQUOTE] = ACTIONS(3874), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -39564,65 +39765,65 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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__concat] = ACTIONS(824), + [anon_sym_PIPE] = ACTIONS(1573), + [anon_sym_PIPE_AMP] = ACTIONS(824), + [anon_sym_AMP_AMP] = ACTIONS(824), + [anon_sym_PIPE_PIPE] = ACTIONS(824), + [sym__special_characters] = ACTIONS(1573), + [anon_sym_DQUOTE] = ACTIONS(824), + [anon_sym_DOLLAR] = ACTIONS(1573), + [sym_raw_string] = ACTIONS(824), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(824), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(824), + [anon_sym_BQUOTE] = ACTIONS(824), + [anon_sym_LT_LPAREN] = ACTIONS(824), + [anon_sym_GT_LPAREN] = ACTIONS(824), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1545), - [sym_word] = ACTIONS(810), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1573), + [sym_word] = ACTIONS(826), }, [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__concat] = ACTIONS(828), + [anon_sym_PIPE] = ACTIONS(1575), + [anon_sym_PIPE_AMP] = ACTIONS(828), + [anon_sym_AMP_AMP] = ACTIONS(828), + [anon_sym_PIPE_PIPE] = ACTIONS(828), + [sym__special_characters] = ACTIONS(1575), + [anon_sym_DQUOTE] = ACTIONS(828), + [anon_sym_DOLLAR] = ACTIONS(1575), + [sym_raw_string] = ACTIONS(828), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), + [anon_sym_BQUOTE] = ACTIONS(828), + [anon_sym_LT_LPAREN] = ACTIONS(828), + [anon_sym_GT_LPAREN] = ACTIONS(828), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1547), - [sym_word] = ACTIONS(814), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1575), + [sym_word] = ACTIONS(830), }, [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__concat] = ACTIONS(832), + [anon_sym_PIPE] = ACTIONS(1577), + [anon_sym_PIPE_AMP] = ACTIONS(832), + [anon_sym_AMP_AMP] = ACTIONS(832), + [anon_sym_PIPE_PIPE] = ACTIONS(832), + [sym__special_characters] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(832), + [anon_sym_DOLLAR] = ACTIONS(1577), + [sym_raw_string] = ACTIONS(832), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(832), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(832), + [anon_sym_BQUOTE] = ACTIONS(832), + [anon_sym_LT_LPAREN] = ACTIONS(832), + [anon_sym_GT_LPAREN] = ACTIONS(832), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1549), - [sym_word] = ACTIONS(818), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1577), + [sym_word] = ACTIONS(834), }, [1144] = { - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(3820), + [anon_sym_LBRACK] = ACTIONS(836), + [anon_sym_EQ] = ACTIONS(3876), [sym_comment] = ACTIONS(56), }, [1145] = { @@ -39634,39 +39835,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(3878), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(3880), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1146] = { [sym_subscript] = STATE(1825), - [sym_variable_name] = ACTIONS(3826), - [anon_sym_DOLLAR] = ACTIONS(3828), - [anon_sym_DASH] = ACTIONS(3828), + [sym_variable_name] = ACTIONS(3882), + [anon_sym_DOLLAR] = ACTIONS(3884), + [anon_sym_DASH] = ACTIONS(3884), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3886), + [anon_sym_STAR] = ACTIONS(3884), + [anon_sym_AT] = ACTIONS(3884), + [anon_sym_QMARK] = ACTIONS(3884), + [anon_sym_0] = ACTIONS(3888), + [anon_sym__] = ACTIONS(3888), }, [1147] = { [sym_concatenation] = STATE(451), @@ -39677,26 +39878,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(3890), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(3892), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1148] = { [sym_concatenation] = STATE(451), @@ -39707,130 +39908,130 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(3894), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(3896), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(3898), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), [sym_comment] = ACTIONS(56), }, [1150] = { - [sym_file_descriptor] = ACTIONS(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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(3898), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [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), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_PIPE_AMP] = ACTIONS(1072), + [anon_sym_AMP_AMP] = ACTIONS(1074), + [anon_sym_PIPE_PIPE] = ACTIONS(1074), + [anon_sym_BQUOTE] = ACTIONS(3898), [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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_PIPE_AMP] = ACTIONS(1072), + [anon_sym_AMP_AMP] = ACTIONS(1074), + [anon_sym_PIPE_PIPE] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(3898), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [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), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(3900), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), [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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(3900), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [1155] = { [sym_concatenation] = STATE(508), @@ -39841,113 +40042,116 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_PIPE] = ACTIONS(3601), + [anon_sym_PIPE_AMP] = ACTIONS(3603), + [anon_sym_AMP_AMP] = ACTIONS(3603), + [anon_sym_PIPE_PIPE] = ACTIONS(3603), + [sym__special_characters] = ACTIONS(3902), + [anon_sym_DQUOTE] = ACTIONS(3905), + [anon_sym_DOLLAR] = ACTIONS(3908), + [sym_raw_string] = ACTIONS(3911), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3914), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3917), + [anon_sym_BQUOTE] = ACTIONS(3920), + [anon_sym_LT_LPAREN] = ACTIONS(3923), + [anon_sym_GT_LPAREN] = ACTIONS(3923), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3577), - [sym_word] = ACTIONS(3870), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3629), + [sym_word] = ACTIONS(3926), }, [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_file_descriptor] = ACTIONS(1886), + [sym__concat] = ACTIONS(1886), + [anon_sym_PIPE] = ACTIONS(3056), + [anon_sym_PIPE_AMP] = ACTIONS(1886), + [anon_sym_AMP_AMP] = ACTIONS(1886), + [anon_sym_PIPE_PIPE] = ACTIONS(1886), + [anon_sym_EQ_TILDE] = ACTIONS(3056), + [anon_sym_EQ_EQ] = ACTIONS(3056), + [anon_sym_LT] = ACTIONS(3056), + [anon_sym_GT] = ACTIONS(3056), + [anon_sym_GT_GT] = ACTIONS(1886), + [anon_sym_AMP_GT] = ACTIONS(3056), + [anon_sym_AMP_GT_GT] = ACTIONS(1886), + [anon_sym_LT_AMP] = ACTIONS(1886), + [anon_sym_GT_AMP] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(3056), + [anon_sym_LT_LT_DASH] = ACTIONS(1886), + [anon_sym_LT_LT_LT] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(3056), + [anon_sym_DQUOTE] = ACTIONS(1886), + [anon_sym_DOLLAR] = ACTIONS(3056), + [sym_raw_string] = ACTIONS(1886), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1886), + [anon_sym_BQUOTE] = ACTIONS(1886), + [anon_sym_LT_LPAREN] = ACTIONS(1886), + [anon_sym_GT_LPAREN] = ACTIONS(1886), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1860), + [sym_word] = ACTIONS(1888), }, [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_file_descriptor] = ACTIONS(1886), + [sym__concat] = ACTIONS(3929), + [anon_sym_PIPE] = ACTIONS(3056), + [anon_sym_PIPE_AMP] = ACTIONS(1886), + [anon_sym_AMP_AMP] = ACTIONS(1886), + [anon_sym_PIPE_PIPE] = ACTIONS(1886), + [anon_sym_EQ_TILDE] = ACTIONS(3056), + [anon_sym_EQ_EQ] = ACTIONS(3056), + [anon_sym_LT] = ACTIONS(3056), + [anon_sym_GT] = ACTIONS(3056), + [anon_sym_GT_GT] = ACTIONS(1886), + [anon_sym_AMP_GT] = ACTIONS(3056), + [anon_sym_AMP_GT_GT] = ACTIONS(1886), + [anon_sym_LT_AMP] = ACTIONS(1886), + [anon_sym_GT_AMP] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(3056), + [anon_sym_LT_LT_DASH] = ACTIONS(1886), + [anon_sym_LT_LT_LT] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(3056), + [anon_sym_DQUOTE] = ACTIONS(1886), + [anon_sym_DOLLAR] = ACTIONS(3056), + [sym_raw_string] = ACTIONS(1886), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1886), + [anon_sym_BQUOTE] = ACTIONS(1886), + [anon_sym_LT_LPAREN] = ACTIONS(1886), + [anon_sym_GT_LPAREN] = ACTIONS(1886), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1860), + [sym_word] = ACTIONS(1888), }, [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_file_descriptor] = ACTIONS(1923), + [sym__concat] = ACTIONS(1923), + [anon_sym_PIPE] = ACTIONS(3061), + [anon_sym_PIPE_AMP] = ACTIONS(1923), + [anon_sym_AMP_AMP] = ACTIONS(1923), + [anon_sym_PIPE_PIPE] = ACTIONS(1923), + [anon_sym_EQ_TILDE] = ACTIONS(3061), + [anon_sym_EQ_EQ] = ACTIONS(3061), + [anon_sym_LT] = ACTIONS(3061), + [anon_sym_GT] = ACTIONS(3061), + [anon_sym_GT_GT] = ACTIONS(1923), + [anon_sym_AMP_GT] = ACTIONS(3061), + [anon_sym_AMP_GT_GT] = ACTIONS(1923), + [anon_sym_LT_AMP] = ACTIONS(1923), + [anon_sym_GT_AMP] = ACTIONS(1923), + [anon_sym_LT_LT] = ACTIONS(3061), + [anon_sym_LT_LT_DASH] = ACTIONS(1923), + [anon_sym_LT_LT_LT] = ACTIONS(1923), + [sym__special_characters] = ACTIONS(3061), + [anon_sym_DQUOTE] = ACTIONS(1923), + [anon_sym_DOLLAR] = ACTIONS(3061), + [sym_raw_string] = ACTIONS(1923), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1923), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1923), + [anon_sym_BQUOTE] = ACTIONS(1923), + [anon_sym_LT_LPAREN] = ACTIONS(1923), + [anon_sym_GT_LPAREN] = ACTIONS(1923), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1897), + [sym_word] = ACTIONS(1925), }, [1159] = { [sym_concatenation] = STATE(1837), @@ -39957,52 +40161,53 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(3932), + [sym__special_characters] = ACTIONS(3934), + [anon_sym_DQUOTE] = ACTIONS(1952), + [anon_sym_DOLLAR] = ACTIONS(1954), + [sym_raw_string] = ACTIONS(3936), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), + [anon_sym_BQUOTE] = ACTIONS(1962), + [anon_sym_LT_LPAREN] = ACTIONS(1964), + [anon_sym_GT_LPAREN] = ACTIONS(1964), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3882), + [sym_word] = ACTIONS(3938), }, [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_file_descriptor] = ACTIONS(1968), + [sym__concat] = ACTIONS(1968), + [anon_sym_PIPE] = ACTIONS(3071), + [anon_sym_PIPE_AMP] = ACTIONS(1968), + [anon_sym_AMP_AMP] = ACTIONS(1968), + [anon_sym_PIPE_PIPE] = ACTIONS(1968), + [anon_sym_EQ_TILDE] = ACTIONS(3071), + [anon_sym_EQ_EQ] = ACTIONS(3071), + [anon_sym_LT] = ACTIONS(3071), + [anon_sym_GT] = ACTIONS(3071), + [anon_sym_GT_GT] = ACTIONS(1968), + [anon_sym_AMP_GT] = ACTIONS(3071), + [anon_sym_AMP_GT_GT] = ACTIONS(1968), + [anon_sym_LT_AMP] = ACTIONS(1968), + [anon_sym_GT_AMP] = ACTIONS(1968), + [anon_sym_LT_LT] = ACTIONS(3071), + [anon_sym_LT_LT_DASH] = ACTIONS(1968), + [anon_sym_LT_LT_LT] = ACTIONS(1968), + [sym__special_characters] = ACTIONS(3071), + [anon_sym_DQUOTE] = ACTIONS(1968), + [anon_sym_DOLLAR] = ACTIONS(3071), + [sym_raw_string] = ACTIONS(1968), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1968), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1968), + [anon_sym_BQUOTE] = ACTIONS(1968), + [anon_sym_LT_LPAREN] = ACTIONS(1968), + [anon_sym_GT_LPAREN] = ACTIONS(1968), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1942), + [sym_word] = ACTIONS(1970), }, [1161] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(3884), + [sym_regex_without_right_brace] = ACTIONS(3940), }, [1162] = { [sym_concatenation] = STATE(451), @@ -40013,29 +40218,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(3942), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1163] = { - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(3888), + [anon_sym_LBRACK] = ACTIONS(836), + [anon_sym_EQ] = ACTIONS(3944), [sym_comment] = ACTIONS(56), }, [1164] = { @@ -40047,26 +40252,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(3946), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(3948), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1165] = { [sym_concatenation] = STATE(451), @@ -40077,26 +40282,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(3950), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(3952), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1166] = { [sym_concatenation] = STATE(451), @@ -40107,60 +40312,61 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(3932), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(3954), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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_file_descriptor] = ACTIONS(2022), + [sym__concat] = ACTIONS(2022), + [anon_sym_PIPE] = ACTIONS(3089), + [anon_sym_PIPE_AMP] = ACTIONS(2022), + [anon_sym_AMP_AMP] = ACTIONS(2022), + [anon_sym_PIPE_PIPE] = ACTIONS(2022), + [anon_sym_EQ_TILDE] = ACTIONS(3089), + [anon_sym_EQ_EQ] = ACTIONS(3089), + [anon_sym_LT] = ACTIONS(3089), + [anon_sym_GT] = ACTIONS(3089), + [anon_sym_GT_GT] = ACTIONS(2022), + [anon_sym_AMP_GT] = ACTIONS(3089), + [anon_sym_AMP_GT_GT] = ACTIONS(2022), + [anon_sym_LT_AMP] = ACTIONS(2022), + [anon_sym_GT_AMP] = ACTIONS(2022), + [anon_sym_LT_LT] = ACTIONS(3089), + [anon_sym_LT_LT_DASH] = ACTIONS(2022), + [anon_sym_LT_LT_LT] = ACTIONS(2022), + [sym__special_characters] = ACTIONS(3089), + [anon_sym_DQUOTE] = ACTIONS(2022), + [anon_sym_DOLLAR] = ACTIONS(3089), + [sym_raw_string] = ACTIONS(2022), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2022), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2022), + [anon_sym_BQUOTE] = ACTIONS(2022), + [anon_sym_LT_LPAREN] = ACTIONS(2022), + [anon_sym_GT_LPAREN] = ACTIONS(2022), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1994), + [sym_word] = ACTIONS(2024), }, [1168] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(3900), + [sym_regex_without_right_brace] = ACTIONS(3956), }, [1169] = { [sym_concatenation] = STATE(451), @@ -40171,59 +40377,60 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(3958), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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_file_descriptor] = ACTIONS(2030), + [sym__concat] = ACTIONS(2030), + [anon_sym_PIPE] = ACTIONS(3095), + [anon_sym_PIPE_AMP] = ACTIONS(2030), + [anon_sym_AMP_AMP] = ACTIONS(2030), + [anon_sym_PIPE_PIPE] = ACTIONS(2030), + [anon_sym_EQ_TILDE] = ACTIONS(3095), + [anon_sym_EQ_EQ] = ACTIONS(3095), + [anon_sym_LT] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(3095), + [anon_sym_GT_GT] = ACTIONS(2030), + [anon_sym_AMP_GT] = ACTIONS(3095), + [anon_sym_AMP_GT_GT] = ACTIONS(2030), + [anon_sym_LT_AMP] = ACTIONS(2030), + [anon_sym_GT_AMP] = ACTIONS(2030), + [anon_sym_LT_LT] = ACTIONS(3095), + [anon_sym_LT_LT_DASH] = ACTIONS(2030), + [anon_sym_LT_LT_LT] = ACTIONS(2030), + [sym__special_characters] = ACTIONS(3095), + [anon_sym_DQUOTE] = ACTIONS(2030), + [anon_sym_DOLLAR] = ACTIONS(3095), + [sym_raw_string] = ACTIONS(2030), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2030), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2030), + [anon_sym_BQUOTE] = ACTIONS(2030), + [anon_sym_LT_LPAREN] = ACTIONS(2030), + [anon_sym_GT_LPAREN] = ACTIONS(2030), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2002), + [sym_word] = ACTIONS(2032), }, [1171] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(3904), + [sym_regex_without_right_brace] = ACTIONS(3960), }, [1172] = { [sym_concatenation] = STATE(451), @@ -40234,150 +40441,152 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(3932), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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_file_descriptor] = ACTIONS(2190), + [sym__concat] = ACTIONS(2190), + [anon_sym_PIPE] = ACTIONS(3099), + [anon_sym_PIPE_AMP] = ACTIONS(2190), + [anon_sym_AMP_AMP] = ACTIONS(2190), + [anon_sym_PIPE_PIPE] = ACTIONS(2190), + [anon_sym_EQ_TILDE] = ACTIONS(3099), + [anon_sym_EQ_EQ] = ACTIONS(3099), + [anon_sym_LT] = ACTIONS(3099), + [anon_sym_GT] = ACTIONS(3099), + [anon_sym_GT_GT] = ACTIONS(2190), + [anon_sym_AMP_GT] = ACTIONS(3099), + [anon_sym_AMP_GT_GT] = ACTIONS(2190), + [anon_sym_LT_AMP] = ACTIONS(2190), + [anon_sym_GT_AMP] = ACTIONS(2190), + [anon_sym_LT_LT] = ACTIONS(3099), + [anon_sym_LT_LT_DASH] = ACTIONS(2190), + [anon_sym_LT_LT_LT] = ACTIONS(2190), + [sym__special_characters] = ACTIONS(3099), + [anon_sym_DQUOTE] = ACTIONS(2190), + [anon_sym_DOLLAR] = ACTIONS(3099), + [sym_raw_string] = ACTIONS(2190), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2190), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2190), + [anon_sym_BQUOTE] = ACTIONS(2190), + [anon_sym_LT_LPAREN] = ACTIONS(2190), + [anon_sym_GT_LPAREN] = ACTIONS(2190), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2158), + [sym_word] = ACTIONS(2192), }, [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_file_descriptor] = ACTIONS(2396), + [sym__concat] = ACTIONS(2396), + [anon_sym_PIPE] = ACTIONS(3101), + [anon_sym_PIPE_AMP] = ACTIONS(2396), + [anon_sym_AMP_AMP] = ACTIONS(2396), + [anon_sym_PIPE_PIPE] = ACTIONS(2396), + [anon_sym_EQ_TILDE] = ACTIONS(3101), + [anon_sym_EQ_EQ] = ACTIONS(3101), + [anon_sym_LT] = ACTIONS(3101), + [anon_sym_GT] = ACTIONS(3101), + [anon_sym_GT_GT] = ACTIONS(2396), + [anon_sym_AMP_GT] = ACTIONS(3101), + [anon_sym_AMP_GT_GT] = ACTIONS(2396), + [anon_sym_LT_AMP] = ACTIONS(2396), + [anon_sym_GT_AMP] = ACTIONS(2396), + [anon_sym_LT_LT] = ACTIONS(3101), + [anon_sym_LT_LT_DASH] = ACTIONS(2396), + [anon_sym_LT_LT_LT] = ACTIONS(2396), + [sym__special_characters] = ACTIONS(3101), + [anon_sym_DQUOTE] = ACTIONS(2396), + [anon_sym_DOLLAR] = ACTIONS(3101), + [sym_raw_string] = ACTIONS(2396), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2396), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2396), + [anon_sym_BQUOTE] = ACTIONS(2396), + [anon_sym_LT_LPAREN] = ACTIONS(2396), + [anon_sym_GT_LPAREN] = ACTIONS(2396), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2360), + [sym_word] = ACTIONS(2398), }, [1175] = { [sym_compound_statement] = STATE(1852), - [anon_sym_LBRACE] = ACTIONS(2046), + [anon_sym_LBRACE] = ACTIONS(2076), [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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(3668), + [anon_sym_PIPE_AMP] = ACTIONS(3670), + [anon_sym_AMP_AMP] = ACTIONS(3670), + [anon_sym_PIPE_PIPE] = ACTIONS(3670), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(3670), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [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), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_PIPE_AMP] = ACTIONS(1072), + [anon_sym_AMP_AMP] = ACTIONS(3672), + [anon_sym_PIPE_PIPE] = ACTIONS(3672), + [anon_sym_BQUOTE] = ACTIONS(3672), [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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_PIPE_AMP] = ACTIONS(1072), + [anon_sym_AMP_AMP] = ACTIONS(3672), + [anon_sym_PIPE_PIPE] = ACTIONS(3672), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [1179] = { [sym_concatenation] = STATE(1749), @@ -40387,99 +40596,101 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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__special_characters] = ACTIONS(3962), + [anon_sym_DQUOTE] = ACTIONS(2374), + [anon_sym_DOLLAR] = ACTIONS(2376), + [sym_raw_string] = ACTIONS(3964), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2382), + [anon_sym_BQUOTE] = ACTIONS(2384), + [anon_sym_LT_LPAREN] = ACTIONS(2386), + [anon_sym_GT_LPAREN] = ACTIONS(2386), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3910), + [sym_word] = ACTIONS(3966), }, [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_file_descriptor] = ACTIONS(1553), + [sym__concat] = ACTIONS(1046), + [anon_sym_PIPE] = ACTIONS(1551), + [anon_sym_PIPE_AMP] = ACTIONS(1553), + [anon_sym_AMP_AMP] = ACTIONS(1553), + [anon_sym_PIPE_PIPE] = ACTIONS(1553), + [anon_sym_EQ_TILDE] = ACTIONS(1551), + [anon_sym_EQ_EQ] = ACTIONS(1551), + [anon_sym_LT] = ACTIONS(1551), + [anon_sym_GT] = ACTIONS(1551), + [anon_sym_GT_GT] = ACTIONS(1553), + [anon_sym_AMP_GT] = ACTIONS(1551), + [anon_sym_AMP_GT_GT] = ACTIONS(1553), + [anon_sym_LT_AMP] = ACTIONS(1553), + [anon_sym_GT_AMP] = ACTIONS(1553), + [anon_sym_LT_LT] = ACTIONS(1551), + [anon_sym_LT_LT_DASH] = ACTIONS(1553), + [anon_sym_LT_LT_LT] = ACTIONS(1553), + [sym__special_characters] = ACTIONS(1551), + [anon_sym_DQUOTE] = ACTIONS(1553), + [anon_sym_DOLLAR] = ACTIONS(1551), + [sym_raw_string] = ACTIONS(1553), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1553), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1553), + [anon_sym_BQUOTE] = ACTIONS(1553), + [anon_sym_LT_LPAREN] = ACTIONS(1553), + [anon_sym_GT_LPAREN] = ACTIONS(1553), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1527), + [sym_word] = ACTIONS(1555), }, [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_file_descriptor] = ACTIONS(1559), + [sym__concat] = ACTIONS(1046), + [anon_sym_PIPE] = ACTIONS(1557), + [anon_sym_PIPE_AMP] = ACTIONS(1559), + [anon_sym_AMP_AMP] = ACTIONS(1559), + [anon_sym_PIPE_PIPE] = ACTIONS(1559), + [anon_sym_EQ_TILDE] = ACTIONS(1557), + [anon_sym_EQ_EQ] = ACTIONS(1557), + [anon_sym_LT] = ACTIONS(1557), + [anon_sym_GT] = ACTIONS(1557), + [anon_sym_GT_GT] = ACTIONS(1559), + [anon_sym_AMP_GT] = ACTIONS(1557), + [anon_sym_AMP_GT_GT] = ACTIONS(1559), + [anon_sym_LT_AMP] = ACTIONS(1559), + [anon_sym_GT_AMP] = ACTIONS(1559), + [anon_sym_LT_LT] = ACTIONS(1557), + [anon_sym_LT_LT_DASH] = ACTIONS(1559), + [anon_sym_LT_LT_LT] = ACTIONS(1559), + [sym__special_characters] = ACTIONS(1557), + [anon_sym_DQUOTE] = ACTIONS(1559), + [anon_sym_DOLLAR] = ACTIONS(1557), + [sym_raw_string] = ACTIONS(1559), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1559), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1559), + [anon_sym_BQUOTE] = ACTIONS(1559), + [anon_sym_LT_LPAREN] = ACTIONS(1559), + [anon_sym_GT_LPAREN] = ACTIONS(1559), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1533), + [sym_word] = ACTIONS(1561), }, [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_file_descriptor] = ACTIONS(754), + [sym__concat] = ACTIONS(3968), + [anon_sym_PIPE] = ACTIONS(758), + [anon_sym_PIPE_AMP] = ACTIONS(754), + [anon_sym_AMP_AMP] = ACTIONS(754), + [anon_sym_PIPE_PIPE] = ACTIONS(754), + [anon_sym_LT] = ACTIONS(758), + [anon_sym_GT] = ACTIONS(758), + [anon_sym_GT_GT] = ACTIONS(754), + [anon_sym_AMP_GT] = ACTIONS(758), + [anon_sym_AMP_GT_GT] = ACTIONS(754), + [anon_sym_LT_AMP] = ACTIONS(754), + [anon_sym_GT_AMP] = ACTIONS(754), + [anon_sym_LT_LT] = ACTIONS(758), + [anon_sym_LT_LT_DASH] = ACTIONS(754), + [anon_sym_LT_LT_LT] = ACTIONS(754), + [anon_sym_BQUOTE] = ACTIONS(754), [sym_comment] = ACTIONS(56), }, [1183] = { @@ -40487,7 +40698,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(134), [sym_command_substitution] = STATE(134), [aux_sym_string_repeat1] = STATE(1858), - [anon_sym_DQUOTE] = ACTIONS(3914), + [anon_sym_DQUOTE] = ACTIONS(3970), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -40496,53 +40707,54 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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_string] = STATE(1860), + [anon_sym_DQUOTE] = ACTIONS(2374), + [anon_sym_DOLLAR] = ACTIONS(3972), + [sym_raw_string] = ACTIONS(3974), + [anon_sym_POUND] = ACTIONS(3972), + [anon_sym_DASH] = ACTIONS(3972), [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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3976), + [anon_sym_STAR] = ACTIONS(3972), + [anon_sym_AT] = ACTIONS(3972), + [anon_sym_QMARK] = ACTIONS(3972), + [anon_sym_0] = ACTIONS(3978), + [anon_sym__] = ACTIONS(3978), }, [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_file_descriptor] = ACTIONS(770), + [sym__concat] = ACTIONS(3968), + [anon_sym_PIPE] = ACTIONS(772), + [anon_sym_PIPE_AMP] = ACTIONS(770), + [anon_sym_AMP_AMP] = ACTIONS(770), + [anon_sym_PIPE_PIPE] = ACTIONS(770), + [anon_sym_LT] = ACTIONS(772), + [anon_sym_GT] = ACTIONS(772), + [anon_sym_GT_GT] = ACTIONS(770), + [anon_sym_AMP_GT] = ACTIONS(772), + [anon_sym_AMP_GT_GT] = ACTIONS(770), + [anon_sym_LT_AMP] = ACTIONS(770), + [anon_sym_GT_AMP] = ACTIONS(770), + [anon_sym_LT_LT] = ACTIONS(772), + [anon_sym_LT_LT_DASH] = ACTIONS(770), + [anon_sym_LT_LT_LT] = ACTIONS(770), + [anon_sym_BQUOTE] = ACTIONS(770), [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_variable_name] = ACTIONS(3980), + [anon_sym_DOLLAR] = ACTIONS(3982), + [anon_sym_POUND] = ACTIONS(3984), + [anon_sym_DASH] = ACTIONS(3982), [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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3986), + [anon_sym_STAR] = ACTIONS(3982), + [anon_sym_AT] = ACTIONS(3982), + [anon_sym_QMARK] = ACTIONS(3982), + [anon_sym_0] = ACTIONS(3988), + [anon_sym__] = ACTIONS(3988), }, [1187] = { [sym_for_statement] = STATE(1867), @@ -40570,22 +40782,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(264), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(268), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -40593,17 +40805,17 @@ 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(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__special_characters] = ACTIONS(286), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(300), + [sym_word] = ACTIONS(302), }, [1188] = { [sym_for_statement] = STATE(1869), @@ -40631,22 +40843,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(304), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(306), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(308), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_LBRACK_LBRACK] = ACTIONS(312), + [anon_sym_declare] = ACTIONS(314), + [anon_sym_typeset] = ACTIONS(314), + [anon_sym_export] = ACTIONS(314), + [anon_sym_readonly] = ACTIONS(314), + [anon_sym_local] = ACTIONS(314), + [anon_sym_unset] = ACTIONS(316), + [anon_sym_unsetenv] = ACTIONS(316), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -40654,17 +40866,17 @@ 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(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__special_characters] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [anon_sym_DOLLAR] = ACTIONS(322), + [sym_raw_string] = ACTIONS(324), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), + [anon_sym_BQUOTE] = ACTIONS(330), + [anon_sym_LT_LPAREN] = ACTIONS(332), + [anon_sym_GT_LPAREN] = ACTIONS(332), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(332), + [sym_word] = ACTIONS(334), }, [1189] = { [sym_for_statement] = STATE(1871), @@ -40692,22 +40904,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(264), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(268), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -40715,58 +40927,58 @@ 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(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__special_characters] = ACTIONS(286), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(300), + [sym_word] = ACTIONS(302), }, [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_file_descriptor] = ACTIONS(2452), + [sym__concat] = ACTIONS(3968), + [anon_sym_PIPE] = ACTIONS(3708), + [anon_sym_PIPE_AMP] = ACTIONS(2452), + [anon_sym_AMP_AMP] = ACTIONS(2452), + [anon_sym_PIPE_PIPE] = ACTIONS(2452), + [anon_sym_LT] = ACTIONS(3708), + [anon_sym_GT] = ACTIONS(3708), + [anon_sym_GT_GT] = ACTIONS(2452), + [anon_sym_AMP_GT] = ACTIONS(3708), + [anon_sym_AMP_GT_GT] = ACTIONS(2452), + [anon_sym_LT_AMP] = ACTIONS(2452), + [anon_sym_GT_AMP] = ACTIONS(2452), + [anon_sym_LT_LT] = ACTIONS(3708), + [anon_sym_LT_LT_DASH] = ACTIONS(2452), + [anon_sym_LT_LT_LT] = ACTIONS(2452), + [anon_sym_BQUOTE] = ACTIONS(2452), [sym_comment] = ACTIONS(56), }, [1191] = { [aux_sym_concatenation_repeat1] = STATE(1856), - [sym_file_descriptor] = ACTIONS(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_file_descriptor] = ACTIONS(2456), + [sym__concat] = ACTIONS(3968), + [anon_sym_PIPE] = ACTIONS(3710), + [anon_sym_PIPE_AMP] = ACTIONS(2456), + [anon_sym_AMP_AMP] = ACTIONS(2456), + [anon_sym_PIPE_PIPE] = ACTIONS(2456), + [anon_sym_LT] = ACTIONS(3710), + [anon_sym_GT] = ACTIONS(3710), + [anon_sym_GT_GT] = ACTIONS(2456), + [anon_sym_AMP_GT] = ACTIONS(3710), + [anon_sym_AMP_GT_GT] = ACTIONS(2456), + [anon_sym_LT_AMP] = ACTIONS(2456), + [anon_sym_GT_AMP] = ACTIONS(2456), + [anon_sym_LT_LT] = ACTIONS(3710), + [anon_sym_LT_LT_DASH] = ACTIONS(2456), + [anon_sym_LT_LT_LT] = ACTIONS(2456), + [anon_sym_BQUOTE] = ACTIONS(2456), [sym_comment] = ACTIONS(56), }, [1192] = { @@ -40774,22 +40986,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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_file_descriptor] = ACTIONS(3990), + [anon_sym_PIPE] = ACTIONS(3715), + [anon_sym_PIPE_AMP] = ACTIONS(3717), + [anon_sym_AMP_AMP] = ACTIONS(3717), + [anon_sym_PIPE_PIPE] = ACTIONS(3717), + [anon_sym_LT] = ACTIONS(3993), + [anon_sym_GT] = ACTIONS(3993), + [anon_sym_GT_GT] = ACTIONS(3996), + [anon_sym_AMP_GT] = ACTIONS(3993), + [anon_sym_AMP_GT_GT] = ACTIONS(3996), + [anon_sym_LT_AMP] = ACTIONS(3996), + [anon_sym_GT_AMP] = ACTIONS(3996), + [anon_sym_LT_LT] = ACTIONS(3725), + [anon_sym_LT_LT_DASH] = ACTIONS(3728), + [anon_sym_LT_LT_LT] = ACTIONS(3999), + [anon_sym_BQUOTE] = ACTIONS(3717), [sym_comment] = ACTIONS(56), }, [1193] = { @@ -40797,22 +41009,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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_file_descriptor] = ACTIONS(1076), + [anon_sym_PIPE] = ACTIONS(3734), + [anon_sym_PIPE_AMP] = ACTIONS(3736), + [anon_sym_AMP_AMP] = ACTIONS(3736), + [anon_sym_PIPE_PIPE] = ACTIONS(3736), + [anon_sym_LT] = ACTIONS(1080), + [anon_sym_GT] = ACTIONS(1080), + [anon_sym_GT_GT] = ACTIONS(1082), + [anon_sym_AMP_GT] = ACTIONS(1080), + [anon_sym_AMP_GT_GT] = ACTIONS(1082), + [anon_sym_LT_AMP] = ACTIONS(1082), + [anon_sym_GT_AMP] = ACTIONS(1082), + [anon_sym_LT_LT] = ACTIONS(992), + [anon_sym_LT_LT_DASH] = ACTIONS(994), + [anon_sym_LT_LT_LT] = ACTIONS(1084), + [anon_sym_BQUOTE] = ACTIONS(3736), [sym_comment] = ACTIONS(56), }, [1194] = { @@ -40824,33 +41036,34 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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_file_descriptor] = ACTIONS(1559), + [anon_sym_PIPE] = ACTIONS(1557), + [anon_sym_PIPE_AMP] = ACTIONS(1559), + [anon_sym_AMP_AMP] = ACTIONS(1559), + [anon_sym_PIPE_PIPE] = ACTIONS(1559), + [anon_sym_EQ_TILDE] = ACTIONS(4002), + [anon_sym_EQ_EQ] = ACTIONS(4002), + [anon_sym_LT] = ACTIONS(1557), + [anon_sym_GT] = ACTIONS(1557), + [anon_sym_GT_GT] = ACTIONS(1559), + [anon_sym_AMP_GT] = ACTIONS(1557), + [anon_sym_AMP_GT_GT] = ACTIONS(1559), + [anon_sym_LT_AMP] = ACTIONS(1559), + [anon_sym_GT_AMP] = ACTIONS(1559), + [anon_sym_LT_LT] = ACTIONS(1557), + [anon_sym_LT_LT_DASH] = ACTIONS(1559), + [anon_sym_LT_LT_LT] = ACTIONS(1559), + [sym__special_characters] = ACTIONS(4005), + [anon_sym_DQUOTE] = ACTIONS(4008), + [anon_sym_DOLLAR] = ACTIONS(4011), + [sym_raw_string] = ACTIONS(4014), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4017), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4020), + [anon_sym_BQUOTE] = ACTIONS(4023), + [anon_sym_LT_LPAREN] = ACTIONS(4026), + [anon_sym_GT_LPAREN] = ACTIONS(4026), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3971), + [sym_word] = ACTIONS(4029), }, [1195] = { [sym_file_redirect] = STATE(539), @@ -40865,125 +41078,126 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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_file_descriptor] = ACTIONS(1076), + [anon_sym_PIPE] = ACTIONS(3734), + [anon_sym_PIPE_AMP] = ACTIONS(3736), + [anon_sym_AMP_AMP] = ACTIONS(3736), + [anon_sym_PIPE_PIPE] = ACTIONS(3736), + [anon_sym_EQ_TILDE] = ACTIONS(1078), + [anon_sym_EQ_EQ] = ACTIONS(1078), + [anon_sym_LT] = ACTIONS(1080), + [anon_sym_GT] = ACTIONS(1080), + [anon_sym_GT_GT] = ACTIONS(1082), + [anon_sym_AMP_GT] = ACTIONS(1080), + [anon_sym_AMP_GT_GT] = ACTIONS(1082), + [anon_sym_LT_AMP] = ACTIONS(1082), + [anon_sym_GT_AMP] = ACTIONS(1082), + [anon_sym_LT_LT] = ACTIONS(992), + [anon_sym_LT_LT_DASH] = ACTIONS(994), + [anon_sym_LT_LT_LT] = ACTIONS(1084), + [sym__special_characters] = ACTIONS(1086), + [anon_sym_DQUOTE] = ACTIONS(320), + [anon_sym_DOLLAR] = ACTIONS(322), + [sym_raw_string] = ACTIONS(1088), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), + [anon_sym_BQUOTE] = ACTIONS(3736), + [anon_sym_LT_LPAREN] = ACTIONS(332), + [anon_sym_GT_LPAREN] = ACTIONS(332), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1070), + [sym_word] = ACTIONS(1090), }, [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_file_descriptor] = ACTIONS(1399), + [anon_sym_PIPE] = ACTIONS(2784), + [anon_sym_SEMI_SEMI] = ACTIONS(2784), + [anon_sym_PIPE_AMP] = ACTIONS(2784), + [anon_sym_AMP_AMP] = ACTIONS(2784), + [anon_sym_PIPE_PIPE] = ACTIONS(2784), + [anon_sym_LT] = ACTIONS(1403), + [anon_sym_GT] = ACTIONS(1403), + [anon_sym_GT_GT] = ACTIONS(1403), + [anon_sym_AMP_GT] = ACTIONS(1403), + [anon_sym_AMP_GT_GT] = ACTIONS(1403), + [anon_sym_LT_AMP] = ACTIONS(1403), + [anon_sym_GT_AMP] = ACTIONS(1403), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2740), - [anon_sym_LF] = ACTIONS(2740), - [anon_sym_AMP] = ACTIONS(2740), + [anon_sym_SEMI] = ACTIONS(2784), + [anon_sym_LF] = ACTIONS(2784), + [anon_sym_AMP] = ACTIONS(2784), }, [1197] = { [aux_sym_concatenation_repeat1] = STATE(1201), - [sym_file_descriptor] = ACTIONS(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_file_descriptor] = ACTIONS(1239), + [sym__concat] = ACTIONS(2410), + [anon_sym_PIPE] = ACTIONS(4032), + [anon_sym_SEMI_SEMI] = ACTIONS(4032), + [anon_sym_PIPE_AMP] = ACTIONS(4032), + [anon_sym_AMP_AMP] = ACTIONS(4032), + [anon_sym_PIPE_PIPE] = ACTIONS(4032), + [anon_sym_LT] = ACTIONS(4032), + [anon_sym_GT] = ACTIONS(4032), + [anon_sym_GT_GT] = ACTIONS(4032), + [anon_sym_AMP_GT] = ACTIONS(4032), + [anon_sym_AMP_GT_GT] = ACTIONS(4032), + [anon_sym_LT_AMP] = ACTIONS(4032), + [anon_sym_GT_AMP] = ACTIONS(4032), + [anon_sym_LT_LT] = ACTIONS(4032), + [anon_sym_LT_LT_DASH] = ACTIONS(4032), + [anon_sym_LT_LT_LT] = ACTIONS(4032), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3974), - [anon_sym_LF] = ACTIONS(3974), - [anon_sym_AMP] = ACTIONS(3974), + [anon_sym_SEMI] = ACTIONS(4032), + [anon_sym_LF] = ACTIONS(4032), + [anon_sym_AMP] = ACTIONS(4032), }, [1198] = { [aux_sym_concatenation_repeat1] = STATE(1201), - [sym_file_descriptor] = ACTIONS(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_file_descriptor] = ACTIONS(1243), + [sym__concat] = ACTIONS(2410), + [anon_sym_PIPE] = ACTIONS(4034), + [anon_sym_SEMI_SEMI] = ACTIONS(4034), + [anon_sym_PIPE_AMP] = ACTIONS(4034), + [anon_sym_AMP_AMP] = ACTIONS(4034), + [anon_sym_PIPE_PIPE] = ACTIONS(4034), + [anon_sym_LT] = ACTIONS(4034), + [anon_sym_GT] = ACTIONS(4034), + [anon_sym_GT_GT] = ACTIONS(4034), + [anon_sym_AMP_GT] = ACTIONS(4034), + [anon_sym_AMP_GT_GT] = ACTIONS(4034), + [anon_sym_LT_AMP] = ACTIONS(4034), + [anon_sym_GT_AMP] = ACTIONS(4034), + [anon_sym_LT_LT] = ACTIONS(4034), + [anon_sym_LT_LT_DASH] = ACTIONS(4034), + [anon_sym_LT_LT_LT] = ACTIONS(4034), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3976), - [anon_sym_LF] = ACTIONS(3976), - [anon_sym_AMP] = ACTIONS(3976), + [anon_sym_SEMI] = ACTIONS(4034), + [anon_sym_LF] = ACTIONS(4034), + [anon_sym_AMP] = ACTIONS(4034), }, [1199] = { - [sym_file_descriptor] = ACTIONS(1223), - [anon_sym_esac] = ACTIONS(3976), - [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_file_descriptor] = ACTIONS(1243), + [anon_sym_esac] = ACTIONS(4034), + [anon_sym_PIPE] = ACTIONS(4034), + [anon_sym_RPAREN] = ACTIONS(4034), + [anon_sym_SEMI_SEMI] = ACTIONS(4034), + [anon_sym_PIPE_AMP] = ACTIONS(4034), + [anon_sym_AMP_AMP] = ACTIONS(4034), + [anon_sym_PIPE_PIPE] = ACTIONS(4034), + [anon_sym_LT] = ACTIONS(4034), + [anon_sym_GT] = ACTIONS(4034), + [anon_sym_GT_GT] = ACTIONS(4034), + [anon_sym_AMP_GT] = ACTIONS(4034), + [anon_sym_AMP_GT_GT] = ACTIONS(4034), + [anon_sym_LT_AMP] = ACTIONS(4034), + [anon_sym_GT_AMP] = ACTIONS(4034), + [anon_sym_LT_LT] = ACTIONS(4034), + [anon_sym_LT_LT_DASH] = ACTIONS(4034), + [anon_sym_LT_LT_LT] = ACTIONS(4034), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3976), - [anon_sym_LF] = ACTIONS(3976), - [anon_sym_AMP] = ACTIONS(3976), + [anon_sym_SEMI] = ACTIONS(4034), + [anon_sym_LF] = ACTIONS(4034), + [anon_sym_AMP] = ACTIONS(4034), }, [1200] = { [sym_string] = STATE(1875), @@ -40992,71 +41206,71 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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__special_characters] = ACTIONS(4036), + [anon_sym_DQUOTE] = ACTIONS(1118), + [anon_sym_DOLLAR] = ACTIONS(1120), + [sym_raw_string] = ACTIONS(4038), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1124), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1126), + [anon_sym_BQUOTE] = ACTIONS(1128), + [anon_sym_LT_LPAREN] = ACTIONS(1130), + [anon_sym_GT_LPAREN] = ACTIONS(1130), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3978), + [sym_word] = ACTIONS(4036), }, [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_file_descriptor] = ACTIONS(788), + [sym__concat] = ACTIONS(2410), + [anon_sym_PIPE] = ACTIONS(790), + [anon_sym_SEMI_SEMI] = ACTIONS(790), + [anon_sym_PIPE_AMP] = ACTIONS(790), + [anon_sym_AMP_AMP] = ACTIONS(790), + [anon_sym_PIPE_PIPE] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(790), + [anon_sym_GT] = ACTIONS(790), + [anon_sym_GT_GT] = ACTIONS(790), + [anon_sym_AMP_GT] = ACTIONS(790), + [anon_sym_AMP_GT_GT] = ACTIONS(790), + [anon_sym_LT_AMP] = ACTIONS(790), + [anon_sym_GT_AMP] = ACTIONS(790), + [anon_sym_LT_LT] = ACTIONS(790), + [anon_sym_LT_LT_DASH] = ACTIONS(790), + [anon_sym_LT_LT_LT] = ACTIONS(790), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(774), - [anon_sym_LF] = ACTIONS(774), - [anon_sym_AMP] = ACTIONS(774), + [anon_sym_SEMI] = ACTIONS(790), + [anon_sym_LF] = ACTIONS(790), + [anon_sym_AMP] = ACTIONS(790), }, [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_file_descriptor] = ACTIONS(792), + [sym__concat] = ACTIONS(792), + [anon_sym_PIPE] = ACTIONS(794), + [anon_sym_SEMI_SEMI] = ACTIONS(794), + [anon_sym_PIPE_AMP] = ACTIONS(794), + [anon_sym_AMP_AMP] = ACTIONS(794), + [anon_sym_PIPE_PIPE] = ACTIONS(794), + [anon_sym_LT] = ACTIONS(794), + [anon_sym_GT] = ACTIONS(794), + [anon_sym_GT_GT] = ACTIONS(794), + [anon_sym_AMP_GT] = ACTIONS(794), + [anon_sym_AMP_GT_GT] = ACTIONS(794), + [anon_sym_LT_AMP] = ACTIONS(794), + [anon_sym_GT_AMP] = ACTIONS(794), + [anon_sym_LT_LT] = ACTIONS(794), + [anon_sym_LT_LT_DASH] = ACTIONS(794), + [anon_sym_LT_LT_LT] = ACTIONS(794), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(778), - [anon_sym_LF] = ACTIONS(778), - [anon_sym_AMP] = ACTIONS(778), + [anon_sym_SEMI] = ACTIONS(794), + [anon_sym_LF] = ACTIONS(794), + [anon_sym_AMP] = ACTIONS(794), }, [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_DQUOTE] = ACTIONS(4040), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -41065,77 +41279,77 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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_file_descriptor] = ACTIONS(824), + [sym__concat] = ACTIONS(824), + [anon_sym_PIPE] = ACTIONS(826), + [anon_sym_SEMI_SEMI] = ACTIONS(826), + [anon_sym_PIPE_AMP] = ACTIONS(826), + [anon_sym_AMP_AMP] = ACTIONS(826), + [anon_sym_PIPE_PIPE] = ACTIONS(826), + [anon_sym_LT] = ACTIONS(826), + [anon_sym_GT] = ACTIONS(826), + [anon_sym_GT_GT] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(826), + [anon_sym_AMP_GT_GT] = ACTIONS(826), + [anon_sym_LT_AMP] = ACTIONS(826), + [anon_sym_GT_AMP] = ACTIONS(826), + [anon_sym_LT_LT] = ACTIONS(826), + [anon_sym_LT_LT_DASH] = ACTIONS(826), + [anon_sym_LT_LT_LT] = ACTIONS(826), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(810), - [anon_sym_LF] = ACTIONS(810), - [anon_sym_AMP] = ACTIONS(810), + [anon_sym_SEMI] = ACTIONS(826), + [anon_sym_LF] = ACTIONS(826), + [anon_sym_AMP] = ACTIONS(826), }, [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_file_descriptor] = ACTIONS(828), + [sym__concat] = ACTIONS(828), + [anon_sym_PIPE] = ACTIONS(830), + [anon_sym_SEMI_SEMI] = ACTIONS(830), + [anon_sym_PIPE_AMP] = ACTIONS(830), + [anon_sym_AMP_AMP] = ACTIONS(830), + [anon_sym_PIPE_PIPE] = ACTIONS(830), + [anon_sym_LT] = ACTIONS(830), + [anon_sym_GT] = ACTIONS(830), + [anon_sym_GT_GT] = ACTIONS(830), + [anon_sym_AMP_GT] = ACTIONS(830), + [anon_sym_AMP_GT_GT] = ACTIONS(830), + [anon_sym_LT_AMP] = ACTIONS(830), + [anon_sym_GT_AMP] = ACTIONS(830), + [anon_sym_LT_LT] = ACTIONS(830), + [anon_sym_LT_LT_DASH] = ACTIONS(830), + [anon_sym_LT_LT_LT] = ACTIONS(830), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(814), - [anon_sym_LF] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(814), + [anon_sym_SEMI] = ACTIONS(830), + [anon_sym_LF] = ACTIONS(830), + [anon_sym_AMP] = ACTIONS(830), }, [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_file_descriptor] = ACTIONS(832), + [sym__concat] = ACTIONS(832), + [anon_sym_PIPE] = ACTIONS(834), + [anon_sym_SEMI_SEMI] = ACTIONS(834), + [anon_sym_PIPE_AMP] = ACTIONS(834), + [anon_sym_AMP_AMP] = ACTIONS(834), + [anon_sym_PIPE_PIPE] = ACTIONS(834), + [anon_sym_LT] = ACTIONS(834), + [anon_sym_GT] = ACTIONS(834), + [anon_sym_GT_GT] = ACTIONS(834), + [anon_sym_AMP_GT] = ACTIONS(834), + [anon_sym_AMP_GT_GT] = ACTIONS(834), + [anon_sym_LT_AMP] = ACTIONS(834), + [anon_sym_GT_AMP] = ACTIONS(834), + [anon_sym_LT_LT] = ACTIONS(834), + [anon_sym_LT_LT_DASH] = ACTIONS(834), + [anon_sym_LT_LT_LT] = ACTIONS(834), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(818), - [anon_sym_LF] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(818), + [anon_sym_SEMI] = ACTIONS(834), + [anon_sym_LF] = ACTIONS(834), + [anon_sym_AMP] = ACTIONS(834), }, [1207] = { - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(3984), + [anon_sym_LBRACK] = ACTIONS(836), + [anon_sym_EQ] = ACTIONS(4042), [sym_comment] = ACTIONS(56), }, [1208] = { @@ -41147,39 +41361,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4044), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(4046), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1209] = { [sym_subscript] = STATE(1885), - [sym_variable_name] = ACTIONS(3990), - [anon_sym_DOLLAR] = ACTIONS(3992), - [anon_sym_DASH] = ACTIONS(3992), + [sym_variable_name] = ACTIONS(4048), + [anon_sym_DOLLAR] = ACTIONS(4050), + [anon_sym_DASH] = ACTIONS(4050), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4052), + [anon_sym_STAR] = ACTIONS(4050), + [anon_sym_AT] = ACTIONS(4050), + [anon_sym_QMARK] = ACTIONS(4050), + [anon_sym_0] = ACTIONS(4054), + [anon_sym__] = ACTIONS(4054), }, [1210] = { [sym_concatenation] = STATE(451), @@ -41190,26 +41404,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4056), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(4058), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1211] = { [sym_concatenation] = STATE(451), @@ -41220,286 +41434,286 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4060), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(4062), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(4064), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), [sym_comment] = ACTIONS(56), }, [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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(4064), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [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), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_PIPE_AMP] = ACTIONS(1072), + [anon_sym_AMP_AMP] = ACTIONS(1074), + [anon_sym_PIPE_PIPE] = ACTIONS(1074), + [anon_sym_BQUOTE] = ACTIONS(4064), [sym_comment] = ACTIONS(56), }, [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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_PIPE_AMP] = ACTIONS(1072), + [anon_sym_AMP_AMP] = ACTIONS(1074), + [anon_sym_PIPE_PIPE] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(4064), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [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), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(4066), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), [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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(4066), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [1218] = { - [sym__heredoc_middle] = ACTIONS(4010), - [sym__heredoc_end] = ACTIONS(4010), - [anon_sym_DOLLAR] = ACTIONS(4012), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4010), + [sym__heredoc_middle] = ACTIONS(4068), + [sym__heredoc_end] = ACTIONS(4068), + [anon_sym_DOLLAR] = ACTIONS(4070), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4068), [sym_comment] = ACTIONS(56), }, [1219] = { - [sym_file_descriptor] = ACTIONS(4014), - [anon_sym_esac] = ACTIONS(4016), - [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_file_descriptor] = ACTIONS(4072), + [anon_sym_esac] = ACTIONS(4074), + [anon_sym_PIPE] = ACTIONS(4074), + [anon_sym_RPAREN] = ACTIONS(4074), + [anon_sym_SEMI_SEMI] = ACTIONS(4074), + [anon_sym_PIPE_AMP] = ACTIONS(4074), + [anon_sym_AMP_AMP] = ACTIONS(4074), + [anon_sym_PIPE_PIPE] = ACTIONS(4074), + [anon_sym_LT] = ACTIONS(4074), + [anon_sym_GT] = ACTIONS(4074), + [anon_sym_GT_GT] = ACTIONS(4074), + [anon_sym_AMP_GT] = ACTIONS(4074), + [anon_sym_AMP_GT_GT] = ACTIONS(4074), + [anon_sym_LT_AMP] = ACTIONS(4074), + [anon_sym_GT_AMP] = ACTIONS(4074), + [anon_sym_LT_LT] = ACTIONS(4074), + [anon_sym_LT_LT_DASH] = ACTIONS(4074), + [anon_sym_LT_LT_LT] = ACTIONS(4074), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4016), - [anon_sym_LF] = ACTIONS(4016), - [anon_sym_AMP] = ACTIONS(4016), + [anon_sym_SEMI] = ACTIONS(4074), + [anon_sym_LF] = ACTIONS(4074), + [anon_sym_AMP] = ACTIONS(4074), }, [1220] = { - [anon_sym_DOLLAR] = ACTIONS(4018), - [anon_sym_POUND] = ACTIONS(4018), - [anon_sym_DASH] = ACTIONS(4018), + [anon_sym_DOLLAR] = ACTIONS(4076), + [anon_sym_POUND] = ACTIONS(4076), + [anon_sym_DASH] = ACTIONS(4076), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4078), + [anon_sym_STAR] = ACTIONS(4076), + [anon_sym_AT] = ACTIONS(4076), + [anon_sym_QMARK] = ACTIONS(4076), + [anon_sym_0] = ACTIONS(4080), + [anon_sym__] = ACTIONS(4080), }, [1221] = { [sym_subscript] = STATE(1900), - [sym_variable_name] = ACTIONS(4024), - [anon_sym_DOLLAR] = ACTIONS(4026), - [anon_sym_POUND] = ACTIONS(4028), - [anon_sym_DASH] = ACTIONS(4026), + [sym_variable_name] = ACTIONS(4082), + [anon_sym_DOLLAR] = ACTIONS(4084), + [anon_sym_POUND] = ACTIONS(4086), + [anon_sym_DASH] = ACTIONS(4084), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4088), + [anon_sym_STAR] = ACTIONS(4084), + [anon_sym_AT] = ACTIONS(4084), + [anon_sym_QMARK] = ACTIONS(4084), + [anon_sym_0] = ACTIONS(4090), + [anon_sym__] = ACTIONS(4090), }, [1222] = { [sym_simple_expansion] = STATE(1218), [sym_expansion] = STATE(1218), [aux_sym_heredoc_repeat1] = STATE(1902), - [sym__heredoc_middle] = ACTIONS(2400), - [sym__heredoc_end] = ACTIONS(4034), - [anon_sym_DOLLAR] = ACTIONS(2404), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2406), + [sym__heredoc_middle] = ACTIONS(2440), + [sym__heredoc_end] = ACTIONS(4092), + [anon_sym_DOLLAR] = ACTIONS(2444), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2446), [sym_comment] = ACTIONS(56), }, [1223] = { [aux_sym_concatenation_repeat1] = STATE(414), - [sym_file_descriptor] = ACTIONS(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_file_descriptor] = ACTIONS(1301), + [sym__concat] = ACTIONS(756), + [sym_variable_name] = ACTIONS(1301), + [anon_sym_LT] = ACTIONS(3424), + [anon_sym_GT] = ACTIONS(3424), + [anon_sym_GT_GT] = ACTIONS(1301), + [anon_sym_AMP_GT] = ACTIONS(3424), + [anon_sym_AMP_GT_GT] = ACTIONS(1301), + [anon_sym_LT_AMP] = ACTIONS(1301), + [anon_sym_GT_AMP] = ACTIONS(1301), + [sym__special_characters] = ACTIONS(3424), + [anon_sym_DQUOTE] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(3424), + [sym_raw_string] = ACTIONS(1301), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1301), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1301), + [anon_sym_BQUOTE] = ACTIONS(1301), + [anon_sym_LT_LPAREN] = ACTIONS(1301), + [anon_sym_GT_LPAREN] = ACTIONS(1301), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3374), + [sym_word] = ACTIONS(3424), }, [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_file_descriptor] = ACTIONS(1277), + [sym__concat] = ACTIONS(756), + [sym_variable_name] = ACTIONS(1277), + [anon_sym_LT] = ACTIONS(3418), + [anon_sym_GT] = ACTIONS(3418), + [anon_sym_GT_GT] = ACTIONS(1277), + [anon_sym_AMP_GT] = ACTIONS(3418), + [anon_sym_AMP_GT_GT] = ACTIONS(1277), + [anon_sym_LT_AMP] = ACTIONS(1277), + [anon_sym_GT_AMP] = ACTIONS(1277), + [sym__special_characters] = ACTIONS(3418), + [anon_sym_DQUOTE] = ACTIONS(1277), + [anon_sym_DOLLAR] = ACTIONS(3418), + [sym_raw_string] = ACTIONS(1277), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1277), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1277), + [anon_sym_BQUOTE] = ACTIONS(1277), + [anon_sym_LT_LPAREN] = ACTIONS(1277), + [anon_sym_GT_LPAREN] = ACTIONS(1277), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3368), + [sym_word] = ACTIONS(3418), }, [1225] = { [sym_file_redirect] = STATE(207), [sym_heredoc_redirect] = STATE(207), [sym_herestring_redirect] = STATE(207), [aux_sym_while_statement_repeat1] = STATE(624), - [sym_file_descriptor] = ACTIONS(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_file_descriptor] = ACTIONS(352), + [anon_sym_PIPE] = ACTIONS(4094), + [anon_sym_SEMI_SEMI] = ACTIONS(4094), + [anon_sym_PIPE_AMP] = ACTIONS(4094), + [anon_sym_AMP_AMP] = ACTIONS(4094), + [anon_sym_PIPE_PIPE] = ACTIONS(4094), + [anon_sym_LT] = ACTIONS(358), + [anon_sym_GT] = ACTIONS(358), + [anon_sym_GT_GT] = ACTIONS(358), + [anon_sym_AMP_GT] = ACTIONS(358), + [anon_sym_AMP_GT_GT] = ACTIONS(358), + [anon_sym_LT_AMP] = ACTIONS(358), + [anon_sym_GT_AMP] = ACTIONS(358), + [anon_sym_LT_LT] = ACTIONS(360), + [anon_sym_LT_LT_DASH] = ACTIONS(360), + [anon_sym_LT_LT_LT] = ACTIONS(362), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4036), - [anon_sym_LF] = ACTIONS(4036), - [anon_sym_AMP] = ACTIONS(4036), + [anon_sym_SEMI] = ACTIONS(4094), + [anon_sym_LF] = ACTIONS(4094), + [anon_sym_AMP] = ACTIONS(4094), }, [1226] = { - [sym__concat] = ACTIONS(4038), - [anon_sym_EQ] = ACTIONS(4040), - [anon_sym_PLUS_EQ] = ACTIONS(4040), + [sym__concat] = ACTIONS(4096), + [anon_sym_EQ] = ACTIONS(4098), + [anon_sym_PLUS_EQ] = ACTIONS(4098), [sym_comment] = ACTIONS(56), }, [1227] = { - [sym__concat] = ACTIONS(1858), - [anon_sym_RBRACK] = ACTIONS(1858), + [sym__concat] = ACTIONS(1886), + [anon_sym_RBRACK] = ACTIONS(1886), [sym_comment] = ACTIONS(56), }, [1228] = { - [anon_sym_EQ] = ACTIONS(4040), - [anon_sym_PLUS_EQ] = ACTIONS(4040), + [anon_sym_EQ] = ACTIONS(4098), + [anon_sym_PLUS_EQ] = ACTIONS(4098), [sym_comment] = ACTIONS(56), }, [1229] = { @@ -41509,38 +41723,38 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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__special_characters] = ACTIONS(2515), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_DOLLAR] = ACTIONS(404), + [sym_raw_string] = ACTIONS(2513), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(408), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(410), + [anon_sym_BQUOTE] = ACTIONS(412), + [anon_sym_LT_LPAREN] = ACTIONS(414), + [anon_sym_GT_LPAREN] = ACTIONS(414), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2475), + [sym_word] = ACTIONS(2515), }, [1230] = { [aux_sym_concatenation_repeat1] = STATE(1230), - [sym__concat] = ACTIONS(4042), - [anon_sym_RBRACK] = ACTIONS(1858), + [sym__concat] = ACTIONS(4100), + [anon_sym_RBRACK] = ACTIONS(1886), [sym_comment] = ACTIONS(56), }, [1231] = { - [sym__concat] = ACTIONS(1895), - [anon_sym_RBRACK] = ACTIONS(1895), + [sym__concat] = ACTIONS(1923), + [anon_sym_RBRACK] = ACTIONS(1923), [sym_comment] = ACTIONS(56), }, [1232] = { - [sym__concat] = ACTIONS(4045), - [anon_sym_EQ] = ACTIONS(4047), - [anon_sym_PLUS_EQ] = ACTIONS(4047), + [sym__concat] = ACTIONS(4103), + [anon_sym_EQ] = ACTIONS(4105), + [anon_sym_PLUS_EQ] = ACTIONS(4105), [sym_comment] = ACTIONS(56), }, [1233] = { - [anon_sym_EQ] = ACTIONS(4047), - [anon_sym_PLUS_EQ] = ACTIONS(4047), + [anon_sym_EQ] = ACTIONS(4105), + [anon_sym_PLUS_EQ] = ACTIONS(4105), [sym_comment] = ACTIONS(56), }, [1234] = { @@ -41551,27 +41765,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4107), + [sym__special_characters] = ACTIONS(4109), + [anon_sym_DQUOTE] = ACTIONS(1952), + [anon_sym_DOLLAR] = ACTIONS(1954), + [sym_raw_string] = ACTIONS(4111), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), + [anon_sym_BQUOTE] = ACTIONS(1962), + [anon_sym_LT_LPAREN] = ACTIONS(1964), + [anon_sym_GT_LPAREN] = ACTIONS(1964), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4055), + [sym_word] = ACTIONS(4113), }, [1235] = { - [sym__concat] = ACTIONS(1940), - [anon_sym_RBRACK] = ACTIONS(1940), + [sym__concat] = ACTIONS(1968), + [anon_sym_RBRACK] = ACTIONS(1968), [sym_comment] = ACTIONS(56), }, [1236] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4057), + [sym_regex_without_right_brace] = ACTIONS(4115), }, [1237] = { [sym_concatenation] = STATE(451), @@ -41582,29 +41796,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4117), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1238] = { - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(4061), + [anon_sym_LBRACK] = ACTIONS(836), + [anon_sym_EQ] = ACTIONS(4119), [sym_comment] = ACTIONS(56), }, [1239] = { @@ -41616,26 +41830,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4121), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(4123), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1240] = { [sym_concatenation] = STATE(451), @@ -41646,26 +41860,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4125), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(4127), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1241] = { [sym_concatenation] = STATE(451), @@ -41676,35 +41890,35 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4107), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(4129), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1242] = { - [sym__concat] = ACTIONS(1992), - [anon_sym_RBRACK] = ACTIONS(1992), + [sym__concat] = ACTIONS(2022), + [anon_sym_RBRACK] = ACTIONS(2022), [sym_comment] = ACTIONS(56), }, [1243] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4073), + [sym_regex_without_right_brace] = ACTIONS(4131), }, [1244] = { [sym_concatenation] = STATE(451), @@ -41715,34 +41929,34 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4133), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1245] = { - [sym__concat] = ACTIONS(2000), - [anon_sym_RBRACK] = ACTIONS(2000), + [sym__concat] = ACTIONS(2030), + [anon_sym_RBRACK] = ACTIONS(2030), [sym_comment] = ACTIONS(56), }, [1246] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4077), + [sym_regex_without_right_brace] = ACTIONS(4135), }, [1247] = { [sym_concatenation] = STATE(451), @@ -41753,34 +41967,34 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4107), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1248] = { - [sym__concat] = ACTIONS(2156), - [anon_sym_RBRACK] = ACTIONS(2156), + [sym__concat] = ACTIONS(2190), + [anon_sym_RBRACK] = ACTIONS(2190), [sym_comment] = ACTIONS(56), }, [1249] = { - [sym__concat] = ACTIONS(2358), - [anon_sym_RBRACK] = ACTIONS(2358), + [sym__concat] = ACTIONS(2396), + [anon_sym_RBRACK] = ACTIONS(2396), [sym_comment] = ACTIONS(56), }, [1250] = { @@ -41790,55 +42004,55 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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__special_characters] = ACTIONS(4137), + [anon_sym_DQUOTE] = ACTIONS(1285), + [anon_sym_DOLLAR] = ACTIONS(1287), + [sym_raw_string] = ACTIONS(4139), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1291), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1293), + [anon_sym_BQUOTE] = ACTIONS(1295), + [anon_sym_LT_LPAREN] = ACTIONS(1297), + [anon_sym_GT_LPAREN] = ACTIONS(1297), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4079), + [sym_word] = ACTIONS(4137), }, [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__concat] = ACTIONS(2561), + [anon_sym_RPAREN] = ACTIONS(788), + [sym__special_characters] = ACTIONS(1567), + [anon_sym_DQUOTE] = ACTIONS(788), + [anon_sym_DOLLAR] = ACTIONS(1567), + [sym_raw_string] = ACTIONS(788), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(788), + [anon_sym_BQUOTE] = ACTIONS(788), + [anon_sym_LT_LPAREN] = ACTIONS(788), + [anon_sym_GT_LPAREN] = ACTIONS(788), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1539), + [sym_word] = ACTIONS(1567), }, [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__concat] = ACTIONS(792), + [anon_sym_RPAREN] = ACTIONS(792), + [sym__special_characters] = ACTIONS(1569), + [anon_sym_DQUOTE] = ACTIONS(792), + [anon_sym_DOLLAR] = ACTIONS(1569), + [sym_raw_string] = ACTIONS(792), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(792), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(792), + [anon_sym_BQUOTE] = ACTIONS(792), + [anon_sym_LT_LPAREN] = ACTIONS(792), + [anon_sym_GT_LPAREN] = ACTIONS(792), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1541), + [sym_word] = ACTIONS(1569), }, [1253] = { [sym_simple_expansion] = STATE(134), [sym_expansion] = STATE(134), [sym_command_substitution] = STATE(134), [aux_sym_string_repeat1] = STATE(447), - [anon_sym_DQUOTE] = ACTIONS(4083), + [anon_sym_DQUOTE] = ACTIONS(4141), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -41847,53 +42061,53 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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__concat] = ACTIONS(824), + [anon_sym_RPAREN] = ACTIONS(824), + [sym__special_characters] = ACTIONS(1573), + [anon_sym_DQUOTE] = ACTIONS(824), + [anon_sym_DOLLAR] = ACTIONS(1573), + [sym_raw_string] = ACTIONS(824), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(824), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(824), + [anon_sym_BQUOTE] = ACTIONS(824), + [anon_sym_LT_LPAREN] = ACTIONS(824), + [anon_sym_GT_LPAREN] = ACTIONS(824), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1545), + [sym_word] = ACTIONS(1573), }, [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__concat] = ACTIONS(828), + [anon_sym_RPAREN] = ACTIONS(828), + [sym__special_characters] = ACTIONS(1575), + [anon_sym_DQUOTE] = ACTIONS(828), + [anon_sym_DOLLAR] = ACTIONS(1575), + [sym_raw_string] = ACTIONS(828), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), + [anon_sym_BQUOTE] = ACTIONS(828), + [anon_sym_LT_LPAREN] = ACTIONS(828), + [anon_sym_GT_LPAREN] = ACTIONS(828), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1547), + [sym_word] = ACTIONS(1575), }, [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__concat] = ACTIONS(832), + [anon_sym_RPAREN] = ACTIONS(832), + [sym__special_characters] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(832), + [anon_sym_DOLLAR] = ACTIONS(1577), + [sym_raw_string] = ACTIONS(832), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(832), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(832), + [anon_sym_BQUOTE] = ACTIONS(832), + [anon_sym_LT_LPAREN] = ACTIONS(832), + [anon_sym_GT_LPAREN] = ACTIONS(832), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1549), + [sym_word] = ACTIONS(1577), }, [1257] = { - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(4085), + [anon_sym_LBRACK] = ACTIONS(836), + [anon_sym_EQ] = ACTIONS(4143), [sym_comment] = ACTIONS(56), }, [1258] = { @@ -41905,39 +42119,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4145), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(4147), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1259] = { [sym_subscript] = STATE(1933), - [sym_variable_name] = ACTIONS(4091), - [anon_sym_DOLLAR] = ACTIONS(4093), - [anon_sym_DASH] = ACTIONS(4093), + [sym_variable_name] = ACTIONS(4149), + [anon_sym_DOLLAR] = ACTIONS(4151), + [anon_sym_DASH] = ACTIONS(4151), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4153), + [anon_sym_STAR] = ACTIONS(4151), + [anon_sym_AT] = ACTIONS(4151), + [anon_sym_QMARK] = ACTIONS(4151), + [anon_sym_0] = ACTIONS(4155), + [anon_sym__] = ACTIONS(4155), }, [1260] = { [sym_concatenation] = STATE(451), @@ -41948,26 +42162,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4157), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(4159), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1261] = { [sym_concatenation] = STATE(451), @@ -41978,161 +42192,161 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4161), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(4163), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(4165), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), [sym_comment] = ACTIONS(56), }, [1263] = { - [sym_file_descriptor] = ACTIONS(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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(4165), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [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), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_PIPE_AMP] = ACTIONS(1072), + [anon_sym_AMP_AMP] = ACTIONS(1074), + [anon_sym_PIPE_PIPE] = ACTIONS(1074), + [anon_sym_BQUOTE] = ACTIONS(4165), [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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_PIPE_AMP] = ACTIONS(1072), + [anon_sym_AMP_AMP] = ACTIONS(1074), + [anon_sym_PIPE_PIPE] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(4165), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [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), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(4167), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), [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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(4167), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [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_file_descriptor] = ACTIONS(4169), + [sym_variable_name] = ACTIONS(4169), + [anon_sym_PIPE] = ACTIONS(4171), + [anon_sym_RPAREN] = ACTIONS(4171), + [anon_sym_SEMI_SEMI] = ACTIONS(4171), + [anon_sym_PIPE_AMP] = ACTIONS(4171), + [anon_sym_AMP_AMP] = ACTIONS(4171), + [anon_sym_PIPE_PIPE] = ACTIONS(4171), + [anon_sym_LT] = ACTIONS(4171), + [anon_sym_GT] = ACTIONS(4171), + [anon_sym_GT_GT] = ACTIONS(4171), + [anon_sym_AMP_GT] = ACTIONS(4171), + [anon_sym_AMP_GT_GT] = ACTIONS(4171), + [anon_sym_LT_AMP] = ACTIONS(4171), + [anon_sym_GT_AMP] = ACTIONS(4171), + [sym__special_characters] = ACTIONS(4171), + [anon_sym_DQUOTE] = ACTIONS(4171), + [anon_sym_DOLLAR] = ACTIONS(4171), + [sym_raw_string] = ACTIONS(4171), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4171), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4171), + [anon_sym_BQUOTE] = ACTIONS(4171), + [anon_sym_LT_LPAREN] = ACTIONS(4171), + [anon_sym_GT_LPAREN] = ACTIONS(4171), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4113), - [anon_sym_SEMI] = ACTIONS(4113), - [anon_sym_LF] = ACTIONS(4113), - [anon_sym_AMP] = ACTIONS(4113), + [sym_word] = ACTIONS(4171), + [anon_sym_SEMI] = ACTIONS(4171), + [anon_sym_LF] = ACTIONS(4171), + [anon_sym_AMP] = ACTIONS(4171), }, [1269] = { [sym_concatenation] = STATE(660), @@ -42143,112 +42357,112 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RPAREN] = ACTIONS(4173), + [sym__special_characters] = ACTIONS(4175), + [anon_sym_DQUOTE] = ACTIONS(4178), + [anon_sym_DOLLAR] = ACTIONS(4181), + [sym_raw_string] = ACTIONS(4184), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4187), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4190), + [anon_sym_BQUOTE] = ACTIONS(4193), + [anon_sym_LT_LPAREN] = ACTIONS(4196), + [anon_sym_GT_LPAREN] = ACTIONS(4196), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4141), + [sym_word] = ACTIONS(4199), }, [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_file_descriptor] = ACTIONS(1886), + [sym__concat] = ACTIONS(1886), + [sym_variable_name] = ACTIONS(1886), + [anon_sym_PIPE] = ACTIONS(1888), + [anon_sym_SEMI_SEMI] = ACTIONS(1888), + [anon_sym_PIPE_AMP] = ACTIONS(1888), + [anon_sym_AMP_AMP] = ACTIONS(1888), + [anon_sym_PIPE_PIPE] = ACTIONS(1888), + [anon_sym_LT] = ACTIONS(1888), + [anon_sym_GT] = ACTIONS(1888), + [anon_sym_GT_GT] = ACTIONS(1888), + [anon_sym_AMP_GT] = ACTIONS(1888), + [anon_sym_AMP_GT_GT] = ACTIONS(1888), + [anon_sym_LT_AMP] = ACTIONS(1888), + [anon_sym_GT_AMP] = ACTIONS(1888), + [sym__special_characters] = ACTIONS(1888), + [anon_sym_DQUOTE] = ACTIONS(1888), + [anon_sym_DOLLAR] = ACTIONS(1888), + [sym_raw_string] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1888), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1888), + [anon_sym_BQUOTE] = ACTIONS(1888), + [anon_sym_LT_LPAREN] = ACTIONS(1888), + [anon_sym_GT_LPAREN] = ACTIONS(1888), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1860), - [anon_sym_SEMI] = ACTIONS(1860), - [anon_sym_LF] = ACTIONS(1860), - [anon_sym_AMP] = ACTIONS(1860), + [sym_word] = ACTIONS(1888), + [anon_sym_SEMI] = ACTIONS(1888), + [anon_sym_LF] = ACTIONS(1888), + [anon_sym_AMP] = ACTIONS(1888), }, [1271] = { [aux_sym_concatenation_repeat1] = STATE(1271), - [sym_file_descriptor] = ACTIONS(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_file_descriptor] = ACTIONS(1886), + [sym__concat] = ACTIONS(4202), + [sym_variable_name] = ACTIONS(1886), + [anon_sym_PIPE] = ACTIONS(1888), + [anon_sym_SEMI_SEMI] = ACTIONS(1888), + [anon_sym_PIPE_AMP] = ACTIONS(1888), + [anon_sym_AMP_AMP] = ACTIONS(1888), + [anon_sym_PIPE_PIPE] = ACTIONS(1888), + [anon_sym_LT] = ACTIONS(1888), + [anon_sym_GT] = ACTIONS(1888), + [anon_sym_GT_GT] = ACTIONS(1888), + [anon_sym_AMP_GT] = ACTIONS(1888), + [anon_sym_AMP_GT_GT] = ACTIONS(1888), + [anon_sym_LT_AMP] = ACTIONS(1888), + [anon_sym_GT_AMP] = ACTIONS(1888), + [sym__special_characters] = ACTIONS(1888), + [anon_sym_DQUOTE] = ACTIONS(1888), + [anon_sym_DOLLAR] = ACTIONS(1888), + [sym_raw_string] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1888), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1888), + [anon_sym_BQUOTE] = ACTIONS(1888), + [anon_sym_LT_LPAREN] = ACTIONS(1888), + [anon_sym_GT_LPAREN] = ACTIONS(1888), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1860), - [anon_sym_SEMI] = ACTIONS(1860), - [anon_sym_LF] = ACTIONS(1860), - [anon_sym_AMP] = ACTIONS(1860), + [sym_word] = ACTIONS(1888), + [anon_sym_SEMI] = ACTIONS(1888), + [anon_sym_LF] = ACTIONS(1888), + [anon_sym_AMP] = ACTIONS(1888), }, [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_file_descriptor] = ACTIONS(1923), + [sym__concat] = ACTIONS(1923), + [sym_variable_name] = ACTIONS(1923), + [anon_sym_PIPE] = ACTIONS(1925), + [anon_sym_SEMI_SEMI] = ACTIONS(1925), + [anon_sym_PIPE_AMP] = ACTIONS(1925), + [anon_sym_AMP_AMP] = ACTIONS(1925), + [anon_sym_PIPE_PIPE] = ACTIONS(1925), + [anon_sym_LT] = ACTIONS(1925), + [anon_sym_GT] = ACTIONS(1925), + [anon_sym_GT_GT] = ACTIONS(1925), + [anon_sym_AMP_GT] = ACTIONS(1925), + [anon_sym_AMP_GT_GT] = ACTIONS(1925), + [anon_sym_LT_AMP] = ACTIONS(1925), + [anon_sym_GT_AMP] = ACTIONS(1925), + [sym__special_characters] = ACTIONS(1925), + [anon_sym_DQUOTE] = ACTIONS(1925), + [anon_sym_DOLLAR] = ACTIONS(1925), + [sym_raw_string] = ACTIONS(1925), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1925), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1925), + [anon_sym_BQUOTE] = ACTIONS(1925), + [anon_sym_LT_LPAREN] = ACTIONS(1925), + [anon_sym_GT_LPAREN] = ACTIONS(1925), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1897), - [anon_sym_SEMI] = ACTIONS(1897), - [anon_sym_LF] = ACTIONS(1897), - [anon_sym_AMP] = ACTIONS(1897), + [sym_word] = ACTIONS(1925), + [anon_sym_SEMI] = ACTIONS(1925), + [anon_sym_LF] = ACTIONS(1925), + [anon_sym_AMP] = ACTIONS(1925), }, [1273] = { [sym_concatenation] = STATE(1945), @@ -42258,53 +42472,53 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4205), + [sym__special_characters] = ACTIONS(4207), + [anon_sym_DQUOTE] = ACTIONS(1952), + [anon_sym_DOLLAR] = ACTIONS(1954), + [sym_raw_string] = ACTIONS(4209), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), + [anon_sym_BQUOTE] = ACTIONS(1962), + [anon_sym_LT_LPAREN] = ACTIONS(1964), + [anon_sym_GT_LPAREN] = ACTIONS(1964), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4153), + [sym_word] = ACTIONS(4211), }, [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_file_descriptor] = ACTIONS(1968), + [sym__concat] = ACTIONS(1968), + [sym_variable_name] = ACTIONS(1968), + [anon_sym_PIPE] = ACTIONS(1970), + [anon_sym_SEMI_SEMI] = ACTIONS(1970), + [anon_sym_PIPE_AMP] = ACTIONS(1970), + [anon_sym_AMP_AMP] = ACTIONS(1970), + [anon_sym_PIPE_PIPE] = ACTIONS(1970), + [anon_sym_LT] = ACTIONS(1970), + [anon_sym_GT] = ACTIONS(1970), + [anon_sym_GT_GT] = ACTIONS(1970), + [anon_sym_AMP_GT] = ACTIONS(1970), + [anon_sym_AMP_GT_GT] = ACTIONS(1970), + [anon_sym_LT_AMP] = ACTIONS(1970), + [anon_sym_GT_AMP] = ACTIONS(1970), + [sym__special_characters] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1970), + [anon_sym_DOLLAR] = ACTIONS(1970), + [sym_raw_string] = ACTIONS(1970), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1970), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1970), + [anon_sym_BQUOTE] = ACTIONS(1970), + [anon_sym_LT_LPAREN] = ACTIONS(1970), + [anon_sym_GT_LPAREN] = ACTIONS(1970), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1942), - [anon_sym_SEMI] = ACTIONS(1942), - [anon_sym_LF] = ACTIONS(1942), - [anon_sym_AMP] = ACTIONS(1942), + [sym_word] = ACTIONS(1970), + [anon_sym_SEMI] = ACTIONS(1970), + [anon_sym_LF] = ACTIONS(1970), + [anon_sym_AMP] = ACTIONS(1970), }, [1275] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4155), + [sym_regex_without_right_brace] = ACTIONS(4213), }, [1276] = { [sym_concatenation] = STATE(451), @@ -42315,29 +42529,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4215), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1277] = { - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(4159), + [anon_sym_LBRACK] = ACTIONS(836), + [anon_sym_EQ] = ACTIONS(4217), [sym_comment] = ACTIONS(56), }, [1278] = { @@ -42349,26 +42563,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4219), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(4221), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1279] = { [sym_concatenation] = STATE(451), @@ -42379,26 +42593,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4223), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(4225), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1280] = { [sym_concatenation] = STATE(451), @@ -42409,61 +42623,61 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4205), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(4227), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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_file_descriptor] = ACTIONS(2022), + [sym__concat] = ACTIONS(2022), + [sym_variable_name] = ACTIONS(2022), + [anon_sym_PIPE] = ACTIONS(2024), + [anon_sym_SEMI_SEMI] = ACTIONS(2024), + [anon_sym_PIPE_AMP] = ACTIONS(2024), + [anon_sym_AMP_AMP] = ACTIONS(2024), + [anon_sym_PIPE_PIPE] = ACTIONS(2024), + [anon_sym_LT] = ACTIONS(2024), + [anon_sym_GT] = ACTIONS(2024), + [anon_sym_GT_GT] = ACTIONS(2024), + [anon_sym_AMP_GT] = ACTIONS(2024), + [anon_sym_AMP_GT_GT] = ACTIONS(2024), + [anon_sym_LT_AMP] = ACTIONS(2024), + [anon_sym_GT_AMP] = ACTIONS(2024), + [sym__special_characters] = ACTIONS(2024), + [anon_sym_DQUOTE] = ACTIONS(2024), + [anon_sym_DOLLAR] = ACTIONS(2024), + [sym_raw_string] = ACTIONS(2024), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2024), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2024), + [anon_sym_BQUOTE] = ACTIONS(2024), + [anon_sym_LT_LPAREN] = ACTIONS(2024), + [anon_sym_GT_LPAREN] = ACTIONS(2024), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1994), - [anon_sym_SEMI] = ACTIONS(1994), - [anon_sym_LF] = ACTIONS(1994), - [anon_sym_AMP] = ACTIONS(1994), + [sym_word] = ACTIONS(2024), + [anon_sym_SEMI] = ACTIONS(2024), + [anon_sym_LF] = ACTIONS(2024), + [anon_sym_AMP] = ACTIONS(2024), }, [1282] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4171), + [sym_regex_without_right_brace] = ACTIONS(4229), }, [1283] = { [sym_concatenation] = STATE(451), @@ -42474,60 +42688,60 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4231), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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_file_descriptor] = ACTIONS(2030), + [sym__concat] = ACTIONS(2030), + [sym_variable_name] = ACTIONS(2030), + [anon_sym_PIPE] = ACTIONS(2032), + [anon_sym_SEMI_SEMI] = ACTIONS(2032), + [anon_sym_PIPE_AMP] = ACTIONS(2032), + [anon_sym_AMP_AMP] = ACTIONS(2032), + [anon_sym_PIPE_PIPE] = ACTIONS(2032), + [anon_sym_LT] = ACTIONS(2032), + [anon_sym_GT] = ACTIONS(2032), + [anon_sym_GT_GT] = ACTIONS(2032), + [anon_sym_AMP_GT] = ACTIONS(2032), + [anon_sym_AMP_GT_GT] = ACTIONS(2032), + [anon_sym_LT_AMP] = ACTIONS(2032), + [anon_sym_GT_AMP] = ACTIONS(2032), + [sym__special_characters] = ACTIONS(2032), + [anon_sym_DQUOTE] = ACTIONS(2032), + [anon_sym_DOLLAR] = ACTIONS(2032), + [sym_raw_string] = ACTIONS(2032), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2032), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2032), + [anon_sym_BQUOTE] = ACTIONS(2032), + [anon_sym_LT_LPAREN] = ACTIONS(2032), + [anon_sym_GT_LPAREN] = ACTIONS(2032), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2002), - [anon_sym_SEMI] = ACTIONS(2002), - [anon_sym_LF] = ACTIONS(2002), - [anon_sym_AMP] = ACTIONS(2002), + [sym_word] = ACTIONS(2032), + [anon_sym_SEMI] = ACTIONS(2032), + [anon_sym_LF] = ACTIONS(2032), + [anon_sym_AMP] = ACTIONS(2032), }, [1285] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4175), + [sym_regex_without_right_brace] = ACTIONS(4233), }, [1286] = { [sym_concatenation] = STATE(451), @@ -42538,87 +42752,87 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4205), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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_file_descriptor] = ACTIONS(2190), + [sym__concat] = ACTIONS(2190), + [sym_variable_name] = ACTIONS(2190), + [anon_sym_PIPE] = ACTIONS(2192), + [anon_sym_SEMI_SEMI] = ACTIONS(2192), + [anon_sym_PIPE_AMP] = ACTIONS(2192), + [anon_sym_AMP_AMP] = ACTIONS(2192), + [anon_sym_PIPE_PIPE] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(2192), + [anon_sym_GT] = ACTIONS(2192), + [anon_sym_GT_GT] = ACTIONS(2192), + [anon_sym_AMP_GT] = ACTIONS(2192), + [anon_sym_AMP_GT_GT] = ACTIONS(2192), + [anon_sym_LT_AMP] = ACTIONS(2192), + [anon_sym_GT_AMP] = ACTIONS(2192), + [sym__special_characters] = ACTIONS(2192), + [anon_sym_DQUOTE] = ACTIONS(2192), + [anon_sym_DOLLAR] = ACTIONS(2192), + [sym_raw_string] = ACTIONS(2192), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2192), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2192), + [anon_sym_BQUOTE] = ACTIONS(2192), + [anon_sym_LT_LPAREN] = ACTIONS(2192), + [anon_sym_GT_LPAREN] = ACTIONS(2192), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2158), - [anon_sym_SEMI] = ACTIONS(2158), - [anon_sym_LF] = ACTIONS(2158), - [anon_sym_AMP] = ACTIONS(2158), + [sym_word] = ACTIONS(2192), + [anon_sym_SEMI] = ACTIONS(2192), + [anon_sym_LF] = ACTIONS(2192), + [anon_sym_AMP] = ACTIONS(2192), }, [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_file_descriptor] = ACTIONS(2396), + [sym__concat] = ACTIONS(2396), + [sym_variable_name] = ACTIONS(2396), + [anon_sym_PIPE] = ACTIONS(2398), + [anon_sym_SEMI_SEMI] = ACTIONS(2398), + [anon_sym_PIPE_AMP] = ACTIONS(2398), + [anon_sym_AMP_AMP] = ACTIONS(2398), + [anon_sym_PIPE_PIPE] = ACTIONS(2398), + [anon_sym_LT] = ACTIONS(2398), + [anon_sym_GT] = ACTIONS(2398), + [anon_sym_GT_GT] = ACTIONS(2398), + [anon_sym_AMP_GT] = ACTIONS(2398), + [anon_sym_AMP_GT_GT] = ACTIONS(2398), + [anon_sym_LT_AMP] = ACTIONS(2398), + [anon_sym_GT_AMP] = ACTIONS(2398), + [sym__special_characters] = ACTIONS(2398), + [anon_sym_DQUOTE] = ACTIONS(2398), + [anon_sym_DOLLAR] = ACTIONS(2398), + [sym_raw_string] = ACTIONS(2398), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2398), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2398), + [anon_sym_BQUOTE] = ACTIONS(2398), + [anon_sym_LT_LPAREN] = ACTIONS(2398), + [anon_sym_GT_LPAREN] = ACTIONS(2398), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2360), - [anon_sym_SEMI] = ACTIONS(2360), - [anon_sym_LF] = ACTIONS(2360), - [anon_sym_AMP] = ACTIONS(2360), + [sym_word] = ACTIONS(2398), + [anon_sym_SEMI] = ACTIONS(2398), + [anon_sym_LF] = ACTIONS(2398), + [anon_sym_AMP] = ACTIONS(2398), }, [1289] = { [sym_string] = STATE(1960), @@ -42627,61 +42841,61 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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__special_characters] = ACTIONS(4235), + [anon_sym_DQUOTE] = ACTIONS(1329), + [anon_sym_DOLLAR] = ACTIONS(1331), + [sym_raw_string] = ACTIONS(4237), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1335), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1337), + [anon_sym_BQUOTE] = ACTIONS(1339), + [anon_sym_LT_LPAREN] = ACTIONS(1341), + [anon_sym_GT_LPAREN] = ACTIONS(1341), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4177), + [sym_word] = ACTIONS(4235), }, [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__concat] = ACTIONS(2625), + [anon_sym_SEMI_SEMI] = ACTIONS(790), + [sym__special_characters] = ACTIONS(790), + [anon_sym_DQUOTE] = ACTIONS(790), + [anon_sym_DOLLAR] = ACTIONS(790), + [sym_raw_string] = ACTIONS(790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(790), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(790), + [anon_sym_BQUOTE] = ACTIONS(790), + [anon_sym_LT_LPAREN] = ACTIONS(790), + [anon_sym_GT_LPAREN] = ACTIONS(790), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(774), - [anon_sym_SEMI] = ACTIONS(774), - [anon_sym_LF] = ACTIONS(774), - [anon_sym_AMP] = ACTIONS(774), + [sym_word] = ACTIONS(790), + [anon_sym_SEMI] = ACTIONS(790), + [anon_sym_LF] = ACTIONS(790), + [anon_sym_AMP] = ACTIONS(790), }, [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__concat] = ACTIONS(792), + [anon_sym_SEMI_SEMI] = ACTIONS(794), + [sym__special_characters] = ACTIONS(794), + [anon_sym_DQUOTE] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(794), + [sym_raw_string] = ACTIONS(794), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(794), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(794), + [anon_sym_BQUOTE] = ACTIONS(794), + [anon_sym_LT_LPAREN] = ACTIONS(794), + [anon_sym_GT_LPAREN] = ACTIONS(794), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(778), - [anon_sym_SEMI] = ACTIONS(778), - [anon_sym_LF] = ACTIONS(778), - [anon_sym_AMP] = ACTIONS(778), + [sym_word] = ACTIONS(794), + [anon_sym_SEMI] = ACTIONS(794), + [anon_sym_LF] = ACTIONS(794), + [anon_sym_AMP] = ACTIONS(794), }, [1292] = { [sym_simple_expansion] = STATE(134), [sym_expansion] = STATE(134), [sym_command_substitution] = STATE(134), [aux_sym_string_repeat1] = STATE(447), - [anon_sym_DQUOTE] = ACTIONS(4181), + [anon_sym_DQUOTE] = ACTIONS(4239), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -42690,62 +42904,62 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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__concat] = ACTIONS(824), + [anon_sym_SEMI_SEMI] = ACTIONS(826), + [sym__special_characters] = ACTIONS(826), + [anon_sym_DQUOTE] = ACTIONS(826), + [anon_sym_DOLLAR] = ACTIONS(826), + [sym_raw_string] = ACTIONS(826), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(826), + [anon_sym_BQUOTE] = ACTIONS(826), + [anon_sym_LT_LPAREN] = ACTIONS(826), + [anon_sym_GT_LPAREN] = ACTIONS(826), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(810), - [anon_sym_SEMI] = ACTIONS(810), - [anon_sym_LF] = ACTIONS(810), - [anon_sym_AMP] = ACTIONS(810), + [sym_word] = ACTIONS(826), + [anon_sym_SEMI] = ACTIONS(826), + [anon_sym_LF] = ACTIONS(826), + [anon_sym_AMP] = ACTIONS(826), }, [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__concat] = ACTIONS(828), + [anon_sym_SEMI_SEMI] = ACTIONS(830), + [sym__special_characters] = ACTIONS(830), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(830), + [sym_raw_string] = ACTIONS(830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(830), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_LT_LPAREN] = ACTIONS(830), + [anon_sym_GT_LPAREN] = ACTIONS(830), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(814), - [anon_sym_SEMI] = ACTIONS(814), - [anon_sym_LF] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(814), + [sym_word] = ACTIONS(830), + [anon_sym_SEMI] = ACTIONS(830), + [anon_sym_LF] = ACTIONS(830), + [anon_sym_AMP] = ACTIONS(830), }, [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__concat] = ACTIONS(832), + [anon_sym_SEMI_SEMI] = ACTIONS(834), + [sym__special_characters] = ACTIONS(834), + [anon_sym_DQUOTE] = ACTIONS(834), + [anon_sym_DOLLAR] = ACTIONS(834), + [sym_raw_string] = ACTIONS(834), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(834), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(834), + [anon_sym_BQUOTE] = ACTIONS(834), + [anon_sym_LT_LPAREN] = ACTIONS(834), + [anon_sym_GT_LPAREN] = ACTIONS(834), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(818), - [anon_sym_SEMI] = ACTIONS(818), - [anon_sym_LF] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(818), + [sym_word] = ACTIONS(834), + [anon_sym_SEMI] = ACTIONS(834), + [anon_sym_LF] = ACTIONS(834), + [anon_sym_AMP] = ACTIONS(834), }, [1296] = { - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(4183), + [anon_sym_LBRACK] = ACTIONS(836), + [anon_sym_EQ] = ACTIONS(4241), [sym_comment] = ACTIONS(56), }, [1297] = { @@ -42757,39 +42971,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4243), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(4245), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1298] = { [sym_subscript] = STATE(1970), - [sym_variable_name] = ACTIONS(4189), - [anon_sym_DOLLAR] = ACTIONS(4191), - [anon_sym_DASH] = ACTIONS(4191), + [sym_variable_name] = ACTIONS(4247), + [anon_sym_DOLLAR] = ACTIONS(4249), + [anon_sym_DASH] = ACTIONS(4249), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4251), + [anon_sym_STAR] = ACTIONS(4249), + [anon_sym_AT] = ACTIONS(4249), + [anon_sym_QMARK] = ACTIONS(4249), + [anon_sym_0] = ACTIONS(4253), + [anon_sym__] = ACTIONS(4253), }, [1299] = { [sym_concatenation] = STATE(451), @@ -42800,26 +43014,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4255), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(4257), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1300] = { [sym_concatenation] = STATE(451), @@ -42830,134 +43044,134 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4259), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(4261), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(4263), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), [sym_comment] = ACTIONS(56), }, [1302] = { - [sym_file_descriptor] = ACTIONS(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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(4263), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [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), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_PIPE_AMP] = ACTIONS(1072), + [anon_sym_AMP_AMP] = ACTIONS(1074), + [anon_sym_PIPE_PIPE] = ACTIONS(1074), + [anon_sym_BQUOTE] = ACTIONS(4263), [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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_PIPE_AMP] = ACTIONS(1072), + [anon_sym_AMP_AMP] = ACTIONS(1074), + [anon_sym_PIPE_PIPE] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(4263), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [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), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(4265), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), [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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(4265), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [1307] = { [sym_do_group] = STATE(1980), - [anon_sym_do] = ACTIONS(4209), + [anon_sym_do] = ACTIONS(4267), [sym_comment] = ACTIONS(56), }, [1308] = { @@ -42969,83 +43183,83 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_SEMI_SEMI] = ACTIONS(4269), + [sym__special_characters] = ACTIONS(4271), + [anon_sym_DQUOTE] = ACTIONS(4274), + [anon_sym_DOLLAR] = ACTIONS(4277), + [sym_raw_string] = ACTIONS(4280), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4283), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4286), + [anon_sym_BQUOTE] = ACTIONS(4289), + [anon_sym_LT_LPAREN] = ACTIONS(4292), + [anon_sym_GT_LPAREN] = ACTIONS(4292), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4222), - [anon_sym_SEMI] = ACTIONS(4211), - [anon_sym_LF] = ACTIONS(4211), - [anon_sym_AMP] = ACTIONS(4211), + [sym_word] = ACTIONS(4280), + [anon_sym_SEMI] = ACTIONS(4269), + [anon_sym_LF] = ACTIONS(4269), + [anon_sym_AMP] = ACTIONS(4269), }, [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_file_descriptor] = ACTIONS(1100), + [sym_variable_name] = ACTIONS(1100), + [anon_sym_for] = ACTIONS(1102), + [anon_sym_while] = ACTIONS(1102), + [anon_sym_done] = ACTIONS(1102), + [anon_sym_if] = ACTIONS(1102), + [anon_sym_case] = ACTIONS(1102), + [anon_sym_function] = ACTIONS(1102), + [anon_sym_LPAREN] = ACTIONS(1100), + [anon_sym_LBRACK] = ACTIONS(1102), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1100), + [anon_sym_declare] = ACTIONS(1102), + [anon_sym_typeset] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(1102), + [anon_sym_readonly] = ACTIONS(1102), + [anon_sym_local] = ACTIONS(1102), + [anon_sym_unset] = ACTIONS(1102), + [anon_sym_unsetenv] = ACTIONS(1102), + [anon_sym_LT] = ACTIONS(1102), + [anon_sym_GT] = ACTIONS(1102), + [anon_sym_GT_GT] = ACTIONS(1100), + [anon_sym_AMP_GT] = ACTIONS(1102), + [anon_sym_AMP_GT_GT] = ACTIONS(1100), + [anon_sym_LT_AMP] = ACTIONS(1100), + [anon_sym_GT_AMP] = ACTIONS(1100), + [sym__special_characters] = ACTIONS(1104), + [anon_sym_DQUOTE] = ACTIONS(1100), + [anon_sym_DOLLAR] = ACTIONS(1102), + [sym_raw_string] = ACTIONS(1100), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1100), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1100), + [anon_sym_BQUOTE] = ACTIONS(1100), + [anon_sym_LT_LPAREN] = ACTIONS(1100), + [anon_sym_GT_LPAREN] = ACTIONS(1100), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1084), + [sym_word] = ACTIONS(1104), }, [1310] = { - [sym_file_descriptor] = ACTIONS(4237), - [anon_sym_esac] = ACTIONS(4239), - [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_file_descriptor] = ACTIONS(4295), + [anon_sym_esac] = ACTIONS(4297), + [anon_sym_PIPE] = ACTIONS(4297), + [anon_sym_RPAREN] = ACTIONS(4297), + [anon_sym_SEMI_SEMI] = ACTIONS(4297), + [anon_sym_PIPE_AMP] = ACTIONS(4297), + [anon_sym_AMP_AMP] = ACTIONS(4297), + [anon_sym_PIPE_PIPE] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4297), + [anon_sym_GT] = ACTIONS(4297), + [anon_sym_GT_GT] = ACTIONS(4297), + [anon_sym_AMP_GT] = ACTIONS(4297), + [anon_sym_AMP_GT_GT] = ACTIONS(4297), + [anon_sym_LT_AMP] = ACTIONS(4297), + [anon_sym_GT_AMP] = ACTIONS(4297), + [anon_sym_LT_LT] = ACTIONS(4297), + [anon_sym_LT_LT_DASH] = ACTIONS(4297), + [anon_sym_LT_LT_LT] = ACTIONS(4297), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4239), - [anon_sym_LF] = ACTIONS(4239), - [anon_sym_AMP] = ACTIONS(4239), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_LF] = ACTIONS(4297), + [anon_sym_AMP] = ACTIONS(4297), }, [1311] = { [sym__terminated_statement] = STATE(691), @@ -43074,125 +43288,125 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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_file_descriptor] = ACTIONS(1150), + [sym_variable_name] = ACTIONS(1153), + [anon_sym_for] = ACTIONS(1158), + [anon_sym_while] = ACTIONS(1161), + [anon_sym_done] = ACTIONS(4299), + [anon_sym_if] = ACTIONS(1164), + [anon_sym_case] = ACTIONS(1167), + [anon_sym_function] = ACTIONS(1170), + [anon_sym_LPAREN] = ACTIONS(1173), + [anon_sym_LBRACK] = ACTIONS(1176), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1179), + [anon_sym_declare] = ACTIONS(1182), + [anon_sym_typeset] = ACTIONS(1182), + [anon_sym_export] = ACTIONS(1182), + [anon_sym_readonly] = ACTIONS(1182), + [anon_sym_local] = ACTIONS(1182), + [anon_sym_unset] = ACTIONS(1185), + [anon_sym_unsetenv] = ACTIONS(1185), + [anon_sym_LT] = ACTIONS(1188), + [anon_sym_GT] = ACTIONS(1188), + [anon_sym_GT_GT] = ACTIONS(1191), + [anon_sym_AMP_GT] = ACTIONS(1188), + [anon_sym_AMP_GT_GT] = ACTIONS(1191), + [anon_sym_LT_AMP] = ACTIONS(1191), + [anon_sym_GT_AMP] = ACTIONS(1191), + [sym__special_characters] = ACTIONS(1194), + [anon_sym_DQUOTE] = ACTIONS(1197), + [anon_sym_DOLLAR] = ACTIONS(1200), + [sym_raw_string] = ACTIONS(1203), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1206), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1209), + [anon_sym_BQUOTE] = ACTIONS(1212), + [anon_sym_LT_LPAREN] = ACTIONS(1215), + [anon_sym_GT_LPAREN] = ACTIONS(1215), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1198), + [sym_word] = ACTIONS(1218), }, [1312] = { - [anon_sym_then] = ACTIONS(4243), + [anon_sym_then] = ACTIONS(4301), [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_file_descriptor] = ACTIONS(340), + [sym_variable_name] = ACTIONS(340), + [anon_sym_for] = ACTIONS(342), + [anon_sym_while] = ACTIONS(342), + [anon_sym_if] = ACTIONS(342), + [anon_sym_fi] = ACTIONS(342), + [anon_sym_case] = ACTIONS(342), + [anon_sym_function] = ACTIONS(342), + [anon_sym_LPAREN] = ACTIONS(340), + [anon_sym_LBRACK] = ACTIONS(342), + [anon_sym_LBRACK_LBRACK] = ACTIONS(340), + [anon_sym_declare] = ACTIONS(342), + [anon_sym_typeset] = ACTIONS(342), + [anon_sym_export] = ACTIONS(342), + [anon_sym_readonly] = ACTIONS(342), + [anon_sym_local] = ACTIONS(342), + [anon_sym_unset] = ACTIONS(342), + [anon_sym_unsetenv] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(342), + [anon_sym_GT] = ACTIONS(342), + [anon_sym_GT_GT] = ACTIONS(340), + [anon_sym_AMP_GT] = ACTIONS(342), + [anon_sym_AMP_GT_GT] = ACTIONS(340), + [anon_sym_LT_AMP] = ACTIONS(340), + [anon_sym_GT_AMP] = ACTIONS(340), + [sym__special_characters] = ACTIONS(344), + [anon_sym_DQUOTE] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(342), + [sym_raw_string] = ACTIONS(340), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(340), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(340), + [anon_sym_BQUOTE] = ACTIONS(340), + [anon_sym_LT_LPAREN] = ACTIONS(340), + [anon_sym_GT_LPAREN] = ACTIONS(340), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(342), + [sym_word] = ACTIONS(344), }, [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), + [anon_sym_PIPE] = ACTIONS(346), + [anon_sym_SEMI_SEMI] = ACTIONS(4303), + [anon_sym_PIPE_AMP] = ACTIONS(346), + [anon_sym_AMP_AMP] = ACTIONS(350), + [anon_sym_PIPE_PIPE] = ACTIONS(350), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4245), - [anon_sym_LF] = ACTIONS(4245), - [anon_sym_AMP] = ACTIONS(4245), + [anon_sym_SEMI] = ACTIONS(4303), + [anon_sym_LF] = ACTIONS(4303), + [anon_sym_AMP] = ACTIONS(4303), }, [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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(346), + [anon_sym_SEMI_SEMI] = ACTIONS(4303), + [anon_sym_PIPE_AMP] = ACTIONS(346), + [anon_sym_AMP_AMP] = ACTIONS(350), + [anon_sym_PIPE_PIPE] = ACTIONS(350), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(382), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(382), + [anon_sym_LT_AMP] = ACTIONS(382), + [anon_sym_GT_AMP] = ACTIONS(382), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(382), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(382), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(382), + [anon_sym_BQUOTE] = ACTIONS(382), + [anon_sym_LT_LPAREN] = ACTIONS(382), + [anon_sym_GT_LPAREN] = ACTIONS(382), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(380), - [anon_sym_SEMI] = ACTIONS(4245), - [anon_sym_LF] = ACTIONS(4245), - [anon_sym_AMP] = ACTIONS(4245), + [sym_word] = ACTIONS(382), + [anon_sym_SEMI] = ACTIONS(4303), + [anon_sym_LF] = ACTIONS(4303), + [anon_sym_AMP] = ACTIONS(4303), }, [1316] = { [sym__terminated_statement] = STATE(1313), @@ -43226,7 +43440,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(16), [anon_sym_while] = ACTIONS(18), [anon_sym_if] = ACTIONS(20), - [anon_sym_fi] = ACTIONS(4247), + [anon_sym_fi] = ACTIONS(4305), [anon_sym_case] = ACTIONS(22), [anon_sym_function] = ACTIONS(24), [anon_sym_LPAREN] = ACTIONS(26), @@ -43259,60 +43473,60 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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_file_descriptor] = ACTIONS(1100), + [sym_variable_name] = ACTIONS(1100), + [anon_sym_for] = ACTIONS(1102), + [anon_sym_while] = ACTIONS(1102), + [anon_sym_if] = ACTIONS(1102), + [anon_sym_fi] = ACTIONS(1102), + [anon_sym_elif] = ACTIONS(1102), + [anon_sym_else] = ACTIONS(1102), + [anon_sym_case] = ACTIONS(1102), + [anon_sym_function] = ACTIONS(1102), + [anon_sym_LPAREN] = ACTIONS(1100), + [anon_sym_LBRACK] = ACTIONS(1102), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1100), + [anon_sym_declare] = ACTIONS(1102), + [anon_sym_typeset] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(1102), + [anon_sym_readonly] = ACTIONS(1102), + [anon_sym_local] = ACTIONS(1102), + [anon_sym_unset] = ACTIONS(1102), + [anon_sym_unsetenv] = ACTIONS(1102), + [anon_sym_LT] = ACTIONS(1102), + [anon_sym_GT] = ACTIONS(1102), + [anon_sym_GT_GT] = ACTIONS(1100), + [anon_sym_AMP_GT] = ACTIONS(1102), + [anon_sym_AMP_GT_GT] = ACTIONS(1100), + [anon_sym_LT_AMP] = ACTIONS(1100), + [anon_sym_GT_AMP] = ACTIONS(1100), + [sym__special_characters] = ACTIONS(1104), + [anon_sym_DQUOTE] = ACTIONS(1100), + [anon_sym_DOLLAR] = ACTIONS(1102), + [sym_raw_string] = ACTIONS(1100), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1100), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1100), + [anon_sym_BQUOTE] = ACTIONS(1100), + [anon_sym_LT_LPAREN] = ACTIONS(1100), + [anon_sym_GT_LPAREN] = ACTIONS(1100), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1084), + [sym_word] = ACTIONS(1104), }, [1318] = { - [anon_sym_esac] = ACTIONS(4249), - [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), + [anon_sym_esac] = ACTIONS(4307), + [anon_sym_PIPE] = ACTIONS(4307), + [anon_sym_RPAREN] = ACTIONS(4307), + [anon_sym_SEMI_SEMI] = ACTIONS(4307), + [anon_sym_PIPE_AMP] = ACTIONS(4307), + [anon_sym_AMP_AMP] = ACTIONS(4307), + [anon_sym_PIPE_PIPE] = ACTIONS(4307), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4249), - [anon_sym_LF] = ACTIONS(4249), - [anon_sym_AMP] = ACTIONS(4249), + [anon_sym_SEMI] = ACTIONS(4307), + [anon_sym_LF] = ACTIONS(4307), + [anon_sym_AMP] = ACTIONS(4307), }, [1319] = { - [anon_sym_fi] = ACTIONS(4251), + [anon_sym_fi] = ACTIONS(4309), [sym_comment] = ACTIONS(56), }, [1320] = { @@ -43342,81 +43556,81 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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_file_descriptor] = ACTIONS(1150), + [sym_variable_name] = ACTIONS(1153), + [anon_sym_for] = ACTIONS(1158), + [anon_sym_while] = ACTIONS(1161), + [anon_sym_if] = ACTIONS(1164), + [anon_sym_fi] = ACTIONS(4299), + [anon_sym_elif] = ACTIONS(4299), + [anon_sym_else] = ACTIONS(4299), + [anon_sym_case] = ACTIONS(1167), + [anon_sym_function] = ACTIONS(1170), + [anon_sym_LPAREN] = ACTIONS(1173), + [anon_sym_LBRACK] = ACTIONS(1176), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1179), + [anon_sym_declare] = ACTIONS(1182), + [anon_sym_typeset] = ACTIONS(1182), + [anon_sym_export] = ACTIONS(1182), + [anon_sym_readonly] = ACTIONS(1182), + [anon_sym_local] = ACTIONS(1182), + [anon_sym_unset] = ACTIONS(1185), + [anon_sym_unsetenv] = ACTIONS(1185), + [anon_sym_LT] = ACTIONS(1188), + [anon_sym_GT] = ACTIONS(1188), + [anon_sym_GT_GT] = ACTIONS(1191), + [anon_sym_AMP_GT] = ACTIONS(1188), + [anon_sym_AMP_GT_GT] = ACTIONS(1191), + [anon_sym_LT_AMP] = ACTIONS(1191), + [anon_sym_GT_AMP] = ACTIONS(1191), + [sym__special_characters] = ACTIONS(1194), + [anon_sym_DQUOTE] = ACTIONS(1197), + [anon_sym_DOLLAR] = ACTIONS(1200), + [sym_raw_string] = ACTIONS(1203), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1206), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1209), + [anon_sym_BQUOTE] = ACTIONS(1212), + [anon_sym_LT_LPAREN] = ACTIONS(1215), + [anon_sym_GT_LPAREN] = ACTIONS(1215), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1198), + [sym_word] = ACTIONS(1218), }, [1321] = { [sym_elif_clause] = STATE(701), [sym_else_clause] = STATE(1985), [aux_sym_if_statement_repeat1] = STATE(1322), - [anon_sym_fi] = ACTIONS(4251), - [anon_sym_elif] = ACTIONS(2647), - [anon_sym_else] = ACTIONS(2649), + [anon_sym_fi] = ACTIONS(4309), + [anon_sym_elif] = ACTIONS(2691), + [anon_sym_else] = ACTIONS(2693), [sym_comment] = ACTIONS(56), }, [1322] = { [sym_elif_clause] = STATE(701), [aux_sym_if_statement_repeat1] = STATE(1322), - [anon_sym_fi] = ACTIONS(4253), - [anon_sym_elif] = ACTIONS(4255), - [anon_sym_else] = ACTIONS(4253), + [anon_sym_fi] = ACTIONS(4311), + [anon_sym_elif] = ACTIONS(4313), + [anon_sym_else] = ACTIONS(4311), [sym_comment] = ACTIONS(56), }, [1323] = { - [anon_sym_esac] = ACTIONS(4258), - [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), + [anon_sym_esac] = ACTIONS(4316), + [anon_sym_PIPE] = ACTIONS(4316), + [anon_sym_RPAREN] = ACTIONS(4316), + [anon_sym_SEMI_SEMI] = ACTIONS(4316), + [anon_sym_PIPE_AMP] = ACTIONS(4316), + [anon_sym_AMP_AMP] = ACTIONS(4316), + [anon_sym_PIPE_PIPE] = ACTIONS(4316), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4258), - [anon_sym_LF] = ACTIONS(4258), - [anon_sym_AMP] = ACTIONS(4258), + [anon_sym_SEMI] = ACTIONS(4316), + [anon_sym_LF] = ACTIONS(4316), + [anon_sym_AMP] = ACTIONS(4316), }, [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__concat] = ACTIONS(4318), + [anon_sym_PIPE] = ACTIONS(4320), + [anon_sym_RPAREN] = ACTIONS(4322), [sym_comment] = ACTIONS(56), }, [1325] = { @@ -43424,7 +43638,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(134), [sym_command_substitution] = STATE(134), [aux_sym_string_repeat1] = STATE(1992), - [anon_sym_DQUOTE] = ACTIONS(4266), + [anon_sym_DQUOTE] = ACTIONS(4324), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -43433,40 +43647,41 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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_string] = STATE(1994), + [anon_sym_DQUOTE] = ACTIONS(2699), + [anon_sym_DOLLAR] = ACTIONS(4326), + [sym_raw_string] = ACTIONS(4328), + [anon_sym_POUND] = ACTIONS(4326), + [anon_sym_DASH] = ACTIONS(4326), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4330), + [anon_sym_STAR] = ACTIONS(4326), + [anon_sym_AT] = ACTIONS(4326), + [anon_sym_QMARK] = ACTIONS(4326), + [anon_sym_0] = ACTIONS(4332), + [anon_sym__] = ACTIONS(4332), }, [1327] = { [aux_sym_case_item_repeat1] = STATE(1997), [aux_sym_concatenation_repeat1] = STATE(1990), - [sym__concat] = ACTIONS(4260), - [anon_sym_PIPE] = ACTIONS(4262), - [anon_sym_RPAREN] = ACTIONS(4274), + [sym__concat] = ACTIONS(4318), + [anon_sym_PIPE] = ACTIONS(4320), + [anon_sym_RPAREN] = ACTIONS(4334), [sym_comment] = ACTIONS(56), }, [1328] = { [sym_subscript] = STATE(2002), - [sym_variable_name] = ACTIONS(4276), - [anon_sym_DOLLAR] = ACTIONS(4278), - [anon_sym_POUND] = ACTIONS(4280), - [anon_sym_DASH] = ACTIONS(4278), + [sym_variable_name] = ACTIONS(4336), + [anon_sym_DOLLAR] = ACTIONS(4338), + [anon_sym_POUND] = ACTIONS(4340), + [anon_sym_DASH] = ACTIONS(4338), [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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4338), + [anon_sym_AT] = ACTIONS(4338), + [anon_sym_QMARK] = ACTIONS(4338), + [anon_sym_0] = ACTIONS(4344), + [anon_sym__] = ACTIONS(4344), }, [1329] = { [sym_for_statement] = STATE(2003), @@ -43494,22 +43709,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(264), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(268), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -43517,17 +43732,17 @@ 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(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__special_characters] = ACTIONS(286), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(300), + [sym_word] = ACTIONS(302), }, [1330] = { [sym_for_statement] = STATE(2005), @@ -43555,22 +43770,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(304), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(306), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(308), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_LBRACK_LBRACK] = ACTIONS(312), + [anon_sym_declare] = ACTIONS(314), + [anon_sym_typeset] = ACTIONS(314), + [anon_sym_export] = ACTIONS(314), + [anon_sym_readonly] = ACTIONS(314), + [anon_sym_local] = ACTIONS(314), + [anon_sym_unset] = ACTIONS(316), + [anon_sym_unsetenv] = ACTIONS(316), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -43578,17 +43793,17 @@ 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(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__special_characters] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [anon_sym_DOLLAR] = ACTIONS(322), + [sym_raw_string] = ACTIONS(324), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), + [anon_sym_BQUOTE] = ACTIONS(330), + [anon_sym_LT_LPAREN] = ACTIONS(332), + [anon_sym_GT_LPAREN] = ACTIONS(332), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(332), + [sym_word] = ACTIONS(334), }, [1331] = { [sym_for_statement] = STATE(2007), @@ -43616,22 +43831,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(264), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(268), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -43639,39 +43854,39 @@ 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(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__special_characters] = ACTIONS(286), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(300), + [sym_word] = ACTIONS(302), }, [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__special_characters] = ACTIONS(4346), + [anon_sym_DQUOTE] = ACTIONS(4348), + [anon_sym_DOLLAR] = ACTIONS(4346), + [sym_raw_string] = ACTIONS(4348), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4348), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4348), + [anon_sym_BQUOTE] = ACTIONS(4348), + [anon_sym_LT_LPAREN] = ACTIONS(4348), + [anon_sym_GT_LPAREN] = ACTIONS(4348), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4286), + [sym_word] = ACTIONS(4346), }, [1333] = { - [anon_sym_esac] = ACTIONS(4290), + [anon_sym_esac] = ACTIONS(4350), [sym_comment] = ACTIONS(56), }, [1334] = { [aux_sym_case_item_repeat1] = STATE(1997), - [anon_sym_PIPE] = ACTIONS(4262), - [anon_sym_RPAREN] = ACTIONS(4274), + [anon_sym_PIPE] = ACTIONS(4320), + [anon_sym_RPAREN] = ACTIONS(4334), [sym_comment] = ACTIONS(56), }, [1335] = { @@ -43685,17 +43900,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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__special_characters] = ACTIONS(2697), + [anon_sym_DQUOTE] = ACTIONS(2699), + [anon_sym_DOLLAR] = ACTIONS(2701), + [sym_raw_string] = ACTIONS(2703), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2705), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2707), + [anon_sym_BQUOTE] = ACTIONS(2709), + [anon_sym_LT_LPAREN] = ACTIONS(2711), + [anon_sym_GT_LPAREN] = ACTIONS(2711), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4292), + [sym_word] = ACTIONS(4352), }, [1336] = { [sym_case_item] = STATE(1332), @@ -43708,34 +43923,34 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_esac] = ACTIONS(4354), + [sym__special_characters] = ACTIONS(2697), + [anon_sym_DQUOTE] = ACTIONS(2699), + [anon_sym_DOLLAR] = ACTIONS(2701), + [sym_raw_string] = ACTIONS(2703), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2705), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2707), + [anon_sym_BQUOTE] = ACTIONS(2709), + [anon_sym_LT_LPAREN] = ACTIONS(2711), + [anon_sym_GT_LPAREN] = ACTIONS(2711), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2669), + [sym_word] = ACTIONS(2713), }, [1337] = { - [anon_sym_esac] = ACTIONS(4296), - [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), + [anon_sym_esac] = ACTIONS(4356), + [anon_sym_PIPE] = ACTIONS(4356), + [anon_sym_RPAREN] = ACTIONS(4356), + [anon_sym_SEMI_SEMI] = ACTIONS(4356), + [anon_sym_PIPE_AMP] = ACTIONS(4356), + [anon_sym_AMP_AMP] = ACTIONS(4356), + [anon_sym_PIPE_PIPE] = ACTIONS(4356), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4296), - [anon_sym_LF] = ACTIONS(4296), - [anon_sym_AMP] = ACTIONS(4296), + [anon_sym_SEMI] = ACTIONS(4356), + [anon_sym_LF] = ACTIONS(4356), + [anon_sym_AMP] = ACTIONS(4356), }, [1338] = { - [anon_sym_esac] = ACTIONS(4298), + [anon_sym_esac] = ACTIONS(4358), [sym_comment] = ACTIONS(56), }, [1339] = { @@ -43749,17 +43964,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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__special_characters] = ACTIONS(2697), + [anon_sym_DQUOTE] = ACTIONS(2699), + [anon_sym_DOLLAR] = ACTIONS(2701), + [sym_raw_string] = ACTIONS(2703), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2705), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2707), + [anon_sym_BQUOTE] = ACTIONS(2709), + [anon_sym_LT_LPAREN] = ACTIONS(2711), + [anon_sym_GT_LPAREN] = ACTIONS(2711), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4292), + [sym_word] = ACTIONS(4352), }, [1340] = { [sym_case_item] = STATE(1332), @@ -43772,42 +43987,42 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_esac] = ACTIONS(4360), + [sym__special_characters] = ACTIONS(2697), + [anon_sym_DQUOTE] = ACTIONS(2699), + [anon_sym_DOLLAR] = ACTIONS(2701), + [sym_raw_string] = ACTIONS(2703), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2705), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2707), + [anon_sym_BQUOTE] = ACTIONS(2709), + [anon_sym_LT_LPAREN] = ACTIONS(2711), + [anon_sym_GT_LPAREN] = ACTIONS(2711), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2669), + [sym_word] = ACTIONS(2713), }, [1341] = { - [sym__concat] = ACTIONS(3235), - [anon_sym_in] = ACTIONS(3237), - [anon_sym_SEMI_SEMI] = ACTIONS(3237), + [sym__concat] = ACTIONS(3283), + [anon_sym_in] = ACTIONS(3285), + [anon_sym_SEMI_SEMI] = ACTIONS(3285), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3237), - [anon_sym_LF] = ACTIONS(3237), - [anon_sym_AMP] = ACTIONS(3237), + [anon_sym_SEMI] = ACTIONS(3285), + [anon_sym_LF] = ACTIONS(3285), + [anon_sym_AMP] = ACTIONS(3285), }, [1342] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(4302), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(4362), [sym_comment] = ACTIONS(56), }, [1343] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(4304), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(4364), [sym_comment] = ACTIONS(56), }, [1344] = { - [anon_sym_RBRACE] = ACTIONS(4304), + [anon_sym_RBRACE] = ACTIONS(4364), [sym_comment] = ACTIONS(56), }, [1345] = { @@ -43819,34 +44034,34 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4366), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1346] = { - [sym__concat] = ACTIONS(3297), - [anon_sym_in] = ACTIONS(3299), - [anon_sym_SEMI_SEMI] = ACTIONS(3299), + [sym__concat] = ACTIONS(3347), + [anon_sym_in] = ACTIONS(3349), + [anon_sym_SEMI_SEMI] = ACTIONS(3349), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3299), - [anon_sym_LF] = ACTIONS(3299), - [anon_sym_AMP] = ACTIONS(3299), + [anon_sym_SEMI] = ACTIONS(3349), + [anon_sym_LF] = ACTIONS(3349), + [anon_sym_AMP] = ACTIONS(3349), }, [1347] = { [sym_concatenation] = STATE(2024), @@ -43856,31 +44071,31 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4364), + [sym__special_characters] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(1952), + [anon_sym_DOLLAR] = ACTIONS(1954), + [sym_raw_string] = ACTIONS(4370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), + [anon_sym_BQUOTE] = ACTIONS(1962), + [anon_sym_LT_LPAREN] = ACTIONS(1964), + [anon_sym_GT_LPAREN] = ACTIONS(1964), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4312), + [sym_word] = ACTIONS(4372), }, [1348] = { - [sym__concat] = ACTIONS(3342), - [anon_sym_in] = ACTIONS(3344), - [anon_sym_SEMI_SEMI] = ACTIONS(3344), + [sym__concat] = ACTIONS(3392), + [anon_sym_in] = ACTIONS(3394), + [anon_sym_SEMI_SEMI] = ACTIONS(3394), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3344), - [anon_sym_LF] = ACTIONS(3344), - [anon_sym_AMP] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(3394), + [anon_sym_LF] = ACTIONS(3394), + [anon_sym_AMP] = ACTIONS(3394), }, [1349] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4314), + [sym_regex_without_right_brace] = ACTIONS(4374), }, [1350] = { [sym_concatenation] = STATE(451), @@ -43891,38 +44106,38 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4376), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1351] = { - [sym__concat] = ACTIONS(3350), - [anon_sym_in] = ACTIONS(3352), - [anon_sym_SEMI_SEMI] = ACTIONS(3352), + [sym__concat] = ACTIONS(3400), + [anon_sym_in] = ACTIONS(3402), + [anon_sym_SEMI_SEMI] = ACTIONS(3402), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3352), - [anon_sym_LF] = ACTIONS(3352), - [anon_sym_AMP] = ACTIONS(3352), + [anon_sym_SEMI] = ACTIONS(3402), + [anon_sym_LF] = ACTIONS(3402), + [anon_sym_AMP] = ACTIONS(3402), }, [1352] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4318), + [sym_regex_without_right_brace] = ACTIONS(4378), }, [1353] = { [sym_concatenation] = STATE(451), @@ -43933,29 +44148,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4380), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1354] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4322), + [sym_regex_without_right_brace] = ACTIONS(4382), }, [1355] = { [sym_concatenation] = STATE(451), @@ -43966,25 +44181,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4364), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1356] = { [sym_concatenation] = STATE(451), @@ -43995,34 +44210,34 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4384), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1357] = { - [sym__concat] = ACTIONS(3362), - [anon_sym_in] = ACTIONS(3364), - [anon_sym_SEMI_SEMI] = ACTIONS(3364), + [sym__concat] = ACTIONS(3412), + [anon_sym_in] = ACTIONS(3414), + [anon_sym_SEMI_SEMI] = ACTIONS(3414), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3364), - [anon_sym_LF] = ACTIONS(3364), - [anon_sym_AMP] = ACTIONS(3364), + [anon_sym_SEMI] = ACTIONS(3414), + [anon_sym_LF] = ACTIONS(3414), + [anon_sym_AMP] = ACTIONS(3414), }, [1358] = { [sym_concatenation] = STATE(451), @@ -44033,104 +44248,104 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4386), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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_file_descriptor] = ACTIONS(1399), + [anon_sym_PIPE] = ACTIONS(4388), + [anon_sym_SEMI_SEMI] = ACTIONS(4388), + [anon_sym_PIPE_AMP] = ACTIONS(4388), + [anon_sym_AMP_AMP] = ACTIONS(4388), + [anon_sym_PIPE_PIPE] = ACTIONS(4388), + [anon_sym_LT] = ACTIONS(1403), + [anon_sym_GT] = ACTIONS(1403), + [anon_sym_GT_GT] = ACTIONS(1403), + [anon_sym_AMP_GT] = ACTIONS(1403), + [anon_sym_AMP_GT_GT] = ACTIONS(1403), + [anon_sym_LT_AMP] = ACTIONS(1403), + [anon_sym_GT_AMP] = ACTIONS(1403), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4328), - [anon_sym_LF] = ACTIONS(4328), - [anon_sym_AMP] = ACTIONS(4328), + [anon_sym_SEMI] = ACTIONS(4388), + [anon_sym_LF] = ACTIONS(4388), + [anon_sym_AMP] = ACTIONS(4388), }, [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_file_descriptor] = ACTIONS(1100), + [sym_variable_name] = ACTIONS(1100), + [anon_sym_for] = ACTIONS(1102), + [anon_sym_while] = ACTIONS(1102), + [anon_sym_if] = ACTIONS(1102), + [anon_sym_case] = ACTIONS(1102), + [anon_sym_function] = ACTIONS(1102), + [anon_sym_LPAREN] = ACTIONS(1100), + [anon_sym_RBRACE] = ACTIONS(1100), + [anon_sym_LBRACK] = ACTIONS(1102), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1100), + [anon_sym_declare] = ACTIONS(1102), + [anon_sym_typeset] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(1102), + [anon_sym_readonly] = ACTIONS(1102), + [anon_sym_local] = ACTIONS(1102), + [anon_sym_unset] = ACTIONS(1102), + [anon_sym_unsetenv] = ACTIONS(1102), + [anon_sym_LT] = ACTIONS(1102), + [anon_sym_GT] = ACTIONS(1102), + [anon_sym_GT_GT] = ACTIONS(1100), + [anon_sym_AMP_GT] = ACTIONS(1102), + [anon_sym_AMP_GT_GT] = ACTIONS(1100), + [anon_sym_LT_AMP] = ACTIONS(1100), + [anon_sym_GT_AMP] = ACTIONS(1100), + [sym__special_characters] = ACTIONS(1104), + [anon_sym_DQUOTE] = ACTIONS(1100), + [anon_sym_DOLLAR] = ACTIONS(1102), + [sym_raw_string] = ACTIONS(1100), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1100), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1100), + [anon_sym_BQUOTE] = ACTIONS(1100), + [anon_sym_LT_LPAREN] = ACTIONS(1100), + [anon_sym_GT_LPAREN] = ACTIONS(1100), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1084), + [sym_word] = ACTIONS(1104), }, [1361] = { - [sym_file_descriptor] = ACTIONS(4330), - [anon_sym_esac] = ACTIONS(4332), - [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_file_descriptor] = ACTIONS(4390), + [anon_sym_esac] = ACTIONS(4392), + [anon_sym_PIPE] = ACTIONS(4392), + [anon_sym_RPAREN] = ACTIONS(4392), + [anon_sym_SEMI_SEMI] = ACTIONS(4392), + [anon_sym_PIPE_AMP] = ACTIONS(4392), + [anon_sym_AMP_AMP] = ACTIONS(4392), + [anon_sym_PIPE_PIPE] = ACTIONS(4392), + [anon_sym_LT] = ACTIONS(4392), + [anon_sym_GT] = ACTIONS(4392), + [anon_sym_GT_GT] = ACTIONS(4392), + [anon_sym_AMP_GT] = ACTIONS(4392), + [anon_sym_AMP_GT_GT] = ACTIONS(4392), + [anon_sym_LT_AMP] = ACTIONS(4392), + [anon_sym_GT_AMP] = ACTIONS(4392), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4332), - [anon_sym_LF] = ACTIONS(4332), - [anon_sym_AMP] = ACTIONS(4332), + [anon_sym_SEMI] = ACTIONS(4392), + [anon_sym_LF] = ACTIONS(4392), + [anon_sym_AMP] = ACTIONS(4392), }, [1362] = { [sym__terminated_statement] = STATE(731), @@ -44159,42 +44374,42 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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_file_descriptor] = ACTIONS(1150), + [sym_variable_name] = ACTIONS(1153), + [anon_sym_for] = ACTIONS(1158), + [anon_sym_while] = ACTIONS(1161), + [anon_sym_if] = ACTIONS(1164), + [anon_sym_case] = ACTIONS(1167), + [anon_sym_function] = ACTIONS(1170), + [anon_sym_LPAREN] = ACTIONS(1173), + [anon_sym_RBRACE] = ACTIONS(1156), + [anon_sym_LBRACK] = ACTIONS(1176), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1179), + [anon_sym_declare] = ACTIONS(1182), + [anon_sym_typeset] = ACTIONS(1182), + [anon_sym_export] = ACTIONS(1182), + [anon_sym_readonly] = ACTIONS(1182), + [anon_sym_local] = ACTIONS(1182), + [anon_sym_unset] = ACTIONS(1185), + [anon_sym_unsetenv] = ACTIONS(1185), + [anon_sym_LT] = ACTIONS(1188), + [anon_sym_GT] = ACTIONS(1188), + [anon_sym_GT_GT] = ACTIONS(1191), + [anon_sym_AMP_GT] = ACTIONS(1188), + [anon_sym_AMP_GT_GT] = ACTIONS(1191), + [anon_sym_LT_AMP] = ACTIONS(1191), + [anon_sym_GT_AMP] = ACTIONS(1191), + [sym__special_characters] = ACTIONS(1194), + [anon_sym_DQUOTE] = ACTIONS(1197), + [anon_sym_DOLLAR] = ACTIONS(1200), + [sym_raw_string] = ACTIONS(1203), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1206), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1209), + [anon_sym_BQUOTE] = ACTIONS(1212), + [anon_sym_LT_LPAREN] = ACTIONS(1215), + [anon_sym_GT_LPAREN] = ACTIONS(1215), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1198), + [sym_word] = ACTIONS(1218), }, [1363] = { [sym_concatenation] = STATE(2037), @@ -44204,37 +44419,37 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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__special_characters] = ACTIONS(4394), + [anon_sym_DQUOTE] = ACTIONS(2768), + [anon_sym_DOLLAR] = ACTIONS(2770), + [sym_raw_string] = ACTIONS(4396), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2774), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2776), + [anon_sym_BQUOTE] = ACTIONS(2778), + [anon_sym_LT_LPAREN] = ACTIONS(2780), + [anon_sym_GT_LPAREN] = ACTIONS(2780), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4338), + [sym_word] = ACTIONS(4398), }, [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__concat] = ACTIONS(4400), + [anon_sym_PIPE] = ACTIONS(2412), + [anon_sym_SEMI_SEMI] = ACTIONS(2412), + [anon_sym_PIPE_AMP] = ACTIONS(2412), + [anon_sym_AMP_AMP] = ACTIONS(2412), + [anon_sym_PIPE_PIPE] = ACTIONS(2412), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2374), - [anon_sym_LF] = ACTIONS(2374), - [anon_sym_AMP] = ACTIONS(2374), + [anon_sym_SEMI] = ACTIONS(2412), + [anon_sym_LF] = ACTIONS(2412), + [anon_sym_AMP] = ACTIONS(2412), }, [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_DQUOTE] = ACTIONS(4402), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -44243,45 +44458,46 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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_string] = STATE(2043), + [anon_sym_DQUOTE] = ACTIONS(2768), + [anon_sym_DOLLAR] = ACTIONS(4404), + [sym_raw_string] = ACTIONS(4406), + [anon_sym_POUND] = ACTIONS(4404), + [anon_sym_DASH] = ACTIONS(4404), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4408), + [anon_sym_STAR] = ACTIONS(4404), + [anon_sym_AT] = ACTIONS(4404), + [anon_sym_QMARK] = ACTIONS(4404), + [anon_sym_0] = ACTIONS(4410), + [anon_sym__] = ACTIONS(4410), }, [1367] = { [aux_sym_concatenation_repeat1] = STATE(2039), - [sym__concat] = ACTIONS(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__concat] = ACTIONS(4400), + [anon_sym_PIPE] = ACTIONS(2424), + [anon_sym_SEMI_SEMI] = ACTIONS(2424), + [anon_sym_PIPE_AMP] = ACTIONS(2424), + [anon_sym_AMP_AMP] = ACTIONS(2424), + [anon_sym_PIPE_PIPE] = ACTIONS(2424), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2384), - [anon_sym_LF] = ACTIONS(2384), - [anon_sym_AMP] = ACTIONS(2384), + [anon_sym_SEMI] = ACTIONS(2424), + [anon_sym_LF] = ACTIONS(2424), + [anon_sym_AMP] = ACTIONS(2424), }, [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_variable_name] = ACTIONS(4412), + [anon_sym_DOLLAR] = ACTIONS(4414), + [anon_sym_POUND] = ACTIONS(4416), + [anon_sym_DASH] = ACTIONS(4414), [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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4418), + [anon_sym_STAR] = ACTIONS(4414), + [anon_sym_AT] = ACTIONS(4414), + [anon_sym_QMARK] = ACTIONS(4414), + [anon_sym_0] = ACTIONS(4420), + [anon_sym__] = ACTIONS(4420), }, [1369] = { [sym_for_statement] = STATE(2050), @@ -44309,22 +44525,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(264), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(268), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -44332,17 +44548,17 @@ 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(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__special_characters] = ACTIONS(286), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(300), + [sym_word] = ACTIONS(302), }, [1370] = { [sym_for_statement] = STATE(2052), @@ -44370,22 +44586,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(304), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(306), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(308), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_LBRACK_LBRACK] = ACTIONS(312), + [anon_sym_declare] = ACTIONS(314), + [anon_sym_typeset] = ACTIONS(314), + [anon_sym_export] = ACTIONS(314), + [anon_sym_readonly] = ACTIONS(314), + [anon_sym_local] = ACTIONS(314), + [anon_sym_unset] = ACTIONS(316), + [anon_sym_unsetenv] = ACTIONS(316), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -44393,17 +44609,17 @@ 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(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__special_characters] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [anon_sym_DOLLAR] = ACTIONS(322), + [sym_raw_string] = ACTIONS(324), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), + [anon_sym_BQUOTE] = ACTIONS(330), + [anon_sym_LT_LPAREN] = ACTIONS(332), + [anon_sym_GT_LPAREN] = ACTIONS(332), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(332), + [sym_word] = ACTIONS(334), }, [1371] = { [sym_for_statement] = STATE(2054), @@ -44431,22 +44647,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(264), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(268), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -44454,30 +44670,30 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(38), [anon_sym_LT_AMP] = ACTIONS(38), [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(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__special_characters] = ACTIONS(286), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(300), + [sym_word] = ACTIONS(302), }, [1372] = { - [anon_sym_esac] = ACTIONS(2384), - [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), + [anon_sym_esac] = ACTIONS(2424), + [anon_sym_PIPE] = ACTIONS(2424), + [anon_sym_RPAREN] = ACTIONS(2424), + [anon_sym_SEMI_SEMI] = ACTIONS(2424), + [anon_sym_PIPE_AMP] = ACTIONS(2424), + [anon_sym_AMP_AMP] = ACTIONS(2424), + [anon_sym_PIPE_PIPE] = ACTIONS(2424), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2384), - [anon_sym_LF] = ACTIONS(2384), - [anon_sym_AMP] = ACTIONS(2384), + [anon_sym_SEMI] = ACTIONS(2424), + [anon_sym_LF] = ACTIONS(2424), + [anon_sym_AMP] = ACTIONS(2424), }, [1373] = { [sym_string] = STATE(2056), @@ -44486,89 +44702,89 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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__special_characters] = ACTIONS(4422), + [anon_sym_DQUOTE] = ACTIONS(1407), + [anon_sym_DOLLAR] = ACTIONS(1409), + [sym_raw_string] = ACTIONS(4424), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1413), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1415), + [anon_sym_BQUOTE] = ACTIONS(1417), + [anon_sym_LT_LPAREN] = ACTIONS(1419), + [anon_sym_GT_LPAREN] = ACTIONS(1419), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4360), + [sym_word] = ACTIONS(4422), }, [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_file_descriptor] = ACTIONS(788), + [sym__concat] = ACTIONS(2786), + [sym_variable_name] = ACTIONS(788), + [anon_sym_PIPE] = ACTIONS(790), + [anon_sym_RPAREN] = ACTIONS(790), + [anon_sym_SEMI_SEMI] = ACTIONS(790), + [anon_sym_PIPE_AMP] = ACTIONS(790), + [anon_sym_AMP_AMP] = ACTIONS(790), + [anon_sym_PIPE_PIPE] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(790), + [anon_sym_GT] = ACTIONS(790), + [anon_sym_GT_GT] = ACTIONS(790), + [anon_sym_AMP_GT] = ACTIONS(790), + [anon_sym_AMP_GT_GT] = ACTIONS(790), + [anon_sym_LT_AMP] = ACTIONS(790), + [anon_sym_GT_AMP] = ACTIONS(790), + [sym__special_characters] = ACTIONS(790), + [anon_sym_DQUOTE] = ACTIONS(790), + [anon_sym_DOLLAR] = ACTIONS(790), + [sym_raw_string] = ACTIONS(790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(790), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(790), + [anon_sym_BQUOTE] = ACTIONS(790), + [anon_sym_LT_LPAREN] = ACTIONS(790), + [anon_sym_GT_LPAREN] = ACTIONS(790), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(774), - [anon_sym_SEMI] = ACTIONS(774), - [anon_sym_LF] = ACTIONS(774), - [anon_sym_AMP] = ACTIONS(774), + [sym_word] = ACTIONS(790), + [anon_sym_SEMI] = ACTIONS(790), + [anon_sym_LF] = ACTIONS(790), + [anon_sym_AMP] = ACTIONS(790), }, [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_file_descriptor] = ACTIONS(792), + [sym__concat] = ACTIONS(792), + [sym_variable_name] = ACTIONS(792), + [anon_sym_PIPE] = ACTIONS(794), + [anon_sym_RPAREN] = ACTIONS(794), + [anon_sym_SEMI_SEMI] = ACTIONS(794), + [anon_sym_PIPE_AMP] = ACTIONS(794), + [anon_sym_AMP_AMP] = ACTIONS(794), + [anon_sym_PIPE_PIPE] = ACTIONS(794), + [anon_sym_LT] = ACTIONS(794), + [anon_sym_GT] = ACTIONS(794), + [anon_sym_GT_GT] = ACTIONS(794), + [anon_sym_AMP_GT] = ACTIONS(794), + [anon_sym_AMP_GT_GT] = ACTIONS(794), + [anon_sym_LT_AMP] = ACTIONS(794), + [anon_sym_GT_AMP] = ACTIONS(794), + [sym__special_characters] = ACTIONS(794), + [anon_sym_DQUOTE] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(794), + [sym_raw_string] = ACTIONS(794), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(794), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(794), + [anon_sym_BQUOTE] = ACTIONS(794), + [anon_sym_LT_LPAREN] = ACTIONS(794), + [anon_sym_GT_LPAREN] = ACTIONS(794), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(778), - [anon_sym_SEMI] = ACTIONS(778), - [anon_sym_LF] = ACTIONS(778), - [anon_sym_AMP] = ACTIONS(778), + [sym_word] = ACTIONS(794), + [anon_sym_SEMI] = ACTIONS(794), + [anon_sym_LF] = ACTIONS(794), + [anon_sym_AMP] = ACTIONS(794), }, [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_DQUOTE] = ACTIONS(4426), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -44577,104 +44793,104 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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_file_descriptor] = ACTIONS(824), + [sym__concat] = ACTIONS(824), + [sym_variable_name] = ACTIONS(824), + [anon_sym_PIPE] = ACTIONS(826), + [anon_sym_RPAREN] = ACTIONS(826), + [anon_sym_SEMI_SEMI] = ACTIONS(826), + [anon_sym_PIPE_AMP] = ACTIONS(826), + [anon_sym_AMP_AMP] = ACTIONS(826), + [anon_sym_PIPE_PIPE] = ACTIONS(826), + [anon_sym_LT] = ACTIONS(826), + [anon_sym_GT] = ACTIONS(826), + [anon_sym_GT_GT] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(826), + [anon_sym_AMP_GT_GT] = ACTIONS(826), + [anon_sym_LT_AMP] = ACTIONS(826), + [anon_sym_GT_AMP] = ACTIONS(826), + [sym__special_characters] = ACTIONS(826), + [anon_sym_DQUOTE] = ACTIONS(826), + [anon_sym_DOLLAR] = ACTIONS(826), + [sym_raw_string] = ACTIONS(826), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(826), + [anon_sym_BQUOTE] = ACTIONS(826), + [anon_sym_LT_LPAREN] = ACTIONS(826), + [anon_sym_GT_LPAREN] = ACTIONS(826), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(810), - [anon_sym_SEMI] = ACTIONS(810), - [anon_sym_LF] = ACTIONS(810), - [anon_sym_AMP] = ACTIONS(810), + [sym_word] = ACTIONS(826), + [anon_sym_SEMI] = ACTIONS(826), + [anon_sym_LF] = ACTIONS(826), + [anon_sym_AMP] = ACTIONS(826), }, [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_file_descriptor] = ACTIONS(828), + [sym__concat] = ACTIONS(828), + [sym_variable_name] = ACTIONS(828), + [anon_sym_PIPE] = ACTIONS(830), + [anon_sym_RPAREN] = ACTIONS(830), + [anon_sym_SEMI_SEMI] = ACTIONS(830), + [anon_sym_PIPE_AMP] = ACTIONS(830), + [anon_sym_AMP_AMP] = ACTIONS(830), + [anon_sym_PIPE_PIPE] = ACTIONS(830), + [anon_sym_LT] = ACTIONS(830), + [anon_sym_GT] = ACTIONS(830), + [anon_sym_GT_GT] = ACTIONS(830), + [anon_sym_AMP_GT] = ACTIONS(830), + [anon_sym_AMP_GT_GT] = ACTIONS(830), + [anon_sym_LT_AMP] = ACTIONS(830), + [anon_sym_GT_AMP] = ACTIONS(830), + [sym__special_characters] = ACTIONS(830), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(830), + [sym_raw_string] = ACTIONS(830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(830), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_LT_LPAREN] = ACTIONS(830), + [anon_sym_GT_LPAREN] = ACTIONS(830), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(814), - [anon_sym_SEMI] = ACTIONS(814), - [anon_sym_LF] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(814), + [sym_word] = ACTIONS(830), + [anon_sym_SEMI] = ACTIONS(830), + [anon_sym_LF] = ACTIONS(830), + [anon_sym_AMP] = ACTIONS(830), }, [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_file_descriptor] = ACTIONS(832), + [sym__concat] = ACTIONS(832), + [sym_variable_name] = ACTIONS(832), + [anon_sym_PIPE] = ACTIONS(834), + [anon_sym_RPAREN] = ACTIONS(834), + [anon_sym_SEMI_SEMI] = ACTIONS(834), + [anon_sym_PIPE_AMP] = ACTIONS(834), + [anon_sym_AMP_AMP] = ACTIONS(834), + [anon_sym_PIPE_PIPE] = ACTIONS(834), + [anon_sym_LT] = ACTIONS(834), + [anon_sym_GT] = ACTIONS(834), + [anon_sym_GT_GT] = ACTIONS(834), + [anon_sym_AMP_GT] = ACTIONS(834), + [anon_sym_AMP_GT_GT] = ACTIONS(834), + [anon_sym_LT_AMP] = ACTIONS(834), + [anon_sym_GT_AMP] = ACTIONS(834), + [sym__special_characters] = ACTIONS(834), + [anon_sym_DQUOTE] = ACTIONS(834), + [anon_sym_DOLLAR] = ACTIONS(834), + [sym_raw_string] = ACTIONS(834), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(834), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(834), + [anon_sym_BQUOTE] = ACTIONS(834), + [anon_sym_LT_LPAREN] = ACTIONS(834), + [anon_sym_GT_LPAREN] = ACTIONS(834), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(818), - [anon_sym_SEMI] = ACTIONS(818), - [anon_sym_LF] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(818), + [sym_word] = ACTIONS(834), + [anon_sym_SEMI] = ACTIONS(834), + [anon_sym_LF] = ACTIONS(834), + [anon_sym_AMP] = ACTIONS(834), }, [1380] = { - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(4366), + [anon_sym_LBRACK] = ACTIONS(836), + [anon_sym_EQ] = ACTIONS(4428), [sym_comment] = ACTIONS(56), }, [1381] = { @@ -44686,39 +44902,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4430), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(4432), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1382] = { [sym_subscript] = STATE(2066), - [sym_variable_name] = ACTIONS(4372), - [anon_sym_DOLLAR] = ACTIONS(4374), - [anon_sym_DASH] = ACTIONS(4374), + [sym_variable_name] = ACTIONS(4434), + [anon_sym_DOLLAR] = ACTIONS(4436), + [anon_sym_DASH] = ACTIONS(4436), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4438), + [anon_sym_STAR] = ACTIONS(4436), + [anon_sym_AT] = ACTIONS(4436), + [anon_sym_QMARK] = ACTIONS(4436), + [anon_sym_0] = ACTIONS(4440), + [anon_sym__] = ACTIONS(4440), }, [1383] = { [sym_concatenation] = STATE(451), @@ -44729,26 +44945,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4442), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(4444), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1384] = { [sym_concatenation] = STATE(451), @@ -44759,171 +44975,171 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4446), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(4448), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(4450), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), [sym_comment] = ACTIONS(56), }, [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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(4450), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [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), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_PIPE_AMP] = ACTIONS(1072), + [anon_sym_AMP_AMP] = ACTIONS(1074), + [anon_sym_PIPE_PIPE] = ACTIONS(1074), + [anon_sym_BQUOTE] = ACTIONS(4450), [sym_comment] = ACTIONS(56), }, [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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_PIPE_AMP] = ACTIONS(1072), + [anon_sym_AMP_AMP] = ACTIONS(1074), + [anon_sym_PIPE_PIPE] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(4450), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [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), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(4452), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), [sym_comment] = ACTIONS(56), }, [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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(4452), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [1391] = { [sym_file_redirect] = STATE(207), [sym_heredoc_redirect] = STATE(207), [sym_herestring_redirect] = STATE(207), [aux_sym_while_statement_repeat1] = STATE(825), - [sym_file_descriptor] = ACTIONS(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_file_descriptor] = ACTIONS(556), + [anon_sym_PIPE] = ACTIONS(2677), + [anon_sym_RPAREN] = ACTIONS(2677), + [anon_sym_SEMI_SEMI] = ACTIONS(2677), + [anon_sym_PIPE_AMP] = ACTIONS(2677), + [anon_sym_AMP_AMP] = ACTIONS(2677), + [anon_sym_PIPE_PIPE] = ACTIONS(2677), + [anon_sym_LT] = ACTIONS(560), + [anon_sym_GT] = ACTIONS(560), + [anon_sym_GT_GT] = ACTIONS(560), + [anon_sym_AMP_GT] = ACTIONS(560), + [anon_sym_AMP_GT_GT] = ACTIONS(560), + [anon_sym_LT_AMP] = ACTIONS(560), + [anon_sym_GT_AMP] = ACTIONS(560), + [anon_sym_LT_LT] = ACTIONS(360), + [anon_sym_LT_LT_DASH] = ACTIONS(360), + [anon_sym_LT_LT_LT] = ACTIONS(562), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2633), - [anon_sym_LF] = ACTIONS(2633), - [anon_sym_AMP] = ACTIONS(2633), + [anon_sym_SEMI] = ACTIONS(2677), + [anon_sym_LF] = ACTIONS(2677), + [anon_sym_AMP] = ACTIONS(2677), }, [1392] = { [sym_compound_statement] = STATE(2075), - [anon_sym_LBRACE] = ACTIONS(480), + [anon_sym_LBRACE] = ACTIONS(484), [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), + [anon_sym_LT] = ACTIONS(4454), + [anon_sym_GT] = ACTIONS(4454), + [anon_sym_GT_GT] = ACTIONS(4456), + [anon_sym_AMP_GT] = ACTIONS(4454), + [anon_sym_AMP_GT_GT] = ACTIONS(4456), + [anon_sym_LT_AMP] = ACTIONS(4456), + [anon_sym_GT_AMP] = ACTIONS(4456), [sym_comment] = ACTIONS(56), }, [1394] = { @@ -44934,172 +45150,172 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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__special_characters] = ACTIONS(4458), + [anon_sym_DQUOTE] = ACTIONS(4460), + [anon_sym_DOLLAR] = ACTIONS(4462), + [sym_raw_string] = ACTIONS(4464), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4466), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4468), + [anon_sym_BQUOTE] = ACTIONS(4470), + [anon_sym_LT_LPAREN] = ACTIONS(4472), + [anon_sym_GT_LPAREN] = ACTIONS(4472), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4412), + [sym_word] = ACTIONS(4474), }, [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_file_descriptor] = ACTIONS(556), + [anon_sym_PIPE] = ACTIONS(3103), + [anon_sym_RPAREN] = ACTIONS(3103), + [anon_sym_SEMI_SEMI] = ACTIONS(3103), + [anon_sym_PIPE_AMP] = ACTIONS(3103), + [anon_sym_AMP_AMP] = ACTIONS(3103), + [anon_sym_PIPE_PIPE] = ACTIONS(3103), + [anon_sym_LT] = ACTIONS(560), + [anon_sym_GT] = ACTIONS(560), + [anon_sym_GT_GT] = ACTIONS(560), + [anon_sym_AMP_GT] = ACTIONS(560), + [anon_sym_AMP_GT_GT] = ACTIONS(560), + [anon_sym_LT_AMP] = ACTIONS(560), + [anon_sym_GT_AMP] = ACTIONS(560), + [anon_sym_LT_LT] = ACTIONS(360), + [anon_sym_LT_LT_DASH] = ACTIONS(360), + [anon_sym_LT_LT_LT] = ACTIONS(562), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3055), - [anon_sym_LF] = ACTIONS(3055), - [anon_sym_AMP] = ACTIONS(3055), + [anon_sym_SEMI] = ACTIONS(3103), + [anon_sym_LF] = ACTIONS(3103), + [anon_sym_AMP] = ACTIONS(3103), }, [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__concat] = ACTIONS(1429), + [sym_variable_name] = ACTIONS(1301), + [anon_sym_PIPE] = ACTIONS(1305), + [anon_sym_RPAREN] = ACTIONS(1305), + [anon_sym_SEMI_SEMI] = ACTIONS(1305), + [anon_sym_PIPE_AMP] = ACTIONS(1305), + [anon_sym_AMP_AMP] = ACTIONS(1305), + [anon_sym_PIPE_PIPE] = ACTIONS(1305), + [sym__special_characters] = ACTIONS(1305), + [anon_sym_DQUOTE] = ACTIONS(1305), + [anon_sym_DOLLAR] = ACTIONS(1305), + [sym_raw_string] = ACTIONS(1305), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1305), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1305), + [anon_sym_BQUOTE] = ACTIONS(1305), + [anon_sym_LT_LPAREN] = ACTIONS(1305), + [anon_sym_GT_LPAREN] = ACTIONS(1305), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1283), - [sym_word] = ACTIONS(1283), - [anon_sym_SEMI] = ACTIONS(1283), - [anon_sym_LF] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1283), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1305), + [sym_word] = ACTIONS(1305), + [anon_sym_SEMI] = ACTIONS(1305), + [anon_sym_LF] = ACTIONS(1305), + [anon_sym_AMP] = ACTIONS(1305), }, [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__concat] = ACTIONS(1429), + [sym_variable_name] = ACTIONS(1277), + [anon_sym_PIPE] = ACTIONS(1279), + [anon_sym_RPAREN] = ACTIONS(1279), + [anon_sym_SEMI_SEMI] = ACTIONS(1279), + [anon_sym_PIPE_AMP] = ACTIONS(1279), + [anon_sym_AMP_AMP] = ACTIONS(1279), + [anon_sym_PIPE_PIPE] = ACTIONS(1279), + [sym__special_characters] = ACTIONS(1279), + [anon_sym_DQUOTE] = ACTIONS(1279), + [anon_sym_DOLLAR] = ACTIONS(1279), + [sym_raw_string] = ACTIONS(1279), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1279), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1279), + [anon_sym_BQUOTE] = ACTIONS(1279), + [anon_sym_LT_LPAREN] = ACTIONS(1279), + [anon_sym_GT_LPAREN] = ACTIONS(1279), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1257), - [sym_word] = ACTIONS(1257), - [anon_sym_SEMI] = ACTIONS(1257), - [anon_sym_LF] = ACTIONS(1257), - [anon_sym_AMP] = ACTIONS(1257), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1279), + [sym_word] = ACTIONS(1279), + [anon_sym_SEMI] = ACTIONS(1279), + [anon_sym_LF] = ACTIONS(1279), + [anon_sym_AMP] = ACTIONS(1279), }, [1398] = { - [sym__concat] = ACTIONS(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__concat] = ACTIONS(1886), + [sym_variable_name] = ACTIONS(1886), + [anon_sym_PIPE] = ACTIONS(1888), + [anon_sym_RPAREN] = ACTIONS(1888), + [anon_sym_SEMI_SEMI] = ACTIONS(1888), + [anon_sym_PIPE_AMP] = ACTIONS(1888), + [anon_sym_AMP_AMP] = ACTIONS(1888), + [anon_sym_PIPE_PIPE] = ACTIONS(1888), + [sym__special_characters] = ACTIONS(1888), + [anon_sym_DQUOTE] = ACTIONS(1888), + [anon_sym_DOLLAR] = ACTIONS(1888), + [sym_raw_string] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1888), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1888), + [anon_sym_BQUOTE] = ACTIONS(1888), + [anon_sym_LT_LPAREN] = ACTIONS(1888), + [anon_sym_GT_LPAREN] = ACTIONS(1888), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1860), - [sym_word] = ACTIONS(1860), - [anon_sym_SEMI] = ACTIONS(1860), - [anon_sym_LF] = ACTIONS(1860), - [anon_sym_AMP] = ACTIONS(1860), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1888), + [sym_word] = ACTIONS(1888), + [anon_sym_SEMI] = ACTIONS(1888), + [anon_sym_LF] = ACTIONS(1888), + [anon_sym_AMP] = ACTIONS(1888), }, [1399] = { [aux_sym_concatenation_repeat1] = STATE(1399), - [sym__concat] = ACTIONS(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__concat] = ACTIONS(4476), + [sym_variable_name] = ACTIONS(1886), + [anon_sym_PIPE] = ACTIONS(1888), + [anon_sym_RPAREN] = ACTIONS(1888), + [anon_sym_SEMI_SEMI] = ACTIONS(1888), + [anon_sym_PIPE_AMP] = ACTIONS(1888), + [anon_sym_AMP_AMP] = ACTIONS(1888), + [anon_sym_PIPE_PIPE] = ACTIONS(1888), + [sym__special_characters] = ACTIONS(1888), + [anon_sym_DQUOTE] = ACTIONS(1888), + [anon_sym_DOLLAR] = ACTIONS(1888), + [sym_raw_string] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1888), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1888), + [anon_sym_BQUOTE] = ACTIONS(1888), + [anon_sym_LT_LPAREN] = ACTIONS(1888), + [anon_sym_GT_LPAREN] = ACTIONS(1888), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1860), - [sym_word] = ACTIONS(1860), - [anon_sym_SEMI] = ACTIONS(1860), - [anon_sym_LF] = ACTIONS(1860), - [anon_sym_AMP] = ACTIONS(1860), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1888), + [sym_word] = ACTIONS(1888), + [anon_sym_SEMI] = ACTIONS(1888), + [anon_sym_LF] = ACTIONS(1888), + [anon_sym_AMP] = ACTIONS(1888), }, [1400] = { - [sym__concat] = ACTIONS(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__concat] = ACTIONS(1923), + [sym_variable_name] = ACTIONS(1923), + [anon_sym_PIPE] = ACTIONS(1925), + [anon_sym_RPAREN] = ACTIONS(1925), + [anon_sym_SEMI_SEMI] = ACTIONS(1925), + [anon_sym_PIPE_AMP] = ACTIONS(1925), + [anon_sym_AMP_AMP] = ACTIONS(1925), + [anon_sym_PIPE_PIPE] = ACTIONS(1925), + [sym__special_characters] = ACTIONS(1925), + [anon_sym_DQUOTE] = ACTIONS(1925), + [anon_sym_DOLLAR] = ACTIONS(1925), + [sym_raw_string] = ACTIONS(1925), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1925), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1925), + [anon_sym_BQUOTE] = ACTIONS(1925), + [anon_sym_LT_LPAREN] = ACTIONS(1925), + [anon_sym_GT_LPAREN] = ACTIONS(1925), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1897), - [sym_word] = ACTIONS(1897), - [anon_sym_SEMI] = ACTIONS(1897), - [anon_sym_LF] = ACTIONS(1897), - [anon_sym_AMP] = ACTIONS(1897), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1925), + [sym_word] = ACTIONS(1925), + [anon_sym_SEMI] = ACTIONS(1925), + [anon_sym_LF] = ACTIONS(1925), + [anon_sym_AMP] = ACTIONS(1925), }, [1401] = { [sym_concatenation] = STATE(2088), @@ -45109,47 +45325,47 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4479), + [sym__special_characters] = ACTIONS(4481), + [anon_sym_DQUOTE] = ACTIONS(1952), + [anon_sym_DOLLAR] = ACTIONS(1954), + [sym_raw_string] = ACTIONS(4483), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), + [anon_sym_BQUOTE] = ACTIONS(1962), + [anon_sym_LT_LPAREN] = ACTIONS(1964), + [anon_sym_GT_LPAREN] = ACTIONS(1964), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4423), + [sym_word] = ACTIONS(4485), }, [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__concat] = ACTIONS(1968), + [sym_variable_name] = ACTIONS(1968), + [anon_sym_PIPE] = ACTIONS(1970), + [anon_sym_RPAREN] = ACTIONS(1970), + [anon_sym_SEMI_SEMI] = ACTIONS(1970), + [anon_sym_PIPE_AMP] = ACTIONS(1970), + [anon_sym_AMP_AMP] = ACTIONS(1970), + [anon_sym_PIPE_PIPE] = ACTIONS(1970), + [sym__special_characters] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1970), + [anon_sym_DOLLAR] = ACTIONS(1970), + [sym_raw_string] = ACTIONS(1970), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1970), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1970), + [anon_sym_BQUOTE] = ACTIONS(1970), + [anon_sym_LT_LPAREN] = ACTIONS(1970), + [anon_sym_GT_LPAREN] = ACTIONS(1970), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1942), - [sym_word] = ACTIONS(1942), - [anon_sym_SEMI] = ACTIONS(1942), - [anon_sym_LF] = ACTIONS(1942), - [anon_sym_AMP] = ACTIONS(1942), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1970), + [sym_word] = ACTIONS(1970), + [anon_sym_SEMI] = ACTIONS(1970), + [anon_sym_LF] = ACTIONS(1970), + [anon_sym_AMP] = ACTIONS(1970), }, [1403] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4425), + [sym_regex_without_right_brace] = ACTIONS(4487), }, [1404] = { [sym_concatenation] = STATE(451), @@ -45160,29 +45376,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4489), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1405] = { - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(4429), + [anon_sym_LBRACK] = ACTIONS(836), + [anon_sym_EQ] = ACTIONS(4491), [sym_comment] = ACTIONS(56), }, [1406] = { @@ -45194,26 +45410,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4493), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(4495), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1407] = { [sym_concatenation] = STATE(451), @@ -45224,26 +45440,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4497), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(4499), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1408] = { [sym_concatenation] = STATE(451), @@ -45254,55 +45470,55 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4479), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(4501), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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__concat] = ACTIONS(2022), + [sym_variable_name] = ACTIONS(2022), + [anon_sym_PIPE] = ACTIONS(2024), + [anon_sym_RPAREN] = ACTIONS(2024), + [anon_sym_SEMI_SEMI] = ACTIONS(2024), + [anon_sym_PIPE_AMP] = ACTIONS(2024), + [anon_sym_AMP_AMP] = ACTIONS(2024), + [anon_sym_PIPE_PIPE] = ACTIONS(2024), + [sym__special_characters] = ACTIONS(2024), + [anon_sym_DQUOTE] = ACTIONS(2024), + [anon_sym_DOLLAR] = ACTIONS(2024), + [sym_raw_string] = ACTIONS(2024), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2024), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2024), + [anon_sym_BQUOTE] = ACTIONS(2024), + [anon_sym_LT_LPAREN] = ACTIONS(2024), + [anon_sym_GT_LPAREN] = ACTIONS(2024), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1994), - [sym_word] = ACTIONS(1994), - [anon_sym_SEMI] = ACTIONS(1994), - [anon_sym_LF] = ACTIONS(1994), - [anon_sym_AMP] = ACTIONS(1994), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2024), + [sym_word] = ACTIONS(2024), + [anon_sym_SEMI] = ACTIONS(2024), + [anon_sym_LF] = ACTIONS(2024), + [anon_sym_AMP] = ACTIONS(2024), }, [1410] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4441), + [sym_regex_without_right_brace] = ACTIONS(4503), }, [1411] = { [sym_concatenation] = STATE(451), @@ -45313,54 +45529,54 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4505), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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__concat] = ACTIONS(2030), + [sym_variable_name] = ACTIONS(2030), + [anon_sym_PIPE] = ACTIONS(2032), + [anon_sym_RPAREN] = ACTIONS(2032), + [anon_sym_SEMI_SEMI] = ACTIONS(2032), + [anon_sym_PIPE_AMP] = ACTIONS(2032), + [anon_sym_AMP_AMP] = ACTIONS(2032), + [anon_sym_PIPE_PIPE] = ACTIONS(2032), + [sym__special_characters] = ACTIONS(2032), + [anon_sym_DQUOTE] = ACTIONS(2032), + [anon_sym_DOLLAR] = ACTIONS(2032), + [sym_raw_string] = ACTIONS(2032), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2032), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2032), + [anon_sym_BQUOTE] = ACTIONS(2032), + [anon_sym_LT_LPAREN] = ACTIONS(2032), + [anon_sym_GT_LPAREN] = ACTIONS(2032), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2002), - [sym_word] = ACTIONS(2002), - [anon_sym_SEMI] = ACTIONS(2002), - [anon_sym_LF] = ACTIONS(2002), - [anon_sym_AMP] = ACTIONS(2002), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2032), + [sym_word] = ACTIONS(2032), + [anon_sym_SEMI] = ACTIONS(2032), + [anon_sym_LF] = ACTIONS(2032), + [anon_sym_AMP] = ACTIONS(2032), }, [1413] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4445), + [sym_regex_without_right_brace] = ACTIONS(4507), }, [1414] = { [sym_concatenation] = STATE(451), @@ -45371,148 +45587,148 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4479), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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__concat] = ACTIONS(2190), + [sym_variable_name] = ACTIONS(2190), + [anon_sym_PIPE] = ACTIONS(2192), + [anon_sym_RPAREN] = ACTIONS(2192), + [anon_sym_SEMI_SEMI] = ACTIONS(2192), + [anon_sym_PIPE_AMP] = ACTIONS(2192), + [anon_sym_AMP_AMP] = ACTIONS(2192), + [anon_sym_PIPE_PIPE] = ACTIONS(2192), + [sym__special_characters] = ACTIONS(2192), + [anon_sym_DQUOTE] = ACTIONS(2192), + [anon_sym_DOLLAR] = ACTIONS(2192), + [sym_raw_string] = ACTIONS(2192), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2192), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2192), + [anon_sym_BQUOTE] = ACTIONS(2192), + [anon_sym_LT_LPAREN] = ACTIONS(2192), + [anon_sym_GT_LPAREN] = ACTIONS(2192), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2158), - [sym_word] = ACTIONS(2158), - [anon_sym_SEMI] = ACTIONS(2158), - [anon_sym_LF] = ACTIONS(2158), - [anon_sym_AMP] = ACTIONS(2158), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2192), + [sym_word] = ACTIONS(2192), + [anon_sym_SEMI] = ACTIONS(2192), + [anon_sym_LF] = ACTIONS(2192), + [anon_sym_AMP] = ACTIONS(2192), }, [1416] = { - [sym__concat] = ACTIONS(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__concat] = ACTIONS(2396), + [sym_variable_name] = ACTIONS(2396), + [anon_sym_PIPE] = ACTIONS(2398), + [anon_sym_RPAREN] = ACTIONS(2398), + [anon_sym_SEMI_SEMI] = ACTIONS(2398), + [anon_sym_PIPE_AMP] = ACTIONS(2398), + [anon_sym_AMP_AMP] = ACTIONS(2398), + [anon_sym_PIPE_PIPE] = ACTIONS(2398), + [sym__special_characters] = ACTIONS(2398), + [anon_sym_DQUOTE] = ACTIONS(2398), + [anon_sym_DOLLAR] = ACTIONS(2398), + [sym_raw_string] = ACTIONS(2398), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2398), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2398), + [anon_sym_BQUOTE] = ACTIONS(2398), + [anon_sym_LT_LPAREN] = ACTIONS(2398), + [anon_sym_GT_LPAREN] = ACTIONS(2398), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2360), - [sym_word] = ACTIONS(2360), - [anon_sym_SEMI] = ACTIONS(2360), - [anon_sym_LF] = ACTIONS(2360), - [anon_sym_AMP] = ACTIONS(2360), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2398), + [sym_word] = ACTIONS(2398), + [anon_sym_SEMI] = ACTIONS(2398), + [anon_sym_LF] = ACTIONS(2398), + [anon_sym_AMP] = ACTIONS(2398), }, [1417] = { - [sym__concat] = ACTIONS(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__concat] = ACTIONS(1886), + [anon_sym_PIPE] = ACTIONS(1888), + [anon_sym_RPAREN] = ACTIONS(1888), + [anon_sym_SEMI_SEMI] = ACTIONS(1888), + [anon_sym_PIPE_AMP] = ACTIONS(1888), + [anon_sym_AMP_AMP] = ACTIONS(1888), + [anon_sym_PIPE_PIPE] = ACTIONS(1888), + [sym__special_characters] = ACTIONS(1888), + [anon_sym_DQUOTE] = ACTIONS(1888), + [anon_sym_DOLLAR] = ACTIONS(1888), + [sym_raw_string] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1888), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1888), + [anon_sym_BQUOTE] = ACTIONS(1888), + [anon_sym_LT_LPAREN] = ACTIONS(1888), + [anon_sym_GT_LPAREN] = ACTIONS(1888), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1860), - [sym_word] = ACTIONS(1860), - [anon_sym_SEMI] = ACTIONS(1860), - [anon_sym_LF] = ACTIONS(1860), - [anon_sym_AMP] = ACTIONS(1860), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1888), + [sym_word] = ACTIONS(1888), + [anon_sym_SEMI] = ACTIONS(1888), + [anon_sym_LF] = ACTIONS(1888), + [anon_sym_AMP] = ACTIONS(1888), }, [1418] = { [aux_sym_concatenation_repeat1] = STATE(1418), - [sym__concat] = ACTIONS(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__concat] = ACTIONS(4509), + [anon_sym_PIPE] = ACTIONS(1888), + [anon_sym_RPAREN] = ACTIONS(1888), + [anon_sym_SEMI_SEMI] = ACTIONS(1888), + [anon_sym_PIPE_AMP] = ACTIONS(1888), + [anon_sym_AMP_AMP] = ACTIONS(1888), + [anon_sym_PIPE_PIPE] = ACTIONS(1888), + [sym__special_characters] = ACTIONS(1888), + [anon_sym_DQUOTE] = ACTIONS(1888), + [anon_sym_DOLLAR] = ACTIONS(1888), + [sym_raw_string] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1888), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1888), + [anon_sym_BQUOTE] = ACTIONS(1888), + [anon_sym_LT_LPAREN] = ACTIONS(1888), + [anon_sym_GT_LPAREN] = ACTIONS(1888), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1860), - [sym_word] = ACTIONS(1860), - [anon_sym_SEMI] = ACTIONS(1860), - [anon_sym_LF] = ACTIONS(1860), - [anon_sym_AMP] = ACTIONS(1860), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1888), + [sym_word] = ACTIONS(1888), + [anon_sym_SEMI] = ACTIONS(1888), + [anon_sym_LF] = ACTIONS(1888), + [anon_sym_AMP] = ACTIONS(1888), }, [1419] = { - [sym__concat] = ACTIONS(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__concat] = ACTIONS(1923), + [anon_sym_PIPE] = ACTIONS(1925), + [anon_sym_RPAREN] = ACTIONS(1925), + [anon_sym_SEMI_SEMI] = ACTIONS(1925), + [anon_sym_PIPE_AMP] = ACTIONS(1925), + [anon_sym_AMP_AMP] = ACTIONS(1925), + [anon_sym_PIPE_PIPE] = ACTIONS(1925), + [sym__special_characters] = ACTIONS(1925), + [anon_sym_DQUOTE] = ACTIONS(1925), + [anon_sym_DOLLAR] = ACTIONS(1925), + [sym_raw_string] = ACTIONS(1925), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1925), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1925), + [anon_sym_BQUOTE] = ACTIONS(1925), + [anon_sym_LT_LPAREN] = ACTIONS(1925), + [anon_sym_GT_LPAREN] = ACTIONS(1925), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1897), - [sym_word] = ACTIONS(1897), - [anon_sym_SEMI] = ACTIONS(1897), - [anon_sym_LF] = ACTIONS(1897), - [anon_sym_AMP] = ACTIONS(1897), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1925), + [sym_word] = ACTIONS(1925), + [anon_sym_SEMI] = ACTIONS(1925), + [anon_sym_LF] = ACTIONS(1925), + [anon_sym_AMP] = ACTIONS(1925), }, [1420] = { [sym_concatenation] = STATE(2106), @@ -45522,46 +45738,46 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4512), + [sym__special_characters] = ACTIONS(4514), + [anon_sym_DQUOTE] = ACTIONS(1952), + [anon_sym_DOLLAR] = ACTIONS(1954), + [sym_raw_string] = ACTIONS(4516), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), + [anon_sym_BQUOTE] = ACTIONS(1962), + [anon_sym_LT_LPAREN] = ACTIONS(1964), + [anon_sym_GT_LPAREN] = ACTIONS(1964), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4456), + [sym_word] = ACTIONS(4518), }, [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__concat] = ACTIONS(1968), + [anon_sym_PIPE] = ACTIONS(1970), + [anon_sym_RPAREN] = ACTIONS(1970), + [anon_sym_SEMI_SEMI] = ACTIONS(1970), + [anon_sym_PIPE_AMP] = ACTIONS(1970), + [anon_sym_AMP_AMP] = ACTIONS(1970), + [anon_sym_PIPE_PIPE] = ACTIONS(1970), + [sym__special_characters] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1970), + [anon_sym_DOLLAR] = ACTIONS(1970), + [sym_raw_string] = ACTIONS(1970), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1970), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1970), + [anon_sym_BQUOTE] = ACTIONS(1970), + [anon_sym_LT_LPAREN] = ACTIONS(1970), + [anon_sym_GT_LPAREN] = ACTIONS(1970), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1942), - [sym_word] = ACTIONS(1942), - [anon_sym_SEMI] = ACTIONS(1942), - [anon_sym_LF] = ACTIONS(1942), - [anon_sym_AMP] = ACTIONS(1942), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1970), + [sym_word] = ACTIONS(1970), + [anon_sym_SEMI] = ACTIONS(1970), + [anon_sym_LF] = ACTIONS(1970), + [anon_sym_AMP] = ACTIONS(1970), }, [1422] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4458), + [sym_regex_without_right_brace] = ACTIONS(4520), }, [1423] = { [sym_concatenation] = STATE(451), @@ -45572,29 +45788,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4522), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1424] = { - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(4462), + [anon_sym_LBRACK] = ACTIONS(836), + [anon_sym_EQ] = ACTIONS(4524), [sym_comment] = ACTIONS(56), }, [1425] = { @@ -45606,26 +45822,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4526), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(4528), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1426] = { [sym_concatenation] = STATE(451), @@ -45636,26 +45852,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4530), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(4532), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1427] = { [sym_concatenation] = STATE(451), @@ -45666,54 +45882,54 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4512), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(4534), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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__concat] = ACTIONS(2022), + [anon_sym_PIPE] = ACTIONS(2024), + [anon_sym_RPAREN] = ACTIONS(2024), + [anon_sym_SEMI_SEMI] = ACTIONS(2024), + [anon_sym_PIPE_AMP] = ACTIONS(2024), + [anon_sym_AMP_AMP] = ACTIONS(2024), + [anon_sym_PIPE_PIPE] = ACTIONS(2024), + [sym__special_characters] = ACTIONS(2024), + [anon_sym_DQUOTE] = ACTIONS(2024), + [anon_sym_DOLLAR] = ACTIONS(2024), + [sym_raw_string] = ACTIONS(2024), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2024), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2024), + [anon_sym_BQUOTE] = ACTIONS(2024), + [anon_sym_LT_LPAREN] = ACTIONS(2024), + [anon_sym_GT_LPAREN] = ACTIONS(2024), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1994), - [sym_word] = ACTIONS(1994), - [anon_sym_SEMI] = ACTIONS(1994), - [anon_sym_LF] = ACTIONS(1994), - [anon_sym_AMP] = ACTIONS(1994), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2024), + [sym_word] = ACTIONS(2024), + [anon_sym_SEMI] = ACTIONS(2024), + [anon_sym_LF] = ACTIONS(2024), + [anon_sym_AMP] = ACTIONS(2024), }, [1429] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4474), + [sym_regex_without_right_brace] = ACTIONS(4536), }, [1430] = { [sym_concatenation] = STATE(451), @@ -45724,53 +45940,53 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4538), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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__concat] = ACTIONS(2030), + [anon_sym_PIPE] = ACTIONS(2032), + [anon_sym_RPAREN] = ACTIONS(2032), + [anon_sym_SEMI_SEMI] = ACTIONS(2032), + [anon_sym_PIPE_AMP] = ACTIONS(2032), + [anon_sym_AMP_AMP] = ACTIONS(2032), + [anon_sym_PIPE_PIPE] = ACTIONS(2032), + [sym__special_characters] = ACTIONS(2032), + [anon_sym_DQUOTE] = ACTIONS(2032), + [anon_sym_DOLLAR] = ACTIONS(2032), + [sym_raw_string] = ACTIONS(2032), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2032), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2032), + [anon_sym_BQUOTE] = ACTIONS(2032), + [anon_sym_LT_LPAREN] = ACTIONS(2032), + [anon_sym_GT_LPAREN] = ACTIONS(2032), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2002), - [sym_word] = ACTIONS(2002), - [anon_sym_SEMI] = ACTIONS(2002), - [anon_sym_LF] = ACTIONS(2002), - [anon_sym_AMP] = ACTIONS(2002), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2032), + [sym_word] = ACTIONS(2032), + [anon_sym_SEMI] = ACTIONS(2032), + [anon_sym_LF] = ACTIONS(2032), + [anon_sym_AMP] = ACTIONS(2032), }, [1432] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4478), + [sym_regex_without_right_brace] = ACTIONS(4540), }, [1433] = { [sym_concatenation] = STATE(451), @@ -45781,123 +45997,124 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4512), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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__concat] = ACTIONS(2190), + [anon_sym_PIPE] = ACTIONS(2192), + [anon_sym_RPAREN] = ACTIONS(2192), + [anon_sym_SEMI_SEMI] = ACTIONS(2192), + [anon_sym_PIPE_AMP] = ACTIONS(2192), + [anon_sym_AMP_AMP] = ACTIONS(2192), + [anon_sym_PIPE_PIPE] = ACTIONS(2192), + [sym__special_characters] = ACTIONS(2192), + [anon_sym_DQUOTE] = ACTIONS(2192), + [anon_sym_DOLLAR] = ACTIONS(2192), + [sym_raw_string] = ACTIONS(2192), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2192), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2192), + [anon_sym_BQUOTE] = ACTIONS(2192), + [anon_sym_LT_LPAREN] = ACTIONS(2192), + [anon_sym_GT_LPAREN] = ACTIONS(2192), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2158), - [sym_word] = ACTIONS(2158), - [anon_sym_SEMI] = ACTIONS(2158), - [anon_sym_LF] = ACTIONS(2158), - [anon_sym_AMP] = ACTIONS(2158), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2192), + [sym_word] = ACTIONS(2192), + [anon_sym_SEMI] = ACTIONS(2192), + [anon_sym_LF] = ACTIONS(2192), + [anon_sym_AMP] = ACTIONS(2192), }, [1435] = { - [sym__concat] = ACTIONS(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__concat] = ACTIONS(2396), + [anon_sym_PIPE] = ACTIONS(2398), + [anon_sym_RPAREN] = ACTIONS(2398), + [anon_sym_SEMI_SEMI] = ACTIONS(2398), + [anon_sym_PIPE_AMP] = ACTIONS(2398), + [anon_sym_AMP_AMP] = ACTIONS(2398), + [anon_sym_PIPE_PIPE] = ACTIONS(2398), + [sym__special_characters] = ACTIONS(2398), + [anon_sym_DQUOTE] = ACTIONS(2398), + [anon_sym_DOLLAR] = ACTIONS(2398), + [sym_raw_string] = ACTIONS(2398), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2398), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2398), + [anon_sym_BQUOTE] = ACTIONS(2398), + [anon_sym_LT_LPAREN] = ACTIONS(2398), + [anon_sym_GT_LPAREN] = ACTIONS(2398), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2360), - [sym_word] = ACTIONS(2360), - [anon_sym_SEMI] = ACTIONS(2360), - [anon_sym_LF] = ACTIONS(2360), - [anon_sym_AMP] = ACTIONS(2360), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2398), + [sym_word] = ACTIONS(2398), + [anon_sym_SEMI] = ACTIONS(2398), + [anon_sym_LF] = ACTIONS(2398), + [anon_sym_AMP] = ACTIONS(2398), }, [1436] = { - [sym_file_descriptor] = ACTIONS(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_file_descriptor] = ACTIONS(3283), + [sym__concat] = ACTIONS(3283), + [anon_sym_PIPE] = ACTIONS(3285), + [anon_sym_RPAREN] = ACTIONS(3285), + [anon_sym_SEMI_SEMI] = ACTIONS(3285), + [anon_sym_PIPE_AMP] = ACTIONS(3285), + [anon_sym_AMP_AMP] = ACTIONS(3285), + [anon_sym_PIPE_PIPE] = ACTIONS(3285), + [anon_sym_EQ_TILDE] = ACTIONS(3285), + [anon_sym_EQ_EQ] = ACTIONS(3285), + [anon_sym_LT] = ACTIONS(3285), + [anon_sym_GT] = ACTIONS(3285), + [anon_sym_GT_GT] = ACTIONS(3285), + [anon_sym_AMP_GT] = ACTIONS(3285), + [anon_sym_AMP_GT_GT] = ACTIONS(3285), + [anon_sym_LT_AMP] = ACTIONS(3285), + [anon_sym_GT_AMP] = ACTIONS(3285), + [anon_sym_LT_LT] = ACTIONS(3285), + [anon_sym_LT_LT_DASH] = ACTIONS(3285), + [anon_sym_LT_LT_LT] = ACTIONS(3285), + [sym__special_characters] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3285), + [anon_sym_DOLLAR] = ACTIONS(3285), + [sym_raw_string] = ACTIONS(3285), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3285), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3285), + [anon_sym_BQUOTE] = ACTIONS(3285), + [anon_sym_LT_LPAREN] = ACTIONS(3285), + [anon_sym_GT_LPAREN] = ACTIONS(3285), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3237), - [anon_sym_SEMI] = ACTIONS(3237), - [anon_sym_LF] = ACTIONS(3237), - [anon_sym_AMP] = ACTIONS(3237), + [sym_word] = ACTIONS(3285), + [anon_sym_SEMI] = ACTIONS(3285), + [anon_sym_LF] = ACTIONS(3285), + [anon_sym_AMP] = ACTIONS(3285), }, [1437] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(4480), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(4542), [sym_comment] = ACTIONS(56), }, [1438] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(4482), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(4544), [sym_comment] = ACTIONS(56), }, [1439] = { - [anon_sym_RBRACE] = ACTIONS(4482), + [anon_sym_RBRACE] = ACTIONS(4544), [sym_comment] = ACTIONS(56), }, [1440] = { @@ -45909,60 +46126,61 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4546), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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_file_descriptor] = ACTIONS(3347), + [sym__concat] = ACTIONS(3347), + [anon_sym_PIPE] = ACTIONS(3349), + [anon_sym_RPAREN] = ACTIONS(3349), + [anon_sym_SEMI_SEMI] = ACTIONS(3349), + [anon_sym_PIPE_AMP] = ACTIONS(3349), + [anon_sym_AMP_AMP] = ACTIONS(3349), + [anon_sym_PIPE_PIPE] = ACTIONS(3349), + [anon_sym_EQ_TILDE] = ACTIONS(3349), + [anon_sym_EQ_EQ] = ACTIONS(3349), + [anon_sym_LT] = ACTIONS(3349), + [anon_sym_GT] = ACTIONS(3349), + [anon_sym_GT_GT] = ACTIONS(3349), + [anon_sym_AMP_GT] = ACTIONS(3349), + [anon_sym_AMP_GT_GT] = ACTIONS(3349), + [anon_sym_LT_AMP] = ACTIONS(3349), + [anon_sym_GT_AMP] = ACTIONS(3349), + [anon_sym_LT_LT] = ACTIONS(3349), + [anon_sym_LT_LT_DASH] = ACTIONS(3349), + [anon_sym_LT_LT_LT] = ACTIONS(3349), + [sym__special_characters] = ACTIONS(3349), + [anon_sym_DQUOTE] = ACTIONS(3349), + [anon_sym_DOLLAR] = ACTIONS(3349), + [sym_raw_string] = ACTIONS(3349), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3349), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3349), + [anon_sym_BQUOTE] = ACTIONS(3349), + [anon_sym_LT_LPAREN] = ACTIONS(3349), + [anon_sym_GT_LPAREN] = ACTIONS(3349), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3299), - [anon_sym_SEMI] = ACTIONS(3299), - [anon_sym_LF] = ACTIONS(3299), - [anon_sym_AMP] = ACTIONS(3299), + [sym_word] = ACTIONS(3349), + [anon_sym_SEMI] = ACTIONS(3349), + [anon_sym_LF] = ACTIONS(3349), + [anon_sym_AMP] = ACTIONS(3349), }, [1442] = { [sym_concatenation] = STATE(2127), @@ -45972,57 +46190,58 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4544), + [sym__special_characters] = ACTIONS(4548), + [anon_sym_DQUOTE] = ACTIONS(1952), + [anon_sym_DOLLAR] = ACTIONS(1954), + [sym_raw_string] = ACTIONS(4550), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), + [anon_sym_BQUOTE] = ACTIONS(1962), + [anon_sym_LT_LPAREN] = ACTIONS(1964), + [anon_sym_GT_LPAREN] = ACTIONS(1964), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4490), + [sym_word] = ACTIONS(4552), }, [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_file_descriptor] = ACTIONS(3392), + [sym__concat] = ACTIONS(3392), + [anon_sym_PIPE] = ACTIONS(3394), + [anon_sym_RPAREN] = ACTIONS(3394), + [anon_sym_SEMI_SEMI] = ACTIONS(3394), + [anon_sym_PIPE_AMP] = ACTIONS(3394), + [anon_sym_AMP_AMP] = ACTIONS(3394), + [anon_sym_PIPE_PIPE] = ACTIONS(3394), + [anon_sym_EQ_TILDE] = ACTIONS(3394), + [anon_sym_EQ_EQ] = ACTIONS(3394), + [anon_sym_LT] = ACTIONS(3394), + [anon_sym_GT] = ACTIONS(3394), + [anon_sym_GT_GT] = ACTIONS(3394), + [anon_sym_AMP_GT] = ACTIONS(3394), + [anon_sym_AMP_GT_GT] = ACTIONS(3394), + [anon_sym_LT_AMP] = ACTIONS(3394), + [anon_sym_GT_AMP] = ACTIONS(3394), + [anon_sym_LT_LT] = ACTIONS(3394), + [anon_sym_LT_LT_DASH] = ACTIONS(3394), + [anon_sym_LT_LT_LT] = ACTIONS(3394), + [sym__special_characters] = ACTIONS(3394), + [anon_sym_DQUOTE] = ACTIONS(3394), + [anon_sym_DOLLAR] = ACTIONS(3394), + [sym_raw_string] = ACTIONS(3394), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3394), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3394), + [anon_sym_BQUOTE] = ACTIONS(3394), + [anon_sym_LT_LPAREN] = ACTIONS(3394), + [anon_sym_GT_LPAREN] = ACTIONS(3394), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(3344), - [anon_sym_LF] = ACTIONS(3344), - [anon_sym_AMP] = ACTIONS(3344), + [sym_word] = ACTIONS(3394), + [anon_sym_SEMI] = ACTIONS(3394), + [anon_sym_LF] = ACTIONS(3394), + [anon_sym_AMP] = ACTIONS(3394), }, [1444] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4492), + [sym_regex_without_right_brace] = ACTIONS(4554), }, [1445] = { [sym_concatenation] = STATE(451), @@ -46033,64 +46252,65 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4556), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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_file_descriptor] = ACTIONS(3400), + [sym__concat] = ACTIONS(3400), + [anon_sym_PIPE] = ACTIONS(3402), + [anon_sym_RPAREN] = ACTIONS(3402), + [anon_sym_SEMI_SEMI] = ACTIONS(3402), + [anon_sym_PIPE_AMP] = ACTIONS(3402), + [anon_sym_AMP_AMP] = ACTIONS(3402), + [anon_sym_PIPE_PIPE] = ACTIONS(3402), + [anon_sym_EQ_TILDE] = ACTIONS(3402), + [anon_sym_EQ_EQ] = ACTIONS(3402), + [anon_sym_LT] = ACTIONS(3402), + [anon_sym_GT] = ACTIONS(3402), + [anon_sym_GT_GT] = ACTIONS(3402), + [anon_sym_AMP_GT] = ACTIONS(3402), + [anon_sym_AMP_GT_GT] = ACTIONS(3402), + [anon_sym_LT_AMP] = ACTIONS(3402), + [anon_sym_GT_AMP] = ACTIONS(3402), + [anon_sym_LT_LT] = ACTIONS(3402), + [anon_sym_LT_LT_DASH] = ACTIONS(3402), + [anon_sym_LT_LT_LT] = ACTIONS(3402), + [sym__special_characters] = ACTIONS(3402), + [anon_sym_DQUOTE] = ACTIONS(3402), + [anon_sym_DOLLAR] = ACTIONS(3402), + [sym_raw_string] = ACTIONS(3402), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3402), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3402), + [anon_sym_BQUOTE] = ACTIONS(3402), + [anon_sym_LT_LPAREN] = ACTIONS(3402), + [anon_sym_GT_LPAREN] = ACTIONS(3402), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3352), - [anon_sym_SEMI] = ACTIONS(3352), - [anon_sym_LF] = ACTIONS(3352), - [anon_sym_AMP] = ACTIONS(3352), + [sym_word] = ACTIONS(3402), + [anon_sym_SEMI] = ACTIONS(3402), + [anon_sym_LF] = ACTIONS(3402), + [anon_sym_AMP] = ACTIONS(3402), }, [1447] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4496), + [sym_regex_without_right_brace] = ACTIONS(4558), }, [1448] = { [sym_concatenation] = STATE(451), @@ -46101,29 +46321,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4560), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1449] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4500), + [sym_regex_without_right_brace] = ACTIONS(4562), }, [1450] = { [sym_concatenation] = STATE(451), @@ -46134,25 +46354,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4544), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1451] = { [sym_concatenation] = STATE(451), @@ -46163,60 +46383,61 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4564), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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_file_descriptor] = ACTIONS(3412), + [sym__concat] = ACTIONS(3412), + [anon_sym_PIPE] = ACTIONS(3414), + [anon_sym_RPAREN] = ACTIONS(3414), + [anon_sym_SEMI_SEMI] = ACTIONS(3414), + [anon_sym_PIPE_AMP] = ACTIONS(3414), + [anon_sym_AMP_AMP] = ACTIONS(3414), + [anon_sym_PIPE_PIPE] = ACTIONS(3414), + [anon_sym_EQ_TILDE] = ACTIONS(3414), + [anon_sym_EQ_EQ] = ACTIONS(3414), + [anon_sym_LT] = ACTIONS(3414), + [anon_sym_GT] = ACTIONS(3414), + [anon_sym_GT_GT] = ACTIONS(3414), + [anon_sym_AMP_GT] = ACTIONS(3414), + [anon_sym_AMP_GT_GT] = ACTIONS(3414), + [anon_sym_LT_AMP] = ACTIONS(3414), + [anon_sym_GT_AMP] = ACTIONS(3414), + [anon_sym_LT_LT] = ACTIONS(3414), + [anon_sym_LT_LT_DASH] = ACTIONS(3414), + [anon_sym_LT_LT_LT] = ACTIONS(3414), + [sym__special_characters] = ACTIONS(3414), + [anon_sym_DQUOTE] = ACTIONS(3414), + [anon_sym_DOLLAR] = ACTIONS(3414), + [sym_raw_string] = ACTIONS(3414), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3414), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3414), + [anon_sym_BQUOTE] = ACTIONS(3414), + [anon_sym_LT_LPAREN] = ACTIONS(3414), + [anon_sym_GT_LPAREN] = ACTIONS(3414), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3364), - [anon_sym_SEMI] = ACTIONS(3364), - [anon_sym_LF] = ACTIONS(3364), - [anon_sym_AMP] = ACTIONS(3364), + [sym_word] = ACTIONS(3414), + [anon_sym_SEMI] = ACTIONS(3414), + [anon_sym_LF] = ACTIONS(3414), + [anon_sym_AMP] = ACTIONS(3414), }, [1453] = { [sym_concatenation] = STATE(451), @@ -46227,96 +46448,96 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4566), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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_file_descriptor] = ACTIONS(2810), + [anon_sym_PIPE] = ACTIONS(2784), + [anon_sym_RPAREN] = ACTIONS(2784), + [anon_sym_SEMI_SEMI] = ACTIONS(2784), + [anon_sym_PIPE_AMP] = ACTIONS(2784), + [anon_sym_AMP_AMP] = ACTIONS(2784), + [anon_sym_PIPE_PIPE] = ACTIONS(2784), + [anon_sym_LT] = ACTIONS(2812), + [anon_sym_GT] = ACTIONS(2812), + [anon_sym_GT_GT] = ACTIONS(2812), + [anon_sym_AMP_GT] = ACTIONS(2812), + [anon_sym_AMP_GT_GT] = ACTIONS(2812), + [anon_sym_LT_AMP] = ACTIONS(2812), + [anon_sym_GT_AMP] = ACTIONS(2812), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2740), - [anon_sym_LF] = ACTIONS(2740), - [anon_sym_AMP] = ACTIONS(2740), + [anon_sym_SEMI] = ACTIONS(2784), + [anon_sym_LF] = ACTIONS(2784), + [anon_sym_AMP] = ACTIONS(2784), }, [1455] = { [aux_sym_concatenation_repeat1] = STATE(1458), - [sym_file_descriptor] = ACTIONS(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_file_descriptor] = ACTIONS(1239), + [sym__concat] = ACTIONS(2996), + [anon_sym_PIPE] = ACTIONS(4032), + [anon_sym_RPAREN] = ACTIONS(4032), + [anon_sym_SEMI_SEMI] = ACTIONS(4032), + [anon_sym_PIPE_AMP] = ACTIONS(4032), + [anon_sym_AMP_AMP] = ACTIONS(4032), + [anon_sym_PIPE_PIPE] = ACTIONS(4032), + [anon_sym_LT] = ACTIONS(4032), + [anon_sym_GT] = ACTIONS(4032), + [anon_sym_GT_GT] = ACTIONS(4032), + [anon_sym_AMP_GT] = ACTIONS(4032), + [anon_sym_AMP_GT_GT] = ACTIONS(4032), + [anon_sym_LT_AMP] = ACTIONS(4032), + [anon_sym_GT_AMP] = ACTIONS(4032), + [anon_sym_LT_LT] = ACTIONS(4032), + [anon_sym_LT_LT_DASH] = ACTIONS(4032), + [anon_sym_LT_LT_LT] = ACTIONS(4032), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3974), - [anon_sym_LF] = ACTIONS(3974), - [anon_sym_AMP] = ACTIONS(3974), + [anon_sym_SEMI] = ACTIONS(4032), + [anon_sym_LF] = ACTIONS(4032), + [anon_sym_AMP] = ACTIONS(4032), }, [1456] = { [aux_sym_concatenation_repeat1] = STATE(1458), - [sym_file_descriptor] = ACTIONS(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_file_descriptor] = ACTIONS(1243), + [sym__concat] = ACTIONS(2996), + [anon_sym_PIPE] = ACTIONS(4034), + [anon_sym_RPAREN] = ACTIONS(4034), + [anon_sym_SEMI_SEMI] = ACTIONS(4034), + [anon_sym_PIPE_AMP] = ACTIONS(4034), + [anon_sym_AMP_AMP] = ACTIONS(4034), + [anon_sym_PIPE_PIPE] = ACTIONS(4034), + [anon_sym_LT] = ACTIONS(4034), + [anon_sym_GT] = ACTIONS(4034), + [anon_sym_GT_GT] = ACTIONS(4034), + [anon_sym_AMP_GT] = ACTIONS(4034), + [anon_sym_AMP_GT_GT] = ACTIONS(4034), + [anon_sym_LT_AMP] = ACTIONS(4034), + [anon_sym_GT_AMP] = ACTIONS(4034), + [anon_sym_LT_LT] = ACTIONS(4034), + [anon_sym_LT_LT_DASH] = ACTIONS(4034), + [anon_sym_LT_LT_LT] = ACTIONS(4034), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3976), - [anon_sym_LF] = ACTIONS(3976), - [anon_sym_AMP] = ACTIONS(3976), + [anon_sym_SEMI] = ACTIONS(4034), + [anon_sym_LF] = ACTIONS(4034), + [anon_sym_AMP] = ACTIONS(4034), }, [1457] = { [sym_string] = STATE(2137), @@ -46325,73 +46546,73 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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__special_characters] = ACTIONS(4568), + [anon_sym_DQUOTE] = ACTIONS(1525), + [anon_sym_DOLLAR] = ACTIONS(1527), + [sym_raw_string] = ACTIONS(4570), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1531), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1533), + [anon_sym_BQUOTE] = ACTIONS(1535), + [anon_sym_LT_LPAREN] = ACTIONS(1537), + [anon_sym_GT_LPAREN] = ACTIONS(1537), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4506), + [sym_word] = ACTIONS(4568), }, [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_file_descriptor] = ACTIONS(788), + [sym__concat] = ACTIONS(2996), + [anon_sym_PIPE] = ACTIONS(790), + [anon_sym_RPAREN] = ACTIONS(790), + [anon_sym_SEMI_SEMI] = ACTIONS(790), + [anon_sym_PIPE_AMP] = ACTIONS(790), + [anon_sym_AMP_AMP] = ACTIONS(790), + [anon_sym_PIPE_PIPE] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(790), + [anon_sym_GT] = ACTIONS(790), + [anon_sym_GT_GT] = ACTIONS(790), + [anon_sym_AMP_GT] = ACTIONS(790), + [anon_sym_AMP_GT_GT] = ACTIONS(790), + [anon_sym_LT_AMP] = ACTIONS(790), + [anon_sym_GT_AMP] = ACTIONS(790), + [anon_sym_LT_LT] = ACTIONS(790), + [anon_sym_LT_LT_DASH] = ACTIONS(790), + [anon_sym_LT_LT_LT] = ACTIONS(790), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(774), - [anon_sym_LF] = ACTIONS(774), - [anon_sym_AMP] = ACTIONS(774), + [anon_sym_SEMI] = ACTIONS(790), + [anon_sym_LF] = ACTIONS(790), + [anon_sym_AMP] = ACTIONS(790), }, [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_file_descriptor] = ACTIONS(792), + [sym__concat] = ACTIONS(792), + [anon_sym_PIPE] = ACTIONS(794), + [anon_sym_RPAREN] = ACTIONS(794), + [anon_sym_SEMI_SEMI] = ACTIONS(794), + [anon_sym_PIPE_AMP] = ACTIONS(794), + [anon_sym_AMP_AMP] = ACTIONS(794), + [anon_sym_PIPE_PIPE] = ACTIONS(794), + [anon_sym_LT] = ACTIONS(794), + [anon_sym_GT] = ACTIONS(794), + [anon_sym_GT_GT] = ACTIONS(794), + [anon_sym_AMP_GT] = ACTIONS(794), + [anon_sym_AMP_GT_GT] = ACTIONS(794), + [anon_sym_LT_AMP] = ACTIONS(794), + [anon_sym_GT_AMP] = ACTIONS(794), + [anon_sym_LT_LT] = ACTIONS(794), + [anon_sym_LT_LT_DASH] = ACTIONS(794), + [anon_sym_LT_LT_LT] = ACTIONS(794), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(778), - [anon_sym_LF] = ACTIONS(778), - [anon_sym_AMP] = ACTIONS(778), + [anon_sym_SEMI] = ACTIONS(794), + [anon_sym_LF] = ACTIONS(794), + [anon_sym_AMP] = ACTIONS(794), }, [1460] = { [sym_simple_expansion] = STATE(134), [sym_expansion] = STATE(134), [sym_command_substitution] = STATE(134), [aux_sym_string_repeat1] = STATE(447), - [anon_sym_DQUOTE] = ACTIONS(4510), + [anon_sym_DQUOTE] = ACTIONS(4572), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -46400,80 +46621,80 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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_file_descriptor] = ACTIONS(824), + [sym__concat] = ACTIONS(824), + [anon_sym_PIPE] = ACTIONS(826), + [anon_sym_RPAREN] = ACTIONS(826), + [anon_sym_SEMI_SEMI] = ACTIONS(826), + [anon_sym_PIPE_AMP] = ACTIONS(826), + [anon_sym_AMP_AMP] = ACTIONS(826), + [anon_sym_PIPE_PIPE] = ACTIONS(826), + [anon_sym_LT] = ACTIONS(826), + [anon_sym_GT] = ACTIONS(826), + [anon_sym_GT_GT] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(826), + [anon_sym_AMP_GT_GT] = ACTIONS(826), + [anon_sym_LT_AMP] = ACTIONS(826), + [anon_sym_GT_AMP] = ACTIONS(826), + [anon_sym_LT_LT] = ACTIONS(826), + [anon_sym_LT_LT_DASH] = ACTIONS(826), + [anon_sym_LT_LT_LT] = ACTIONS(826), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(810), - [anon_sym_LF] = ACTIONS(810), - [anon_sym_AMP] = ACTIONS(810), + [anon_sym_SEMI] = ACTIONS(826), + [anon_sym_LF] = ACTIONS(826), + [anon_sym_AMP] = ACTIONS(826), }, [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_file_descriptor] = ACTIONS(828), + [sym__concat] = ACTIONS(828), + [anon_sym_PIPE] = ACTIONS(830), + [anon_sym_RPAREN] = ACTIONS(830), + [anon_sym_SEMI_SEMI] = ACTIONS(830), + [anon_sym_PIPE_AMP] = ACTIONS(830), + [anon_sym_AMP_AMP] = ACTIONS(830), + [anon_sym_PIPE_PIPE] = ACTIONS(830), + [anon_sym_LT] = ACTIONS(830), + [anon_sym_GT] = ACTIONS(830), + [anon_sym_GT_GT] = ACTIONS(830), + [anon_sym_AMP_GT] = ACTIONS(830), + [anon_sym_AMP_GT_GT] = ACTIONS(830), + [anon_sym_LT_AMP] = ACTIONS(830), + [anon_sym_GT_AMP] = ACTIONS(830), + [anon_sym_LT_LT] = ACTIONS(830), + [anon_sym_LT_LT_DASH] = ACTIONS(830), + [anon_sym_LT_LT_LT] = ACTIONS(830), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(814), - [anon_sym_LF] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(814), + [anon_sym_SEMI] = ACTIONS(830), + [anon_sym_LF] = ACTIONS(830), + [anon_sym_AMP] = ACTIONS(830), }, [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_file_descriptor] = ACTIONS(832), + [sym__concat] = ACTIONS(832), + [anon_sym_PIPE] = ACTIONS(834), + [anon_sym_RPAREN] = ACTIONS(834), + [anon_sym_SEMI_SEMI] = ACTIONS(834), + [anon_sym_PIPE_AMP] = ACTIONS(834), + [anon_sym_AMP_AMP] = ACTIONS(834), + [anon_sym_PIPE_PIPE] = ACTIONS(834), + [anon_sym_LT] = ACTIONS(834), + [anon_sym_GT] = ACTIONS(834), + [anon_sym_GT_GT] = ACTIONS(834), + [anon_sym_AMP_GT] = ACTIONS(834), + [anon_sym_AMP_GT_GT] = ACTIONS(834), + [anon_sym_LT_AMP] = ACTIONS(834), + [anon_sym_GT_AMP] = ACTIONS(834), + [anon_sym_LT_LT] = ACTIONS(834), + [anon_sym_LT_LT_DASH] = ACTIONS(834), + [anon_sym_LT_LT_LT] = ACTIONS(834), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(818), - [anon_sym_LF] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(818), + [anon_sym_SEMI] = ACTIONS(834), + [anon_sym_LF] = ACTIONS(834), + [anon_sym_AMP] = ACTIONS(834), }, [1464] = { - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(4512), + [anon_sym_LBRACK] = ACTIONS(836), + [anon_sym_EQ] = ACTIONS(4574), [sym_comment] = ACTIONS(56), }, [1465] = { @@ -46485,39 +46706,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4576), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(4578), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1466] = { [sym_subscript] = STATE(2147), - [sym_variable_name] = ACTIONS(4518), - [anon_sym_DOLLAR] = ACTIONS(4520), - [anon_sym_DASH] = ACTIONS(4520), + [sym_variable_name] = ACTIONS(4580), + [anon_sym_DOLLAR] = ACTIONS(4582), + [anon_sym_DASH] = ACTIONS(4582), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4584), + [anon_sym_STAR] = ACTIONS(4582), + [anon_sym_AT] = ACTIONS(4582), + [anon_sym_QMARK] = ACTIONS(4582), + [anon_sym_0] = ACTIONS(4586), + [anon_sym__] = ACTIONS(4586), }, [1467] = { [sym_concatenation] = STATE(451), @@ -46528,26 +46749,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4588), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(4590), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1468] = { [sym_concatenation] = STATE(451), @@ -46558,201 +46779,202 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4592), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(4594), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1469] = { - [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_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(4596), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), [sym_comment] = ACTIONS(56), }, [1470] = { - [sym_file_descriptor] = ACTIONS(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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(4596), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [1471] = { - [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), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_PIPE_AMP] = ACTIONS(1072), + [anon_sym_AMP_AMP] = ACTIONS(1074), + [anon_sym_PIPE_PIPE] = ACTIONS(1074), + [anon_sym_BQUOTE] = ACTIONS(4596), [sym_comment] = ACTIONS(56), }, [1472] = { - [sym_file_descriptor] = ACTIONS(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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_PIPE_AMP] = ACTIONS(1072), + [anon_sym_AMP_AMP] = ACTIONS(1074), + [anon_sym_PIPE_PIPE] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(4596), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [1473] = { - [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_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(4598), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), [sym_comment] = ACTIONS(56), }, [1474] = { - [sym_file_descriptor] = ACTIONS(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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(4598), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [1475] = { - [anon_sym_esac] = ACTIONS(4538), - [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), + [anon_sym_esac] = ACTIONS(4600), + [anon_sym_PIPE] = ACTIONS(4600), + [anon_sym_RPAREN] = ACTIONS(4600), + [anon_sym_SEMI_SEMI] = ACTIONS(4600), + [anon_sym_PIPE_AMP] = ACTIONS(4600), + [anon_sym_AMP_AMP] = ACTIONS(4600), + [anon_sym_PIPE_PIPE] = ACTIONS(4600), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4538), - [anon_sym_LF] = ACTIONS(4538), - [anon_sym_AMP] = ACTIONS(4538), + [anon_sym_SEMI] = ACTIONS(4600), + [anon_sym_LF] = ACTIONS(4600), + [anon_sym_AMP] = ACTIONS(4600), }, [1476] = { [sym_file_redirect] = STATE(207), [sym_heredoc_redirect] = STATE(207), [sym_herestring_redirect] = STATE(207), [aux_sym_while_statement_repeat1] = STATE(825), - [sym_file_descriptor] = ACTIONS(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_file_descriptor] = ACTIONS(556), + [anon_sym_PIPE] = ACTIONS(4094), + [anon_sym_RPAREN] = ACTIONS(4094), + [anon_sym_SEMI_SEMI] = ACTIONS(4094), + [anon_sym_PIPE_AMP] = ACTIONS(4094), + [anon_sym_AMP_AMP] = ACTIONS(4094), + [anon_sym_PIPE_PIPE] = ACTIONS(4094), + [anon_sym_LT] = ACTIONS(560), + [anon_sym_GT] = ACTIONS(560), + [anon_sym_GT_GT] = ACTIONS(560), + [anon_sym_AMP_GT] = ACTIONS(560), + [anon_sym_AMP_GT_GT] = ACTIONS(560), + [anon_sym_LT_AMP] = ACTIONS(560), + [anon_sym_GT_AMP] = ACTIONS(560), + [anon_sym_LT_LT] = ACTIONS(360), + [anon_sym_LT_LT_DASH] = ACTIONS(360), + [anon_sym_LT_LT_LT] = ACTIONS(562), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4036), - [anon_sym_LF] = ACTIONS(4036), - [anon_sym_AMP] = ACTIONS(4036), + [anon_sym_SEMI] = ACTIONS(4094), + [anon_sym_LF] = ACTIONS(4094), + [anon_sym_AMP] = ACTIONS(4094), }, [1477] = { - [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__concat] = ACTIONS(3283), + [anon_sym_EQ_TILDE] = ACTIONS(4602), + [anon_sym_EQ_EQ] = ACTIONS(4602), + [anon_sym_RBRACK] = ACTIONS(3283), + [sym__special_characters] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3283), + [anon_sym_DOLLAR] = ACTIONS(4602), + [sym_raw_string] = ACTIONS(3283), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3283), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3283), + [anon_sym_BQUOTE] = ACTIONS(3283), + [anon_sym_LT_LPAREN] = ACTIONS(3283), + [anon_sym_GT_LPAREN] = ACTIONS(3283), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3237), + [sym_word] = ACTIONS(3285), }, [1478] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(4542), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(4604), [sym_comment] = ACTIONS(56), }, [1479] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(4544), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(4606), [sym_comment] = ACTIONS(56), }, [1480] = { - [anon_sym_RBRACE] = ACTIONS(4544), + [anon_sym_RBRACE] = ACTIONS(4606), [sym_comment] = ACTIONS(56), }, [1481] = { @@ -46764,41 +46986,42 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4608), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1482] = { - [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__concat] = ACTIONS(3347), + [anon_sym_EQ_TILDE] = ACTIONS(4610), + [anon_sym_EQ_EQ] = ACTIONS(4610), + [anon_sym_RBRACK] = ACTIONS(3347), + [sym__special_characters] = ACTIONS(3349), + [anon_sym_DQUOTE] = ACTIONS(3347), + [anon_sym_DOLLAR] = ACTIONS(4610), + [sym_raw_string] = ACTIONS(3347), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3347), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3347), + [anon_sym_BQUOTE] = ACTIONS(3347), + [anon_sym_LT_LPAREN] = ACTIONS(3347), + [anon_sym_GT_LPAREN] = ACTIONS(3347), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3299), + [sym_word] = ACTIONS(3349), }, [1483] = { [sym_concatenation] = STATE(2162), @@ -46808,38 +47031,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4606), + [sym__special_characters] = ACTIONS(4612), + [anon_sym_DQUOTE] = ACTIONS(1952), + [anon_sym_DOLLAR] = ACTIONS(1954), + [sym_raw_string] = ACTIONS(4614), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), + [anon_sym_BQUOTE] = ACTIONS(1962), + [anon_sym_LT_LPAREN] = ACTIONS(1964), + [anon_sym_GT_LPAREN] = ACTIONS(1964), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4554), + [sym_word] = ACTIONS(4616), }, [1484] = { - [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__concat] = ACTIONS(3392), + [anon_sym_EQ_TILDE] = ACTIONS(4618), + [anon_sym_EQ_EQ] = ACTIONS(4618), + [anon_sym_RBRACK] = ACTIONS(3392), + [sym__special_characters] = ACTIONS(3394), + [anon_sym_DQUOTE] = ACTIONS(3392), + [anon_sym_DOLLAR] = ACTIONS(4618), + [sym_raw_string] = ACTIONS(3392), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3392), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3392), + [anon_sym_BQUOTE] = ACTIONS(3392), + [anon_sym_LT_LPAREN] = ACTIONS(3392), + [anon_sym_GT_LPAREN] = ACTIONS(3392), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3344), + [sym_word] = ACTIONS(3394), }, [1485] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4558), + [sym_regex_without_right_brace] = ACTIONS(4620), }, [1486] = { [sym_concatenation] = STATE(451), @@ -46850,45 +47074,46 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4622), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1487] = { - [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__concat] = ACTIONS(3400), + [anon_sym_EQ_TILDE] = ACTIONS(4624), + [anon_sym_EQ_EQ] = ACTIONS(4624), + [anon_sym_RBRACK] = ACTIONS(3400), + [sym__special_characters] = ACTIONS(3402), + [anon_sym_DQUOTE] = ACTIONS(3400), + [anon_sym_DOLLAR] = ACTIONS(4624), + [sym_raw_string] = ACTIONS(3400), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3400), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3400), + [anon_sym_BQUOTE] = ACTIONS(3400), + [anon_sym_LT_LPAREN] = ACTIONS(3400), + [anon_sym_GT_LPAREN] = ACTIONS(3400), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3352), + [sym_word] = ACTIONS(3402), }, [1488] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4564), + [sym_regex_without_right_brace] = ACTIONS(4626), }, [1489] = { [sym_concatenation] = STATE(451), @@ -46899,29 +47124,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4628), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1490] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4568), + [sym_regex_without_right_brace] = ACTIONS(4630), }, [1491] = { [sym_concatenation] = STATE(451), @@ -46932,25 +47157,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4606), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1492] = { [sym_concatenation] = STATE(451), @@ -46961,41 +47186,42 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4632), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1493] = { - [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__concat] = ACTIONS(3412), + [anon_sym_EQ_TILDE] = ACTIONS(4634), + [anon_sym_EQ_EQ] = ACTIONS(4634), + [anon_sym_RBRACK] = ACTIONS(3412), + [sym__special_characters] = ACTIONS(3414), + [anon_sym_DQUOTE] = ACTIONS(3412), + [anon_sym_DOLLAR] = ACTIONS(4634), + [sym_raw_string] = ACTIONS(3412), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3412), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3412), + [anon_sym_BQUOTE] = ACTIONS(3412), + [anon_sym_LT_LPAREN] = ACTIONS(3412), + [anon_sym_GT_LPAREN] = ACTIONS(3412), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3364), + [sym_word] = ACTIONS(3414), }, [1494] = { [sym_concatenation] = STATE(451), @@ -47006,56 +47232,57 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4636), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1495] = { - [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__concat] = ACTIONS(3283), + [anon_sym_EQ_TILDE] = ACTIONS(4602), + [anon_sym_EQ_EQ] = ACTIONS(4602), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3283), + [sym__special_characters] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3283), + [anon_sym_DOLLAR] = ACTIONS(4602), + [sym_raw_string] = ACTIONS(3283), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3283), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3283), + [anon_sym_BQUOTE] = ACTIONS(3283), + [anon_sym_LT_LPAREN] = ACTIONS(3283), + [anon_sym_GT_LPAREN] = ACTIONS(3283), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3237), + [sym_word] = ACTIONS(3285), }, [1496] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(4576), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(4638), [sym_comment] = ACTIONS(56), }, [1497] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(4578), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(4640), [sym_comment] = ACTIONS(56), }, [1498] = { - [anon_sym_RBRACE] = ACTIONS(4578), + [anon_sym_RBRACE] = ACTIONS(4640), [sym_comment] = ACTIONS(56), }, [1499] = { @@ -47067,41 +47294,42 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4642), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1500] = { - [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__concat] = ACTIONS(3347), + [anon_sym_EQ_TILDE] = ACTIONS(4610), + [anon_sym_EQ_EQ] = ACTIONS(4610), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3347), + [sym__special_characters] = ACTIONS(3349), + [anon_sym_DQUOTE] = ACTIONS(3347), + [anon_sym_DOLLAR] = ACTIONS(4610), + [sym_raw_string] = ACTIONS(3347), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3347), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3347), + [anon_sym_BQUOTE] = ACTIONS(3347), + [anon_sym_LT_LPAREN] = ACTIONS(3347), + [anon_sym_GT_LPAREN] = ACTIONS(3347), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3299), + [sym_word] = ACTIONS(3349), }, [1501] = { [sym_concatenation] = STATE(2178), @@ -47111,38 +47339,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4640), + [sym__special_characters] = ACTIONS(4644), + [anon_sym_DQUOTE] = ACTIONS(1952), + [anon_sym_DOLLAR] = ACTIONS(1954), + [sym_raw_string] = ACTIONS(4646), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), + [anon_sym_BQUOTE] = ACTIONS(1962), + [anon_sym_LT_LPAREN] = ACTIONS(1964), + [anon_sym_GT_LPAREN] = ACTIONS(1964), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4586), + [sym_word] = ACTIONS(4648), }, [1502] = { - [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__concat] = ACTIONS(3392), + [anon_sym_EQ_TILDE] = ACTIONS(4618), + [anon_sym_EQ_EQ] = ACTIONS(4618), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3392), + [sym__special_characters] = ACTIONS(3394), + [anon_sym_DQUOTE] = ACTIONS(3392), + [anon_sym_DOLLAR] = ACTIONS(4618), + [sym_raw_string] = ACTIONS(3392), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3392), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3392), + [anon_sym_BQUOTE] = ACTIONS(3392), + [anon_sym_LT_LPAREN] = ACTIONS(3392), + [anon_sym_GT_LPAREN] = ACTIONS(3392), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3344), + [sym_word] = ACTIONS(3394), }, [1503] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4588), + [sym_regex_without_right_brace] = ACTIONS(4650), }, [1504] = { [sym_concatenation] = STATE(451), @@ -47153,45 +47382,46 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4652), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1505] = { - [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__concat] = ACTIONS(3400), + [anon_sym_EQ_TILDE] = ACTIONS(4624), + [anon_sym_EQ_EQ] = ACTIONS(4624), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3400), + [sym__special_characters] = ACTIONS(3402), + [anon_sym_DQUOTE] = ACTIONS(3400), + [anon_sym_DOLLAR] = ACTIONS(4624), + [sym_raw_string] = ACTIONS(3400), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3400), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3400), + [anon_sym_BQUOTE] = ACTIONS(3400), + [anon_sym_LT_LPAREN] = ACTIONS(3400), + [anon_sym_GT_LPAREN] = ACTIONS(3400), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3352), + [sym_word] = ACTIONS(3402), }, [1506] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4592), + [sym_regex_without_right_brace] = ACTIONS(4654), }, [1507] = { [sym_concatenation] = STATE(451), @@ -47202,29 +47432,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4656), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1508] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4596), + [sym_regex_without_right_brace] = ACTIONS(4658), }, [1509] = { [sym_concatenation] = STATE(451), @@ -47235,25 +47465,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4640), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1510] = { [sym_concatenation] = STATE(451), @@ -47264,41 +47494,42 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4660), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1511] = { - [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__concat] = ACTIONS(3412), + [anon_sym_EQ_TILDE] = ACTIONS(4634), + [anon_sym_EQ_EQ] = ACTIONS(4634), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3412), + [sym__special_characters] = ACTIONS(3414), + [anon_sym_DQUOTE] = ACTIONS(3412), + [anon_sym_DOLLAR] = ACTIONS(4634), + [sym_raw_string] = ACTIONS(3412), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3412), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3412), + [anon_sym_BQUOTE] = ACTIONS(3412), + [anon_sym_LT_LPAREN] = ACTIONS(3412), + [anon_sym_GT_LPAREN] = ACTIONS(3412), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3364), + [sym_word] = ACTIONS(3414), }, [1512] = { [sym_concatenation] = STATE(451), @@ -47309,49 +47540,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4662), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1513] = { - [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_variable_name] = ACTIONS(2557), + [anon_sym_PIPE] = ACTIONS(2559), + [anon_sym_RPAREN] = ACTIONS(2559), + [anon_sym_SEMI_SEMI] = ACTIONS(2559), + [anon_sym_PIPE_AMP] = ACTIONS(2559), + [anon_sym_AMP_AMP] = ACTIONS(2559), + [anon_sym_PIPE_PIPE] = ACTIONS(2559), + [sym__special_characters] = ACTIONS(2559), + [anon_sym_DQUOTE] = ACTIONS(2559), + [anon_sym_DOLLAR] = ACTIONS(2559), + [sym_raw_string] = ACTIONS(2559), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2559), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2559), + [anon_sym_BQUOTE] = ACTIONS(2559), + [anon_sym_LT_LPAREN] = ACTIONS(2559), + [anon_sym_GT_LPAREN] = ACTIONS(2559), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2519), - [sym_word] = ACTIONS(2519), - [anon_sym_SEMI] = ACTIONS(2519), - [anon_sym_LF] = ACTIONS(2519), - [anon_sym_AMP] = ACTIONS(2519), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2559), + [sym_word] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2559), + [anon_sym_LF] = ACTIONS(2559), + [anon_sym_AMP] = ACTIONS(2559), }, [1514] = { [sym_concatenation] = STATE(660), @@ -47362,57 +47593,57 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RPAREN] = ACTIONS(4664), + [sym__special_characters] = ACTIONS(1283), + [anon_sym_DQUOTE] = ACTIONS(1285), + [anon_sym_DOLLAR] = ACTIONS(1287), + [sym_raw_string] = ACTIONS(1289), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1291), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1293), + [anon_sym_BQUOTE] = ACTIONS(1295), + [anon_sym_LT_LPAREN] = ACTIONS(1297), + [anon_sym_GT_LPAREN] = ACTIONS(1297), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1277), + [sym_word] = ACTIONS(1299), }, [1515] = { - [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__concat] = ACTIONS(3283), + [sym_variable_name] = ACTIONS(3283), + [anon_sym_PIPE] = ACTIONS(3285), + [anon_sym_SEMI_SEMI] = ACTIONS(3285), + [anon_sym_PIPE_AMP] = ACTIONS(3285), + [anon_sym_AMP_AMP] = ACTIONS(3285), + [anon_sym_PIPE_PIPE] = ACTIONS(3285), + [sym__special_characters] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3285), + [anon_sym_DOLLAR] = ACTIONS(3285), + [sym_raw_string] = ACTIONS(3285), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3285), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3285), + [anon_sym_BQUOTE] = ACTIONS(3285), + [anon_sym_LT_LPAREN] = ACTIONS(3285), + [anon_sym_GT_LPAREN] = ACTIONS(3285), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3237), - [sym_word] = ACTIONS(3237), - [anon_sym_SEMI] = ACTIONS(3237), - [anon_sym_LF] = ACTIONS(3237), - [anon_sym_AMP] = ACTIONS(3237), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3285), + [sym_word] = ACTIONS(3285), + [anon_sym_SEMI] = ACTIONS(3285), + [anon_sym_LF] = ACTIONS(3285), + [anon_sym_AMP] = ACTIONS(3285), }, [1516] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(4604), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(4666), [sym_comment] = ACTIONS(56), }, [1517] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(4606), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(4668), [sym_comment] = ACTIONS(56), }, [1518] = { - [anon_sym_RBRACE] = ACTIONS(4606), + [anon_sym_RBRACE] = ACTIONS(4668), [sym_comment] = ACTIONS(56), }, [1519] = { @@ -47424,49 +47655,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4670), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1520] = { - [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__concat] = ACTIONS(3347), + [sym_variable_name] = ACTIONS(3347), + [anon_sym_PIPE] = ACTIONS(3349), + [anon_sym_SEMI_SEMI] = ACTIONS(3349), + [anon_sym_PIPE_AMP] = ACTIONS(3349), + [anon_sym_AMP_AMP] = ACTIONS(3349), + [anon_sym_PIPE_PIPE] = ACTIONS(3349), + [sym__special_characters] = ACTIONS(3349), + [anon_sym_DQUOTE] = ACTIONS(3349), + [anon_sym_DOLLAR] = ACTIONS(3349), + [sym_raw_string] = ACTIONS(3349), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3349), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3349), + [anon_sym_BQUOTE] = ACTIONS(3349), + [anon_sym_LT_LPAREN] = ACTIONS(3349), + [anon_sym_GT_LPAREN] = ACTIONS(3349), [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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3349), + [sym_word] = ACTIONS(3349), + [anon_sym_SEMI] = ACTIONS(3349), + [anon_sym_LF] = ACTIONS(3349), + [anon_sym_AMP] = ACTIONS(3349), }, [1521] = { [sym_concatenation] = STATE(2195), @@ -47476,46 +47707,46 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4668), + [sym__special_characters] = ACTIONS(4672), + [anon_sym_DQUOTE] = ACTIONS(1952), + [anon_sym_DOLLAR] = ACTIONS(1954), + [sym_raw_string] = ACTIONS(4674), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), + [anon_sym_BQUOTE] = ACTIONS(1962), + [anon_sym_LT_LPAREN] = ACTIONS(1964), + [anon_sym_GT_LPAREN] = ACTIONS(1964), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4614), + [sym_word] = ACTIONS(4676), }, [1522] = { - [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__concat] = ACTIONS(3392), + [sym_variable_name] = ACTIONS(3392), + [anon_sym_PIPE] = ACTIONS(3394), + [anon_sym_SEMI_SEMI] = ACTIONS(3394), + [anon_sym_PIPE_AMP] = ACTIONS(3394), + [anon_sym_AMP_AMP] = ACTIONS(3394), + [anon_sym_PIPE_PIPE] = ACTIONS(3394), + [sym__special_characters] = ACTIONS(3394), + [anon_sym_DQUOTE] = ACTIONS(3394), + [anon_sym_DOLLAR] = ACTIONS(3394), + [sym_raw_string] = ACTIONS(3394), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3394), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3394), + [anon_sym_BQUOTE] = ACTIONS(3394), + [anon_sym_LT_LPAREN] = ACTIONS(3394), + [anon_sym_GT_LPAREN] = ACTIONS(3394), [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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3394), + [sym_word] = ACTIONS(3394), + [anon_sym_SEMI] = ACTIONS(3394), + [anon_sym_LF] = ACTIONS(3394), + [anon_sym_AMP] = ACTIONS(3394), }, [1523] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4616), + [sym_regex_without_right_brace] = ACTIONS(4678), }, [1524] = { [sym_concatenation] = STATE(451), @@ -47526,53 +47757,53 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4680), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1525] = { - [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__concat] = ACTIONS(3400), + [sym_variable_name] = ACTIONS(3400), + [anon_sym_PIPE] = ACTIONS(3402), + [anon_sym_SEMI_SEMI] = ACTIONS(3402), + [anon_sym_PIPE_AMP] = ACTIONS(3402), + [anon_sym_AMP_AMP] = ACTIONS(3402), + [anon_sym_PIPE_PIPE] = ACTIONS(3402), + [sym__special_characters] = ACTIONS(3402), + [anon_sym_DQUOTE] = ACTIONS(3402), + [anon_sym_DOLLAR] = ACTIONS(3402), + [sym_raw_string] = ACTIONS(3402), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3402), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3402), + [anon_sym_BQUOTE] = ACTIONS(3402), + [anon_sym_LT_LPAREN] = ACTIONS(3402), + [anon_sym_GT_LPAREN] = ACTIONS(3402), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3352), - [sym_word] = ACTIONS(3352), - [anon_sym_SEMI] = ACTIONS(3352), - [anon_sym_LF] = ACTIONS(3352), - [anon_sym_AMP] = ACTIONS(3352), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3402), + [sym_word] = ACTIONS(3402), + [anon_sym_SEMI] = ACTIONS(3402), + [anon_sym_LF] = ACTIONS(3402), + [anon_sym_AMP] = ACTIONS(3402), }, [1526] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4620), + [sym_regex_without_right_brace] = ACTIONS(4682), }, [1527] = { [sym_concatenation] = STATE(451), @@ -47583,29 +47814,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4684), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1528] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4624), + [sym_regex_without_right_brace] = ACTIONS(4686), }, [1529] = { [sym_concatenation] = STATE(451), @@ -47616,25 +47847,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4668), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1530] = { [sym_concatenation] = STATE(451), @@ -47645,49 +47876,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4688), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1531] = { - [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__concat] = ACTIONS(3412), + [sym_variable_name] = ACTIONS(3412), + [anon_sym_PIPE] = ACTIONS(3414), + [anon_sym_SEMI_SEMI] = ACTIONS(3414), + [anon_sym_PIPE_AMP] = ACTIONS(3414), + [anon_sym_AMP_AMP] = ACTIONS(3414), + [anon_sym_PIPE_PIPE] = ACTIONS(3414), + [sym__special_characters] = ACTIONS(3414), + [anon_sym_DQUOTE] = ACTIONS(3414), + [anon_sym_DOLLAR] = ACTIONS(3414), + [sym_raw_string] = ACTIONS(3414), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3414), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3414), + [anon_sym_BQUOTE] = ACTIONS(3414), + [anon_sym_LT_LPAREN] = ACTIONS(3414), + [anon_sym_GT_LPAREN] = ACTIONS(3414), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3364), - [sym_word] = ACTIONS(3364), - [anon_sym_SEMI] = ACTIONS(3364), - [anon_sym_LF] = ACTIONS(3364), - [anon_sym_AMP] = ACTIONS(3364), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3414), + [sym_word] = ACTIONS(3414), + [anon_sym_SEMI] = ACTIONS(3414), + [anon_sym_LF] = ACTIONS(3414), + [anon_sym_AMP] = ACTIONS(3414), }, [1532] = { [sym_concatenation] = STATE(451), @@ -47698,63 +47929,63 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4690), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1533] = { - [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__concat] = ACTIONS(3283), + [anon_sym_PIPE] = ACTIONS(3285), + [anon_sym_SEMI_SEMI] = ACTIONS(3285), + [anon_sym_PIPE_AMP] = ACTIONS(3285), + [anon_sym_AMP_AMP] = ACTIONS(3285), + [anon_sym_PIPE_PIPE] = ACTIONS(3285), + [sym__special_characters] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3285), + [anon_sym_DOLLAR] = ACTIONS(3285), + [sym_raw_string] = ACTIONS(3285), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3285), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3285), + [anon_sym_BQUOTE] = ACTIONS(3285), + [anon_sym_LT_LPAREN] = ACTIONS(3285), + [anon_sym_GT_LPAREN] = ACTIONS(3285), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3237), - [sym_word] = ACTIONS(3237), - [anon_sym_SEMI] = ACTIONS(3237), - [anon_sym_LF] = ACTIONS(3237), - [anon_sym_AMP] = ACTIONS(3237), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3285), + [sym_word] = ACTIONS(3285), + [anon_sym_SEMI] = ACTIONS(3285), + [anon_sym_LF] = ACTIONS(3285), + [anon_sym_AMP] = ACTIONS(3285), }, [1534] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(4630), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(4692), [sym_comment] = ACTIONS(56), }, [1535] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(4632), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(4694), [sym_comment] = ACTIONS(56), }, [1536] = { - [anon_sym_RBRACE] = ACTIONS(4632), + [anon_sym_RBRACE] = ACTIONS(4694), [sym_comment] = ACTIONS(56), }, [1537] = { @@ -47766,48 +47997,48 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4696), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1538] = { - [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__concat] = ACTIONS(3347), + [anon_sym_PIPE] = ACTIONS(3349), + [anon_sym_SEMI_SEMI] = ACTIONS(3349), + [anon_sym_PIPE_AMP] = ACTIONS(3349), + [anon_sym_AMP_AMP] = ACTIONS(3349), + [anon_sym_PIPE_PIPE] = ACTIONS(3349), + [sym__special_characters] = ACTIONS(3349), + [anon_sym_DQUOTE] = ACTIONS(3349), + [anon_sym_DOLLAR] = ACTIONS(3349), + [sym_raw_string] = ACTIONS(3349), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3349), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3349), + [anon_sym_BQUOTE] = ACTIONS(3349), + [anon_sym_LT_LPAREN] = ACTIONS(3349), + [anon_sym_GT_LPAREN] = ACTIONS(3349), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3299), - [sym_word] = ACTIONS(3299), - [anon_sym_SEMI] = ACTIONS(3299), - [anon_sym_LF] = ACTIONS(3299), - [anon_sym_AMP] = ACTIONS(3299), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3349), + [sym_word] = ACTIONS(3349), + [anon_sym_SEMI] = ACTIONS(3349), + [anon_sym_LF] = ACTIONS(3349), + [anon_sym_AMP] = ACTIONS(3349), }, [1539] = { [sym_concatenation] = STATE(2211), @@ -47817,45 +48048,45 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4694), + [sym__special_characters] = ACTIONS(4698), + [anon_sym_DQUOTE] = ACTIONS(1952), + [anon_sym_DOLLAR] = ACTIONS(1954), + [sym_raw_string] = ACTIONS(4700), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), + [anon_sym_BQUOTE] = ACTIONS(1962), + [anon_sym_LT_LPAREN] = ACTIONS(1964), + [anon_sym_GT_LPAREN] = ACTIONS(1964), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4640), + [sym_word] = ACTIONS(4702), }, [1540] = { - [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__concat] = ACTIONS(3392), + [anon_sym_PIPE] = ACTIONS(3394), + [anon_sym_SEMI_SEMI] = ACTIONS(3394), + [anon_sym_PIPE_AMP] = ACTIONS(3394), + [anon_sym_AMP_AMP] = ACTIONS(3394), + [anon_sym_PIPE_PIPE] = ACTIONS(3394), + [sym__special_characters] = ACTIONS(3394), + [anon_sym_DQUOTE] = ACTIONS(3394), + [anon_sym_DOLLAR] = ACTIONS(3394), + [sym_raw_string] = ACTIONS(3394), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3394), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3394), + [anon_sym_BQUOTE] = ACTIONS(3394), + [anon_sym_LT_LPAREN] = ACTIONS(3394), + [anon_sym_GT_LPAREN] = ACTIONS(3394), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3344), - [sym_word] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(3344), - [anon_sym_LF] = ACTIONS(3344), - [anon_sym_AMP] = ACTIONS(3344), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3394), + [sym_word] = ACTIONS(3394), + [anon_sym_SEMI] = ACTIONS(3394), + [anon_sym_LF] = ACTIONS(3394), + [anon_sym_AMP] = ACTIONS(3394), }, [1541] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4642), + [sym_regex_without_right_brace] = ACTIONS(4704), }, [1542] = { [sym_concatenation] = STATE(451), @@ -47866,52 +48097,52 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4706), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1543] = { - [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__concat] = ACTIONS(3400), + [anon_sym_PIPE] = ACTIONS(3402), + [anon_sym_SEMI_SEMI] = ACTIONS(3402), + [anon_sym_PIPE_AMP] = ACTIONS(3402), + [anon_sym_AMP_AMP] = ACTIONS(3402), + [anon_sym_PIPE_PIPE] = ACTIONS(3402), + [sym__special_characters] = ACTIONS(3402), + [anon_sym_DQUOTE] = ACTIONS(3402), + [anon_sym_DOLLAR] = ACTIONS(3402), + [sym_raw_string] = ACTIONS(3402), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3402), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3402), + [anon_sym_BQUOTE] = ACTIONS(3402), + [anon_sym_LT_LPAREN] = ACTIONS(3402), + [anon_sym_GT_LPAREN] = ACTIONS(3402), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3352), - [sym_word] = ACTIONS(3352), - [anon_sym_SEMI] = ACTIONS(3352), - [anon_sym_LF] = ACTIONS(3352), - [anon_sym_AMP] = ACTIONS(3352), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3402), + [sym_word] = ACTIONS(3402), + [anon_sym_SEMI] = ACTIONS(3402), + [anon_sym_LF] = ACTIONS(3402), + [anon_sym_AMP] = ACTIONS(3402), }, [1544] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4646), + [sym_regex_without_right_brace] = ACTIONS(4708), }, [1545] = { [sym_concatenation] = STATE(451), @@ -47922,29 +48153,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4710), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1546] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4650), + [sym_regex_without_right_brace] = ACTIONS(4712), }, [1547] = { [sym_concatenation] = STATE(451), @@ -47955,25 +48186,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4694), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1548] = { [sym_concatenation] = STATE(451), @@ -47984,48 +48215,48 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4714), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1549] = { - [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__concat] = ACTIONS(3412), + [anon_sym_PIPE] = ACTIONS(3414), + [anon_sym_SEMI_SEMI] = ACTIONS(3414), + [anon_sym_PIPE_AMP] = ACTIONS(3414), + [anon_sym_AMP_AMP] = ACTIONS(3414), + [anon_sym_PIPE_PIPE] = ACTIONS(3414), + [sym__special_characters] = ACTIONS(3414), + [anon_sym_DQUOTE] = ACTIONS(3414), + [anon_sym_DOLLAR] = ACTIONS(3414), + [sym_raw_string] = ACTIONS(3414), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3414), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3414), + [anon_sym_BQUOTE] = ACTIONS(3414), + [anon_sym_LT_LPAREN] = ACTIONS(3414), + [anon_sym_GT_LPAREN] = ACTIONS(3414), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3364), - [sym_word] = ACTIONS(3364), - [anon_sym_SEMI] = ACTIONS(3364), - [anon_sym_LF] = ACTIONS(3364), - [anon_sym_AMP] = ACTIONS(3364), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3414), + [sym_word] = ACTIONS(3414), + [anon_sym_SEMI] = ACTIONS(3414), + [anon_sym_LF] = ACTIONS(3414), + [anon_sym_AMP] = ACTIONS(3414), }, [1550] = { [sym_concatenation] = STATE(451), @@ -48036,63 +48267,63 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4716), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1551] = { - [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_file_descriptor] = ACTIONS(3283), + [sym__concat] = ACTIONS(3283), + [sym_variable_name] = ACTIONS(3283), + [anon_sym_LT] = ACTIONS(4602), + [anon_sym_GT] = ACTIONS(4602), + [anon_sym_GT_GT] = ACTIONS(3283), + [anon_sym_AMP_GT] = ACTIONS(4602), + [anon_sym_AMP_GT_GT] = ACTIONS(3283), + [anon_sym_LT_AMP] = ACTIONS(3283), + [anon_sym_GT_AMP] = ACTIONS(3283), + [sym__special_characters] = ACTIONS(4602), + [anon_sym_DQUOTE] = ACTIONS(3283), + [anon_sym_DOLLAR] = ACTIONS(4602), + [sym_raw_string] = ACTIONS(3283), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3283), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3283), + [anon_sym_BQUOTE] = ACTIONS(3283), + [anon_sym_LT_LPAREN] = ACTIONS(3283), + [anon_sym_GT_LPAREN] = ACTIONS(3283), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4540), + [sym_word] = ACTIONS(4602), }, [1552] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(4656), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(4718), [sym_comment] = ACTIONS(56), }, [1553] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(4658), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(4720), [sym_comment] = ACTIONS(56), }, [1554] = { - [anon_sym_RBRACE] = ACTIONS(4658), + [anon_sym_RBRACE] = ACTIONS(4720), [sym_comment] = ACTIONS(56), }, [1555] = { @@ -48104,48 +48335,48 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4722), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1556] = { - [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_file_descriptor] = ACTIONS(3347), + [sym__concat] = ACTIONS(3347), + [sym_variable_name] = ACTIONS(3347), + [anon_sym_LT] = ACTIONS(4610), + [anon_sym_GT] = ACTIONS(4610), + [anon_sym_GT_GT] = ACTIONS(3347), + [anon_sym_AMP_GT] = ACTIONS(4610), + [anon_sym_AMP_GT_GT] = ACTIONS(3347), + [anon_sym_LT_AMP] = ACTIONS(3347), + [anon_sym_GT_AMP] = ACTIONS(3347), + [sym__special_characters] = ACTIONS(4610), + [anon_sym_DQUOTE] = ACTIONS(3347), + [anon_sym_DOLLAR] = ACTIONS(4610), + [sym_raw_string] = ACTIONS(3347), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3347), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3347), + [anon_sym_BQUOTE] = ACTIONS(3347), + [anon_sym_LT_LPAREN] = ACTIONS(3347), + [anon_sym_GT_LPAREN] = ACTIONS(3347), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4548), + [sym_word] = ACTIONS(4610), }, [1557] = { [sym_concatenation] = STATE(2227), @@ -48155,45 +48386,45 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4720), + [sym__special_characters] = ACTIONS(4724), + [anon_sym_DQUOTE] = ACTIONS(1952), + [anon_sym_DOLLAR] = ACTIONS(1954), + [sym_raw_string] = ACTIONS(4726), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), + [anon_sym_BQUOTE] = ACTIONS(1962), + [anon_sym_LT_LPAREN] = ACTIONS(1964), + [anon_sym_GT_LPAREN] = ACTIONS(1964), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4666), + [sym_word] = ACTIONS(4728), }, [1558] = { - [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_file_descriptor] = ACTIONS(3392), + [sym__concat] = ACTIONS(3392), + [sym_variable_name] = ACTIONS(3392), + [anon_sym_LT] = ACTIONS(4618), + [anon_sym_GT] = ACTIONS(4618), + [anon_sym_GT_GT] = ACTIONS(3392), + [anon_sym_AMP_GT] = ACTIONS(4618), + [anon_sym_AMP_GT_GT] = ACTIONS(3392), + [anon_sym_LT_AMP] = ACTIONS(3392), + [anon_sym_GT_AMP] = ACTIONS(3392), + [sym__special_characters] = ACTIONS(4618), + [anon_sym_DQUOTE] = ACTIONS(3392), + [anon_sym_DOLLAR] = ACTIONS(4618), + [sym_raw_string] = ACTIONS(3392), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3392), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3392), + [anon_sym_BQUOTE] = ACTIONS(3392), + [anon_sym_LT_LPAREN] = ACTIONS(3392), + [anon_sym_GT_LPAREN] = ACTIONS(3392), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4556), + [sym_word] = ACTIONS(4618), }, [1559] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4668), + [sym_regex_without_right_brace] = ACTIONS(4730), }, [1560] = { [sym_concatenation] = STATE(451), @@ -48204,52 +48435,52 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4732), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1561] = { - [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_file_descriptor] = ACTIONS(3400), + [sym__concat] = ACTIONS(3400), + [sym_variable_name] = ACTIONS(3400), + [anon_sym_LT] = ACTIONS(4624), + [anon_sym_GT] = ACTIONS(4624), + [anon_sym_GT_GT] = ACTIONS(3400), + [anon_sym_AMP_GT] = ACTIONS(4624), + [anon_sym_AMP_GT_GT] = ACTIONS(3400), + [anon_sym_LT_AMP] = ACTIONS(3400), + [anon_sym_GT_AMP] = ACTIONS(3400), + [sym__special_characters] = ACTIONS(4624), + [anon_sym_DQUOTE] = ACTIONS(3400), + [anon_sym_DOLLAR] = ACTIONS(4624), + [sym_raw_string] = ACTIONS(3400), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3400), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3400), + [anon_sym_BQUOTE] = ACTIONS(3400), + [anon_sym_LT_LPAREN] = ACTIONS(3400), + [anon_sym_GT_LPAREN] = ACTIONS(3400), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4562), + [sym_word] = ACTIONS(4624), }, [1562] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4672), + [sym_regex_without_right_brace] = ACTIONS(4734), }, [1563] = { [sym_concatenation] = STATE(451), @@ -48260,29 +48491,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4736), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1564] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4676), + [sym_regex_without_right_brace] = ACTIONS(4738), }, [1565] = { [sym_concatenation] = STATE(451), @@ -48293,25 +48524,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4720), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1566] = { [sym_concatenation] = STATE(451), @@ -48322,48 +48553,48 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4740), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1567] = { - [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_file_descriptor] = ACTIONS(3412), + [sym__concat] = ACTIONS(3412), + [sym_variable_name] = ACTIONS(3412), + [anon_sym_LT] = ACTIONS(4634), + [anon_sym_GT] = ACTIONS(4634), + [anon_sym_GT_GT] = ACTIONS(3412), + [anon_sym_AMP_GT] = ACTIONS(4634), + [anon_sym_AMP_GT_GT] = ACTIONS(3412), + [anon_sym_LT_AMP] = ACTIONS(3412), + [anon_sym_GT_AMP] = ACTIONS(3412), + [sym__special_characters] = ACTIONS(4634), + [anon_sym_DQUOTE] = ACTIONS(3412), + [anon_sym_DOLLAR] = ACTIONS(4634), + [sym_raw_string] = ACTIONS(3412), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3412), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3412), + [anon_sym_BQUOTE] = ACTIONS(3412), + [anon_sym_LT_LPAREN] = ACTIONS(3412), + [anon_sym_GT_LPAREN] = ACTIONS(3412), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4572), + [sym_word] = ACTIONS(4634), }, [1568] = { [sym_concatenation] = STATE(451), @@ -48374,50 +48605,50 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4742), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1569] = { - [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__concat] = ACTIONS(3283), + [anon_sym_DQUOTE] = ACTIONS(3285), + [anon_sym_DOLLAR] = ACTIONS(3285), + [sym__string_content] = ACTIONS(4602), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3285), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3285), + [anon_sym_BQUOTE] = ACTIONS(3285), [sym_comment] = ACTIONS(182), }, [1570] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(4682), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(4744), [sym_comment] = ACTIONS(56), }, [1571] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(4684), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(4746), [sym_comment] = ACTIONS(56), }, [1572] = { - [anon_sym_RBRACE] = ACTIONS(4684), + [anon_sym_RBRACE] = ACTIONS(4746), [sym_comment] = ACTIONS(56), }, [1573] = { @@ -48429,34 +48660,34 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4748), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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__concat] = ACTIONS(3347), + [anon_sym_DQUOTE] = ACTIONS(3349), + [anon_sym_DOLLAR] = ACTIONS(3349), + [sym__string_content] = ACTIONS(4610), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3349), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3349), + [anon_sym_BQUOTE] = ACTIONS(3349), [sym_comment] = ACTIONS(182), }, [1575] = { @@ -48467,32 +48698,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(2242), [sym_command_substitution] = STATE(2242), [sym_process_substitution] = STATE(2242), - [anon_sym_RBRACE] = ACTIONS(4684), - [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), + [anon_sym_RBRACE] = ACTIONS(4746), + [sym__special_characters] = ACTIONS(4750), + [anon_sym_DQUOTE] = ACTIONS(1952), + [anon_sym_DOLLAR] = ACTIONS(1954), + [sym_raw_string] = ACTIONS(4752), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), + [anon_sym_BQUOTE] = ACTIONS(1962), + [anon_sym_LT_LPAREN] = ACTIONS(1964), + [anon_sym_GT_LPAREN] = ACTIONS(1964), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4692), + [sym_word] = ACTIONS(4754), }, [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__concat] = ACTIONS(3392), + [anon_sym_DQUOTE] = ACTIONS(3394), + [anon_sym_DOLLAR] = ACTIONS(3394), + [sym__string_content] = ACTIONS(4618), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3394), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3394), + [anon_sym_BQUOTE] = ACTIONS(3394), [sym_comment] = ACTIONS(182), }, [1577] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4694), + [sym_regex_without_right_brace] = ACTIONS(4756), }, [1578] = { [sym_concatenation] = STATE(451), @@ -48503,39 +48734,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4758), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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__concat] = ACTIONS(3400), + [anon_sym_DQUOTE] = ACTIONS(3402), + [anon_sym_DOLLAR] = ACTIONS(3402), + [sym__string_content] = ACTIONS(4624), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3402), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3402), + [anon_sym_BQUOTE] = ACTIONS(3402), [sym_comment] = ACTIONS(182), }, [1580] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4698), + [sym_regex_without_right_brace] = ACTIONS(4760), }, [1581] = { [sym_concatenation] = STATE(451), @@ -48546,29 +48777,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4762), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1582] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4702), + [sym_regex_without_right_brace] = ACTIONS(4764), }, [1583] = { [sym_concatenation] = STATE(451), @@ -48579,25 +48810,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(4746), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1584] = { [sym_concatenation] = STATE(451), @@ -48608,34 +48839,34 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4766), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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__concat] = ACTIONS(3412), + [anon_sym_DQUOTE] = ACTIONS(3414), + [anon_sym_DOLLAR] = ACTIONS(3414), + [sym__string_content] = ACTIONS(4634), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3414), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3414), + [anon_sym_BQUOTE] = ACTIONS(3414), [sym_comment] = ACTIONS(182), }, [1586] = { @@ -48647,25 +48878,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4768), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1587] = { [sym_string] = STATE(1227), @@ -48674,41 +48905,41 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACK] = ACTIONS(4770), + [sym__special_characters] = ACTIONS(2511), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_DOLLAR] = ACTIONS(404), + [sym_raw_string] = ACTIONS(2513), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(408), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(410), + [anon_sym_BQUOTE] = ACTIONS(412), + [anon_sym_LT_LPAREN] = ACTIONS(414), + [anon_sym_GT_LPAREN] = ACTIONS(414), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2475), + [sym_word] = ACTIONS(2515), }, [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__concat] = ACTIONS(4772), + [anon_sym_RBRACE] = ACTIONS(2519), + [anon_sym_EQ] = ACTIONS(4774), + [sym__special_characters] = ACTIONS(4776), + [anon_sym_DQUOTE] = ACTIONS(2519), + [anon_sym_DOLLAR] = ACTIONS(4774), + [sym_raw_string] = ACTIONS(2519), + [anon_sym_POUND] = ACTIONS(2519), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2519), + [aux_sym_SLASH] = ACTIONS(2519), + [anon_sym_COLON] = ACTIONS(4774), + [anon_sym_COLON_QMARK] = ACTIONS(4774), + [anon_sym_COLON_DASH] = ACTIONS(4774), + [anon_sym_PERCENT] = ACTIONS(4774), + [anon_sym_DASH] = ACTIONS(4774), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2519), + [anon_sym_BQUOTE] = ACTIONS(2519), + [anon_sym_LT_LPAREN] = ACTIONS(2519), + [anon_sym_GT_LPAREN] = ACTIONS(2519), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4714), + [sym_word] = ACTIONS(4776), }, [1589] = { [sym_string] = STATE(1227), @@ -48717,44 +48948,44 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACK] = ACTIONS(4778), + [sym__special_characters] = ACTIONS(2511), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_DOLLAR] = ACTIONS(404), + [sym_raw_string] = ACTIONS(2513), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(408), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(410), + [anon_sym_BQUOTE] = ACTIONS(412), + [anon_sym_LT_LPAREN] = ACTIONS(414), + [anon_sym_GT_LPAREN] = ACTIONS(414), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2475), + [sym_word] = ACTIONS(2515), }, [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__concat] = ACTIONS(4780), + [anon_sym_RBRACE] = ACTIONS(2529), + [anon_sym_EQ] = ACTIONS(4782), + [sym__special_characters] = ACTIONS(4784), + [anon_sym_DQUOTE] = ACTIONS(2529), + [anon_sym_DOLLAR] = ACTIONS(4782), + [sym_raw_string] = ACTIONS(2529), + [anon_sym_POUND] = ACTIONS(2529), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2529), + [aux_sym_SLASH] = ACTIONS(2529), + [anon_sym_COLON] = ACTIONS(4782), + [anon_sym_COLON_QMARK] = ACTIONS(4782), + [anon_sym_COLON_DASH] = ACTIONS(4782), + [anon_sym_PERCENT] = ACTIONS(4782), + [anon_sym_DASH] = ACTIONS(4782), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2529), + [anon_sym_BQUOTE] = ACTIONS(2529), + [anon_sym_LT_LPAREN] = ACTIONS(2529), + [anon_sym_GT_LPAREN] = ACTIONS(2529), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4722), + [sym_word] = ACTIONS(4784), }, [1591] = { - [anon_sym_RBRACK] = ACTIONS(4716), + [anon_sym_RBRACK] = ACTIONS(4778), [sym_comment] = ACTIONS(56), }, [1592] = { @@ -48764,61 +48995,62 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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__special_characters] = ACTIONS(4786), + [anon_sym_DQUOTE] = ACTIONS(1952), + [anon_sym_DOLLAR] = ACTIONS(1954), + [sym_raw_string] = ACTIONS(4788), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), + [anon_sym_BQUOTE] = ACTIONS(1962), + [anon_sym_LT_LPAREN] = ACTIONS(1964), + [anon_sym_GT_LPAREN] = ACTIONS(1964), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4724), + [sym_word] = ACTIONS(4786), }, [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_file_descriptor] = ACTIONS(4790), + [sym__concat] = ACTIONS(4790), + [anon_sym_PIPE] = ACTIONS(4792), + [anon_sym_SEMI_SEMI] = ACTIONS(4792), + [anon_sym_PIPE_AMP] = ACTIONS(4792), + [anon_sym_AMP_AMP] = ACTIONS(4792), + [anon_sym_PIPE_PIPE] = ACTIONS(4792), + [anon_sym_EQ_TILDE] = ACTIONS(4792), + [anon_sym_EQ_EQ] = ACTIONS(4792), + [anon_sym_LT] = ACTIONS(4792), + [anon_sym_GT] = ACTIONS(4792), + [anon_sym_GT_GT] = ACTIONS(4792), + [anon_sym_AMP_GT] = ACTIONS(4792), + [anon_sym_AMP_GT_GT] = ACTIONS(4792), + [anon_sym_LT_AMP] = ACTIONS(4792), + [anon_sym_GT_AMP] = ACTIONS(4792), + [anon_sym_LT_LT] = ACTIONS(4792), + [anon_sym_LT_LT_DASH] = ACTIONS(4792), + [anon_sym_LT_LT_LT] = ACTIONS(4792), + [sym__special_characters] = ACTIONS(4792), + [anon_sym_DQUOTE] = ACTIONS(4792), + [anon_sym_DOLLAR] = ACTIONS(4792), + [sym_raw_string] = ACTIONS(4792), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4792), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4792), + [anon_sym_BQUOTE] = ACTIONS(4792), + [anon_sym_LT_LPAREN] = ACTIONS(4792), + [anon_sym_GT_LPAREN] = ACTIONS(4792), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4730), - [anon_sym_SEMI] = ACTIONS(4730), - [anon_sym_LF] = ACTIONS(4730), - [anon_sym_AMP] = ACTIONS(4730), + [sym_word] = ACTIONS(4792), + [anon_sym_SEMI] = ACTIONS(4792), + [anon_sym_LF] = ACTIONS(4792), + [anon_sym_AMP] = ACTIONS(4792), }, [1594] = { [aux_sym_concatenation_repeat1] = STATE(2258), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(772), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(788), [sym_comment] = ACTIONS(56), }, [1595] = { - [sym__concat] = ACTIONS(776), - [anon_sym_RBRACE] = ACTIONS(776), + [sym__concat] = ACTIONS(792), + [anon_sym_RBRACE] = ACTIONS(792), [sym_comment] = ACTIONS(56), }, [1596] = { @@ -48826,7 +49058,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(134), [sym_command_substitution] = STATE(134), [aux_sym_string_repeat1] = STATE(447), - [anon_sym_DQUOTE] = ACTIONS(4732), + [anon_sym_DQUOTE] = ACTIONS(4794), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -48835,57 +49067,58 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(182), }, [1597] = { - [sym__concat] = ACTIONS(808), - [anon_sym_RBRACE] = ACTIONS(808), + [sym__concat] = ACTIONS(824), + [anon_sym_RBRACE] = ACTIONS(824), [sym_comment] = ACTIONS(56), }, [1598] = { - [sym__concat] = ACTIONS(812), - [anon_sym_RBRACE] = ACTIONS(812), + [sym__concat] = ACTIONS(828), + [anon_sym_RBRACE] = ACTIONS(828), [sym_comment] = ACTIONS(56), }, [1599] = { - [sym__concat] = ACTIONS(816), - [anon_sym_RBRACE] = ACTIONS(816), + [sym__concat] = ACTIONS(832), + [anon_sym_RBRACE] = ACTIONS(832), [sym_comment] = ACTIONS(56), }, [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_file_descriptor] = ACTIONS(4796), + [sym__concat] = ACTIONS(4796), + [anon_sym_PIPE] = ACTIONS(4798), + [anon_sym_SEMI_SEMI] = ACTIONS(4798), + [anon_sym_PIPE_AMP] = ACTIONS(4798), + [anon_sym_AMP_AMP] = ACTIONS(4798), + [anon_sym_PIPE_PIPE] = ACTIONS(4798), + [anon_sym_EQ_TILDE] = ACTIONS(4798), + [anon_sym_EQ_EQ] = ACTIONS(4798), + [anon_sym_LT] = ACTIONS(4798), + [anon_sym_GT] = ACTIONS(4798), + [anon_sym_GT_GT] = ACTIONS(4798), + [anon_sym_AMP_GT] = ACTIONS(4798), + [anon_sym_AMP_GT_GT] = ACTIONS(4798), + [anon_sym_LT_AMP] = ACTIONS(4798), + [anon_sym_GT_AMP] = ACTIONS(4798), + [anon_sym_LT_LT] = ACTIONS(4798), + [anon_sym_LT_LT_DASH] = ACTIONS(4798), + [anon_sym_LT_LT_LT] = ACTIONS(4798), + [sym__special_characters] = ACTIONS(4798), + [anon_sym_DQUOTE] = ACTIONS(4798), + [anon_sym_DOLLAR] = ACTIONS(4798), + [sym_raw_string] = ACTIONS(4798), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4798), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4798), + [anon_sym_BQUOTE] = ACTIONS(4798), + [anon_sym_LT_LPAREN] = ACTIONS(4798), + [anon_sym_GT_LPAREN] = ACTIONS(4798), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4736), - [anon_sym_SEMI] = ACTIONS(4736), - [anon_sym_LF] = ACTIONS(4736), - [anon_sym_AMP] = ACTIONS(4736), + [sym_word] = ACTIONS(4798), + [anon_sym_SEMI] = ACTIONS(4798), + [anon_sym_LF] = ACTIONS(4798), + [anon_sym_AMP] = ACTIONS(4798), }, [1601] = { - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(4738), + [anon_sym_LBRACK] = ACTIONS(836), + [anon_sym_EQ] = ACTIONS(4800), [sym_comment] = ACTIONS(56), }, [1602] = { @@ -48897,39 +49130,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(2263), - [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), + [anon_sym_RBRACE] = ACTIONS(4802), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(4804), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1603] = { [sym_subscript] = STATE(2267), - [sym_variable_name] = ACTIONS(4744), - [anon_sym_DOLLAR] = ACTIONS(4746), - [anon_sym_DASH] = ACTIONS(4746), + [sym_variable_name] = ACTIONS(4806), + [anon_sym_DOLLAR] = ACTIONS(4808), + [anon_sym_DASH] = ACTIONS(4808), [sym_comment] = ACTIONS(56), - [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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4810), + [anon_sym_STAR] = ACTIONS(4808), + [anon_sym_AT] = ACTIONS(4808), + [anon_sym_QMARK] = ACTIONS(4808), + [anon_sym_0] = ACTIONS(4812), + [anon_sym__] = ACTIONS(4812), }, [1604] = { [sym_concatenation] = STATE(451), @@ -48940,26 +49173,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4814), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(4816), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1605] = { [sym_concatenation] = STATE(451), @@ -48970,197 +49203,197 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4818), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(4820), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(4822), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), [sym_comment] = ACTIONS(56), }, [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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(4822), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [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), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_PIPE_AMP] = ACTIONS(1072), + [anon_sym_AMP_AMP] = ACTIONS(1074), + [anon_sym_PIPE_PIPE] = ACTIONS(1074), + [anon_sym_BQUOTE] = ACTIONS(4822), [sym_comment] = ACTIONS(56), }, [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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_PIPE_AMP] = ACTIONS(1072), + [anon_sym_AMP_AMP] = ACTIONS(1074), + [anon_sym_PIPE_PIPE] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(4822), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [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), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(4824), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), [sym_comment] = ACTIONS(56), }, [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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(4824), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [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__concat] = ACTIONS(1886), + [anon_sym_RBRACE] = ACTIONS(1886), + [anon_sym_EQ] = ACTIONS(3056), + [sym__special_characters] = ACTIONS(1888), + [anon_sym_DQUOTE] = ACTIONS(1886), + [anon_sym_DOLLAR] = ACTIONS(3056), + [sym_raw_string] = ACTIONS(1886), + [anon_sym_POUND] = ACTIONS(1886), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1886), + [anon_sym_COLON] = ACTIONS(3056), + [anon_sym_COLON_QMARK] = ACTIONS(3056), + [anon_sym_COLON_DASH] = ACTIONS(3056), + [anon_sym_PERCENT] = ACTIONS(3056), + [anon_sym_DASH] = ACTIONS(3056), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1886), + [anon_sym_BQUOTE] = ACTIONS(1886), + [anon_sym_LT_LPAREN] = ACTIONS(1886), + [anon_sym_GT_LPAREN] = ACTIONS(1886), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1860), + [sym_word] = ACTIONS(1888), }, [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__concat] = ACTIONS(4826), + [anon_sym_RBRACE] = ACTIONS(1886), + [anon_sym_EQ] = ACTIONS(3056), + [sym__special_characters] = ACTIONS(1888), + [anon_sym_DQUOTE] = ACTIONS(1886), + [anon_sym_DOLLAR] = ACTIONS(3056), + [sym_raw_string] = ACTIONS(1886), + [anon_sym_POUND] = ACTIONS(1886), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1886), + [anon_sym_COLON] = ACTIONS(3056), + [anon_sym_COLON_QMARK] = ACTIONS(3056), + [anon_sym_COLON_DASH] = ACTIONS(3056), + [anon_sym_PERCENT] = ACTIONS(3056), + [anon_sym_DASH] = ACTIONS(3056), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1886), + [anon_sym_BQUOTE] = ACTIONS(1886), + [anon_sym_LT_LPAREN] = ACTIONS(1886), + [anon_sym_GT_LPAREN] = ACTIONS(1886), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1860), + [sym_word] = ACTIONS(1888), }, [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__concat] = ACTIONS(1923), + [anon_sym_RBRACE] = ACTIONS(1923), + [anon_sym_EQ] = ACTIONS(3061), + [sym__special_characters] = ACTIONS(1925), + [anon_sym_DQUOTE] = ACTIONS(1923), + [anon_sym_DOLLAR] = ACTIONS(3061), + [sym_raw_string] = ACTIONS(1923), + [anon_sym_POUND] = ACTIONS(1923), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1923), + [anon_sym_COLON] = ACTIONS(3061), + [anon_sym_COLON_QMARK] = ACTIONS(3061), + [anon_sym_COLON_DASH] = ACTIONS(3061), + [anon_sym_PERCENT] = ACTIONS(3061), + [anon_sym_DASH] = ACTIONS(3061), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1923), + [anon_sym_BQUOTE] = ACTIONS(1923), + [anon_sym_LT_LPAREN] = ACTIONS(1923), + [anon_sym_GT_LPAREN] = ACTIONS(1923), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1897), + [sym_word] = ACTIONS(1925), }, [1615] = { [sym_concatenation] = STATE(2279), @@ -49170,44 +49403,44 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4829), + [sym__special_characters] = ACTIONS(4831), + [anon_sym_DQUOTE] = ACTIONS(1952), + [anon_sym_DOLLAR] = ACTIONS(1954), + [sym_raw_string] = ACTIONS(4833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), + [anon_sym_BQUOTE] = ACTIONS(1962), + [anon_sym_LT_LPAREN] = ACTIONS(1964), + [anon_sym_GT_LPAREN] = ACTIONS(1964), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4773), + [sym_word] = ACTIONS(4835), }, [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__concat] = ACTIONS(1968), + [anon_sym_RBRACE] = ACTIONS(1968), + [anon_sym_EQ] = ACTIONS(3071), + [sym__special_characters] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1968), + [anon_sym_DOLLAR] = ACTIONS(3071), + [sym_raw_string] = ACTIONS(1968), + [anon_sym_POUND] = ACTIONS(1968), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1968), + [anon_sym_COLON] = ACTIONS(3071), + [anon_sym_COLON_QMARK] = ACTIONS(3071), + [anon_sym_COLON_DASH] = ACTIONS(3071), + [anon_sym_PERCENT] = ACTIONS(3071), + [anon_sym_DASH] = ACTIONS(3071), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1968), + [anon_sym_BQUOTE] = ACTIONS(1968), + [anon_sym_LT_LPAREN] = ACTIONS(1968), + [anon_sym_GT_LPAREN] = ACTIONS(1968), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1942), + [sym_word] = ACTIONS(1970), }, [1617] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4775), + [sym_regex_without_right_brace] = ACTIONS(4837), }, [1618] = { [sym_concatenation] = STATE(451), @@ -49218,29 +49451,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4839), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1619] = { - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(4779), + [anon_sym_LBRACK] = ACTIONS(836), + [anon_sym_EQ] = ACTIONS(4841), [sym_comment] = ACTIONS(56), }, [1620] = { @@ -49252,26 +49485,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4843), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(4845), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1621] = { [sym_concatenation] = STATE(451), @@ -49282,26 +49515,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(2288), - [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), + [anon_sym_RBRACE] = ACTIONS(4847), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(4849), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1622] = { [sym_concatenation] = STATE(451), @@ -49312,52 +49545,52 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4829), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(4851), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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__concat] = ACTIONS(2022), + [anon_sym_RBRACE] = ACTIONS(2022), + [anon_sym_EQ] = ACTIONS(3089), + [sym__special_characters] = ACTIONS(2024), + [anon_sym_DQUOTE] = ACTIONS(2022), + [anon_sym_DOLLAR] = ACTIONS(3089), + [sym_raw_string] = ACTIONS(2022), + [anon_sym_POUND] = ACTIONS(2022), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2022), + [anon_sym_COLON] = ACTIONS(3089), + [anon_sym_COLON_QMARK] = ACTIONS(3089), + [anon_sym_COLON_DASH] = ACTIONS(3089), + [anon_sym_PERCENT] = ACTIONS(3089), + [anon_sym_DASH] = ACTIONS(3089), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2022), + [anon_sym_BQUOTE] = ACTIONS(2022), + [anon_sym_LT_LPAREN] = ACTIONS(2022), + [anon_sym_GT_LPAREN] = ACTIONS(2022), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1994), + [sym_word] = ACTIONS(2024), }, [1624] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4791), + [sym_regex_without_right_brace] = ACTIONS(4853), }, [1625] = { [sym_concatenation] = STATE(451), @@ -49368,51 +49601,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4855), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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__concat] = ACTIONS(2030), + [anon_sym_RBRACE] = ACTIONS(2030), + [anon_sym_EQ] = ACTIONS(3095), + [sym__special_characters] = ACTIONS(2032), + [anon_sym_DQUOTE] = ACTIONS(2030), + [anon_sym_DOLLAR] = ACTIONS(3095), + [sym_raw_string] = ACTIONS(2030), + [anon_sym_POUND] = ACTIONS(2030), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2030), + [anon_sym_COLON] = ACTIONS(3095), + [anon_sym_COLON_QMARK] = ACTIONS(3095), + [anon_sym_COLON_DASH] = ACTIONS(3095), + [anon_sym_PERCENT] = ACTIONS(3095), + [anon_sym_DASH] = ACTIONS(3095), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2030), + [anon_sym_BQUOTE] = ACTIONS(2030), + [anon_sym_LT_LPAREN] = ACTIONS(2030), + [anon_sym_GT_LPAREN] = ACTIONS(2030), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2002), + [sym_word] = ACTIONS(2032), }, [1627] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4795), + [sym_regex_without_right_brace] = ACTIONS(4857), }, [1628] = { [sym_concatenation] = STATE(451), @@ -49423,59 +49656,60 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4829), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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_file_descriptor] = ACTIONS(4859), + [sym__concat] = ACTIONS(4859), + [anon_sym_PIPE] = ACTIONS(4861), + [anon_sym_SEMI_SEMI] = ACTIONS(4861), + [anon_sym_PIPE_AMP] = ACTIONS(4861), + [anon_sym_AMP_AMP] = ACTIONS(4861), + [anon_sym_PIPE_PIPE] = ACTIONS(4861), + [anon_sym_EQ_TILDE] = ACTIONS(4861), + [anon_sym_EQ_EQ] = ACTIONS(4861), + [anon_sym_LT] = ACTIONS(4861), + [anon_sym_GT] = ACTIONS(4861), + [anon_sym_GT_GT] = ACTIONS(4861), + [anon_sym_AMP_GT] = ACTIONS(4861), + [anon_sym_AMP_GT_GT] = ACTIONS(4861), + [anon_sym_LT_AMP] = ACTIONS(4861), + [anon_sym_GT_AMP] = ACTIONS(4861), + [anon_sym_LT_LT] = ACTIONS(4861), + [anon_sym_LT_LT_DASH] = ACTIONS(4861), + [anon_sym_LT_LT_LT] = ACTIONS(4861), + [sym__special_characters] = ACTIONS(4861), + [anon_sym_DQUOTE] = ACTIONS(4861), + [anon_sym_DOLLAR] = ACTIONS(4861), + [sym_raw_string] = ACTIONS(4861), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4861), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4861), + [anon_sym_BQUOTE] = ACTIONS(4861), + [anon_sym_LT_LPAREN] = ACTIONS(4861), + [anon_sym_GT_LPAREN] = ACTIONS(4861), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4799), - [anon_sym_SEMI] = ACTIONS(4799), - [anon_sym_LF] = ACTIONS(4799), - [anon_sym_AMP] = ACTIONS(4799), + [sym_word] = ACTIONS(4861), + [anon_sym_SEMI] = ACTIONS(4861), + [anon_sym_LF] = ACTIONS(4861), + [anon_sym_AMP] = ACTIONS(4861), }, [1630] = { [sym_concatenation] = STATE(451), @@ -49486,84 +49720,84 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4863), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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__concat] = ACTIONS(2190), + [anon_sym_RBRACE] = ACTIONS(2190), + [anon_sym_EQ] = ACTIONS(3099), + [sym__special_characters] = ACTIONS(2192), + [anon_sym_DQUOTE] = ACTIONS(2190), + [anon_sym_DOLLAR] = ACTIONS(3099), + [sym_raw_string] = ACTIONS(2190), + [anon_sym_POUND] = ACTIONS(2190), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2190), + [anon_sym_COLON] = ACTIONS(3099), + [anon_sym_COLON_QMARK] = ACTIONS(3099), + [anon_sym_COLON_DASH] = ACTIONS(3099), + [anon_sym_PERCENT] = ACTIONS(3099), + [anon_sym_DASH] = ACTIONS(3099), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2190), + [anon_sym_BQUOTE] = ACTIONS(2190), + [anon_sym_LT_LPAREN] = ACTIONS(2190), + [anon_sym_GT_LPAREN] = ACTIONS(2190), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2158), + [sym_word] = ACTIONS(2192), }, [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__concat] = ACTIONS(2396), + [anon_sym_RBRACE] = ACTIONS(2396), + [anon_sym_EQ] = ACTIONS(3101), + [sym__special_characters] = ACTIONS(2398), + [anon_sym_DQUOTE] = ACTIONS(2396), + [anon_sym_DOLLAR] = ACTIONS(3101), + [sym_raw_string] = ACTIONS(2396), + [anon_sym_POUND] = ACTIONS(2396), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2396), + [anon_sym_COLON] = ACTIONS(3101), + [anon_sym_COLON_QMARK] = ACTIONS(3101), + [anon_sym_COLON_DASH] = ACTIONS(3101), + [anon_sym_PERCENT] = ACTIONS(3101), + [anon_sym_DASH] = ACTIONS(3101), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2396), + [anon_sym_BQUOTE] = ACTIONS(2396), + [anon_sym_LT_LPAREN] = ACTIONS(2396), + [anon_sym_GT_LPAREN] = ACTIONS(2396), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2360), + [sym_word] = ACTIONS(2398), }, [1633] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(4803), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(4865), [sym_comment] = ACTIONS(56), }, [1634] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(4805), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(4867), [sym_comment] = ACTIONS(56), }, [1635] = { - [anon_sym_RBRACE] = ACTIONS(4805), + [anon_sym_RBRACE] = ACTIONS(4867), [sym_comment] = ACTIONS(56), }, [1636] = { @@ -49575,59 +49809,60 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4869), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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_file_descriptor] = ACTIONS(4871), + [sym__concat] = ACTIONS(4871), + [anon_sym_PIPE] = ACTIONS(4873), + [anon_sym_SEMI_SEMI] = ACTIONS(4873), + [anon_sym_PIPE_AMP] = ACTIONS(4873), + [anon_sym_AMP_AMP] = ACTIONS(4873), + [anon_sym_PIPE_PIPE] = ACTIONS(4873), + [anon_sym_EQ_TILDE] = ACTIONS(4873), + [anon_sym_EQ_EQ] = ACTIONS(4873), + [anon_sym_LT] = ACTIONS(4873), + [anon_sym_GT] = ACTIONS(4873), + [anon_sym_GT_GT] = ACTIONS(4873), + [anon_sym_AMP_GT] = ACTIONS(4873), + [anon_sym_AMP_GT_GT] = ACTIONS(4873), + [anon_sym_LT_AMP] = ACTIONS(4873), + [anon_sym_GT_AMP] = ACTIONS(4873), + [anon_sym_LT_LT] = ACTIONS(4873), + [anon_sym_LT_LT_DASH] = ACTIONS(4873), + [anon_sym_LT_LT_LT] = ACTIONS(4873), + [sym__special_characters] = ACTIONS(4873), + [anon_sym_DQUOTE] = ACTIONS(4873), + [anon_sym_DOLLAR] = ACTIONS(4873), + [sym_raw_string] = ACTIONS(4873), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4873), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4873), + [anon_sym_BQUOTE] = ACTIONS(4873), + [anon_sym_LT_LPAREN] = ACTIONS(4873), + [anon_sym_GT_LPAREN] = ACTIONS(4873), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4811), - [anon_sym_SEMI] = ACTIONS(4811), - [anon_sym_LF] = ACTIONS(4811), - [anon_sym_AMP] = ACTIONS(4811), + [sym_word] = ACTIONS(4873), + [anon_sym_SEMI] = ACTIONS(4873), + [anon_sym_LF] = ACTIONS(4873), + [anon_sym_AMP] = ACTIONS(4873), }, [1638] = { [sym_concatenation] = STATE(451), @@ -49638,59 +49873,60 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4875), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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_file_descriptor] = ACTIONS(4877), + [sym__concat] = ACTIONS(4877), + [anon_sym_PIPE] = ACTIONS(4879), + [anon_sym_SEMI_SEMI] = ACTIONS(4879), + [anon_sym_PIPE_AMP] = ACTIONS(4879), + [anon_sym_AMP_AMP] = ACTIONS(4879), + [anon_sym_PIPE_PIPE] = ACTIONS(4879), + [anon_sym_EQ_TILDE] = ACTIONS(4879), + [anon_sym_EQ_EQ] = ACTIONS(4879), + [anon_sym_LT] = ACTIONS(4879), + [anon_sym_GT] = ACTIONS(4879), + [anon_sym_GT_GT] = ACTIONS(4879), + [anon_sym_AMP_GT] = ACTIONS(4879), + [anon_sym_AMP_GT_GT] = ACTIONS(4879), + [anon_sym_LT_AMP] = ACTIONS(4879), + [anon_sym_GT_AMP] = ACTIONS(4879), + [anon_sym_LT_LT] = ACTIONS(4879), + [anon_sym_LT_LT_DASH] = ACTIONS(4879), + [anon_sym_LT_LT_LT] = ACTIONS(4879), + [sym__special_characters] = ACTIONS(4879), + [anon_sym_DQUOTE] = ACTIONS(4879), + [anon_sym_DOLLAR] = ACTIONS(4879), + [sym_raw_string] = ACTIONS(4879), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4879), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4879), + [anon_sym_BQUOTE] = ACTIONS(4879), + [anon_sym_LT_LPAREN] = ACTIONS(4879), + [anon_sym_GT_LPAREN] = ACTIONS(4879), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4817), - [anon_sym_SEMI] = ACTIONS(4817), - [anon_sym_LF] = ACTIONS(4817), - [anon_sym_AMP] = ACTIONS(4817), + [sym_word] = ACTIONS(4879), + [anon_sym_SEMI] = ACTIONS(4879), + [anon_sym_LF] = ACTIONS(4879), + [anon_sym_AMP] = ACTIONS(4879), }, [1640] = { [sym_concatenation] = STATE(451), @@ -49701,59 +49937,60 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4881), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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_file_descriptor] = ACTIONS(4883), + [sym__concat] = ACTIONS(4883), + [anon_sym_PIPE] = ACTIONS(4885), + [anon_sym_SEMI_SEMI] = ACTIONS(4885), + [anon_sym_PIPE_AMP] = ACTIONS(4885), + [anon_sym_AMP_AMP] = ACTIONS(4885), + [anon_sym_PIPE_PIPE] = ACTIONS(4885), + [anon_sym_EQ_TILDE] = ACTIONS(4885), + [anon_sym_EQ_EQ] = ACTIONS(4885), + [anon_sym_LT] = ACTIONS(4885), + [anon_sym_GT] = ACTIONS(4885), + [anon_sym_GT_GT] = ACTIONS(4885), + [anon_sym_AMP_GT] = ACTIONS(4885), + [anon_sym_AMP_GT_GT] = ACTIONS(4885), + [anon_sym_LT_AMP] = ACTIONS(4885), + [anon_sym_GT_AMP] = ACTIONS(4885), + [anon_sym_LT_LT] = ACTIONS(4885), + [anon_sym_LT_LT_DASH] = ACTIONS(4885), + [anon_sym_LT_LT_LT] = ACTIONS(4885), + [sym__special_characters] = ACTIONS(4885), + [anon_sym_DQUOTE] = ACTIONS(4885), + [anon_sym_DOLLAR] = ACTIONS(4885), + [sym_raw_string] = ACTIONS(4885), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4885), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4885), + [anon_sym_BQUOTE] = ACTIONS(4885), + [anon_sym_LT_LPAREN] = ACTIONS(4885), + [anon_sym_GT_LPAREN] = ACTIONS(4885), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4823), - [anon_sym_SEMI] = ACTIONS(4823), - [anon_sym_LF] = ACTIONS(4823), - [anon_sym_AMP] = ACTIONS(4823), + [sym_word] = ACTIONS(4885), + [anon_sym_SEMI] = ACTIONS(4885), + [anon_sym_LF] = ACTIONS(4885), + [anon_sym_AMP] = ACTIONS(4885), }, [1642] = { [sym_concatenation] = STATE(451), @@ -49764,59 +50001,60 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4887), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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_file_descriptor] = ACTIONS(4889), + [sym__concat] = ACTIONS(4889), + [anon_sym_PIPE] = ACTIONS(4891), + [anon_sym_SEMI_SEMI] = ACTIONS(4891), + [anon_sym_PIPE_AMP] = ACTIONS(4891), + [anon_sym_AMP_AMP] = ACTIONS(4891), + [anon_sym_PIPE_PIPE] = ACTIONS(4891), + [anon_sym_EQ_TILDE] = ACTIONS(4891), + [anon_sym_EQ_EQ] = ACTIONS(4891), + [anon_sym_LT] = ACTIONS(4891), + [anon_sym_GT] = ACTIONS(4891), + [anon_sym_GT_GT] = ACTIONS(4891), + [anon_sym_AMP_GT] = ACTIONS(4891), + [anon_sym_AMP_GT_GT] = ACTIONS(4891), + [anon_sym_LT_AMP] = ACTIONS(4891), + [anon_sym_GT_AMP] = ACTIONS(4891), + [anon_sym_LT_LT] = ACTIONS(4891), + [anon_sym_LT_LT_DASH] = ACTIONS(4891), + [anon_sym_LT_LT_LT] = ACTIONS(4891), + [sym__special_characters] = ACTIONS(4891), + [anon_sym_DQUOTE] = ACTIONS(4891), + [anon_sym_DOLLAR] = ACTIONS(4891), + [sym_raw_string] = ACTIONS(4891), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4891), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4891), + [anon_sym_BQUOTE] = ACTIONS(4891), + [anon_sym_LT_LPAREN] = ACTIONS(4891), + [anon_sym_GT_LPAREN] = ACTIONS(4891), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4829), - [anon_sym_SEMI] = ACTIONS(4829), - [anon_sym_LF] = ACTIONS(4829), - [anon_sym_AMP] = ACTIONS(4829), + [sym_word] = ACTIONS(4891), + [anon_sym_SEMI] = ACTIONS(4891), + [anon_sym_LF] = ACTIONS(4891), + [anon_sym_AMP] = ACTIONS(4891), }, [1644] = { [sym_concatenation] = STATE(451), @@ -49827,52 +50065,52 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(4893), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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_file_descriptor] = ACTIONS(2557), + [sym_variable_name] = ACTIONS(2557), + [anon_sym_PIPE] = ACTIONS(4895), + [anon_sym_RPAREN] = ACTIONS(2557), + [anon_sym_PIPE_AMP] = ACTIONS(2557), + [anon_sym_AMP_AMP] = ACTIONS(2557), + [anon_sym_PIPE_PIPE] = ACTIONS(2557), + [anon_sym_LT] = ACTIONS(4895), + [anon_sym_GT] = ACTIONS(4895), + [anon_sym_GT_GT] = ACTIONS(2557), + [anon_sym_AMP_GT] = ACTIONS(4895), + [anon_sym_AMP_GT_GT] = ACTIONS(2557), + [anon_sym_LT_AMP] = ACTIONS(2557), + [anon_sym_GT_AMP] = ACTIONS(2557), + [sym__special_characters] = ACTIONS(4895), + [anon_sym_DQUOTE] = ACTIONS(2557), + [anon_sym_DOLLAR] = ACTIONS(4895), + [sym_raw_string] = ACTIONS(2557), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2557), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2557), + [anon_sym_BQUOTE] = ACTIONS(2557), + [anon_sym_LT_LPAREN] = ACTIONS(2557), + [anon_sym_GT_LPAREN] = ACTIONS(2557), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4833), + [sym_word] = ACTIONS(4895), }, [1646] = { [sym_concatenation] = STATE(660), @@ -49883,18 +50121,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RPAREN] = ACTIONS(4897), + [sym__special_characters] = ACTIONS(1283), + [anon_sym_DQUOTE] = ACTIONS(1285), + [anon_sym_DOLLAR] = ACTIONS(1287), + [sym_raw_string] = ACTIONS(1289), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1291), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1293), + [anon_sym_BQUOTE] = ACTIONS(1295), + [anon_sym_LT_LPAREN] = ACTIONS(1297), + [anon_sym_GT_LPAREN] = ACTIONS(1297), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1277), + [sym_word] = ACTIONS(1299), }, [1647] = { [sym_string] = STATE(2306), @@ -49903,81 +50141,81 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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__special_characters] = ACTIONS(4899), + [anon_sym_DQUOTE] = ACTIONS(2042), + [anon_sym_DOLLAR] = ACTIONS(2044), + [sym_raw_string] = ACTIONS(4901), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2048), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2050), + [anon_sym_BQUOTE] = ACTIONS(2052), + [anon_sym_LT_LPAREN] = ACTIONS(2054), + [anon_sym_GT_LPAREN] = ACTIONS(2054), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4837), + [sym_word] = ACTIONS(4899), }, [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_file_descriptor] = ACTIONS(788), + [sym__concat] = ACTIONS(3422), + [sym_variable_name] = ACTIONS(788), + [anon_sym_PIPE] = ACTIONS(1567), + [anon_sym_RPAREN] = ACTIONS(788), + [anon_sym_PIPE_AMP] = ACTIONS(788), + [anon_sym_AMP_AMP] = ACTIONS(788), + [anon_sym_PIPE_PIPE] = ACTIONS(788), + [anon_sym_LT] = ACTIONS(1567), + [anon_sym_GT] = ACTIONS(1567), + [anon_sym_GT_GT] = ACTIONS(788), + [anon_sym_AMP_GT] = ACTIONS(1567), + [anon_sym_AMP_GT_GT] = ACTIONS(788), + [anon_sym_LT_AMP] = ACTIONS(788), + [anon_sym_GT_AMP] = ACTIONS(788), + [sym__special_characters] = ACTIONS(1567), + [anon_sym_DQUOTE] = ACTIONS(788), + [anon_sym_DOLLAR] = ACTIONS(1567), + [sym_raw_string] = ACTIONS(788), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(788), + [anon_sym_BQUOTE] = ACTIONS(788), + [anon_sym_LT_LPAREN] = ACTIONS(788), + [anon_sym_GT_LPAREN] = ACTIONS(788), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1539), + [sym_word] = ACTIONS(1567), }, [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_file_descriptor] = ACTIONS(792), + [sym__concat] = ACTIONS(792), + [sym_variable_name] = ACTIONS(792), + [anon_sym_PIPE] = ACTIONS(1569), + [anon_sym_RPAREN] = ACTIONS(792), + [anon_sym_PIPE_AMP] = ACTIONS(792), + [anon_sym_AMP_AMP] = ACTIONS(792), + [anon_sym_PIPE_PIPE] = ACTIONS(792), + [anon_sym_LT] = ACTIONS(1569), + [anon_sym_GT] = ACTIONS(1569), + [anon_sym_GT_GT] = ACTIONS(792), + [anon_sym_AMP_GT] = ACTIONS(1569), + [anon_sym_AMP_GT_GT] = ACTIONS(792), + [anon_sym_LT_AMP] = ACTIONS(792), + [anon_sym_GT_AMP] = ACTIONS(792), + [sym__special_characters] = ACTIONS(1569), + [anon_sym_DQUOTE] = ACTIONS(792), + [anon_sym_DOLLAR] = ACTIONS(1569), + [sym_raw_string] = ACTIONS(792), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(792), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(792), + [anon_sym_BQUOTE] = ACTIONS(792), + [anon_sym_LT_LPAREN] = ACTIONS(792), + [anon_sym_GT_LPAREN] = ACTIONS(792), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1541), + [sym_word] = ACTIONS(1569), }, [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_DQUOTE] = ACTIONS(4903), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -49986,92 +50224,92 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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_file_descriptor] = ACTIONS(824), + [sym__concat] = ACTIONS(824), + [sym_variable_name] = ACTIONS(824), + [anon_sym_PIPE] = ACTIONS(1573), + [anon_sym_RPAREN] = ACTIONS(824), + [anon_sym_PIPE_AMP] = ACTIONS(824), + [anon_sym_AMP_AMP] = ACTIONS(824), + [anon_sym_PIPE_PIPE] = ACTIONS(824), + [anon_sym_LT] = ACTIONS(1573), + [anon_sym_GT] = ACTIONS(1573), + [anon_sym_GT_GT] = ACTIONS(824), + [anon_sym_AMP_GT] = ACTIONS(1573), + [anon_sym_AMP_GT_GT] = ACTIONS(824), + [anon_sym_LT_AMP] = ACTIONS(824), + [anon_sym_GT_AMP] = ACTIONS(824), + [sym__special_characters] = ACTIONS(1573), + [anon_sym_DQUOTE] = ACTIONS(824), + [anon_sym_DOLLAR] = ACTIONS(1573), + [sym_raw_string] = ACTIONS(824), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(824), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(824), + [anon_sym_BQUOTE] = ACTIONS(824), + [anon_sym_LT_LPAREN] = ACTIONS(824), + [anon_sym_GT_LPAREN] = ACTIONS(824), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1545), + [sym_word] = ACTIONS(1573), }, [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_file_descriptor] = ACTIONS(828), + [sym__concat] = ACTIONS(828), + [sym_variable_name] = ACTIONS(828), + [anon_sym_PIPE] = ACTIONS(1575), + [anon_sym_RPAREN] = ACTIONS(828), + [anon_sym_PIPE_AMP] = ACTIONS(828), + [anon_sym_AMP_AMP] = ACTIONS(828), + [anon_sym_PIPE_PIPE] = ACTIONS(828), + [anon_sym_LT] = ACTIONS(1575), + [anon_sym_GT] = ACTIONS(1575), + [anon_sym_GT_GT] = ACTIONS(828), + [anon_sym_AMP_GT] = ACTIONS(1575), + [anon_sym_AMP_GT_GT] = ACTIONS(828), + [anon_sym_LT_AMP] = ACTIONS(828), + [anon_sym_GT_AMP] = ACTIONS(828), + [sym__special_characters] = ACTIONS(1575), + [anon_sym_DQUOTE] = ACTIONS(828), + [anon_sym_DOLLAR] = ACTIONS(1575), + [sym_raw_string] = ACTIONS(828), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), + [anon_sym_BQUOTE] = ACTIONS(828), + [anon_sym_LT_LPAREN] = ACTIONS(828), + [anon_sym_GT_LPAREN] = ACTIONS(828), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1547), + [sym_word] = ACTIONS(1575), }, [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_file_descriptor] = ACTIONS(832), + [sym__concat] = ACTIONS(832), + [sym_variable_name] = ACTIONS(832), + [anon_sym_PIPE] = ACTIONS(1577), + [anon_sym_RPAREN] = ACTIONS(832), + [anon_sym_PIPE_AMP] = ACTIONS(832), + [anon_sym_AMP_AMP] = ACTIONS(832), + [anon_sym_PIPE_PIPE] = ACTIONS(832), + [anon_sym_LT] = ACTIONS(1577), + [anon_sym_GT] = ACTIONS(1577), + [anon_sym_GT_GT] = ACTIONS(832), + [anon_sym_AMP_GT] = ACTIONS(1577), + [anon_sym_AMP_GT_GT] = ACTIONS(832), + [anon_sym_LT_AMP] = ACTIONS(832), + [anon_sym_GT_AMP] = ACTIONS(832), + [sym__special_characters] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(832), + [anon_sym_DOLLAR] = ACTIONS(1577), + [sym_raw_string] = ACTIONS(832), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(832), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(832), + [anon_sym_BQUOTE] = ACTIONS(832), + [anon_sym_LT_LPAREN] = ACTIONS(832), + [anon_sym_GT_LPAREN] = ACTIONS(832), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1549), + [sym_word] = ACTIONS(1577), }, [1654] = { - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(4843), + [anon_sym_LBRACK] = ACTIONS(836), + [anon_sym_EQ] = ACTIONS(4905), [sym_comment] = ACTIONS(56), }, [1655] = { @@ -50083,39 +50321,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(2312), - [anon_sym_RBRACE] = ACTIONS(4845), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_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), + [anon_sym_RBRACE] = ACTIONS(4907), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(4909), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1656] = { [sym_subscript] = STATE(2316), - [sym_variable_name] = ACTIONS(4849), - [anon_sym_DOLLAR] = ACTIONS(4851), - [anon_sym_DASH] = ACTIONS(4851), + [sym_variable_name] = ACTIONS(4911), + [anon_sym_DOLLAR] = ACTIONS(4913), + [anon_sym_DASH] = ACTIONS(4913), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4915), + [anon_sym_STAR] = ACTIONS(4913), + [anon_sym_AT] = ACTIONS(4913), + [anon_sym_QMARK] = ACTIONS(4913), + [anon_sym_0] = ACTIONS(4917), + [anon_sym__] = ACTIONS(4917), }, [1657] = { [sym_concatenation] = STATE(451), @@ -50126,26 +50364,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_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), + [anon_sym_RBRACE] = ACTIONS(4919), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(4921), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1658] = { [sym_concatenation] = STATE(451), @@ -50156,130 +50394,130 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_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), + [anon_sym_RBRACE] = ACTIONS(4923), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(4925), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(4927), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), [sym_comment] = ACTIONS(56), }, [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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(4927), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [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), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_PIPE_AMP] = ACTIONS(1072), + [anon_sym_AMP_AMP] = ACTIONS(1074), + [anon_sym_PIPE_PIPE] = ACTIONS(1074), + [anon_sym_BQUOTE] = ACTIONS(4927), [sym_comment] = ACTIONS(56), }, [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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_PIPE_AMP] = ACTIONS(1072), + [anon_sym_AMP_AMP] = ACTIONS(1074), + [anon_sym_PIPE_PIPE] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(4927), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [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), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(4929), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), [sym_comment] = ACTIONS(56), }, [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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(4929), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [1665] = { [sym_concatenation] = STATE(688), @@ -50290,40 +50528,40 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_SEMI_SEMI] = ACTIONS(4931), + [sym__special_characters] = ACTIONS(2653), + [anon_sym_DQUOTE] = ACTIONS(2655), + [anon_sym_DOLLAR] = ACTIONS(2657), + [sym_raw_string] = ACTIONS(2659), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2661), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2663), + [anon_sym_BQUOTE] = ACTIONS(2665), + [anon_sym_LT_LPAREN] = ACTIONS(2667), + [anon_sym_GT_LPAREN] = ACTIONS(2667), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2615), - [anon_sym_SEMI] = ACTIONS(4869), - [anon_sym_LF] = ACTIONS(4869), - [anon_sym_AMP] = ACTIONS(4869), + [sym_word] = ACTIONS(2659), + [anon_sym_SEMI] = ACTIONS(4931), + [anon_sym_LF] = ACTIONS(4931), + [anon_sym_AMP] = ACTIONS(4931), }, [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_file_descriptor] = ACTIONS(2669), + [anon_sym_PIPE] = ACTIONS(4933), + [anon_sym_RPAREN] = ACTIONS(2669), + [anon_sym_PIPE_AMP] = ACTIONS(2669), + [anon_sym_AMP_AMP] = ACTIONS(2669), + [anon_sym_PIPE_PIPE] = ACTIONS(2669), + [anon_sym_LT] = ACTIONS(4933), + [anon_sym_GT] = ACTIONS(4933), + [anon_sym_GT_GT] = ACTIONS(2669), + [anon_sym_AMP_GT] = ACTIONS(4933), + [anon_sym_AMP_GT_GT] = ACTIONS(2669), + [anon_sym_LT_AMP] = ACTIONS(2669), + [anon_sym_GT_AMP] = ACTIONS(2669), + [anon_sym_LT_LT] = ACTIONS(4933), + [anon_sym_LT_LT_DASH] = ACTIONS(2669), + [anon_sym_LT_LT_LT] = ACTIONS(2669), + [anon_sym_BQUOTE] = ACTIONS(2669), [sym_comment] = ACTIONS(56), }, [1667] = { @@ -50357,7 +50595,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(12), [anon_sym_for] = ACTIONS(16), [anon_sym_while] = ACTIONS(18), - [anon_sym_done] = ACTIONS(4873), + [anon_sym_done] = ACTIONS(4935), [anon_sym_if] = ACTIONS(20), [anon_sym_case] = ACTIONS(22), [anon_sym_function] = ACTIONS(24), @@ -50395,35 +50633,35 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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_file_descriptor] = ACTIONS(980), + [anon_sym_PIPE] = ACTIONS(4937), + [anon_sym_RPAREN] = ACTIONS(4939), + [anon_sym_PIPE_AMP] = ACTIONS(4939), + [anon_sym_AMP_AMP] = ACTIONS(4939), + [anon_sym_PIPE_PIPE] = ACTIONS(4939), + [anon_sym_LT] = ACTIONS(988), + [anon_sym_GT] = ACTIONS(988), + [anon_sym_GT_GT] = ACTIONS(990), + [anon_sym_AMP_GT] = ACTIONS(988), + [anon_sym_AMP_GT_GT] = ACTIONS(990), + [anon_sym_LT_AMP] = ACTIONS(990), + [anon_sym_GT_AMP] = ACTIONS(990), + [anon_sym_LT_LT] = ACTIONS(992), + [anon_sym_LT_LT_DASH] = ACTIONS(994), + [anon_sym_LT_LT_LT] = ACTIONS(996), [sym_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), + [anon_sym_PIPE] = ACTIONS(4941), + [anon_sym_RPAREN] = ACTIONS(4943), + [anon_sym_PIPE_AMP] = ACTIONS(4943), + [anon_sym_AMP_AMP] = ACTIONS(4943), + [anon_sym_PIPE_PIPE] = ACTIONS(4943), + [anon_sym_BQUOTE] = ACTIONS(4943), [sym_comment] = ACTIONS(56), }, [1670] = { - [anon_sym_fi] = ACTIONS(4883), + [anon_sym_fi] = ACTIONS(4945), [sym_comment] = ACTIONS(56), }, [1671] = { @@ -50461,9 +50699,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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_fi] = ACTIONS(4947), + [anon_sym_elif] = ACTIONS(1351), + [anon_sym_else] = ACTIONS(1353), [anon_sym_case] = ACTIONS(22), [anon_sym_function] = ACTIONS(24), [anon_sym_LPAREN] = ACTIONS(26), @@ -50499,9 +50737,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_fi] = ACTIONS(4945), + [anon_sym_elif] = ACTIONS(2691), + [anon_sym_else] = ACTIONS(2693), [sym_comment] = ACTIONS(56), }, [1673] = { @@ -50515,25 +50753,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_esac] = ACTIONS(4949), + [sym__special_characters] = ACTIONS(2697), + [anon_sym_DQUOTE] = ACTIONS(2699), + [anon_sym_DOLLAR] = ACTIONS(2701), + [sym_raw_string] = ACTIONS(2703), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2705), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2707), + [anon_sym_BQUOTE] = ACTIONS(2709), + [anon_sym_LT_LPAREN] = ACTIONS(2711), + [anon_sym_GT_LPAREN] = ACTIONS(2711), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2669), + [sym_word] = ACTIONS(2713), }, [1674] = { - [anon_sym_SEMI_SEMI] = ACTIONS(4889), + [anon_sym_SEMI_SEMI] = ACTIONS(4951), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4889), - [anon_sym_LF] = ACTIONS(4889), - [anon_sym_AMP] = ACTIONS(4889), + [anon_sym_SEMI] = ACTIONS(4951), + [anon_sym_LF] = ACTIONS(4951), + [anon_sym_AMP] = ACTIONS(4951), }, [1675] = { [sym_case_item] = STATE(1332), @@ -50546,46 +50784,46 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_esac] = ACTIONS(4953), + [sym__special_characters] = ACTIONS(2697), + [anon_sym_DQUOTE] = ACTIONS(2699), + [anon_sym_DOLLAR] = ACTIONS(2701), + [sym_raw_string] = ACTIONS(2703), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2705), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2707), + [anon_sym_BQUOTE] = ACTIONS(2709), + [anon_sym_LT_LPAREN] = ACTIONS(2711), + [anon_sym_GT_LPAREN] = ACTIONS(2711), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2669), + [sym_word] = ACTIONS(2713), }, [1676] = { - [anon_sym_SEMI_SEMI] = ACTIONS(4893), + [anon_sym_SEMI_SEMI] = ACTIONS(4955), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4893), - [anon_sym_LF] = ACTIONS(4893), - [anon_sym_AMP] = ACTIONS(4893), + [anon_sym_SEMI] = ACTIONS(4955), + [anon_sym_LF] = ACTIONS(4955), + [anon_sym_AMP] = ACTIONS(4955), }, [1677] = { [sym_compound_statement] = STATE(2338), - [anon_sym_LBRACE] = ACTIONS(2046), + [anon_sym_LBRACE] = ACTIONS(2076), [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_file_descriptor] = ACTIONS(2754), + [anon_sym_PIPE] = ACTIONS(4957), + [anon_sym_RPAREN] = ACTIONS(2754), + [anon_sym_PIPE_AMP] = ACTIONS(2754), + [anon_sym_AMP_AMP] = ACTIONS(2754), + [anon_sym_PIPE_PIPE] = ACTIONS(2754), + [anon_sym_LT] = ACTIONS(4957), + [anon_sym_GT] = ACTIONS(4957), + [anon_sym_GT_GT] = ACTIONS(2754), + [anon_sym_AMP_GT] = ACTIONS(4957), + [anon_sym_AMP_GT_GT] = ACTIONS(2754), + [anon_sym_LT_AMP] = ACTIONS(2754), + [anon_sym_GT_AMP] = ACTIONS(2754), + [anon_sym_BQUOTE] = ACTIONS(2754), [sym_comment] = ACTIONS(56), }, [1679] = { @@ -50623,7 +50861,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(4897), + [anon_sym_RBRACE] = ACTIONS(4959), [anon_sym_LBRACK] = ACTIONS(28), [anon_sym_LBRACK_LBRACK] = ACTIONS(30), [anon_sym_declare] = ACTIONS(32), @@ -50653,13 +50891,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(58), }, [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), + [anon_sym_LT] = ACTIONS(4961), + [anon_sym_GT] = ACTIONS(4961), + [anon_sym_GT_GT] = ACTIONS(4963), + [anon_sym_AMP_GT] = ACTIONS(4961), + [anon_sym_AMP_GT_GT] = ACTIONS(4963), + [anon_sym_LT_AMP] = ACTIONS(4963), + [anon_sym_GT_AMP] = ACTIONS(4963), [sym_comment] = ACTIONS(56), }, [1681] = { @@ -50670,116 +50908,116 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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(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__special_characters] = ACTIONS(4965), + [anon_sym_DQUOTE] = ACTIONS(4967), + [anon_sym_DOLLAR] = ACTIONS(4969), + [sym_raw_string] = ACTIONS(4971), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4973), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4975), + [anon_sym_BQUOTE] = ACTIONS(4977), + [anon_sym_LT_LPAREN] = ACTIONS(4979), + [anon_sym_GT_LPAREN] = ACTIONS(4979), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4919), + [sym_word] = ACTIONS(4981), }, [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), + [anon_sym_PIPE] = ACTIONS(4983), + [anon_sym_RPAREN] = ACTIONS(4985), + [anon_sym_PIPE_AMP] = ACTIONS(4985), + [anon_sym_AMP_AMP] = ACTIONS(4985), + [anon_sym_PIPE_PIPE] = ACTIONS(4985), + [anon_sym_BQUOTE] = ACTIONS(4985), [sym_comment] = ACTIONS(56), }, [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), + [anon_sym_PIPE] = ACTIONS(4987), + [anon_sym_RPAREN] = ACTIONS(4989), + [anon_sym_PIPE_AMP] = ACTIONS(4989), + [anon_sym_AMP_AMP] = ACTIONS(4989), + [anon_sym_PIPE_PIPE] = ACTIONS(4989), + [anon_sym_BQUOTE] = ACTIONS(4989), [sym_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_file_descriptor] = ACTIONS(1100), + [sym_variable_name] = ACTIONS(1100), + [anon_sym_for] = ACTIONS(1102), + [anon_sym_while] = ACTIONS(1102), + [anon_sym_if] = ACTIONS(1102), + [anon_sym_case] = ACTIONS(1102), + [anon_sym_RPAREN] = ACTIONS(4991), + [anon_sym_function] = ACTIONS(1102), + [anon_sym_LPAREN] = ACTIONS(1100), + [anon_sym_LBRACK] = ACTIONS(1102), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1100), + [anon_sym_declare] = ACTIONS(1102), + [anon_sym_typeset] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(1102), + [anon_sym_readonly] = ACTIONS(1102), + [anon_sym_local] = ACTIONS(1102), + [anon_sym_unset] = ACTIONS(1102), + [anon_sym_unsetenv] = ACTIONS(1102), + [anon_sym_LT] = ACTIONS(1102), + [anon_sym_GT] = ACTIONS(1102), + [anon_sym_GT_GT] = ACTIONS(1100), + [anon_sym_AMP_GT] = ACTIONS(1102), + [anon_sym_AMP_GT_GT] = ACTIONS(1100), + [anon_sym_LT_AMP] = ACTIONS(1100), + [anon_sym_GT_AMP] = ACTIONS(1100), + [sym__special_characters] = ACTIONS(1104), + [anon_sym_DQUOTE] = ACTIONS(1100), + [anon_sym_DOLLAR] = ACTIONS(1102), + [sym_raw_string] = ACTIONS(1100), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1100), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1100), + [anon_sym_BQUOTE] = ACTIONS(1100), + [anon_sym_LT_LPAREN] = ACTIONS(1100), + [anon_sym_GT_LPAREN] = ACTIONS(1100), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1084), + [sym_word] = ACTIONS(1104), }, [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_file_descriptor] = ACTIONS(980), + [anon_sym_PIPE] = ACTIONS(4993), + [anon_sym_RPAREN] = ACTIONS(4995), + [anon_sym_PIPE_AMP] = ACTIONS(4995), + [anon_sym_AMP_AMP] = ACTIONS(4995), + [anon_sym_PIPE_PIPE] = ACTIONS(4995), + [anon_sym_LT] = ACTIONS(988), + [anon_sym_GT] = ACTIONS(988), + [anon_sym_GT_GT] = ACTIONS(990), + [anon_sym_AMP_GT] = ACTIONS(988), + [anon_sym_AMP_GT_GT] = ACTIONS(990), + [anon_sym_LT_AMP] = ACTIONS(990), + [anon_sym_GT_AMP] = ACTIONS(990), + [anon_sym_LT_LT] = ACTIONS(992), + [anon_sym_LT_LT_DASH] = ACTIONS(994), + [anon_sym_LT_LT_LT] = ACTIONS(996), [sym_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_variable_name] = ACTIONS(1277), + [anon_sym_PIPE] = ACTIONS(3418), + [anon_sym_RPAREN] = ACTIONS(1277), + [anon_sym_PIPE_AMP] = ACTIONS(1277), + [anon_sym_AMP_AMP] = ACTIONS(1277), + [anon_sym_PIPE_PIPE] = ACTIONS(1277), + [sym__special_characters] = ACTIONS(3418), + [anon_sym_DQUOTE] = ACTIONS(1277), + [anon_sym_DOLLAR] = ACTIONS(3418), + [sym_raw_string] = ACTIONS(1277), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1277), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1277), + [anon_sym_BQUOTE] = ACTIONS(1277), + [anon_sym_LT_LPAREN] = ACTIONS(1277), + [anon_sym_GT_LPAREN] = ACTIONS(1277), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3368), - [sym_word] = ACTIONS(1257), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3418), + [sym_word] = ACTIONS(1279), }, [1687] = { [sym_concatenation] = STATE(660), @@ -50790,126 +51028,126 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RPAREN] = ACTIONS(4997), + [sym__special_characters] = ACTIONS(1283), + [anon_sym_DQUOTE] = ACTIONS(1285), + [anon_sym_DOLLAR] = ACTIONS(1287), + [sym_raw_string] = ACTIONS(1289), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1291), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1293), + [anon_sym_BQUOTE] = ACTIONS(1295), + [anon_sym_LT_LPAREN] = ACTIONS(1297), + [anon_sym_GT_LPAREN] = ACTIONS(1297), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1277), + [sym_word] = ACTIONS(1299), }, [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__concat] = ACTIONS(2086), + [sym_variable_name] = ACTIONS(1301), + [anon_sym_PIPE] = ACTIONS(3424), + [anon_sym_RPAREN] = ACTIONS(1301), + [anon_sym_PIPE_AMP] = ACTIONS(1301), + [anon_sym_AMP_AMP] = ACTIONS(1301), + [anon_sym_PIPE_PIPE] = ACTIONS(1301), + [sym__special_characters] = ACTIONS(3424), + [anon_sym_DQUOTE] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(3424), + [sym_raw_string] = ACTIONS(1301), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1301), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1301), + [anon_sym_BQUOTE] = ACTIONS(1301), + [anon_sym_LT_LPAREN] = ACTIONS(1301), + [anon_sym_GT_LPAREN] = ACTIONS(1301), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3374), - [sym_word] = ACTIONS(1283), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3424), + [sym_word] = ACTIONS(1305), }, [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__concat] = ACTIONS(2086), + [sym_variable_name] = ACTIONS(1277), + [anon_sym_PIPE] = ACTIONS(3418), + [anon_sym_RPAREN] = ACTIONS(1277), + [anon_sym_PIPE_AMP] = ACTIONS(1277), + [anon_sym_AMP_AMP] = ACTIONS(1277), + [anon_sym_PIPE_PIPE] = ACTIONS(1277), + [sym__special_characters] = ACTIONS(3418), + [anon_sym_DQUOTE] = ACTIONS(1277), + [anon_sym_DOLLAR] = ACTIONS(3418), + [sym_raw_string] = ACTIONS(1277), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1277), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1277), + [anon_sym_BQUOTE] = ACTIONS(1277), + [anon_sym_LT_LPAREN] = ACTIONS(1277), + [anon_sym_GT_LPAREN] = ACTIONS(1277), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3368), - [sym_word] = ACTIONS(1257), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3418), + [sym_word] = ACTIONS(1279), }, [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(1858), - [anon_sym_LT_LPAREN] = ACTIONS(1858), - [anon_sym_GT_LPAREN] = ACTIONS(1858), + [sym__concat] = ACTIONS(1886), + [sym_variable_name] = ACTIONS(1886), + [anon_sym_PIPE] = ACTIONS(3056), + [anon_sym_RPAREN] = ACTIONS(1886), + [anon_sym_PIPE_AMP] = ACTIONS(1886), + [anon_sym_AMP_AMP] = ACTIONS(1886), + [anon_sym_PIPE_PIPE] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(3056), + [anon_sym_DQUOTE] = ACTIONS(1886), + [anon_sym_DOLLAR] = ACTIONS(3056), + [sym_raw_string] = ACTIONS(1886), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1886), + [anon_sym_BQUOTE] = ACTIONS(1886), + [anon_sym_LT_LPAREN] = ACTIONS(1886), + [anon_sym_GT_LPAREN] = ACTIONS(1886), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3008), - [sym_word] = ACTIONS(1860), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3056), + [sym_word] = ACTIONS(1888), }, [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(1858), - [anon_sym_LT_LPAREN] = ACTIONS(1858), - [anon_sym_GT_LPAREN] = ACTIONS(1858), + [sym__concat] = ACTIONS(4999), + [sym_variable_name] = ACTIONS(1886), + [anon_sym_PIPE] = ACTIONS(3056), + [anon_sym_RPAREN] = ACTIONS(1886), + [anon_sym_PIPE_AMP] = ACTIONS(1886), + [anon_sym_AMP_AMP] = ACTIONS(1886), + [anon_sym_PIPE_PIPE] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(3056), + [anon_sym_DQUOTE] = ACTIONS(1886), + [anon_sym_DOLLAR] = ACTIONS(3056), + [sym_raw_string] = ACTIONS(1886), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1886), + [anon_sym_BQUOTE] = ACTIONS(1886), + [anon_sym_LT_LPAREN] = ACTIONS(1886), + [anon_sym_GT_LPAREN] = ACTIONS(1886), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3008), - [sym_word] = ACTIONS(1860), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3056), + [sym_word] = ACTIONS(1888), }, [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__concat] = ACTIONS(1923), + [sym_variable_name] = ACTIONS(1923), + [anon_sym_PIPE] = ACTIONS(3061), + [anon_sym_RPAREN] = ACTIONS(1923), + [anon_sym_PIPE_AMP] = ACTIONS(1923), + [anon_sym_AMP_AMP] = ACTIONS(1923), + [anon_sym_PIPE_PIPE] = ACTIONS(1923), + [sym__special_characters] = ACTIONS(3061), + [anon_sym_DQUOTE] = ACTIONS(1923), + [anon_sym_DOLLAR] = ACTIONS(3061), + [sym_raw_string] = ACTIONS(1923), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1923), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1923), + [anon_sym_BQUOTE] = ACTIONS(1923), + [anon_sym_LT_LPAREN] = ACTIONS(1923), + [anon_sym_GT_LPAREN] = ACTIONS(1923), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3013), - [sym_word] = ACTIONS(1897), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3061), + [sym_word] = ACTIONS(1925), }, [1693] = { [sym_concatenation] = STATE(2356), @@ -50919,43 +51157,43 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(2355), [sym_command_substitution] = STATE(2355), [sym_process_substitution] = STATE(2355), - [anon_sym_RBRACE] = ACTIONS(4940), - [sym__special_characters] = ACTIONS(4942), - [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), + [anon_sym_RBRACE] = ACTIONS(5002), + [sym__special_characters] = ACTIONS(5004), + [anon_sym_DQUOTE] = ACTIONS(1952), + [anon_sym_DOLLAR] = ACTIONS(1954), + [sym_raw_string] = ACTIONS(5006), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), + [anon_sym_BQUOTE] = ACTIONS(1962), + [anon_sym_LT_LPAREN] = ACTIONS(1964), + [anon_sym_GT_LPAREN] = ACTIONS(1964), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4946), + [sym_word] = ACTIONS(5008), }, [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__concat] = ACTIONS(1968), + [sym_variable_name] = ACTIONS(1968), + [anon_sym_PIPE] = ACTIONS(3071), + [anon_sym_RPAREN] = ACTIONS(1968), + [anon_sym_PIPE_AMP] = ACTIONS(1968), + [anon_sym_AMP_AMP] = ACTIONS(1968), + [anon_sym_PIPE_PIPE] = ACTIONS(1968), + [sym__special_characters] = ACTIONS(3071), + [anon_sym_DQUOTE] = ACTIONS(1968), + [anon_sym_DOLLAR] = ACTIONS(3071), + [sym_raw_string] = ACTIONS(1968), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1968), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1968), + [anon_sym_BQUOTE] = ACTIONS(1968), + [anon_sym_LT_LPAREN] = ACTIONS(1968), + [anon_sym_GT_LPAREN] = ACTIONS(1968), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3023), - [sym_word] = ACTIONS(1942), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3071), + [sym_word] = ACTIONS(1970), }, [1695] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4948), + [sym_regex_without_right_brace] = ACTIONS(5010), }, [1696] = { [sym_concatenation] = STATE(451), @@ -50966,29 +51204,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(5012), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1697] = { - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(4952), + [anon_sym_LBRACK] = ACTIONS(836), + [anon_sym_EQ] = ACTIONS(5014), [sym_comment] = ACTIONS(56), }, [1698] = { @@ -51000,26 +51238,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(5016), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(5018), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1699] = { [sym_concatenation] = STATE(451), @@ -51030,26 +51268,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(5020), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(5022), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1700] = { [sym_concatenation] = STATE(451), @@ -51060,51 +51298,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(5002), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(5024), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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__concat] = ACTIONS(2022), + [sym_variable_name] = ACTIONS(2022), + [anon_sym_PIPE] = ACTIONS(3089), + [anon_sym_RPAREN] = ACTIONS(2022), + [anon_sym_PIPE_AMP] = ACTIONS(2022), + [anon_sym_AMP_AMP] = ACTIONS(2022), + [anon_sym_PIPE_PIPE] = ACTIONS(2022), + [sym__special_characters] = ACTIONS(3089), + [anon_sym_DQUOTE] = ACTIONS(2022), + [anon_sym_DOLLAR] = ACTIONS(3089), + [sym_raw_string] = ACTIONS(2022), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2022), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2022), + [anon_sym_BQUOTE] = ACTIONS(2022), + [anon_sym_LT_LPAREN] = ACTIONS(2022), + [anon_sym_GT_LPAREN] = ACTIONS(2022), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3041), - [sym_word] = ACTIONS(1994), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3089), + [sym_word] = ACTIONS(2024), }, [1702] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4964), + [sym_regex_without_right_brace] = ACTIONS(5026), }, [1703] = { [sym_concatenation] = STATE(451), @@ -51115,50 +51353,50 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(5028), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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__concat] = ACTIONS(2030), + [sym_variable_name] = ACTIONS(2030), + [anon_sym_PIPE] = ACTIONS(3095), + [anon_sym_RPAREN] = ACTIONS(2030), + [anon_sym_PIPE_AMP] = ACTIONS(2030), + [anon_sym_AMP_AMP] = ACTIONS(2030), + [anon_sym_PIPE_PIPE] = ACTIONS(2030), + [sym__special_characters] = ACTIONS(3095), + [anon_sym_DQUOTE] = ACTIONS(2030), + [anon_sym_DOLLAR] = ACTIONS(3095), + [sym_raw_string] = ACTIONS(2030), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2030), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2030), + [anon_sym_BQUOTE] = ACTIONS(2030), + [anon_sym_LT_LPAREN] = ACTIONS(2030), + [anon_sym_GT_LPAREN] = ACTIONS(2030), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3047), - [sym_word] = ACTIONS(2002), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3095), + [sym_word] = ACTIONS(2032), }, [1705] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4968), + [sym_regex_without_right_brace] = ACTIONS(5030), }, [1706] = { [sym_concatenation] = STATE(451), @@ -51169,128 +51407,128 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(5002), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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__concat] = ACTIONS(2190), + [sym_variable_name] = ACTIONS(2190), + [anon_sym_PIPE] = ACTIONS(3099), + [anon_sym_RPAREN] = ACTIONS(2190), + [anon_sym_PIPE_AMP] = ACTIONS(2190), + [anon_sym_AMP_AMP] = ACTIONS(2190), + [anon_sym_PIPE_PIPE] = ACTIONS(2190), + [sym__special_characters] = ACTIONS(3099), + [anon_sym_DQUOTE] = ACTIONS(2190), + [anon_sym_DOLLAR] = ACTIONS(3099), + [sym_raw_string] = ACTIONS(2190), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2190), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2190), + [anon_sym_BQUOTE] = ACTIONS(2190), + [anon_sym_LT_LPAREN] = ACTIONS(2190), + [anon_sym_GT_LPAREN] = ACTIONS(2190), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3051), - [sym_word] = ACTIONS(2158), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3099), + [sym_word] = ACTIONS(2192), }, [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__concat] = ACTIONS(2396), + [sym_variable_name] = ACTIONS(2396), + [anon_sym_PIPE] = ACTIONS(3101), + [anon_sym_RPAREN] = ACTIONS(2396), + [anon_sym_PIPE_AMP] = ACTIONS(2396), + [anon_sym_AMP_AMP] = ACTIONS(2396), + [anon_sym_PIPE_PIPE] = ACTIONS(2396), + [sym__special_characters] = ACTIONS(3101), + [anon_sym_DQUOTE] = ACTIONS(2396), + [anon_sym_DOLLAR] = ACTIONS(3101), + [sym_raw_string] = ACTIONS(2396), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2396), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2396), + [anon_sym_BQUOTE] = ACTIONS(2396), + [anon_sym_LT_LPAREN] = ACTIONS(2396), + [anon_sym_GT_LPAREN] = ACTIONS(2396), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3053), - [sym_word] = ACTIONS(2360), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3101), + [sym_word] = ACTIONS(2398), }, [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(1858), - [anon_sym_LT_LPAREN] = ACTIONS(1858), - [anon_sym_GT_LPAREN] = ACTIONS(1858), + [sym__concat] = ACTIONS(1886), + [anon_sym_PIPE] = ACTIONS(3056), + [anon_sym_RPAREN] = ACTIONS(1886), + [anon_sym_PIPE_AMP] = ACTIONS(1886), + [anon_sym_AMP_AMP] = ACTIONS(1886), + [anon_sym_PIPE_PIPE] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(3056), + [anon_sym_DQUOTE] = ACTIONS(1886), + [anon_sym_DOLLAR] = ACTIONS(3056), + [sym_raw_string] = ACTIONS(1886), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1886), + [anon_sym_BQUOTE] = ACTIONS(1886), + [anon_sym_LT_LPAREN] = ACTIONS(1886), + [anon_sym_GT_LPAREN] = ACTIONS(1886), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3008), - [sym_word] = ACTIONS(1860), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3056), + [sym_word] = ACTIONS(1888), }, [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__concat] = ACTIONS(5032), + [anon_sym_PIPE] = ACTIONS(3056), + [anon_sym_RPAREN] = ACTIONS(1886), + [anon_sym_PIPE_AMP] = ACTIONS(1886), + [anon_sym_AMP_AMP] = ACTIONS(1886), + [anon_sym_PIPE_PIPE] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(3056), + [anon_sym_DQUOTE] = ACTIONS(1886), + [anon_sym_DOLLAR] = ACTIONS(3056), + [sym_raw_string] = ACTIONS(1886), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1886), + [anon_sym_BQUOTE] = ACTIONS(1886), + [anon_sym_LT_LPAREN] = ACTIONS(1886), + [anon_sym_GT_LPAREN] = ACTIONS(1886), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3008), - [sym_word] = ACTIONS(1860), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3056), + [sym_word] = ACTIONS(1888), }, [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__concat] = ACTIONS(1923), + [anon_sym_PIPE] = ACTIONS(3061), + [anon_sym_RPAREN] = ACTIONS(1923), + [anon_sym_PIPE_AMP] = ACTIONS(1923), + [anon_sym_AMP_AMP] = ACTIONS(1923), + [anon_sym_PIPE_PIPE] = ACTIONS(1923), + [sym__special_characters] = ACTIONS(3061), + [anon_sym_DQUOTE] = ACTIONS(1923), + [anon_sym_DOLLAR] = ACTIONS(3061), + [sym_raw_string] = ACTIONS(1923), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1923), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1923), + [anon_sym_BQUOTE] = ACTIONS(1923), + [anon_sym_LT_LPAREN] = ACTIONS(1923), + [anon_sym_GT_LPAREN] = ACTIONS(1923), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3013), - [sym_word] = ACTIONS(1897), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3061), + [sym_word] = ACTIONS(1925), }, [1712] = { [sym_concatenation] = STATE(2374), @@ -51300,42 +51538,42 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(5035), + [sym__special_characters] = ACTIONS(5037), + [anon_sym_DQUOTE] = ACTIONS(1952), + [anon_sym_DOLLAR] = ACTIONS(1954), + [sym_raw_string] = ACTIONS(5039), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), + [anon_sym_BQUOTE] = ACTIONS(1962), + [anon_sym_LT_LPAREN] = ACTIONS(1964), + [anon_sym_GT_LPAREN] = ACTIONS(1964), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4979), + [sym_word] = ACTIONS(5041), }, [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__concat] = ACTIONS(1968), + [anon_sym_PIPE] = ACTIONS(3071), + [anon_sym_RPAREN] = ACTIONS(1968), + [anon_sym_PIPE_AMP] = ACTIONS(1968), + [anon_sym_AMP_AMP] = ACTIONS(1968), + [anon_sym_PIPE_PIPE] = ACTIONS(1968), + [sym__special_characters] = ACTIONS(3071), + [anon_sym_DQUOTE] = ACTIONS(1968), + [anon_sym_DOLLAR] = ACTIONS(3071), + [sym_raw_string] = ACTIONS(1968), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1968), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1968), + [anon_sym_BQUOTE] = ACTIONS(1968), + [anon_sym_LT_LPAREN] = ACTIONS(1968), + [anon_sym_GT_LPAREN] = ACTIONS(1968), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3023), - [sym_word] = ACTIONS(1942), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3071), + [sym_word] = ACTIONS(1970), }, [1714] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4981), + [sym_regex_without_right_brace] = ACTIONS(5043), }, [1715] = { [sym_concatenation] = STATE(451), @@ -51346,29 +51584,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(5045), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1716] = { - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(4985), + [anon_sym_LBRACK] = ACTIONS(836), + [anon_sym_EQ] = ACTIONS(5047), [sym_comment] = ACTIONS(56), }, [1717] = { @@ -51380,26 +51618,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(2380), - [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), + [anon_sym_RBRACE] = ACTIONS(5049), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(5051), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1718] = { [sym_concatenation] = STATE(451), @@ -51410,26 +51648,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(2383), - [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), + [anon_sym_RBRACE] = ACTIONS(5053), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(5055), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1719] = { [sym_concatenation] = STATE(451), @@ -51440,50 +51678,50 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(5035), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(5057), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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__concat] = ACTIONS(2022), + [anon_sym_PIPE] = ACTIONS(3089), + [anon_sym_RPAREN] = ACTIONS(2022), + [anon_sym_PIPE_AMP] = ACTIONS(2022), + [anon_sym_AMP_AMP] = ACTIONS(2022), + [anon_sym_PIPE_PIPE] = ACTIONS(2022), + [sym__special_characters] = ACTIONS(3089), + [anon_sym_DQUOTE] = ACTIONS(2022), + [anon_sym_DOLLAR] = ACTIONS(3089), + [sym_raw_string] = ACTIONS(2022), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2022), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2022), + [anon_sym_BQUOTE] = ACTIONS(2022), + [anon_sym_LT_LPAREN] = ACTIONS(2022), + [anon_sym_GT_LPAREN] = ACTIONS(2022), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3041), - [sym_word] = ACTIONS(1994), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3089), + [sym_word] = ACTIONS(2024), }, [1721] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4997), + [sym_regex_without_right_brace] = ACTIONS(5059), }, [1722] = { [sym_concatenation] = STATE(451), @@ -51494,49 +51732,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(5061), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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__concat] = ACTIONS(2030), + [anon_sym_PIPE] = ACTIONS(3095), + [anon_sym_RPAREN] = ACTIONS(2030), + [anon_sym_PIPE_AMP] = ACTIONS(2030), + [anon_sym_AMP_AMP] = ACTIONS(2030), + [anon_sym_PIPE_PIPE] = ACTIONS(2030), + [sym__special_characters] = ACTIONS(3095), + [anon_sym_DQUOTE] = ACTIONS(2030), + [anon_sym_DOLLAR] = ACTIONS(3095), + [sym_raw_string] = ACTIONS(2030), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2030), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2030), + [anon_sym_BQUOTE] = ACTIONS(2030), + [anon_sym_LT_LPAREN] = ACTIONS(2030), + [anon_sym_GT_LPAREN] = ACTIONS(2030), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3047), - [sym_word] = ACTIONS(2002), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3095), + [sym_word] = ACTIONS(2032), }, [1724] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5001), + [sym_regex_without_right_brace] = ACTIONS(5063), }, [1725] = { [sym_concatenation] = STATE(451), @@ -51547,111 +51785,112 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(5035), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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__concat] = ACTIONS(2190), + [anon_sym_PIPE] = ACTIONS(3099), + [anon_sym_RPAREN] = ACTIONS(2190), + [anon_sym_PIPE_AMP] = ACTIONS(2190), + [anon_sym_AMP_AMP] = ACTIONS(2190), + [anon_sym_PIPE_PIPE] = ACTIONS(2190), + [sym__special_characters] = ACTIONS(3099), + [anon_sym_DQUOTE] = ACTIONS(2190), + [anon_sym_DOLLAR] = ACTIONS(3099), + [sym_raw_string] = ACTIONS(2190), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2190), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2190), + [anon_sym_BQUOTE] = ACTIONS(2190), + [anon_sym_LT_LPAREN] = ACTIONS(2190), + [anon_sym_GT_LPAREN] = ACTIONS(2190), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3051), - [sym_word] = ACTIONS(2158), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3099), + [sym_word] = ACTIONS(2192), }, [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__concat] = ACTIONS(2396), + [anon_sym_PIPE] = ACTIONS(3101), + [anon_sym_RPAREN] = ACTIONS(2396), + [anon_sym_PIPE_AMP] = ACTIONS(2396), + [anon_sym_AMP_AMP] = ACTIONS(2396), + [anon_sym_PIPE_PIPE] = ACTIONS(2396), + [sym__special_characters] = ACTIONS(3101), + [anon_sym_DQUOTE] = ACTIONS(2396), + [anon_sym_DOLLAR] = ACTIONS(3101), + [sym_raw_string] = ACTIONS(2396), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2396), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2396), + [anon_sym_BQUOTE] = ACTIONS(2396), + [anon_sym_LT_LPAREN] = ACTIONS(2396), + [anon_sym_GT_LPAREN] = ACTIONS(2396), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3053), - [sym_word] = ACTIONS(2360), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3101), + [sym_word] = ACTIONS(2398), }, [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_file_descriptor] = ACTIONS(3283), + [sym__concat] = ACTIONS(3283), + [anon_sym_PIPE] = ACTIONS(4602), + [anon_sym_RPAREN] = ACTIONS(3283), + [anon_sym_PIPE_AMP] = ACTIONS(3283), + [anon_sym_AMP_AMP] = ACTIONS(3283), + [anon_sym_PIPE_PIPE] = ACTIONS(3283), + [anon_sym_EQ_TILDE] = ACTIONS(4602), + [anon_sym_EQ_EQ] = ACTIONS(4602), + [anon_sym_LT] = ACTIONS(4602), + [anon_sym_GT] = ACTIONS(4602), + [anon_sym_GT_GT] = ACTIONS(3283), + [anon_sym_AMP_GT] = ACTIONS(4602), + [anon_sym_AMP_GT_GT] = ACTIONS(3283), + [anon_sym_LT_AMP] = ACTIONS(3283), + [anon_sym_GT_AMP] = ACTIONS(3283), + [anon_sym_LT_LT] = ACTIONS(4602), + [anon_sym_LT_LT_DASH] = ACTIONS(3283), + [anon_sym_LT_LT_LT] = ACTIONS(3283), + [sym__special_characters] = ACTIONS(4602), + [anon_sym_DQUOTE] = ACTIONS(3283), + [anon_sym_DOLLAR] = ACTIONS(4602), + [sym_raw_string] = ACTIONS(3283), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3283), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3283), + [anon_sym_BQUOTE] = ACTIONS(3283), + [anon_sym_LT_LPAREN] = ACTIONS(3283), + [anon_sym_GT_LPAREN] = ACTIONS(3283), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3237), + [sym_word] = ACTIONS(3285), }, [1729] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(5003), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(5065), [sym_comment] = ACTIONS(56), }, [1730] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(5005), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(5067), [sym_comment] = ACTIONS(56), }, [1731] = { - [anon_sym_RBRACE] = ACTIONS(5005), + [anon_sym_RBRACE] = ACTIONS(5067), [sym_comment] = ACTIONS(56), }, [1732] = { @@ -51663,56 +51902,57 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(5069), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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_file_descriptor] = ACTIONS(3347), + [sym__concat] = ACTIONS(3347), + [anon_sym_PIPE] = ACTIONS(4610), + [anon_sym_RPAREN] = ACTIONS(3347), + [anon_sym_PIPE_AMP] = ACTIONS(3347), + [anon_sym_AMP_AMP] = ACTIONS(3347), + [anon_sym_PIPE_PIPE] = ACTIONS(3347), + [anon_sym_EQ_TILDE] = ACTIONS(4610), + [anon_sym_EQ_EQ] = ACTIONS(4610), + [anon_sym_LT] = ACTIONS(4610), + [anon_sym_GT] = ACTIONS(4610), + [anon_sym_GT_GT] = ACTIONS(3347), + [anon_sym_AMP_GT] = ACTIONS(4610), + [anon_sym_AMP_GT_GT] = ACTIONS(3347), + [anon_sym_LT_AMP] = ACTIONS(3347), + [anon_sym_GT_AMP] = ACTIONS(3347), + [anon_sym_LT_LT] = ACTIONS(4610), + [anon_sym_LT_LT_DASH] = ACTIONS(3347), + [anon_sym_LT_LT_LT] = ACTIONS(3347), + [sym__special_characters] = ACTIONS(4610), + [anon_sym_DQUOTE] = ACTIONS(3347), + [anon_sym_DOLLAR] = ACTIONS(4610), + [sym_raw_string] = ACTIONS(3347), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3347), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3347), + [anon_sym_BQUOTE] = ACTIONS(3347), + [anon_sym_LT_LPAREN] = ACTIONS(3347), + [anon_sym_GT_LPAREN] = ACTIONS(3347), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3299), + [sym_word] = ACTIONS(3349), }, [1734] = { [sym_concatenation] = STATE(2395), @@ -51722,53 +51962,54 @@ 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(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), + [anon_sym_RBRACE] = ACTIONS(5067), + [sym__special_characters] = ACTIONS(5071), + [anon_sym_DQUOTE] = ACTIONS(1952), + [anon_sym_DOLLAR] = ACTIONS(1954), + [sym_raw_string] = ACTIONS(5073), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), + [anon_sym_BQUOTE] = ACTIONS(1962), + [anon_sym_LT_LPAREN] = ACTIONS(1964), + [anon_sym_GT_LPAREN] = ACTIONS(1964), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5013), + [sym_word] = ACTIONS(5075), }, [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_file_descriptor] = ACTIONS(3392), + [sym__concat] = ACTIONS(3392), + [anon_sym_PIPE] = ACTIONS(4618), + [anon_sym_RPAREN] = ACTIONS(3392), + [anon_sym_PIPE_AMP] = ACTIONS(3392), + [anon_sym_AMP_AMP] = ACTIONS(3392), + [anon_sym_PIPE_PIPE] = ACTIONS(3392), + [anon_sym_EQ_TILDE] = ACTIONS(4618), + [anon_sym_EQ_EQ] = ACTIONS(4618), + [anon_sym_LT] = ACTIONS(4618), + [anon_sym_GT] = ACTIONS(4618), + [anon_sym_GT_GT] = ACTIONS(3392), + [anon_sym_AMP_GT] = ACTIONS(4618), + [anon_sym_AMP_GT_GT] = ACTIONS(3392), + [anon_sym_LT_AMP] = ACTIONS(3392), + [anon_sym_GT_AMP] = ACTIONS(3392), + [anon_sym_LT_LT] = ACTIONS(4618), + [anon_sym_LT_LT_DASH] = ACTIONS(3392), + [anon_sym_LT_LT_LT] = ACTIONS(3392), + [sym__special_characters] = ACTIONS(4618), + [anon_sym_DQUOTE] = ACTIONS(3392), + [anon_sym_DOLLAR] = ACTIONS(4618), + [sym_raw_string] = ACTIONS(3392), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3392), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3392), + [anon_sym_BQUOTE] = ACTIONS(3392), + [anon_sym_LT_LPAREN] = ACTIONS(3392), + [anon_sym_GT_LPAREN] = ACTIONS(3392), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3344), + [sym_word] = ACTIONS(3394), }, [1736] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5015), + [sym_regex_without_right_brace] = ACTIONS(5077), }, [1737] = { [sym_concatenation] = STATE(451), @@ -51779,60 +52020,61 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(5079), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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_file_descriptor] = ACTIONS(3400), + [sym__concat] = ACTIONS(3400), + [anon_sym_PIPE] = ACTIONS(4624), + [anon_sym_RPAREN] = ACTIONS(3400), + [anon_sym_PIPE_AMP] = ACTIONS(3400), + [anon_sym_AMP_AMP] = ACTIONS(3400), + [anon_sym_PIPE_PIPE] = ACTIONS(3400), + [anon_sym_EQ_TILDE] = ACTIONS(4624), + [anon_sym_EQ_EQ] = ACTIONS(4624), + [anon_sym_LT] = ACTIONS(4624), + [anon_sym_GT] = ACTIONS(4624), + [anon_sym_GT_GT] = ACTIONS(3400), + [anon_sym_AMP_GT] = ACTIONS(4624), + [anon_sym_AMP_GT_GT] = ACTIONS(3400), + [anon_sym_LT_AMP] = ACTIONS(3400), + [anon_sym_GT_AMP] = ACTIONS(3400), + [anon_sym_LT_LT] = ACTIONS(4624), + [anon_sym_LT_LT_DASH] = ACTIONS(3400), + [anon_sym_LT_LT_LT] = ACTIONS(3400), + [sym__special_characters] = ACTIONS(4624), + [anon_sym_DQUOTE] = ACTIONS(3400), + [anon_sym_DOLLAR] = ACTIONS(4624), + [sym_raw_string] = ACTIONS(3400), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3400), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3400), + [anon_sym_BQUOTE] = ACTIONS(3400), + [anon_sym_LT_LPAREN] = ACTIONS(3400), + [anon_sym_GT_LPAREN] = ACTIONS(3400), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3352), + [sym_word] = ACTIONS(3402), }, [1739] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5019), + [sym_regex_without_right_brace] = ACTIONS(5081), }, [1740] = { [sym_concatenation] = STATE(451), @@ -51843,29 +52085,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(5083), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1741] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5023), + [sym_regex_without_right_brace] = ACTIONS(5085), }, [1742] = { [sym_concatenation] = STATE(451), @@ -51876,25 +52118,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(5067), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1743] = { [sym_concatenation] = STATE(451), @@ -51905,56 +52147,57 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(2402), - [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), + [anon_sym_RBRACE] = ACTIONS(5087), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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_file_descriptor] = ACTIONS(3412), + [sym__concat] = ACTIONS(3412), + [anon_sym_PIPE] = ACTIONS(4634), + [anon_sym_RPAREN] = ACTIONS(3412), + [anon_sym_PIPE_AMP] = ACTIONS(3412), + [anon_sym_AMP_AMP] = ACTIONS(3412), + [anon_sym_PIPE_PIPE] = ACTIONS(3412), + [anon_sym_EQ_TILDE] = ACTIONS(4634), + [anon_sym_EQ_EQ] = ACTIONS(4634), + [anon_sym_LT] = ACTIONS(4634), + [anon_sym_GT] = ACTIONS(4634), + [anon_sym_GT_GT] = ACTIONS(3412), + [anon_sym_AMP_GT] = ACTIONS(4634), + [anon_sym_AMP_GT_GT] = ACTIONS(3412), + [anon_sym_LT_AMP] = ACTIONS(3412), + [anon_sym_GT_AMP] = ACTIONS(3412), + [anon_sym_LT_LT] = ACTIONS(4634), + [anon_sym_LT_LT_DASH] = ACTIONS(3412), + [anon_sym_LT_LT_LT] = ACTIONS(3412), + [sym__special_characters] = ACTIONS(4634), + [anon_sym_DQUOTE] = ACTIONS(3412), + [anon_sym_DOLLAR] = ACTIONS(4634), + [sym_raw_string] = ACTIONS(3412), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3412), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3412), + [anon_sym_BQUOTE] = ACTIONS(3412), + [anon_sym_LT_LPAREN] = ACTIONS(3412), + [anon_sym_GT_LPAREN] = ACTIONS(3412), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3364), + [sym_word] = ACTIONS(3414), }, [1745] = { [sym_concatenation] = STATE(451), @@ -51965,103 +52208,103 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(5089), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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_file_descriptor] = ACTIONS(3466), + [anon_sym_PIPE] = ACTIONS(4983), + [anon_sym_RPAREN] = ACTIONS(4985), + [anon_sym_PIPE_AMP] = ACTIONS(4985), + [anon_sym_AMP_AMP] = ACTIONS(4985), + [anon_sym_PIPE_PIPE] = ACTIONS(4985), + [anon_sym_LT] = ACTIONS(3472), + [anon_sym_GT] = ACTIONS(3472), + [anon_sym_GT_GT] = ACTIONS(3474), + [anon_sym_AMP_GT] = ACTIONS(3472), + [anon_sym_AMP_GT_GT] = ACTIONS(3474), + [anon_sym_LT_AMP] = ACTIONS(3474), + [anon_sym_GT_AMP] = ACTIONS(3474), [sym_comment] = ACTIONS(56), }, [1747] = { [aux_sym_concatenation_repeat1] = STATE(1751), - [sym_file_descriptor] = ACTIONS(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_file_descriptor] = ACTIONS(1239), + [sym__concat] = ACTIONS(3680), + [anon_sym_PIPE] = ACTIONS(1241), + [anon_sym_RPAREN] = ACTIONS(1239), + [anon_sym_PIPE_AMP] = ACTIONS(1239), + [anon_sym_AMP_AMP] = ACTIONS(1239), + [anon_sym_PIPE_PIPE] = ACTIONS(1239), + [anon_sym_LT] = ACTIONS(1241), + [anon_sym_GT] = ACTIONS(1241), + [anon_sym_GT_GT] = ACTIONS(1239), + [anon_sym_AMP_GT] = ACTIONS(1241), + [anon_sym_AMP_GT_GT] = ACTIONS(1239), + [anon_sym_LT_AMP] = ACTIONS(1239), + [anon_sym_GT_AMP] = ACTIONS(1239), + [anon_sym_LT_LT] = ACTIONS(1241), + [anon_sym_LT_LT_DASH] = ACTIONS(1239), + [anon_sym_LT_LT_LT] = ACTIONS(1239), [sym_comment] = ACTIONS(56), }, [1748] = { [aux_sym_concatenation_repeat1] = STATE(1751), - [sym_file_descriptor] = ACTIONS(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_file_descriptor] = ACTIONS(1243), + [sym__concat] = ACTIONS(3680), + [anon_sym_PIPE] = ACTIONS(1245), + [anon_sym_RPAREN] = ACTIONS(1243), + [anon_sym_PIPE_AMP] = ACTIONS(1243), + [anon_sym_AMP_AMP] = ACTIONS(1243), + [anon_sym_PIPE_PIPE] = ACTIONS(1243), + [anon_sym_LT] = ACTIONS(1245), + [anon_sym_GT] = ACTIONS(1245), + [anon_sym_GT_GT] = ACTIONS(1243), + [anon_sym_AMP_GT] = ACTIONS(1245), + [anon_sym_AMP_GT_GT] = ACTIONS(1243), + [anon_sym_LT_AMP] = ACTIONS(1243), + [anon_sym_GT_AMP] = ACTIONS(1243), + [anon_sym_LT_LT] = ACTIONS(1245), + [anon_sym_LT_LT_DASH] = ACTIONS(1243), + [anon_sym_LT_LT_LT] = ACTIONS(1243), [sym_comment] = ACTIONS(56), }, [1749] = { - [sym_file_descriptor] = ACTIONS(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_file_descriptor] = ACTIONS(1243), + [anon_sym_PIPE] = ACTIONS(1245), + [anon_sym_RPAREN] = ACTIONS(1243), + [anon_sym_PIPE_AMP] = ACTIONS(1243), + [anon_sym_AMP_AMP] = ACTIONS(1243), + [anon_sym_PIPE_PIPE] = ACTIONS(1243), + [anon_sym_LT] = ACTIONS(1245), + [anon_sym_GT] = ACTIONS(1245), + [anon_sym_GT_GT] = ACTIONS(1243), + [anon_sym_AMP_GT] = ACTIONS(1245), + [anon_sym_AMP_GT_GT] = ACTIONS(1243), + [anon_sym_LT_AMP] = ACTIONS(1243), + [anon_sym_GT_AMP] = ACTIONS(1243), + [anon_sym_LT_LT] = ACTIONS(1245), + [anon_sym_LT_LT_DASH] = ACTIONS(1243), + [anon_sym_LT_LT_LT] = ACTIONS(1243), + [anon_sym_BQUOTE] = ACTIONS(1243), [sym_comment] = ACTIONS(56), }, [1750] = { @@ -52071,57 +52314,57 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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__special_characters] = ACTIONS(5091), + [anon_sym_DQUOTE] = ACTIONS(2218), + [anon_sym_DOLLAR] = ACTIONS(2220), + [sym_raw_string] = ACTIONS(5093), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2224), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2226), + [anon_sym_BQUOTE] = ACTIONS(2228), + [anon_sym_LT_LPAREN] = ACTIONS(2230), + [anon_sym_GT_LPAREN] = ACTIONS(2230), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5029), + [sym_word] = ACTIONS(5091), }, [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_file_descriptor] = ACTIONS(788), + [sym__concat] = ACTIONS(3680), + [anon_sym_PIPE] = ACTIONS(1567), + [anon_sym_RPAREN] = ACTIONS(788), + [anon_sym_PIPE_AMP] = ACTIONS(788), + [anon_sym_AMP_AMP] = ACTIONS(788), + [anon_sym_PIPE_PIPE] = ACTIONS(788), + [anon_sym_LT] = ACTIONS(1567), + [anon_sym_GT] = ACTIONS(1567), + [anon_sym_GT_GT] = ACTIONS(788), + [anon_sym_AMP_GT] = ACTIONS(1567), + [anon_sym_AMP_GT_GT] = ACTIONS(788), + [anon_sym_LT_AMP] = ACTIONS(788), + [anon_sym_GT_AMP] = ACTIONS(788), + [anon_sym_LT_LT] = ACTIONS(1567), + [anon_sym_LT_LT_DASH] = ACTIONS(788), + [anon_sym_LT_LT_LT] = ACTIONS(788), [sym_comment] = ACTIONS(56), }, [1752] = { - [sym_file_descriptor] = ACTIONS(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_file_descriptor] = ACTIONS(792), + [sym__concat] = ACTIONS(792), + [anon_sym_PIPE] = ACTIONS(1569), + [anon_sym_RPAREN] = ACTIONS(792), + [anon_sym_PIPE_AMP] = ACTIONS(792), + [anon_sym_AMP_AMP] = ACTIONS(792), + [anon_sym_PIPE_PIPE] = ACTIONS(792), + [anon_sym_LT] = ACTIONS(1569), + [anon_sym_GT] = ACTIONS(1569), + [anon_sym_GT_GT] = ACTIONS(792), + [anon_sym_AMP_GT] = ACTIONS(1569), + [anon_sym_AMP_GT_GT] = ACTIONS(792), + [anon_sym_LT_AMP] = ACTIONS(792), + [anon_sym_GT_AMP] = ACTIONS(792), + [anon_sym_LT_LT] = ACTIONS(1569), + [anon_sym_LT_LT_DASH] = ACTIONS(792), + [anon_sym_LT_LT_LT] = ACTIONS(792), [sym_comment] = ACTIONS(56), }, [1753] = { @@ -52129,7 +52372,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(134), [sym_command_substitution] = STATE(134), [aux_sym_string_repeat1] = STATE(447), - [anon_sym_DQUOTE] = ACTIONS(5033), + [anon_sym_DQUOTE] = ACTIONS(5095), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -52138,68 +52381,68 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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_file_descriptor] = ACTIONS(824), + [sym__concat] = ACTIONS(824), + [anon_sym_PIPE] = ACTIONS(1573), + [anon_sym_RPAREN] = ACTIONS(824), + [anon_sym_PIPE_AMP] = ACTIONS(824), + [anon_sym_AMP_AMP] = ACTIONS(824), + [anon_sym_PIPE_PIPE] = ACTIONS(824), + [anon_sym_LT] = ACTIONS(1573), + [anon_sym_GT] = ACTIONS(1573), + [anon_sym_GT_GT] = ACTIONS(824), + [anon_sym_AMP_GT] = ACTIONS(1573), + [anon_sym_AMP_GT_GT] = ACTIONS(824), + [anon_sym_LT_AMP] = ACTIONS(824), + [anon_sym_GT_AMP] = ACTIONS(824), + [anon_sym_LT_LT] = ACTIONS(1573), + [anon_sym_LT_LT_DASH] = ACTIONS(824), + [anon_sym_LT_LT_LT] = ACTIONS(824), [sym_comment] = ACTIONS(56), }, [1755] = { - [sym_file_descriptor] = ACTIONS(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_file_descriptor] = ACTIONS(828), + [sym__concat] = ACTIONS(828), + [anon_sym_PIPE] = ACTIONS(1575), + [anon_sym_RPAREN] = ACTIONS(828), + [anon_sym_PIPE_AMP] = ACTIONS(828), + [anon_sym_AMP_AMP] = ACTIONS(828), + [anon_sym_PIPE_PIPE] = ACTIONS(828), + [anon_sym_LT] = ACTIONS(1575), + [anon_sym_GT] = ACTIONS(1575), + [anon_sym_GT_GT] = ACTIONS(828), + [anon_sym_AMP_GT] = ACTIONS(1575), + [anon_sym_AMP_GT_GT] = ACTIONS(828), + [anon_sym_LT_AMP] = ACTIONS(828), + [anon_sym_GT_AMP] = ACTIONS(828), + [anon_sym_LT_LT] = ACTIONS(1575), + [anon_sym_LT_LT_DASH] = ACTIONS(828), + [anon_sym_LT_LT_LT] = ACTIONS(828), [sym_comment] = ACTIONS(56), }, [1756] = { - [sym_file_descriptor] = ACTIONS(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_file_descriptor] = ACTIONS(832), + [sym__concat] = ACTIONS(832), + [anon_sym_PIPE] = ACTIONS(1577), + [anon_sym_RPAREN] = ACTIONS(832), + [anon_sym_PIPE_AMP] = ACTIONS(832), + [anon_sym_AMP_AMP] = ACTIONS(832), + [anon_sym_PIPE_PIPE] = ACTIONS(832), + [anon_sym_LT] = ACTIONS(1577), + [anon_sym_GT] = ACTIONS(1577), + [anon_sym_GT_GT] = ACTIONS(832), + [anon_sym_AMP_GT] = ACTIONS(1577), + [anon_sym_AMP_GT_GT] = ACTIONS(832), + [anon_sym_LT_AMP] = ACTIONS(832), + [anon_sym_GT_AMP] = ACTIONS(832), + [anon_sym_LT_LT] = ACTIONS(1577), + [anon_sym_LT_LT_DASH] = ACTIONS(832), + [anon_sym_LT_LT_LT] = ACTIONS(832), [sym_comment] = ACTIONS(56), }, [1757] = { - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(5035), + [anon_sym_LBRACK] = ACTIONS(836), + [anon_sym_EQ] = ACTIONS(5097), [sym_comment] = ACTIONS(56), }, [1758] = { @@ -52211,39 +52454,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(5099), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(5101), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1759] = { [sym_subscript] = STATE(2416), - [sym_variable_name] = ACTIONS(5041), - [anon_sym_DOLLAR] = ACTIONS(5043), - [anon_sym_DASH] = ACTIONS(5043), + [sym_variable_name] = ACTIONS(5103), + [anon_sym_DOLLAR] = ACTIONS(5105), + [anon_sym_DASH] = ACTIONS(5105), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5107), + [anon_sym_STAR] = ACTIONS(5105), + [anon_sym_AT] = ACTIONS(5105), + [anon_sym_QMARK] = ACTIONS(5105), + [anon_sym_0] = ACTIONS(5109), + [anon_sym__] = ACTIONS(5109), }, [1760] = { [sym_concatenation] = STATE(451), @@ -52254,26 +52497,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(5111), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(5113), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1761] = { [sym_concatenation] = STATE(451), @@ -52284,159 +52527,159 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(5115), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(5117), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(5119), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), [sym_comment] = ACTIONS(56), }, [1763] = { - [sym_file_descriptor] = ACTIONS(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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(5119), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [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), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_PIPE_AMP] = ACTIONS(1072), + [anon_sym_AMP_AMP] = ACTIONS(1074), + [anon_sym_PIPE_PIPE] = ACTIONS(1074), + [anon_sym_BQUOTE] = ACTIONS(5119), [sym_comment] = ACTIONS(56), }, [1765] = { - [sym_file_descriptor] = ACTIONS(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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_PIPE_AMP] = ACTIONS(1072), + [anon_sym_AMP_AMP] = ACTIONS(1074), + [anon_sym_PIPE_PIPE] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(5119), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [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), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(5121), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), [sym_comment] = ACTIONS(56), }, [1767] = { - [sym_file_descriptor] = ACTIONS(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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(5121), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [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_file_descriptor] = ACTIONS(4072), + [anon_sym_PIPE] = ACTIONS(5123), + [anon_sym_RPAREN] = ACTIONS(4072), + [anon_sym_PIPE_AMP] = ACTIONS(4072), + [anon_sym_AMP_AMP] = ACTIONS(4072), + [anon_sym_PIPE_PIPE] = ACTIONS(4072), + [anon_sym_LT] = ACTIONS(5123), + [anon_sym_GT] = ACTIONS(5123), + [anon_sym_GT_GT] = ACTIONS(4072), + [anon_sym_AMP_GT] = ACTIONS(5123), + [anon_sym_AMP_GT_GT] = ACTIONS(4072), + [anon_sym_LT_AMP] = ACTIONS(4072), + [anon_sym_GT_AMP] = ACTIONS(4072), + [anon_sym_LT_LT] = ACTIONS(5123), + [anon_sym_LT_LT_DASH] = ACTIONS(4072), + [anon_sym_LT_LT_LT] = ACTIONS(4072), + [anon_sym_BQUOTE] = ACTIONS(4072), [sym_comment] = ACTIONS(56), }, [1769] = { [sym_simple_expansion] = STATE(1218), [sym_expansion] = STATE(1218), [aux_sym_heredoc_repeat1] = STATE(1902), - [sym__heredoc_middle] = ACTIONS(2400), - [sym__heredoc_end] = ACTIONS(5063), - [anon_sym_DOLLAR] = ACTIONS(2404), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2406), + [sym__heredoc_middle] = ACTIONS(2440), + [sym__heredoc_end] = ACTIONS(5125), + [anon_sym_DOLLAR] = ACTIONS(2444), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2446), [sym_comment] = ACTIONS(56), }, [1770] = { @@ -52444,22 +52687,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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_file_descriptor] = ACTIONS(980), + [anon_sym_PIPE] = ACTIONS(5127), + [anon_sym_RPAREN] = ACTIONS(5129), + [anon_sym_PIPE_AMP] = ACTIONS(5129), + [anon_sym_AMP_AMP] = ACTIONS(5129), + [anon_sym_PIPE_PIPE] = ACTIONS(5129), + [anon_sym_LT] = ACTIONS(988), + [anon_sym_GT] = ACTIONS(988), + [anon_sym_GT_GT] = ACTIONS(990), + [anon_sym_AMP_GT] = ACTIONS(988), + [anon_sym_AMP_GT_GT] = ACTIONS(990), + [anon_sym_LT_AMP] = ACTIONS(990), + [anon_sym_GT_AMP] = ACTIONS(990), + [anon_sym_LT_LT] = ACTIONS(992), + [anon_sym_LT_LT_DASH] = ACTIONS(994), + [anon_sym_LT_LT_LT] = ACTIONS(996), [sym_comment] = ACTIONS(56), }, [1771] = { @@ -52469,79 +52712,79 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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__special_characters] = ACTIONS(5131), + [anon_sym_DQUOTE] = ACTIONS(2252), + [anon_sym_DOLLAR] = ACTIONS(2254), + [sym_raw_string] = ACTIONS(5133), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2258), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2260), + [anon_sym_BQUOTE] = ACTIONS(2262), + [anon_sym_LT_LPAREN] = ACTIONS(2264), + [anon_sym_GT_LPAREN] = ACTIONS(2264), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5069), + [sym_word] = ACTIONS(5131), }, [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_file_descriptor] = ACTIONS(788), + [sym__concat] = ACTIONS(3768), + [sym_variable_name] = ACTIONS(788), + [anon_sym_PIPE] = ACTIONS(1567), + [anon_sym_PIPE_AMP] = ACTIONS(788), + [anon_sym_AMP_AMP] = ACTIONS(788), + [anon_sym_PIPE_PIPE] = ACTIONS(788), + [anon_sym_LT] = ACTIONS(1567), + [anon_sym_GT] = ACTIONS(1567), + [anon_sym_GT_GT] = ACTIONS(788), + [anon_sym_AMP_GT] = ACTIONS(1567), + [anon_sym_AMP_GT_GT] = ACTIONS(788), + [anon_sym_LT_AMP] = ACTIONS(788), + [anon_sym_GT_AMP] = ACTIONS(788), + [sym__special_characters] = ACTIONS(1567), + [anon_sym_DQUOTE] = ACTIONS(788), + [anon_sym_DOLLAR] = ACTIONS(1567), + [sym_raw_string] = ACTIONS(788), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(788), + [anon_sym_BQUOTE] = ACTIONS(788), + [anon_sym_LT_LPAREN] = ACTIONS(788), + [anon_sym_GT_LPAREN] = ACTIONS(788), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1539), + [sym_word] = ACTIONS(1567), }, [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_file_descriptor] = ACTIONS(792), + [sym__concat] = ACTIONS(792), + [sym_variable_name] = ACTIONS(792), + [anon_sym_PIPE] = ACTIONS(1569), + [anon_sym_PIPE_AMP] = ACTIONS(792), + [anon_sym_AMP_AMP] = ACTIONS(792), + [anon_sym_PIPE_PIPE] = ACTIONS(792), + [anon_sym_LT] = ACTIONS(1569), + [anon_sym_GT] = ACTIONS(1569), + [anon_sym_GT_GT] = ACTIONS(792), + [anon_sym_AMP_GT] = ACTIONS(1569), + [anon_sym_AMP_GT_GT] = ACTIONS(792), + [anon_sym_LT_AMP] = ACTIONS(792), + [anon_sym_GT_AMP] = ACTIONS(792), + [sym__special_characters] = ACTIONS(1569), + [anon_sym_DQUOTE] = ACTIONS(792), + [anon_sym_DOLLAR] = ACTIONS(1569), + [sym_raw_string] = ACTIONS(792), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(792), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(792), + [anon_sym_BQUOTE] = ACTIONS(792), + [anon_sym_LT_LPAREN] = ACTIONS(792), + [anon_sym_GT_LPAREN] = ACTIONS(792), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1541), + [sym_word] = ACTIONS(1569), }, [1774] = { [sym_simple_expansion] = STATE(134), [sym_expansion] = STATE(134), [sym_command_substitution] = STATE(134), [aux_sym_string_repeat1] = STATE(447), - [anon_sym_DQUOTE] = ACTIONS(5073), + [anon_sym_DQUOTE] = ACTIONS(5135), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -52550,89 +52793,89 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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_file_descriptor] = ACTIONS(824), + [sym__concat] = ACTIONS(824), + [sym_variable_name] = ACTIONS(824), + [anon_sym_PIPE] = ACTIONS(1573), + [anon_sym_PIPE_AMP] = ACTIONS(824), + [anon_sym_AMP_AMP] = ACTIONS(824), + [anon_sym_PIPE_PIPE] = ACTIONS(824), + [anon_sym_LT] = ACTIONS(1573), + [anon_sym_GT] = ACTIONS(1573), + [anon_sym_GT_GT] = ACTIONS(824), + [anon_sym_AMP_GT] = ACTIONS(1573), + [anon_sym_AMP_GT_GT] = ACTIONS(824), + [anon_sym_LT_AMP] = ACTIONS(824), + [anon_sym_GT_AMP] = ACTIONS(824), + [sym__special_characters] = ACTIONS(1573), + [anon_sym_DQUOTE] = ACTIONS(824), + [anon_sym_DOLLAR] = ACTIONS(1573), + [sym_raw_string] = ACTIONS(824), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(824), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(824), + [anon_sym_BQUOTE] = ACTIONS(824), + [anon_sym_LT_LPAREN] = ACTIONS(824), + [anon_sym_GT_LPAREN] = ACTIONS(824), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1545), + [sym_word] = ACTIONS(1573), }, [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_file_descriptor] = ACTIONS(828), + [sym__concat] = ACTIONS(828), + [sym_variable_name] = ACTIONS(828), + [anon_sym_PIPE] = ACTIONS(1575), + [anon_sym_PIPE_AMP] = ACTIONS(828), + [anon_sym_AMP_AMP] = ACTIONS(828), + [anon_sym_PIPE_PIPE] = ACTIONS(828), + [anon_sym_LT] = ACTIONS(1575), + [anon_sym_GT] = ACTIONS(1575), + [anon_sym_GT_GT] = ACTIONS(828), + [anon_sym_AMP_GT] = ACTIONS(1575), + [anon_sym_AMP_GT_GT] = ACTIONS(828), + [anon_sym_LT_AMP] = ACTIONS(828), + [anon_sym_GT_AMP] = ACTIONS(828), + [sym__special_characters] = ACTIONS(1575), + [anon_sym_DQUOTE] = ACTIONS(828), + [anon_sym_DOLLAR] = ACTIONS(1575), + [sym_raw_string] = ACTIONS(828), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), + [anon_sym_BQUOTE] = ACTIONS(828), + [anon_sym_LT_LPAREN] = ACTIONS(828), + [anon_sym_GT_LPAREN] = ACTIONS(828), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1547), + [sym_word] = ACTIONS(1575), }, [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_file_descriptor] = ACTIONS(832), + [sym__concat] = ACTIONS(832), + [sym_variable_name] = ACTIONS(832), + [anon_sym_PIPE] = ACTIONS(1577), + [anon_sym_PIPE_AMP] = ACTIONS(832), + [anon_sym_AMP_AMP] = ACTIONS(832), + [anon_sym_PIPE_PIPE] = ACTIONS(832), + [anon_sym_LT] = ACTIONS(1577), + [anon_sym_GT] = ACTIONS(1577), + [anon_sym_GT_GT] = ACTIONS(832), + [anon_sym_AMP_GT] = ACTIONS(1577), + [anon_sym_AMP_GT_GT] = ACTIONS(832), + [anon_sym_LT_AMP] = ACTIONS(832), + [anon_sym_GT_AMP] = ACTIONS(832), + [sym__special_characters] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(832), + [anon_sym_DOLLAR] = ACTIONS(1577), + [sym_raw_string] = ACTIONS(832), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(832), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(832), + [anon_sym_BQUOTE] = ACTIONS(832), + [anon_sym_LT_LPAREN] = ACTIONS(832), + [anon_sym_GT_LPAREN] = ACTIONS(832), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1549), + [sym_word] = ACTIONS(1577), }, [1778] = { - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(5075), + [anon_sym_LBRACK] = ACTIONS(836), + [anon_sym_EQ] = ACTIONS(5137), [sym_comment] = ACTIONS(56), }, [1779] = { @@ -52644,39 +52887,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(5139), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(5141), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1780] = { [sym_subscript] = STATE(2436), - [sym_variable_name] = ACTIONS(5081), - [anon_sym_DOLLAR] = ACTIONS(5083), - [anon_sym_DASH] = ACTIONS(5083), + [sym_variable_name] = ACTIONS(5143), + [anon_sym_DOLLAR] = ACTIONS(5145), + [anon_sym_DASH] = ACTIONS(5145), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5147), + [anon_sym_STAR] = ACTIONS(5145), + [anon_sym_AT] = ACTIONS(5145), + [anon_sym_QMARK] = ACTIONS(5145), + [anon_sym_0] = ACTIONS(5149), + [anon_sym__] = ACTIONS(5149), }, [1781] = { [sym_concatenation] = STATE(451), @@ -52687,26 +52930,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(5151), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(5153), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1782] = { [sym_concatenation] = STATE(451), @@ -52717,167 +52960,167 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(5155), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(5157), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(5159), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), [sym_comment] = ACTIONS(56), }, [1784] = { - [sym_file_descriptor] = ACTIONS(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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(5159), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [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), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_PIPE_AMP] = ACTIONS(1072), + [anon_sym_AMP_AMP] = ACTIONS(1074), + [anon_sym_PIPE_PIPE] = ACTIONS(1074), + [anon_sym_BQUOTE] = ACTIONS(5159), [sym_comment] = ACTIONS(56), }, [1786] = { - [sym_file_descriptor] = ACTIONS(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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_PIPE_AMP] = ACTIONS(1072), + [anon_sym_AMP_AMP] = ACTIONS(1074), + [anon_sym_PIPE_PIPE] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(5159), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [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), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(5161), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), [sym_comment] = ACTIONS(56), }, [1788] = { - [sym_file_descriptor] = ACTIONS(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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(5161), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [1789] = { [sym_file_redirect] = STATE(539), [sym_heredoc_redirect] = STATE(539), [sym_herestring_redirect] = STATE(539), [aux_sym_while_statement_repeat1] = STATE(1192), - [sym_file_descriptor] = ACTIONS(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_file_descriptor] = ACTIONS(1076), + [anon_sym_PIPE] = ACTIONS(4937), + [anon_sym_PIPE_AMP] = ACTIONS(4939), + [anon_sym_AMP_AMP] = ACTIONS(4939), + [anon_sym_PIPE_PIPE] = ACTIONS(4939), + [anon_sym_LT] = ACTIONS(1080), + [anon_sym_GT] = ACTIONS(1080), + [anon_sym_GT_GT] = ACTIONS(1082), + [anon_sym_AMP_GT] = ACTIONS(1080), + [anon_sym_AMP_GT_GT] = ACTIONS(1082), + [anon_sym_LT_AMP] = ACTIONS(1082), + [anon_sym_GT_AMP] = ACTIONS(1082), + [anon_sym_LT_LT] = ACTIONS(992), + [anon_sym_LT_LT_DASH] = ACTIONS(994), + [anon_sym_LT_LT_LT] = ACTIONS(1084), + [anon_sym_BQUOTE] = ACTIONS(4939), [sym_comment] = ACTIONS(56), }, [1790] = { [sym_compound_statement] = STATE(2445), - [anon_sym_LBRACE] = ACTIONS(2046), + [anon_sym_LBRACE] = ACTIONS(2076), [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), + [anon_sym_LT] = ACTIONS(5163), + [anon_sym_GT] = ACTIONS(5163), + [anon_sym_GT_GT] = ACTIONS(5165), + [anon_sym_AMP_GT] = ACTIONS(5163), + [anon_sym_AMP_GT_GT] = ACTIONS(5165), + [anon_sym_LT_AMP] = ACTIONS(5165), + [anon_sym_GT_AMP] = ACTIONS(5165), [sym_comment] = ACTIONS(56), }, [1792] = { @@ -52888,143 +53131,143 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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__special_characters] = ACTIONS(5167), + [anon_sym_DQUOTE] = ACTIONS(5169), + [anon_sym_DOLLAR] = ACTIONS(5171), + [sym_raw_string] = ACTIONS(5173), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5175), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5177), + [anon_sym_BQUOTE] = ACTIONS(5179), + [anon_sym_LT_LPAREN] = ACTIONS(5181), + [anon_sym_GT_LPAREN] = ACTIONS(5181), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5121), + [sym_word] = ACTIONS(5183), }, [1793] = { [sym_file_redirect] = STATE(539), [sym_heredoc_redirect] = STATE(539), [sym_herestring_redirect] = STATE(539), [aux_sym_while_statement_repeat1] = STATE(1192), - [sym_file_descriptor] = ACTIONS(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_file_descriptor] = ACTIONS(1076), + [anon_sym_PIPE] = ACTIONS(4993), + [anon_sym_PIPE_AMP] = ACTIONS(4995), + [anon_sym_AMP_AMP] = ACTIONS(4995), + [anon_sym_PIPE_PIPE] = ACTIONS(4995), + [anon_sym_LT] = ACTIONS(1080), + [anon_sym_GT] = ACTIONS(1080), + [anon_sym_GT_GT] = ACTIONS(1082), + [anon_sym_AMP_GT] = ACTIONS(1080), + [anon_sym_AMP_GT_GT] = ACTIONS(1082), + [anon_sym_LT_AMP] = ACTIONS(1082), + [anon_sym_GT_AMP] = ACTIONS(1082), + [anon_sym_LT_LT] = ACTIONS(992), + [anon_sym_LT_LT_DASH] = ACTIONS(994), + [anon_sym_LT_LT_LT] = ACTIONS(1084), + [anon_sym_BQUOTE] = ACTIONS(4995), [sym_comment] = ACTIONS(56), }, [1794] = { [aux_sym_concatenation_repeat1] = STATE(1119), - [sym__concat] = ACTIONS(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__concat] = ACTIONS(2274), + [sym_variable_name] = ACTIONS(1301), + [anon_sym_PIPE] = ACTIONS(3424), + [anon_sym_PIPE_AMP] = ACTIONS(1301), + [anon_sym_AMP_AMP] = ACTIONS(1301), + [anon_sym_PIPE_PIPE] = ACTIONS(1301), + [sym__special_characters] = ACTIONS(3424), + [anon_sym_DQUOTE] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(3424), + [sym_raw_string] = ACTIONS(1301), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1301), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1301), + [anon_sym_BQUOTE] = ACTIONS(1301), + [anon_sym_LT_LPAREN] = ACTIONS(1301), + [anon_sym_GT_LPAREN] = ACTIONS(1301), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3374), - [sym_word] = ACTIONS(1283), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3424), + [sym_word] = ACTIONS(1305), }, [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__concat] = ACTIONS(2274), + [sym_variable_name] = ACTIONS(1277), + [anon_sym_PIPE] = ACTIONS(3418), + [anon_sym_PIPE_AMP] = ACTIONS(1277), + [anon_sym_AMP_AMP] = ACTIONS(1277), + [anon_sym_PIPE_PIPE] = ACTIONS(1277), + [sym__special_characters] = ACTIONS(3418), + [anon_sym_DQUOTE] = ACTIONS(1277), + [anon_sym_DOLLAR] = ACTIONS(3418), + [sym_raw_string] = ACTIONS(1277), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1277), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1277), + [anon_sym_BQUOTE] = ACTIONS(1277), + [anon_sym_LT_LPAREN] = ACTIONS(1277), + [anon_sym_GT_LPAREN] = ACTIONS(1277), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3368), - [sym_word] = ACTIONS(1257), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3418), + [sym_word] = ACTIONS(1279), }, [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(1858), - [anon_sym_LT_LPAREN] = ACTIONS(1858), - [anon_sym_GT_LPAREN] = ACTIONS(1858), + [sym__concat] = ACTIONS(1886), + [sym_variable_name] = ACTIONS(1886), + [anon_sym_PIPE] = ACTIONS(3056), + [anon_sym_PIPE_AMP] = ACTIONS(1886), + [anon_sym_AMP_AMP] = ACTIONS(1886), + [anon_sym_PIPE_PIPE] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(3056), + [anon_sym_DQUOTE] = ACTIONS(1886), + [anon_sym_DOLLAR] = ACTIONS(3056), + [sym_raw_string] = ACTIONS(1886), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1886), + [anon_sym_BQUOTE] = ACTIONS(1886), + [anon_sym_LT_LPAREN] = ACTIONS(1886), + [anon_sym_GT_LPAREN] = ACTIONS(1886), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3008), - [sym_word] = ACTIONS(1860), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3056), + [sym_word] = ACTIONS(1888), }, [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(1858), - [anon_sym_LT_LPAREN] = ACTIONS(1858), - [anon_sym_GT_LPAREN] = ACTIONS(1858), + [sym__concat] = ACTIONS(5185), + [sym_variable_name] = ACTIONS(1886), + [anon_sym_PIPE] = ACTIONS(3056), + [anon_sym_PIPE_AMP] = ACTIONS(1886), + [anon_sym_AMP_AMP] = ACTIONS(1886), + [anon_sym_PIPE_PIPE] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(3056), + [anon_sym_DQUOTE] = ACTIONS(1886), + [anon_sym_DOLLAR] = ACTIONS(3056), + [sym_raw_string] = ACTIONS(1886), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1886), + [anon_sym_BQUOTE] = ACTIONS(1886), + [anon_sym_LT_LPAREN] = ACTIONS(1886), + [anon_sym_GT_LPAREN] = ACTIONS(1886), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3008), - [sym_word] = ACTIONS(1860), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3056), + [sym_word] = ACTIONS(1888), }, [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__concat] = ACTIONS(1923), + [sym_variable_name] = ACTIONS(1923), + [anon_sym_PIPE] = ACTIONS(3061), + [anon_sym_PIPE_AMP] = ACTIONS(1923), + [anon_sym_AMP_AMP] = ACTIONS(1923), + [anon_sym_PIPE_PIPE] = ACTIONS(1923), + [sym__special_characters] = ACTIONS(3061), + [anon_sym_DQUOTE] = ACTIONS(1923), + [anon_sym_DOLLAR] = ACTIONS(3061), + [sym_raw_string] = ACTIONS(1923), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1923), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1923), + [anon_sym_BQUOTE] = ACTIONS(1923), + [anon_sym_LT_LPAREN] = ACTIONS(1923), + [anon_sym_GT_LPAREN] = ACTIONS(1923), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3013), - [sym_word] = ACTIONS(1897), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3061), + [sym_word] = ACTIONS(1925), }, [1799] = { [sym_concatenation] = STATE(2458), @@ -53034,42 +53277,42 @@ 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(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), + [anon_sym_RBRACE] = ACTIONS(5188), + [sym__special_characters] = ACTIONS(5190), + [anon_sym_DQUOTE] = ACTIONS(1952), + [anon_sym_DOLLAR] = ACTIONS(1954), + [sym_raw_string] = ACTIONS(5192), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), + [anon_sym_BQUOTE] = ACTIONS(1962), + [anon_sym_LT_LPAREN] = ACTIONS(1964), + [anon_sym_GT_LPAREN] = ACTIONS(1964), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5132), + [sym_word] = ACTIONS(5194), }, [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__concat] = ACTIONS(1968), + [sym_variable_name] = ACTIONS(1968), + [anon_sym_PIPE] = ACTIONS(3071), + [anon_sym_PIPE_AMP] = ACTIONS(1968), + [anon_sym_AMP_AMP] = ACTIONS(1968), + [anon_sym_PIPE_PIPE] = ACTIONS(1968), + [sym__special_characters] = ACTIONS(3071), + [anon_sym_DQUOTE] = ACTIONS(1968), + [anon_sym_DOLLAR] = ACTIONS(3071), + [sym_raw_string] = ACTIONS(1968), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1968), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1968), + [anon_sym_BQUOTE] = ACTIONS(1968), + [anon_sym_LT_LPAREN] = ACTIONS(1968), + [anon_sym_GT_LPAREN] = ACTIONS(1968), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3023), - [sym_word] = ACTIONS(1942), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3071), + [sym_word] = ACTIONS(1970), }, [1801] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5134), + [sym_regex_without_right_brace] = ACTIONS(5196), }, [1802] = { [sym_concatenation] = STATE(451), @@ -53080,29 +53323,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(5198), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1803] = { - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(5138), + [anon_sym_LBRACK] = ACTIONS(836), + [anon_sym_EQ] = ACTIONS(5200), [sym_comment] = ACTIONS(56), }, [1804] = { @@ -53114,26 +53357,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(2464), - [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), + [anon_sym_RBRACE] = ACTIONS(5202), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(5204), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1805] = { [sym_concatenation] = STATE(451), @@ -53144,26 +53387,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(5206), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(5208), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1806] = { [sym_concatenation] = STATE(451), @@ -53174,50 +53417,50 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(5188), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(5210), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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__concat] = ACTIONS(2022), + [sym_variable_name] = ACTIONS(2022), + [anon_sym_PIPE] = ACTIONS(3089), + [anon_sym_PIPE_AMP] = ACTIONS(2022), + [anon_sym_AMP_AMP] = ACTIONS(2022), + [anon_sym_PIPE_PIPE] = ACTIONS(2022), + [sym__special_characters] = ACTIONS(3089), + [anon_sym_DQUOTE] = ACTIONS(2022), + [anon_sym_DOLLAR] = ACTIONS(3089), + [sym_raw_string] = ACTIONS(2022), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2022), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2022), + [anon_sym_BQUOTE] = ACTIONS(2022), + [anon_sym_LT_LPAREN] = ACTIONS(2022), + [anon_sym_GT_LPAREN] = ACTIONS(2022), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3041), - [sym_word] = ACTIONS(1994), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3089), + [sym_word] = ACTIONS(2024), }, [1808] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5150), + [sym_regex_without_right_brace] = ACTIONS(5212), }, [1809] = { [sym_concatenation] = STATE(451), @@ -53228,49 +53471,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(5214), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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__concat] = ACTIONS(2030), + [sym_variable_name] = ACTIONS(2030), + [anon_sym_PIPE] = ACTIONS(3095), + [anon_sym_PIPE_AMP] = ACTIONS(2030), + [anon_sym_AMP_AMP] = ACTIONS(2030), + [anon_sym_PIPE_PIPE] = ACTIONS(2030), + [sym__special_characters] = ACTIONS(3095), + [anon_sym_DQUOTE] = ACTIONS(2030), + [anon_sym_DOLLAR] = ACTIONS(3095), + [sym_raw_string] = ACTIONS(2030), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2030), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2030), + [anon_sym_BQUOTE] = ACTIONS(2030), + [anon_sym_LT_LPAREN] = ACTIONS(2030), + [anon_sym_GT_LPAREN] = ACTIONS(2030), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3047), - [sym_word] = ACTIONS(2002), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3095), + [sym_word] = ACTIONS(2032), }, [1811] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5154), + [sym_regex_without_right_brace] = ACTIONS(5216), }, [1812] = { [sym_concatenation] = STATE(451), @@ -53281,123 +53524,123 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(5188), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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__concat] = ACTIONS(2190), + [sym_variable_name] = ACTIONS(2190), + [anon_sym_PIPE] = ACTIONS(3099), + [anon_sym_PIPE_AMP] = ACTIONS(2190), + [anon_sym_AMP_AMP] = ACTIONS(2190), + [anon_sym_PIPE_PIPE] = ACTIONS(2190), + [sym__special_characters] = ACTIONS(3099), + [anon_sym_DQUOTE] = ACTIONS(2190), + [anon_sym_DOLLAR] = ACTIONS(3099), + [sym_raw_string] = ACTIONS(2190), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2190), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2190), + [anon_sym_BQUOTE] = ACTIONS(2190), + [anon_sym_LT_LPAREN] = ACTIONS(2190), + [anon_sym_GT_LPAREN] = ACTIONS(2190), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3051), - [sym_word] = ACTIONS(2158), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3099), + [sym_word] = ACTIONS(2192), }, [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__concat] = ACTIONS(2396), + [sym_variable_name] = ACTIONS(2396), + [anon_sym_PIPE] = ACTIONS(3101), + [anon_sym_PIPE_AMP] = ACTIONS(2396), + [anon_sym_AMP_AMP] = ACTIONS(2396), + [anon_sym_PIPE_PIPE] = ACTIONS(2396), + [sym__special_characters] = ACTIONS(3101), + [anon_sym_DQUOTE] = ACTIONS(2396), + [anon_sym_DOLLAR] = ACTIONS(3101), + [sym_raw_string] = ACTIONS(2396), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2396), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2396), + [anon_sym_BQUOTE] = ACTIONS(2396), + [anon_sym_LT_LPAREN] = ACTIONS(2396), + [anon_sym_GT_LPAREN] = ACTIONS(2396), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3053), - [sym_word] = ACTIONS(2360), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3101), + [sym_word] = ACTIONS(2398), }, [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(1858), - [anon_sym_LT_LPAREN] = ACTIONS(1858), - [anon_sym_GT_LPAREN] = ACTIONS(1858), + [sym__concat] = ACTIONS(1886), + [anon_sym_PIPE] = ACTIONS(3056), + [anon_sym_PIPE_AMP] = ACTIONS(1886), + [anon_sym_AMP_AMP] = ACTIONS(1886), + [anon_sym_PIPE_PIPE] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(3056), + [anon_sym_DQUOTE] = ACTIONS(1886), + [anon_sym_DOLLAR] = ACTIONS(3056), + [sym_raw_string] = ACTIONS(1886), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1886), + [anon_sym_BQUOTE] = ACTIONS(1886), + [anon_sym_LT_LPAREN] = ACTIONS(1886), + [anon_sym_GT_LPAREN] = ACTIONS(1886), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3008), - [sym_word] = ACTIONS(1860), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3056), + [sym_word] = ACTIONS(1888), }, [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(1858), - [anon_sym_LT_LPAREN] = ACTIONS(1858), - [anon_sym_GT_LPAREN] = ACTIONS(1858), + [sym__concat] = ACTIONS(5218), + [anon_sym_PIPE] = ACTIONS(3056), + [anon_sym_PIPE_AMP] = ACTIONS(1886), + [anon_sym_AMP_AMP] = ACTIONS(1886), + [anon_sym_PIPE_PIPE] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(3056), + [anon_sym_DQUOTE] = ACTIONS(1886), + [anon_sym_DOLLAR] = ACTIONS(3056), + [sym_raw_string] = ACTIONS(1886), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1886), + [anon_sym_BQUOTE] = ACTIONS(1886), + [anon_sym_LT_LPAREN] = ACTIONS(1886), + [anon_sym_GT_LPAREN] = ACTIONS(1886), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3008), - [sym_word] = ACTIONS(1860), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3056), + [sym_word] = ACTIONS(1888), }, [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__concat] = ACTIONS(1923), + [anon_sym_PIPE] = ACTIONS(3061), + [anon_sym_PIPE_AMP] = ACTIONS(1923), + [anon_sym_AMP_AMP] = ACTIONS(1923), + [anon_sym_PIPE_PIPE] = ACTIONS(1923), + [sym__special_characters] = ACTIONS(3061), + [anon_sym_DQUOTE] = ACTIONS(1923), + [anon_sym_DOLLAR] = ACTIONS(3061), + [sym_raw_string] = ACTIONS(1923), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1923), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1923), + [anon_sym_BQUOTE] = ACTIONS(1923), + [anon_sym_LT_LPAREN] = ACTIONS(1923), + [anon_sym_GT_LPAREN] = ACTIONS(1923), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3013), - [sym_word] = ACTIONS(1897), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3061), + [sym_word] = ACTIONS(1925), }, [1818] = { [sym_concatenation] = STATE(2476), @@ -53407,41 +53650,41 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(5221), + [sym__special_characters] = ACTIONS(5223), + [anon_sym_DQUOTE] = ACTIONS(1952), + [anon_sym_DOLLAR] = ACTIONS(1954), + [sym_raw_string] = ACTIONS(5225), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), + [anon_sym_BQUOTE] = ACTIONS(1962), + [anon_sym_LT_LPAREN] = ACTIONS(1964), + [anon_sym_GT_LPAREN] = ACTIONS(1964), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5165), + [sym_word] = ACTIONS(5227), }, [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__concat] = ACTIONS(1968), + [anon_sym_PIPE] = ACTIONS(3071), + [anon_sym_PIPE_AMP] = ACTIONS(1968), + [anon_sym_AMP_AMP] = ACTIONS(1968), + [anon_sym_PIPE_PIPE] = ACTIONS(1968), + [sym__special_characters] = ACTIONS(3071), + [anon_sym_DQUOTE] = ACTIONS(1968), + [anon_sym_DOLLAR] = ACTIONS(3071), + [sym_raw_string] = ACTIONS(1968), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1968), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1968), + [anon_sym_BQUOTE] = ACTIONS(1968), + [anon_sym_LT_LPAREN] = ACTIONS(1968), + [anon_sym_GT_LPAREN] = ACTIONS(1968), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3023), - [sym_word] = ACTIONS(1942), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3071), + [sym_word] = ACTIONS(1970), }, [1820] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5167), + [sym_regex_without_right_brace] = ACTIONS(5229), }, [1821] = { [sym_concatenation] = STATE(451), @@ -53452,29 +53695,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(5231), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1822] = { - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(5171), + [anon_sym_LBRACK] = ACTIONS(836), + [anon_sym_EQ] = ACTIONS(5233), [sym_comment] = ACTIONS(56), }, [1823] = { @@ -53486,26 +53729,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(5235), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(5237), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1824] = { [sym_concatenation] = STATE(451), @@ -53516,26 +53759,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(5239), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(5241), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1825] = { [sym_concatenation] = STATE(451), @@ -53546,49 +53789,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(5221), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(5243), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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__concat] = ACTIONS(2022), + [anon_sym_PIPE] = ACTIONS(3089), + [anon_sym_PIPE_AMP] = ACTIONS(2022), + [anon_sym_AMP_AMP] = ACTIONS(2022), + [anon_sym_PIPE_PIPE] = ACTIONS(2022), + [sym__special_characters] = ACTIONS(3089), + [anon_sym_DQUOTE] = ACTIONS(2022), + [anon_sym_DOLLAR] = ACTIONS(3089), + [sym_raw_string] = ACTIONS(2022), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2022), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2022), + [anon_sym_BQUOTE] = ACTIONS(2022), + [anon_sym_LT_LPAREN] = ACTIONS(2022), + [anon_sym_GT_LPAREN] = ACTIONS(2022), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3041), - [sym_word] = ACTIONS(1994), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3089), + [sym_word] = ACTIONS(2024), }, [1827] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5183), + [sym_regex_without_right_brace] = ACTIONS(5245), }, [1828] = { [sym_concatenation] = STATE(451), @@ -53599,48 +53842,48 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(5247), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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__concat] = ACTIONS(2030), + [anon_sym_PIPE] = ACTIONS(3095), + [anon_sym_PIPE_AMP] = ACTIONS(2030), + [anon_sym_AMP_AMP] = ACTIONS(2030), + [anon_sym_PIPE_PIPE] = ACTIONS(2030), + [sym__special_characters] = ACTIONS(3095), + [anon_sym_DQUOTE] = ACTIONS(2030), + [anon_sym_DOLLAR] = ACTIONS(3095), + [sym_raw_string] = ACTIONS(2030), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2030), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2030), + [anon_sym_BQUOTE] = ACTIONS(2030), + [anon_sym_LT_LPAREN] = ACTIONS(2030), + [anon_sym_GT_LPAREN] = ACTIONS(2030), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3047), - [sym_word] = ACTIONS(2002), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3095), + [sym_word] = ACTIONS(2032), }, [1830] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5187), + [sym_regex_without_right_brace] = ACTIONS(5249), }, [1831] = { [sym_concatenation] = STATE(451), @@ -53651,108 +53894,109 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(5221), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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__concat] = ACTIONS(2190), + [anon_sym_PIPE] = ACTIONS(3099), + [anon_sym_PIPE_AMP] = ACTIONS(2190), + [anon_sym_AMP_AMP] = ACTIONS(2190), + [anon_sym_PIPE_PIPE] = ACTIONS(2190), + [sym__special_characters] = ACTIONS(3099), + [anon_sym_DQUOTE] = ACTIONS(2190), + [anon_sym_DOLLAR] = ACTIONS(3099), + [sym_raw_string] = ACTIONS(2190), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2190), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2190), + [anon_sym_BQUOTE] = ACTIONS(2190), + [anon_sym_LT_LPAREN] = ACTIONS(2190), + [anon_sym_GT_LPAREN] = ACTIONS(2190), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3051), - [sym_word] = ACTIONS(2158), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3099), + [sym_word] = ACTIONS(2192), }, [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__concat] = ACTIONS(2396), + [anon_sym_PIPE] = ACTIONS(3101), + [anon_sym_PIPE_AMP] = ACTIONS(2396), + [anon_sym_AMP_AMP] = ACTIONS(2396), + [anon_sym_PIPE_PIPE] = ACTIONS(2396), + [sym__special_characters] = ACTIONS(3101), + [anon_sym_DQUOTE] = ACTIONS(2396), + [anon_sym_DOLLAR] = ACTIONS(3101), + [sym_raw_string] = ACTIONS(2396), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2396), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2396), + [anon_sym_BQUOTE] = ACTIONS(2396), + [anon_sym_LT_LPAREN] = ACTIONS(2396), + [anon_sym_GT_LPAREN] = ACTIONS(2396), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3053), - [sym_word] = ACTIONS(2360), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3101), + [sym_word] = ACTIONS(2398), }, [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_file_descriptor] = ACTIONS(3283), + [sym__concat] = ACTIONS(3283), + [anon_sym_PIPE] = ACTIONS(4602), + [anon_sym_PIPE_AMP] = ACTIONS(3283), + [anon_sym_AMP_AMP] = ACTIONS(3283), + [anon_sym_PIPE_PIPE] = ACTIONS(3283), + [anon_sym_EQ_TILDE] = ACTIONS(4602), + [anon_sym_EQ_EQ] = ACTIONS(4602), + [anon_sym_LT] = ACTIONS(4602), + [anon_sym_GT] = ACTIONS(4602), + [anon_sym_GT_GT] = ACTIONS(3283), + [anon_sym_AMP_GT] = ACTIONS(4602), + [anon_sym_AMP_GT_GT] = ACTIONS(3283), + [anon_sym_LT_AMP] = ACTIONS(3283), + [anon_sym_GT_AMP] = ACTIONS(3283), + [anon_sym_LT_LT] = ACTIONS(4602), + [anon_sym_LT_LT_DASH] = ACTIONS(3283), + [anon_sym_LT_LT_LT] = ACTIONS(3283), + [sym__special_characters] = ACTIONS(4602), + [anon_sym_DQUOTE] = ACTIONS(3283), + [anon_sym_DOLLAR] = ACTIONS(4602), + [sym_raw_string] = ACTIONS(3283), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3283), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3283), + [anon_sym_BQUOTE] = ACTIONS(3283), + [anon_sym_LT_LPAREN] = ACTIONS(3283), + [anon_sym_GT_LPAREN] = ACTIONS(3283), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3237), + [sym_word] = ACTIONS(3285), }, [1835] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(5189), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(5251), [sym_comment] = ACTIONS(56), }, [1836] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(5191), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(5253), [sym_comment] = ACTIONS(56), }, [1837] = { - [anon_sym_RBRACE] = ACTIONS(5191), + [anon_sym_RBRACE] = ACTIONS(5253), [sym_comment] = ACTIONS(56), }, [1838] = { @@ -53764,55 +54008,56 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(5255), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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_file_descriptor] = ACTIONS(3347), + [sym__concat] = ACTIONS(3347), + [anon_sym_PIPE] = ACTIONS(4610), + [anon_sym_PIPE_AMP] = ACTIONS(3347), + [anon_sym_AMP_AMP] = ACTIONS(3347), + [anon_sym_PIPE_PIPE] = ACTIONS(3347), + [anon_sym_EQ_TILDE] = ACTIONS(4610), + [anon_sym_EQ_EQ] = ACTIONS(4610), + [anon_sym_LT] = ACTIONS(4610), + [anon_sym_GT] = ACTIONS(4610), + [anon_sym_GT_GT] = ACTIONS(3347), + [anon_sym_AMP_GT] = ACTIONS(4610), + [anon_sym_AMP_GT_GT] = ACTIONS(3347), + [anon_sym_LT_AMP] = ACTIONS(3347), + [anon_sym_GT_AMP] = ACTIONS(3347), + [anon_sym_LT_LT] = ACTIONS(4610), + [anon_sym_LT_LT_DASH] = ACTIONS(3347), + [anon_sym_LT_LT_LT] = ACTIONS(3347), + [sym__special_characters] = ACTIONS(4610), + [anon_sym_DQUOTE] = ACTIONS(3347), + [anon_sym_DOLLAR] = ACTIONS(4610), + [sym_raw_string] = ACTIONS(3347), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3347), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3347), + [anon_sym_BQUOTE] = ACTIONS(3347), + [anon_sym_LT_LPAREN] = ACTIONS(3347), + [anon_sym_GT_LPAREN] = ACTIONS(3347), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3299), + [sym_word] = ACTIONS(3349), }, [1840] = { [sym_concatenation] = STATE(2497), @@ -53822,52 +54067,53 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(5253), + [sym__special_characters] = ACTIONS(5257), + [anon_sym_DQUOTE] = ACTIONS(1952), + [anon_sym_DOLLAR] = ACTIONS(1954), + [sym_raw_string] = ACTIONS(5259), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), + [anon_sym_BQUOTE] = ACTIONS(1962), + [anon_sym_LT_LPAREN] = ACTIONS(1964), + [anon_sym_GT_LPAREN] = ACTIONS(1964), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5199), + [sym_word] = ACTIONS(5261), }, [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_file_descriptor] = ACTIONS(3392), + [sym__concat] = ACTIONS(3392), + [anon_sym_PIPE] = ACTIONS(4618), + [anon_sym_PIPE_AMP] = ACTIONS(3392), + [anon_sym_AMP_AMP] = ACTIONS(3392), + [anon_sym_PIPE_PIPE] = ACTIONS(3392), + [anon_sym_EQ_TILDE] = ACTIONS(4618), + [anon_sym_EQ_EQ] = ACTIONS(4618), + [anon_sym_LT] = ACTIONS(4618), + [anon_sym_GT] = ACTIONS(4618), + [anon_sym_GT_GT] = ACTIONS(3392), + [anon_sym_AMP_GT] = ACTIONS(4618), + [anon_sym_AMP_GT_GT] = ACTIONS(3392), + [anon_sym_LT_AMP] = ACTIONS(3392), + [anon_sym_GT_AMP] = ACTIONS(3392), + [anon_sym_LT_LT] = ACTIONS(4618), + [anon_sym_LT_LT_DASH] = ACTIONS(3392), + [anon_sym_LT_LT_LT] = ACTIONS(3392), + [sym__special_characters] = ACTIONS(4618), + [anon_sym_DQUOTE] = ACTIONS(3392), + [anon_sym_DOLLAR] = ACTIONS(4618), + [sym_raw_string] = ACTIONS(3392), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3392), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3392), + [anon_sym_BQUOTE] = ACTIONS(3392), + [anon_sym_LT_LPAREN] = ACTIONS(3392), + [anon_sym_GT_LPAREN] = ACTIONS(3392), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3344), + [sym_word] = ACTIONS(3394), }, [1842] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5201), + [sym_regex_without_right_brace] = ACTIONS(5263), }, [1843] = { [sym_concatenation] = STATE(451), @@ -53878,59 +54124,60 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(5265), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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_file_descriptor] = ACTIONS(3400), + [sym__concat] = ACTIONS(3400), + [anon_sym_PIPE] = ACTIONS(4624), + [anon_sym_PIPE_AMP] = ACTIONS(3400), + [anon_sym_AMP_AMP] = ACTIONS(3400), + [anon_sym_PIPE_PIPE] = ACTIONS(3400), + [anon_sym_EQ_TILDE] = ACTIONS(4624), + [anon_sym_EQ_EQ] = ACTIONS(4624), + [anon_sym_LT] = ACTIONS(4624), + [anon_sym_GT] = ACTIONS(4624), + [anon_sym_GT_GT] = ACTIONS(3400), + [anon_sym_AMP_GT] = ACTIONS(4624), + [anon_sym_AMP_GT_GT] = ACTIONS(3400), + [anon_sym_LT_AMP] = ACTIONS(3400), + [anon_sym_GT_AMP] = ACTIONS(3400), + [anon_sym_LT_LT] = ACTIONS(4624), + [anon_sym_LT_LT_DASH] = ACTIONS(3400), + [anon_sym_LT_LT_LT] = ACTIONS(3400), + [sym__special_characters] = ACTIONS(4624), + [anon_sym_DQUOTE] = ACTIONS(3400), + [anon_sym_DOLLAR] = ACTIONS(4624), + [sym_raw_string] = ACTIONS(3400), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3400), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3400), + [anon_sym_BQUOTE] = ACTIONS(3400), + [anon_sym_LT_LPAREN] = ACTIONS(3400), + [anon_sym_GT_LPAREN] = ACTIONS(3400), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3352), + [sym_word] = ACTIONS(3402), }, [1845] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5205), + [sym_regex_without_right_brace] = ACTIONS(5267), }, [1846] = { [sym_concatenation] = STATE(451), @@ -53941,29 +54188,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(5269), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1847] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5209), + [sym_regex_without_right_brace] = ACTIONS(5271), }, [1848] = { [sym_concatenation] = STATE(451), @@ -53974,25 +54221,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(5253), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1849] = { [sym_concatenation] = STATE(451), @@ -54003,55 +54250,56 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(5273), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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_file_descriptor] = ACTIONS(3412), + [sym__concat] = ACTIONS(3412), + [anon_sym_PIPE] = ACTIONS(4634), + [anon_sym_PIPE_AMP] = ACTIONS(3412), + [anon_sym_AMP_AMP] = ACTIONS(3412), + [anon_sym_PIPE_PIPE] = ACTIONS(3412), + [anon_sym_EQ_TILDE] = ACTIONS(4634), + [anon_sym_EQ_EQ] = ACTIONS(4634), + [anon_sym_LT] = ACTIONS(4634), + [anon_sym_GT] = ACTIONS(4634), + [anon_sym_GT_GT] = ACTIONS(3412), + [anon_sym_AMP_GT] = ACTIONS(4634), + [anon_sym_AMP_GT_GT] = ACTIONS(3412), + [anon_sym_LT_AMP] = ACTIONS(3412), + [anon_sym_GT_AMP] = ACTIONS(3412), + [anon_sym_LT_LT] = ACTIONS(4634), + [anon_sym_LT_LT_DASH] = ACTIONS(3412), + [anon_sym_LT_LT_LT] = ACTIONS(3412), + [sym__special_characters] = ACTIONS(4634), + [anon_sym_DQUOTE] = ACTIONS(3412), + [anon_sym_DOLLAR] = ACTIONS(4634), + [sym_raw_string] = ACTIONS(3412), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3412), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3412), + [anon_sym_BQUOTE] = ACTIONS(3412), + [anon_sym_LT_LPAREN] = ACTIONS(3412), + [anon_sym_GT_LPAREN] = ACTIONS(3412), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3364), + [sym_word] = ACTIONS(3414), }, [1851] = { [sym_concatenation] = STATE(451), @@ -54062,83 +54310,83 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(5275), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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_file_descriptor] = ACTIONS(3792), + [anon_sym_PIPE] = ACTIONS(4983), + [anon_sym_PIPE_AMP] = ACTIONS(4985), + [anon_sym_AMP_AMP] = ACTIONS(4985), + [anon_sym_PIPE_PIPE] = ACTIONS(4985), + [anon_sym_LT] = ACTIONS(3794), + [anon_sym_GT] = ACTIONS(3794), + [anon_sym_GT_GT] = ACTIONS(3796), + [anon_sym_AMP_GT] = ACTIONS(3794), + [anon_sym_AMP_GT_GT] = ACTIONS(3796), + [anon_sym_LT_AMP] = ACTIONS(3796), + [anon_sym_GT_AMP] = ACTIONS(3796), + [anon_sym_BQUOTE] = ACTIONS(4985), [sym_comment] = ACTIONS(56), }, [1853] = { [aux_sym_concatenation_repeat1] = STATE(1856), - [sym_file_descriptor] = ACTIONS(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_file_descriptor] = ACTIONS(1239), + [sym__concat] = ACTIONS(3968), + [anon_sym_PIPE] = ACTIONS(1241), + [anon_sym_PIPE_AMP] = ACTIONS(1239), + [anon_sym_AMP_AMP] = ACTIONS(1239), + [anon_sym_PIPE_PIPE] = ACTIONS(1239), + [anon_sym_LT] = ACTIONS(1241), + [anon_sym_GT] = ACTIONS(1241), + [anon_sym_GT_GT] = ACTIONS(1239), + [anon_sym_AMP_GT] = ACTIONS(1241), + [anon_sym_AMP_GT_GT] = ACTIONS(1239), + [anon_sym_LT_AMP] = ACTIONS(1239), + [anon_sym_GT_AMP] = ACTIONS(1239), + [anon_sym_LT_LT] = ACTIONS(1241), + [anon_sym_LT_LT_DASH] = ACTIONS(1239), + [anon_sym_LT_LT_LT] = ACTIONS(1239), + [anon_sym_BQUOTE] = ACTIONS(1239), [sym_comment] = ACTIONS(56), }, [1854] = { [aux_sym_concatenation_repeat1] = STATE(1856), - [sym_file_descriptor] = ACTIONS(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_file_descriptor] = ACTIONS(1243), + [sym__concat] = ACTIONS(3968), + [anon_sym_PIPE] = ACTIONS(1245), + [anon_sym_PIPE_AMP] = ACTIONS(1243), + [anon_sym_AMP_AMP] = ACTIONS(1243), + [anon_sym_PIPE_PIPE] = ACTIONS(1243), + [anon_sym_LT] = ACTIONS(1245), + [anon_sym_GT] = ACTIONS(1245), + [anon_sym_GT_GT] = ACTIONS(1243), + [anon_sym_AMP_GT] = ACTIONS(1245), + [anon_sym_AMP_GT_GT] = ACTIONS(1243), + [anon_sym_LT_AMP] = ACTIONS(1243), + [anon_sym_GT_AMP] = ACTIONS(1243), + [anon_sym_LT_LT] = ACTIONS(1245), + [anon_sym_LT_LT_DASH] = ACTIONS(1243), + [anon_sym_LT_LT_LT] = ACTIONS(1243), + [anon_sym_BQUOTE] = ACTIONS(1243), [sym_comment] = ACTIONS(56), }, [1855] = { @@ -54148,57 +54396,57 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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__special_characters] = ACTIONS(5277), + [anon_sym_DQUOTE] = ACTIONS(2374), + [anon_sym_DOLLAR] = ACTIONS(2376), + [sym_raw_string] = ACTIONS(5279), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2382), + [anon_sym_BQUOTE] = ACTIONS(2384), + [anon_sym_LT_LPAREN] = ACTIONS(2386), + [anon_sym_GT_LPAREN] = ACTIONS(2386), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5215), + [sym_word] = ACTIONS(5277), }, [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_file_descriptor] = ACTIONS(788), + [sym__concat] = ACTIONS(3968), + [anon_sym_PIPE] = ACTIONS(1567), + [anon_sym_PIPE_AMP] = ACTIONS(788), + [anon_sym_AMP_AMP] = ACTIONS(788), + [anon_sym_PIPE_PIPE] = ACTIONS(788), + [anon_sym_LT] = ACTIONS(1567), + [anon_sym_GT] = ACTIONS(1567), + [anon_sym_GT_GT] = ACTIONS(788), + [anon_sym_AMP_GT] = ACTIONS(1567), + [anon_sym_AMP_GT_GT] = ACTIONS(788), + [anon_sym_LT_AMP] = ACTIONS(788), + [anon_sym_GT_AMP] = ACTIONS(788), + [anon_sym_LT_LT] = ACTIONS(1567), + [anon_sym_LT_LT_DASH] = ACTIONS(788), + [anon_sym_LT_LT_LT] = ACTIONS(788), + [anon_sym_BQUOTE] = ACTIONS(788), [sym_comment] = ACTIONS(56), }, [1857] = { - [sym_file_descriptor] = ACTIONS(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_file_descriptor] = ACTIONS(792), + [sym__concat] = ACTIONS(792), + [anon_sym_PIPE] = ACTIONS(1569), + [anon_sym_PIPE_AMP] = ACTIONS(792), + [anon_sym_AMP_AMP] = ACTIONS(792), + [anon_sym_PIPE_PIPE] = ACTIONS(792), + [anon_sym_LT] = ACTIONS(1569), + [anon_sym_GT] = ACTIONS(1569), + [anon_sym_GT_GT] = ACTIONS(792), + [anon_sym_AMP_GT] = ACTIONS(1569), + [anon_sym_AMP_GT_GT] = ACTIONS(792), + [anon_sym_LT_AMP] = ACTIONS(792), + [anon_sym_GT_AMP] = ACTIONS(792), + [anon_sym_LT_LT] = ACTIONS(1569), + [anon_sym_LT_LT_DASH] = ACTIONS(792), + [anon_sym_LT_LT_LT] = ACTIONS(792), + [anon_sym_BQUOTE] = ACTIONS(792), [sym_comment] = ACTIONS(56), }, [1858] = { @@ -54206,7 +54454,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(134), [sym_command_substitution] = STATE(134), [aux_sym_string_repeat1] = STATE(447), - [anon_sym_DQUOTE] = ACTIONS(5219), + [anon_sym_DQUOTE] = ACTIONS(5281), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -54215,68 +54463,68 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(182), }, [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_file_descriptor] = ACTIONS(824), + [sym__concat] = ACTIONS(824), + [anon_sym_PIPE] = ACTIONS(1573), + [anon_sym_PIPE_AMP] = ACTIONS(824), + [anon_sym_AMP_AMP] = ACTIONS(824), + [anon_sym_PIPE_PIPE] = ACTIONS(824), + [anon_sym_LT] = ACTIONS(1573), + [anon_sym_GT] = ACTIONS(1573), + [anon_sym_GT_GT] = ACTIONS(824), + [anon_sym_AMP_GT] = ACTIONS(1573), + [anon_sym_AMP_GT_GT] = ACTIONS(824), + [anon_sym_LT_AMP] = ACTIONS(824), + [anon_sym_GT_AMP] = ACTIONS(824), + [anon_sym_LT_LT] = ACTIONS(1573), + [anon_sym_LT_LT_DASH] = ACTIONS(824), + [anon_sym_LT_LT_LT] = ACTIONS(824), + [anon_sym_BQUOTE] = ACTIONS(824), [sym_comment] = ACTIONS(56), }, [1860] = { - [sym_file_descriptor] = ACTIONS(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_file_descriptor] = ACTIONS(828), + [sym__concat] = ACTIONS(828), + [anon_sym_PIPE] = ACTIONS(1575), + [anon_sym_PIPE_AMP] = ACTIONS(828), + [anon_sym_AMP_AMP] = ACTIONS(828), + [anon_sym_PIPE_PIPE] = ACTIONS(828), + [anon_sym_LT] = ACTIONS(1575), + [anon_sym_GT] = ACTIONS(1575), + [anon_sym_GT_GT] = ACTIONS(828), + [anon_sym_AMP_GT] = ACTIONS(1575), + [anon_sym_AMP_GT_GT] = ACTIONS(828), + [anon_sym_LT_AMP] = ACTIONS(828), + [anon_sym_GT_AMP] = ACTIONS(828), + [anon_sym_LT_LT] = ACTIONS(1575), + [anon_sym_LT_LT_DASH] = ACTIONS(828), + [anon_sym_LT_LT_LT] = ACTIONS(828), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_comment] = ACTIONS(56), }, [1861] = { - [sym_file_descriptor] = ACTIONS(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_file_descriptor] = ACTIONS(832), + [sym__concat] = ACTIONS(832), + [anon_sym_PIPE] = ACTIONS(1577), + [anon_sym_PIPE_AMP] = ACTIONS(832), + [anon_sym_AMP_AMP] = ACTIONS(832), + [anon_sym_PIPE_PIPE] = ACTIONS(832), + [anon_sym_LT] = ACTIONS(1577), + [anon_sym_GT] = ACTIONS(1577), + [anon_sym_GT_GT] = ACTIONS(832), + [anon_sym_AMP_GT] = ACTIONS(1577), + [anon_sym_AMP_GT_GT] = ACTIONS(832), + [anon_sym_LT_AMP] = ACTIONS(832), + [anon_sym_GT_AMP] = ACTIONS(832), + [anon_sym_LT_LT] = ACTIONS(1577), + [anon_sym_LT_LT_DASH] = ACTIONS(832), + [anon_sym_LT_LT_LT] = ACTIONS(832), + [anon_sym_BQUOTE] = ACTIONS(832), [sym_comment] = ACTIONS(56), }, [1862] = { - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(5221), + [anon_sym_LBRACK] = ACTIONS(836), + [anon_sym_EQ] = ACTIONS(5283), [sym_comment] = ACTIONS(56), }, [1863] = { @@ -54288,39 +54536,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(5285), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(5287), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1864] = { [sym_subscript] = STATE(2517), - [sym_variable_name] = ACTIONS(5227), - [anon_sym_DOLLAR] = ACTIONS(5229), - [anon_sym_DASH] = ACTIONS(5229), + [sym_variable_name] = ACTIONS(5289), + [anon_sym_DOLLAR] = ACTIONS(5291), + [anon_sym_DASH] = ACTIONS(5291), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5293), + [anon_sym_STAR] = ACTIONS(5291), + [anon_sym_AT] = ACTIONS(5291), + [anon_sym_QMARK] = ACTIONS(5291), + [anon_sym_0] = ACTIONS(5295), + [anon_sym__] = ACTIONS(5295), }, [1865] = { [sym_concatenation] = STATE(451), @@ -54331,26 +54579,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(5297), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(5299), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1866] = { [sym_concatenation] = STATE(451), @@ -54361,236 +54609,236 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(5301), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(5303), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(5305), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), [sym_comment] = ACTIONS(56), }, [1868] = { - [sym_file_descriptor] = ACTIONS(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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(5305), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [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), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_PIPE_AMP] = ACTIONS(1072), + [anon_sym_AMP_AMP] = ACTIONS(1074), + [anon_sym_PIPE_PIPE] = ACTIONS(1074), + [anon_sym_BQUOTE] = ACTIONS(5305), [sym_comment] = ACTIONS(56), }, [1870] = { - [sym_file_descriptor] = ACTIONS(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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_PIPE_AMP] = ACTIONS(1072), + [anon_sym_AMP_AMP] = ACTIONS(1074), + [anon_sym_PIPE_PIPE] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(5305), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [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), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(5307), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), [sym_comment] = ACTIONS(56), }, [1872] = { - [sym_file_descriptor] = ACTIONS(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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(5307), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [1873] = { [sym_file_redirect] = STATE(539), [sym_heredoc_redirect] = STATE(539), [sym_herestring_redirect] = STATE(539), [aux_sym_while_statement_repeat1] = STATE(1192), - [sym_file_descriptor] = ACTIONS(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_file_descriptor] = ACTIONS(1076), + [anon_sym_PIPE] = ACTIONS(5127), + [anon_sym_PIPE_AMP] = ACTIONS(5129), + [anon_sym_AMP_AMP] = ACTIONS(5129), + [anon_sym_PIPE_PIPE] = ACTIONS(5129), + [anon_sym_LT] = ACTIONS(1080), + [anon_sym_GT] = ACTIONS(1080), + [anon_sym_GT_GT] = ACTIONS(1082), + [anon_sym_AMP_GT] = ACTIONS(1080), + [anon_sym_AMP_GT_GT] = ACTIONS(1082), + [anon_sym_LT_AMP] = ACTIONS(1082), + [anon_sym_GT_AMP] = ACTIONS(1082), + [anon_sym_LT_LT] = ACTIONS(992), + [anon_sym_LT_LT_DASH] = ACTIONS(994), + [anon_sym_LT_LT_LT] = ACTIONS(1084), + [anon_sym_BQUOTE] = ACTIONS(5129), [sym_comment] = ACTIONS(56), }, [1874] = { - [anon_sym_esac] = ACTIONS(4328), - [anon_sym_PIPE] = ACTIONS(4328), - [anon_sym_RPAREN] = ACTIONS(4328), - [anon_sym_SEMI_SEMI] = ACTIONS(4328), - [anon_sym_PIPE_AMP] = ACTIONS(4328), - [anon_sym_AMP_AMP] = ACTIONS(4328), - [anon_sym_PIPE_PIPE] = ACTIONS(4328), + [anon_sym_esac] = ACTIONS(4388), + [anon_sym_PIPE] = ACTIONS(4388), + [anon_sym_RPAREN] = ACTIONS(4388), + [anon_sym_SEMI_SEMI] = ACTIONS(4388), + [anon_sym_PIPE_AMP] = ACTIONS(4388), + [anon_sym_AMP_AMP] = ACTIONS(4388), + [anon_sym_PIPE_PIPE] = ACTIONS(4388), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4328), - [anon_sym_LF] = ACTIONS(4328), - [anon_sym_AMP] = ACTIONS(4328), + [anon_sym_SEMI] = ACTIONS(4388), + [anon_sym_LF] = ACTIONS(4388), + [anon_sym_AMP] = ACTIONS(4388), }, [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_file_descriptor] = ACTIONS(1886), + [sym__concat] = ACTIONS(1886), + [anon_sym_PIPE] = ACTIONS(1888), + [anon_sym_SEMI_SEMI] = ACTIONS(1888), + [anon_sym_PIPE_AMP] = ACTIONS(1888), + [anon_sym_AMP_AMP] = ACTIONS(1888), + [anon_sym_PIPE_PIPE] = ACTIONS(1888), + [anon_sym_LT] = ACTIONS(1888), + [anon_sym_GT] = ACTIONS(1888), + [anon_sym_GT_GT] = ACTIONS(1888), + [anon_sym_AMP_GT] = ACTIONS(1888), + [anon_sym_AMP_GT_GT] = ACTIONS(1888), + [anon_sym_LT_AMP] = ACTIONS(1888), + [anon_sym_GT_AMP] = ACTIONS(1888), + [anon_sym_LT_LT] = ACTIONS(1888), + [anon_sym_LT_LT_DASH] = ACTIONS(1888), + [anon_sym_LT_LT_LT] = ACTIONS(1888), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1860), - [anon_sym_LF] = ACTIONS(1860), - [anon_sym_AMP] = ACTIONS(1860), + [anon_sym_SEMI] = ACTIONS(1888), + [anon_sym_LF] = ACTIONS(1888), + [anon_sym_AMP] = ACTIONS(1888), }, [1876] = { [aux_sym_concatenation_repeat1] = STATE(1876), - [sym_file_descriptor] = ACTIONS(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_file_descriptor] = ACTIONS(1886), + [sym__concat] = ACTIONS(5309), + [anon_sym_PIPE] = ACTIONS(1888), + [anon_sym_SEMI_SEMI] = ACTIONS(1888), + [anon_sym_PIPE_AMP] = ACTIONS(1888), + [anon_sym_AMP_AMP] = ACTIONS(1888), + [anon_sym_PIPE_PIPE] = ACTIONS(1888), + [anon_sym_LT] = ACTIONS(1888), + [anon_sym_GT] = ACTIONS(1888), + [anon_sym_GT_GT] = ACTIONS(1888), + [anon_sym_AMP_GT] = ACTIONS(1888), + [anon_sym_AMP_GT_GT] = ACTIONS(1888), + [anon_sym_LT_AMP] = ACTIONS(1888), + [anon_sym_GT_AMP] = ACTIONS(1888), + [anon_sym_LT_LT] = ACTIONS(1888), + [anon_sym_LT_LT_DASH] = ACTIONS(1888), + [anon_sym_LT_LT_LT] = ACTIONS(1888), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1860), - [anon_sym_LF] = ACTIONS(1860), - [anon_sym_AMP] = ACTIONS(1860), + [anon_sym_SEMI] = ACTIONS(1888), + [anon_sym_LF] = ACTIONS(1888), + [anon_sym_AMP] = ACTIONS(1888), }, [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_file_descriptor] = ACTIONS(1923), + [sym__concat] = ACTIONS(1923), + [anon_sym_PIPE] = ACTIONS(1925), + [anon_sym_SEMI_SEMI] = ACTIONS(1925), + [anon_sym_PIPE_AMP] = ACTIONS(1925), + [anon_sym_AMP_AMP] = ACTIONS(1925), + [anon_sym_PIPE_PIPE] = ACTIONS(1925), + [anon_sym_LT] = ACTIONS(1925), + [anon_sym_GT] = ACTIONS(1925), + [anon_sym_GT_GT] = ACTIONS(1925), + [anon_sym_AMP_GT] = ACTIONS(1925), + [anon_sym_AMP_GT_GT] = ACTIONS(1925), + [anon_sym_LT_AMP] = ACTIONS(1925), + [anon_sym_GT_AMP] = ACTIONS(1925), + [anon_sym_LT_LT] = ACTIONS(1925), + [anon_sym_LT_LT_DASH] = ACTIONS(1925), + [anon_sym_LT_LT_LT] = ACTIONS(1925), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1897), - [anon_sym_LF] = ACTIONS(1897), - [anon_sym_AMP] = ACTIONS(1897), + [anon_sym_SEMI] = ACTIONS(1925), + [anon_sym_LF] = ACTIONS(1925), + [anon_sym_AMP] = ACTIONS(1925), }, [1878] = { [sym_concatenation] = STATE(2529), @@ -54600,45 +54848,45 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(5312), + [sym__special_characters] = ACTIONS(5314), + [anon_sym_DQUOTE] = ACTIONS(1952), + [anon_sym_DOLLAR] = ACTIONS(1954), + [sym_raw_string] = ACTIONS(5316), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), + [anon_sym_BQUOTE] = ACTIONS(1962), + [anon_sym_LT_LPAREN] = ACTIONS(1964), + [anon_sym_GT_LPAREN] = ACTIONS(1964), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5256), + [sym_word] = ACTIONS(5318), }, [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_file_descriptor] = ACTIONS(1968), + [sym__concat] = ACTIONS(1968), + [anon_sym_PIPE] = ACTIONS(1970), + [anon_sym_SEMI_SEMI] = ACTIONS(1970), + [anon_sym_PIPE_AMP] = ACTIONS(1970), + [anon_sym_AMP_AMP] = ACTIONS(1970), + [anon_sym_PIPE_PIPE] = ACTIONS(1970), + [anon_sym_LT] = ACTIONS(1970), + [anon_sym_GT] = ACTIONS(1970), + [anon_sym_GT_GT] = ACTIONS(1970), + [anon_sym_AMP_GT] = ACTIONS(1970), + [anon_sym_AMP_GT_GT] = ACTIONS(1970), + [anon_sym_LT_AMP] = ACTIONS(1970), + [anon_sym_GT_AMP] = ACTIONS(1970), + [anon_sym_LT_LT] = ACTIONS(1970), + [anon_sym_LT_LT_DASH] = ACTIONS(1970), + [anon_sym_LT_LT_LT] = ACTIONS(1970), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1942), - [anon_sym_LF] = ACTIONS(1942), - [anon_sym_AMP] = ACTIONS(1942), + [anon_sym_SEMI] = ACTIONS(1970), + [anon_sym_LF] = ACTIONS(1970), + [anon_sym_AMP] = ACTIONS(1970), }, [1880] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5258), + [sym_regex_without_right_brace] = ACTIONS(5320), }, [1881] = { [sym_concatenation] = STATE(451), @@ -54649,29 +54897,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(5322), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1882] = { - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(5262), + [anon_sym_LBRACK] = ACTIONS(836), + [anon_sym_EQ] = ACTIONS(5324), [sym_comment] = ACTIONS(56), }, [1883] = { @@ -54683,26 +54931,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(5326), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(5328), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1884] = { [sym_concatenation] = STATE(451), @@ -54713,26 +54961,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(5330), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(5332), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1885] = { [sym_concatenation] = STATE(451), @@ -54743,53 +54991,53 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(5312), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(5334), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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_file_descriptor] = ACTIONS(2022), + [sym__concat] = ACTIONS(2022), + [anon_sym_PIPE] = ACTIONS(2024), + [anon_sym_SEMI_SEMI] = ACTIONS(2024), + [anon_sym_PIPE_AMP] = ACTIONS(2024), + [anon_sym_AMP_AMP] = ACTIONS(2024), + [anon_sym_PIPE_PIPE] = ACTIONS(2024), + [anon_sym_LT] = ACTIONS(2024), + [anon_sym_GT] = ACTIONS(2024), + [anon_sym_GT_GT] = ACTIONS(2024), + [anon_sym_AMP_GT] = ACTIONS(2024), + [anon_sym_AMP_GT_GT] = ACTIONS(2024), + [anon_sym_LT_AMP] = ACTIONS(2024), + [anon_sym_GT_AMP] = ACTIONS(2024), + [anon_sym_LT_LT] = ACTIONS(2024), + [anon_sym_LT_LT_DASH] = ACTIONS(2024), + [anon_sym_LT_LT_LT] = ACTIONS(2024), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1994), - [anon_sym_LF] = ACTIONS(1994), - [anon_sym_AMP] = ACTIONS(1994), + [anon_sym_SEMI] = ACTIONS(2024), + [anon_sym_LF] = ACTIONS(2024), + [anon_sym_AMP] = ACTIONS(2024), }, [1887] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5274), + [sym_regex_without_right_brace] = ACTIONS(5336), }, [1888] = { [sym_concatenation] = STATE(451), @@ -54800,52 +55048,52 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(5338), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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_file_descriptor] = ACTIONS(2030), + [sym__concat] = ACTIONS(2030), + [anon_sym_PIPE] = ACTIONS(2032), + [anon_sym_SEMI_SEMI] = ACTIONS(2032), + [anon_sym_PIPE_AMP] = ACTIONS(2032), + [anon_sym_AMP_AMP] = ACTIONS(2032), + [anon_sym_PIPE_PIPE] = ACTIONS(2032), + [anon_sym_LT] = ACTIONS(2032), + [anon_sym_GT] = ACTIONS(2032), + [anon_sym_GT_GT] = ACTIONS(2032), + [anon_sym_AMP_GT] = ACTIONS(2032), + [anon_sym_AMP_GT_GT] = ACTIONS(2032), + [anon_sym_LT_AMP] = ACTIONS(2032), + [anon_sym_GT_AMP] = ACTIONS(2032), + [anon_sym_LT_LT] = ACTIONS(2032), + [anon_sym_LT_LT_DASH] = ACTIONS(2032), + [anon_sym_LT_LT_LT] = ACTIONS(2032), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2002), - [anon_sym_LF] = ACTIONS(2002), - [anon_sym_AMP] = ACTIONS(2002), + [anon_sym_SEMI] = ACTIONS(2032), + [anon_sym_LF] = ACTIONS(2032), + [anon_sym_AMP] = ACTIONS(2032), }, [1890] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5278), + [sym_regex_without_right_brace] = ACTIONS(5340), }, [1891] = { [sym_concatenation] = STATE(451), @@ -54856,89 +55104,89 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(5312), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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_file_descriptor] = ACTIONS(2190), + [sym__concat] = ACTIONS(2190), + [anon_sym_PIPE] = ACTIONS(2192), + [anon_sym_SEMI_SEMI] = ACTIONS(2192), + [anon_sym_PIPE_AMP] = ACTIONS(2192), + [anon_sym_AMP_AMP] = ACTIONS(2192), + [anon_sym_PIPE_PIPE] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(2192), + [anon_sym_GT] = ACTIONS(2192), + [anon_sym_GT_GT] = ACTIONS(2192), + [anon_sym_AMP_GT] = ACTIONS(2192), + [anon_sym_AMP_GT_GT] = ACTIONS(2192), + [anon_sym_LT_AMP] = ACTIONS(2192), + [anon_sym_GT_AMP] = ACTIONS(2192), + [anon_sym_LT_LT] = ACTIONS(2192), + [anon_sym_LT_LT_DASH] = ACTIONS(2192), + [anon_sym_LT_LT_LT] = ACTIONS(2192), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2158), - [anon_sym_LF] = ACTIONS(2158), - [anon_sym_AMP] = ACTIONS(2158), + [anon_sym_SEMI] = ACTIONS(2192), + [anon_sym_LF] = ACTIONS(2192), + [anon_sym_AMP] = ACTIONS(2192), }, [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_file_descriptor] = ACTIONS(2396), + [sym__concat] = ACTIONS(2396), + [anon_sym_PIPE] = ACTIONS(2398), + [anon_sym_SEMI_SEMI] = ACTIONS(2398), + [anon_sym_PIPE_AMP] = ACTIONS(2398), + [anon_sym_AMP_AMP] = ACTIONS(2398), + [anon_sym_PIPE_PIPE] = ACTIONS(2398), + [anon_sym_LT] = ACTIONS(2398), + [anon_sym_GT] = ACTIONS(2398), + [anon_sym_GT_GT] = ACTIONS(2398), + [anon_sym_AMP_GT] = ACTIONS(2398), + [anon_sym_AMP_GT_GT] = ACTIONS(2398), + [anon_sym_LT_AMP] = ACTIONS(2398), + [anon_sym_GT_AMP] = ACTIONS(2398), + [anon_sym_LT_LT] = ACTIONS(2398), + [anon_sym_LT_LT_DASH] = ACTIONS(2398), + [anon_sym_LT_LT_LT] = ACTIONS(2398), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2360), - [anon_sym_LF] = ACTIONS(2360), - [anon_sym_AMP] = ACTIONS(2360), + [anon_sym_SEMI] = ACTIONS(2398), + [anon_sym_LF] = ACTIONS(2398), + [anon_sym_AMP] = ACTIONS(2398), }, [1894] = { - [sym__heredoc_middle] = ACTIONS(808), - [sym__heredoc_end] = ACTIONS(808), - [anon_sym_DOLLAR] = ACTIONS(1545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(808), + [sym__heredoc_middle] = ACTIONS(824), + [sym__heredoc_end] = ACTIONS(824), + [anon_sym_DOLLAR] = ACTIONS(1573), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(824), [sym_comment] = ACTIONS(56), }, [1895] = { - [sym__heredoc_middle] = ACTIONS(812), - [sym__heredoc_end] = ACTIONS(812), - [anon_sym_DOLLAR] = ACTIONS(1547), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(812), + [sym__heredoc_middle] = ACTIONS(832), + [sym__heredoc_end] = ACTIONS(832), + [anon_sym_DOLLAR] = ACTIONS(1577), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(832), [sym_comment] = ACTIONS(56), }, [1896] = { - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(5280), + [anon_sym_LBRACK] = ACTIONS(836), + [anon_sym_EQ] = ACTIONS(5342), [sym_comment] = ACTIONS(56), }, [1897] = { @@ -54950,39 +55198,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(5344), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(5346), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1898] = { [sym_subscript] = STATE(2551), - [sym_variable_name] = ACTIONS(5286), - [anon_sym_DOLLAR] = ACTIONS(5288), - [anon_sym_DASH] = ACTIONS(5288), + [sym_variable_name] = ACTIONS(5348), + [anon_sym_DOLLAR] = ACTIONS(5350), + [anon_sym_DASH] = ACTIONS(5350), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5352), + [anon_sym_STAR] = ACTIONS(5350), + [anon_sym_AT] = ACTIONS(5350), + [anon_sym_QMARK] = ACTIONS(5350), + [anon_sym_0] = ACTIONS(5354), + [anon_sym__] = ACTIONS(5354), }, [1899] = { [sym_concatenation] = STATE(451), @@ -54993,26 +55241,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(5356), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(5358), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1900] = { [sym_concatenation] = STATE(451), @@ -55023,90 +55271,90 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(5360), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(5362), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1901] = { - [sym_file_descriptor] = ACTIONS(5302), - [anon_sym_esac] = ACTIONS(5304), - [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_file_descriptor] = ACTIONS(5364), + [anon_sym_esac] = ACTIONS(5366), + [anon_sym_PIPE] = ACTIONS(5366), + [anon_sym_RPAREN] = ACTIONS(5366), + [anon_sym_SEMI_SEMI] = ACTIONS(5366), + [anon_sym_PIPE_AMP] = ACTIONS(5366), + [anon_sym_AMP_AMP] = ACTIONS(5366), + [anon_sym_PIPE_PIPE] = ACTIONS(5366), + [anon_sym_LT] = ACTIONS(5366), + [anon_sym_GT] = ACTIONS(5366), + [anon_sym_GT_GT] = ACTIONS(5366), + [anon_sym_AMP_GT] = ACTIONS(5366), + [anon_sym_AMP_GT_GT] = ACTIONS(5366), + [anon_sym_LT_AMP] = ACTIONS(5366), + [anon_sym_GT_AMP] = ACTIONS(5366), + [anon_sym_LT_LT] = ACTIONS(5366), + [anon_sym_LT_LT_DASH] = ACTIONS(5366), + [anon_sym_LT_LT_LT] = ACTIONS(5366), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(5304), - [anon_sym_LF] = ACTIONS(5304), - [anon_sym_AMP] = ACTIONS(5304), + [anon_sym_SEMI] = ACTIONS(5366), + [anon_sym_LF] = ACTIONS(5366), + [anon_sym_AMP] = ACTIONS(5366), }, [1902] = { [sym_simple_expansion] = STATE(1218), [sym_expansion] = STATE(1218), [aux_sym_heredoc_repeat1] = STATE(1902), - [sym__heredoc_middle] = ACTIONS(5306), - [sym__heredoc_end] = ACTIONS(5309), - [anon_sym_DOLLAR] = ACTIONS(5311), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5314), + [sym__heredoc_middle] = ACTIONS(5368), + [sym__heredoc_end] = ACTIONS(5371), + [anon_sym_DOLLAR] = ACTIONS(5373), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5376), [sym_comment] = ACTIONS(56), }, [1903] = { - [anon_sym_EQ] = ACTIONS(5317), - [anon_sym_PLUS_EQ] = ACTIONS(5317), + [anon_sym_EQ] = ACTIONS(5379), + [anon_sym_PLUS_EQ] = ACTIONS(5379), [sym_comment] = ACTIONS(56), }, [1904] = { - [anon_sym_EQ] = ACTIONS(5319), - [anon_sym_PLUS_EQ] = ACTIONS(5319), + [anon_sym_EQ] = ACTIONS(5381), + [anon_sym_PLUS_EQ] = ACTIONS(5381), [sym_comment] = ACTIONS(56), }, [1905] = { - [sym__concat] = ACTIONS(3235), - [anon_sym_RBRACK] = ACTIONS(3235), + [sym__concat] = ACTIONS(3283), + [anon_sym_RBRACK] = ACTIONS(3283), [sym_comment] = ACTIONS(56), }, [1906] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(5321), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(5383), [sym_comment] = ACTIONS(56), }, [1907] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(5323), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(5385), [sym_comment] = ACTIONS(56), }, [1908] = { - [anon_sym_RBRACE] = ACTIONS(5323), + [anon_sym_RBRACE] = ACTIONS(5385), [sym_comment] = ACTIONS(56), }, [1909] = { @@ -55118,29 +55366,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(5387), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1910] = { - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACK] = ACTIONS(3297), + [sym__concat] = ACTIONS(3347), + [anon_sym_RBRACK] = ACTIONS(3347), [sym_comment] = ACTIONS(56), }, [1911] = { @@ -55151,27 +55399,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(5385), + [sym__special_characters] = ACTIONS(5389), + [anon_sym_DQUOTE] = ACTIONS(1952), + [anon_sym_DOLLAR] = ACTIONS(1954), + [sym_raw_string] = ACTIONS(5391), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), + [anon_sym_BQUOTE] = ACTIONS(1962), + [anon_sym_LT_LPAREN] = ACTIONS(1964), + [anon_sym_GT_LPAREN] = ACTIONS(1964), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5331), + [sym_word] = ACTIONS(5393), }, [1912] = { - [sym__concat] = ACTIONS(3342), - [anon_sym_RBRACK] = ACTIONS(3342), + [sym__concat] = ACTIONS(3392), + [anon_sym_RBRACK] = ACTIONS(3392), [sym_comment] = ACTIONS(56), }, [1913] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5333), + [sym_regex_without_right_brace] = ACTIONS(5395), }, [1914] = { [sym_concatenation] = STATE(451), @@ -55182,34 +55430,34 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(5397), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1915] = { - [sym__concat] = ACTIONS(3350), - [anon_sym_RBRACK] = ACTIONS(3350), + [sym__concat] = ACTIONS(3400), + [anon_sym_RBRACK] = ACTIONS(3400), [sym_comment] = ACTIONS(56), }, [1916] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5337), + [sym_regex_without_right_brace] = ACTIONS(5399), }, [1917] = { [sym_concatenation] = STATE(451), @@ -55220,29 +55468,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(5401), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1918] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5341), + [sym_regex_without_right_brace] = ACTIONS(5403), }, [1919] = { [sym_concatenation] = STATE(451), @@ -55253,25 +55501,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(5385), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1920] = { [sym_concatenation] = STATE(451), @@ -55282,29 +55530,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(5405), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1921] = { - [sym__concat] = ACTIONS(3362), - [anon_sym_RBRACK] = ACTIONS(3362), + [sym__concat] = ACTIONS(3412), + [anon_sym_RBRACK] = ACTIONS(3412), [sym_comment] = ACTIONS(56), }, [1922] = { @@ -55316,71 +55564,71 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(5407), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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(1858), - [anon_sym_LT_LPAREN] = ACTIONS(1858), - [anon_sym_GT_LPAREN] = ACTIONS(1858), + [sym__concat] = ACTIONS(1886), + [anon_sym_RPAREN] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(3056), + [anon_sym_DQUOTE] = ACTIONS(1886), + [anon_sym_DOLLAR] = ACTIONS(3056), + [sym_raw_string] = ACTIONS(1886), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1886), + [anon_sym_BQUOTE] = ACTIONS(1886), + [anon_sym_LT_LPAREN] = ACTIONS(1886), + [anon_sym_GT_LPAREN] = ACTIONS(1886), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3008), + [sym_word] = ACTIONS(3056), }, [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__concat] = ACTIONS(5409), + [anon_sym_RPAREN] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(3056), + [anon_sym_DQUOTE] = ACTIONS(1886), + [anon_sym_DOLLAR] = ACTIONS(3056), + [sym_raw_string] = ACTIONS(1886), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1886), + [anon_sym_BQUOTE] = ACTIONS(1886), + [anon_sym_LT_LPAREN] = ACTIONS(1886), + [anon_sym_GT_LPAREN] = ACTIONS(1886), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3008), + [sym_word] = ACTIONS(3056), }, [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__concat] = ACTIONS(1923), + [anon_sym_RPAREN] = ACTIONS(1923), + [sym__special_characters] = ACTIONS(3061), + [anon_sym_DQUOTE] = ACTIONS(1923), + [anon_sym_DOLLAR] = ACTIONS(3061), + [sym_raw_string] = ACTIONS(1923), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1923), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1923), + [anon_sym_BQUOTE] = ACTIONS(1923), + [anon_sym_LT_LPAREN] = ACTIONS(1923), + [anon_sym_GT_LPAREN] = ACTIONS(1923), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3013), + [sym_word] = ACTIONS(3061), }, [1926] = { [sym_concatenation] = STATE(2577), @@ -55390,37 +55638,37 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(5412), + [sym__special_characters] = ACTIONS(5414), + [anon_sym_DQUOTE] = ACTIONS(1952), + [anon_sym_DOLLAR] = ACTIONS(1954), + [sym_raw_string] = ACTIONS(5416), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), + [anon_sym_BQUOTE] = ACTIONS(1962), + [anon_sym_LT_LPAREN] = ACTIONS(1964), + [anon_sym_GT_LPAREN] = ACTIONS(1964), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5356), + [sym_word] = ACTIONS(5418), }, [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__concat] = ACTIONS(1968), + [anon_sym_RPAREN] = ACTIONS(1968), + [sym__special_characters] = ACTIONS(3071), + [anon_sym_DQUOTE] = ACTIONS(1968), + [anon_sym_DOLLAR] = ACTIONS(3071), + [sym_raw_string] = ACTIONS(1968), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1968), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1968), + [anon_sym_BQUOTE] = ACTIONS(1968), + [anon_sym_LT_LPAREN] = ACTIONS(1968), + [anon_sym_GT_LPAREN] = ACTIONS(1968), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3023), + [sym_word] = ACTIONS(3071), }, [1928] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5358), + [sym_regex_without_right_brace] = ACTIONS(5420), }, [1929] = { [sym_concatenation] = STATE(451), @@ -55431,29 +55679,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(5422), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1930] = { - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(5362), + [anon_sym_LBRACK] = ACTIONS(836), + [anon_sym_EQ] = ACTIONS(5424), [sym_comment] = ACTIONS(56), }, [1931] = { @@ -55465,26 +55713,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(5426), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(5428), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1932] = { [sym_concatenation] = STATE(451), @@ -55495,26 +55743,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(5430), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(5432), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1933] = { [sym_concatenation] = STATE(451), @@ -55525,45 +55773,45 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(5412), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(5434), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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__concat] = ACTIONS(2022), + [anon_sym_RPAREN] = ACTIONS(2022), + [sym__special_characters] = ACTIONS(3089), + [anon_sym_DQUOTE] = ACTIONS(2022), + [anon_sym_DOLLAR] = ACTIONS(3089), + [sym_raw_string] = ACTIONS(2022), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2022), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2022), + [anon_sym_BQUOTE] = ACTIONS(2022), + [anon_sym_LT_LPAREN] = ACTIONS(2022), + [anon_sym_GT_LPAREN] = ACTIONS(2022), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3041), + [sym_word] = ACTIONS(3089), }, [1935] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5374), + [sym_regex_without_right_brace] = ACTIONS(5436), }, [1936] = { [sym_concatenation] = STATE(451), @@ -55574,44 +55822,44 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(5438), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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__concat] = ACTIONS(2030), + [anon_sym_RPAREN] = ACTIONS(2030), + [sym__special_characters] = ACTIONS(3095), + [anon_sym_DQUOTE] = ACTIONS(2030), + [anon_sym_DOLLAR] = ACTIONS(3095), + [sym_raw_string] = ACTIONS(2030), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2030), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2030), + [anon_sym_BQUOTE] = ACTIONS(2030), + [anon_sym_LT_LPAREN] = ACTIONS(2030), + [anon_sym_GT_LPAREN] = ACTIONS(2030), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3047), + [sym_word] = ACTIONS(3095), }, [1938] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5378), + [sym_regex_without_right_brace] = ACTIONS(5440), }, [1939] = { [sym_concatenation] = STATE(451), @@ -55622,101 +55870,101 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(5412), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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__concat] = ACTIONS(2190), + [anon_sym_RPAREN] = ACTIONS(2190), + [sym__special_characters] = ACTIONS(3099), + [anon_sym_DQUOTE] = ACTIONS(2190), + [anon_sym_DOLLAR] = ACTIONS(3099), + [sym_raw_string] = ACTIONS(2190), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2190), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2190), + [anon_sym_BQUOTE] = ACTIONS(2190), + [anon_sym_LT_LPAREN] = ACTIONS(2190), + [anon_sym_GT_LPAREN] = ACTIONS(2190), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3051), + [sym_word] = ACTIONS(3099), }, [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__concat] = ACTIONS(2396), + [anon_sym_RPAREN] = ACTIONS(2396), + [sym__special_characters] = ACTIONS(3101), + [anon_sym_DQUOTE] = ACTIONS(2396), + [anon_sym_DOLLAR] = ACTIONS(3101), + [sym_raw_string] = ACTIONS(2396), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2396), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2396), + [anon_sym_BQUOTE] = ACTIONS(2396), + [anon_sym_LT_LPAREN] = ACTIONS(2396), + [anon_sym_GT_LPAREN] = ACTIONS(2396), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3053), + [sym_word] = ACTIONS(3101), }, [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_file_descriptor] = ACTIONS(3283), + [sym__concat] = ACTIONS(3283), + [sym_variable_name] = ACTIONS(3283), + [anon_sym_PIPE] = ACTIONS(3285), + [anon_sym_SEMI_SEMI] = ACTIONS(3285), + [anon_sym_PIPE_AMP] = ACTIONS(3285), + [anon_sym_AMP_AMP] = ACTIONS(3285), + [anon_sym_PIPE_PIPE] = ACTIONS(3285), + [anon_sym_LT] = ACTIONS(3285), + [anon_sym_GT] = ACTIONS(3285), + [anon_sym_GT_GT] = ACTIONS(3285), + [anon_sym_AMP_GT] = ACTIONS(3285), + [anon_sym_AMP_GT_GT] = ACTIONS(3285), + [anon_sym_LT_AMP] = ACTIONS(3285), + [anon_sym_GT_AMP] = ACTIONS(3285), + [sym__special_characters] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3285), + [anon_sym_DOLLAR] = ACTIONS(3285), + [sym_raw_string] = ACTIONS(3285), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3285), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3285), + [anon_sym_BQUOTE] = ACTIONS(3285), + [anon_sym_LT_LPAREN] = ACTIONS(3285), + [anon_sym_GT_LPAREN] = ACTIONS(3285), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3237), - [anon_sym_SEMI] = ACTIONS(3237), - [anon_sym_LF] = ACTIONS(3237), - [anon_sym_AMP] = ACTIONS(3237), + [sym_word] = ACTIONS(3285), + [anon_sym_SEMI] = ACTIONS(3285), + [anon_sym_LF] = ACTIONS(3285), + [anon_sym_AMP] = ACTIONS(3285), }, [1943] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(5380), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(5442), [sym_comment] = ACTIONS(56), }, [1944] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(5382), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(5444), [sym_comment] = ACTIONS(56), }, [1945] = { - [anon_sym_RBRACE] = ACTIONS(5382), + [anon_sym_RBRACE] = ACTIONS(5444), [sym_comment] = ACTIONS(56), }, [1946] = { @@ -55728,56 +55976,56 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(5446), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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_file_descriptor] = ACTIONS(3347), + [sym__concat] = ACTIONS(3347), + [sym_variable_name] = ACTIONS(3347), + [anon_sym_PIPE] = ACTIONS(3349), + [anon_sym_SEMI_SEMI] = ACTIONS(3349), + [anon_sym_PIPE_AMP] = ACTIONS(3349), + [anon_sym_AMP_AMP] = ACTIONS(3349), + [anon_sym_PIPE_PIPE] = ACTIONS(3349), + [anon_sym_LT] = ACTIONS(3349), + [anon_sym_GT] = ACTIONS(3349), + [anon_sym_GT_GT] = ACTIONS(3349), + [anon_sym_AMP_GT] = ACTIONS(3349), + [anon_sym_AMP_GT_GT] = ACTIONS(3349), + [anon_sym_LT_AMP] = ACTIONS(3349), + [anon_sym_GT_AMP] = ACTIONS(3349), + [sym__special_characters] = ACTIONS(3349), + [anon_sym_DQUOTE] = ACTIONS(3349), + [anon_sym_DOLLAR] = ACTIONS(3349), + [sym_raw_string] = ACTIONS(3349), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3349), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3349), + [anon_sym_BQUOTE] = ACTIONS(3349), + [anon_sym_LT_LPAREN] = ACTIONS(3349), + [anon_sym_GT_LPAREN] = ACTIONS(3349), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3299), - [anon_sym_SEMI] = ACTIONS(3299), - [anon_sym_LF] = ACTIONS(3299), - [anon_sym_AMP] = ACTIONS(3299), + [sym_word] = ACTIONS(3349), + [anon_sym_SEMI] = ACTIONS(3349), + [anon_sym_LF] = ACTIONS(3349), + [anon_sym_AMP] = ACTIONS(3349), }, [1948] = { [sym_concatenation] = STATE(2598), @@ -55787,53 +56035,53 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(5444), + [sym__special_characters] = ACTIONS(5448), + [anon_sym_DQUOTE] = ACTIONS(1952), + [anon_sym_DOLLAR] = ACTIONS(1954), + [sym_raw_string] = ACTIONS(5450), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), + [anon_sym_BQUOTE] = ACTIONS(1962), + [anon_sym_LT_LPAREN] = ACTIONS(1964), + [anon_sym_GT_LPAREN] = ACTIONS(1964), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5390), + [sym_word] = ACTIONS(5452), }, [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_file_descriptor] = ACTIONS(3392), + [sym__concat] = ACTIONS(3392), + [sym_variable_name] = ACTIONS(3392), + [anon_sym_PIPE] = ACTIONS(3394), + [anon_sym_SEMI_SEMI] = ACTIONS(3394), + [anon_sym_PIPE_AMP] = ACTIONS(3394), + [anon_sym_AMP_AMP] = ACTIONS(3394), + [anon_sym_PIPE_PIPE] = ACTIONS(3394), + [anon_sym_LT] = ACTIONS(3394), + [anon_sym_GT] = ACTIONS(3394), + [anon_sym_GT_GT] = ACTIONS(3394), + [anon_sym_AMP_GT] = ACTIONS(3394), + [anon_sym_AMP_GT_GT] = ACTIONS(3394), + [anon_sym_LT_AMP] = ACTIONS(3394), + [anon_sym_GT_AMP] = ACTIONS(3394), + [sym__special_characters] = ACTIONS(3394), + [anon_sym_DQUOTE] = ACTIONS(3394), + [anon_sym_DOLLAR] = ACTIONS(3394), + [sym_raw_string] = ACTIONS(3394), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3394), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3394), + [anon_sym_BQUOTE] = ACTIONS(3394), + [anon_sym_LT_LPAREN] = ACTIONS(3394), + [anon_sym_GT_LPAREN] = ACTIONS(3394), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(3344), - [anon_sym_LF] = ACTIONS(3344), - [anon_sym_AMP] = ACTIONS(3344), + [sym_word] = ACTIONS(3394), + [anon_sym_SEMI] = ACTIONS(3394), + [anon_sym_LF] = ACTIONS(3394), + [anon_sym_AMP] = ACTIONS(3394), }, [1950] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5392), + [sym_regex_without_right_brace] = ACTIONS(5454), }, [1951] = { [sym_concatenation] = STATE(451), @@ -55844,60 +56092,60 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(5456), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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_file_descriptor] = ACTIONS(3400), + [sym__concat] = ACTIONS(3400), + [sym_variable_name] = ACTIONS(3400), + [anon_sym_PIPE] = ACTIONS(3402), + [anon_sym_SEMI_SEMI] = ACTIONS(3402), + [anon_sym_PIPE_AMP] = ACTIONS(3402), + [anon_sym_AMP_AMP] = ACTIONS(3402), + [anon_sym_PIPE_PIPE] = ACTIONS(3402), + [anon_sym_LT] = ACTIONS(3402), + [anon_sym_GT] = ACTIONS(3402), + [anon_sym_GT_GT] = ACTIONS(3402), + [anon_sym_AMP_GT] = ACTIONS(3402), + [anon_sym_AMP_GT_GT] = ACTIONS(3402), + [anon_sym_LT_AMP] = ACTIONS(3402), + [anon_sym_GT_AMP] = ACTIONS(3402), + [sym__special_characters] = ACTIONS(3402), + [anon_sym_DQUOTE] = ACTIONS(3402), + [anon_sym_DOLLAR] = ACTIONS(3402), + [sym_raw_string] = ACTIONS(3402), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3402), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3402), + [anon_sym_BQUOTE] = ACTIONS(3402), + [anon_sym_LT_LPAREN] = ACTIONS(3402), + [anon_sym_GT_LPAREN] = ACTIONS(3402), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3352), - [anon_sym_SEMI] = ACTIONS(3352), - [anon_sym_LF] = ACTIONS(3352), - [anon_sym_AMP] = ACTIONS(3352), + [sym_word] = ACTIONS(3402), + [anon_sym_SEMI] = ACTIONS(3402), + [anon_sym_LF] = ACTIONS(3402), + [anon_sym_AMP] = ACTIONS(3402), }, [1953] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5396), + [sym_regex_without_right_brace] = ACTIONS(5458), }, [1954] = { [sym_concatenation] = STATE(451), @@ -55908,29 +56156,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(5460), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1955] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5400), + [sym_regex_without_right_brace] = ACTIONS(5462), }, [1956] = { [sym_concatenation] = STATE(451), @@ -55941,25 +56189,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(5444), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1957] = { [sym_concatenation] = STATE(451), @@ -55970,56 +56218,56 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(5464), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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_file_descriptor] = ACTIONS(3412), + [sym__concat] = ACTIONS(3412), + [sym_variable_name] = ACTIONS(3412), + [anon_sym_PIPE] = ACTIONS(3414), + [anon_sym_SEMI_SEMI] = ACTIONS(3414), + [anon_sym_PIPE_AMP] = ACTIONS(3414), + [anon_sym_AMP_AMP] = ACTIONS(3414), + [anon_sym_PIPE_PIPE] = ACTIONS(3414), + [anon_sym_LT] = ACTIONS(3414), + [anon_sym_GT] = ACTIONS(3414), + [anon_sym_GT_GT] = ACTIONS(3414), + [anon_sym_AMP_GT] = ACTIONS(3414), + [anon_sym_AMP_GT_GT] = ACTIONS(3414), + [anon_sym_LT_AMP] = ACTIONS(3414), + [anon_sym_GT_AMP] = ACTIONS(3414), + [sym__special_characters] = ACTIONS(3414), + [anon_sym_DQUOTE] = ACTIONS(3414), + [anon_sym_DOLLAR] = ACTIONS(3414), + [sym_raw_string] = ACTIONS(3414), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3414), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3414), + [anon_sym_BQUOTE] = ACTIONS(3414), + [anon_sym_LT_LPAREN] = ACTIONS(3414), + [anon_sym_GT_LPAREN] = ACTIONS(3414), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3364), - [anon_sym_SEMI] = ACTIONS(3364), - [anon_sym_LF] = ACTIONS(3364), - [anon_sym_AMP] = ACTIONS(3364), + [sym_word] = ACTIONS(3414), + [anon_sym_SEMI] = ACTIONS(3414), + [anon_sym_LF] = ACTIONS(3414), + [anon_sym_AMP] = ACTIONS(3414), }, [1959] = { [sym_concatenation] = STATE(451), @@ -56030,80 +56278,80 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(5466), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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(1860), - [anon_sym_GT_LPAREN] = ACTIONS(1860), + [sym__concat] = ACTIONS(1886), + [anon_sym_SEMI_SEMI] = ACTIONS(1888), + [sym__special_characters] = ACTIONS(1888), + [anon_sym_DQUOTE] = ACTIONS(1888), + [anon_sym_DOLLAR] = ACTIONS(1888), + [sym_raw_string] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1888), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1888), + [anon_sym_BQUOTE] = ACTIONS(1888), + [anon_sym_LT_LPAREN] = ACTIONS(1888), + [anon_sym_GT_LPAREN] = ACTIONS(1888), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1860), - [anon_sym_SEMI] = ACTIONS(1860), - [anon_sym_LF] = ACTIONS(1860), - [anon_sym_AMP] = ACTIONS(1860), + [sym_word] = ACTIONS(1888), + [anon_sym_SEMI] = ACTIONS(1888), + [anon_sym_LF] = ACTIONS(1888), + [anon_sym_AMP] = ACTIONS(1888), }, [1961] = { [aux_sym_concatenation_repeat1] = STATE(1961), - [sym__concat] = ACTIONS(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(1860), - [anon_sym_GT_LPAREN] = ACTIONS(1860), + [sym__concat] = ACTIONS(5468), + [anon_sym_SEMI_SEMI] = ACTIONS(1888), + [sym__special_characters] = ACTIONS(1888), + [anon_sym_DQUOTE] = ACTIONS(1888), + [anon_sym_DOLLAR] = ACTIONS(1888), + [sym_raw_string] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1888), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1888), + [anon_sym_BQUOTE] = ACTIONS(1888), + [anon_sym_LT_LPAREN] = ACTIONS(1888), + [anon_sym_GT_LPAREN] = ACTIONS(1888), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1860), - [anon_sym_SEMI] = ACTIONS(1860), - [anon_sym_LF] = ACTIONS(1860), - [anon_sym_AMP] = ACTIONS(1860), + [sym_word] = ACTIONS(1888), + [anon_sym_SEMI] = ACTIONS(1888), + [anon_sym_LF] = ACTIONS(1888), + [anon_sym_AMP] = ACTIONS(1888), }, [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__concat] = ACTIONS(1923), + [anon_sym_SEMI_SEMI] = ACTIONS(1925), + [sym__special_characters] = ACTIONS(1925), + [anon_sym_DQUOTE] = ACTIONS(1925), + [anon_sym_DOLLAR] = ACTIONS(1925), + [sym_raw_string] = ACTIONS(1925), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1925), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1925), + [anon_sym_BQUOTE] = ACTIONS(1925), + [anon_sym_LT_LPAREN] = ACTIONS(1925), + [anon_sym_GT_LPAREN] = ACTIONS(1925), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1897), - [anon_sym_SEMI] = ACTIONS(1897), - [anon_sym_LF] = ACTIONS(1897), - [anon_sym_AMP] = ACTIONS(1897), + [sym_word] = ACTIONS(1925), + [anon_sym_SEMI] = ACTIONS(1925), + [anon_sym_LF] = ACTIONS(1925), + [anon_sym_AMP] = ACTIONS(1925), }, [1963] = { [sym_concatenation] = STATE(2611), @@ -56113,40 +56361,40 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(5471), + [sym__special_characters] = ACTIONS(5473), + [anon_sym_DQUOTE] = ACTIONS(1952), + [anon_sym_DOLLAR] = ACTIONS(1954), + [sym_raw_string] = ACTIONS(5475), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), + [anon_sym_BQUOTE] = ACTIONS(1962), + [anon_sym_LT_LPAREN] = ACTIONS(1964), + [anon_sym_GT_LPAREN] = ACTIONS(1964), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5415), + [sym_word] = ACTIONS(5477), }, [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__concat] = ACTIONS(1968), + [anon_sym_SEMI_SEMI] = ACTIONS(1970), + [sym__special_characters] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1970), + [anon_sym_DOLLAR] = ACTIONS(1970), + [sym_raw_string] = ACTIONS(1970), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1970), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1970), + [anon_sym_BQUOTE] = ACTIONS(1970), + [anon_sym_LT_LPAREN] = ACTIONS(1970), + [anon_sym_GT_LPAREN] = ACTIONS(1970), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1942), - [anon_sym_SEMI] = ACTIONS(1942), - [anon_sym_LF] = ACTIONS(1942), - [anon_sym_AMP] = ACTIONS(1942), + [sym_word] = ACTIONS(1970), + [anon_sym_SEMI] = ACTIONS(1970), + [anon_sym_LF] = ACTIONS(1970), + [anon_sym_AMP] = ACTIONS(1970), }, [1965] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5417), + [sym_regex_without_right_brace] = ACTIONS(5479), }, [1966] = { [sym_concatenation] = STATE(451), @@ -56157,29 +56405,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(5481), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1967] = { - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(5421), + [anon_sym_LBRACK] = ACTIONS(836), + [anon_sym_EQ] = ACTIONS(5483), [sym_comment] = ACTIONS(56), }, [1968] = { @@ -56191,26 +56439,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(5485), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(5487), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1969] = { [sym_concatenation] = STATE(451), @@ -56221,26 +56469,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(5489), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(5491), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [1970] = { [sym_concatenation] = STATE(451), @@ -56251,48 +56499,48 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(5471), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(5493), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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__concat] = ACTIONS(2022), + [anon_sym_SEMI_SEMI] = ACTIONS(2024), + [sym__special_characters] = ACTIONS(2024), + [anon_sym_DQUOTE] = ACTIONS(2024), + [anon_sym_DOLLAR] = ACTIONS(2024), + [sym_raw_string] = ACTIONS(2024), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2024), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2024), + [anon_sym_BQUOTE] = ACTIONS(2024), + [anon_sym_LT_LPAREN] = ACTIONS(2024), + [anon_sym_GT_LPAREN] = ACTIONS(2024), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1994), - [anon_sym_SEMI] = ACTIONS(1994), - [anon_sym_LF] = ACTIONS(1994), - [anon_sym_AMP] = ACTIONS(1994), + [sym_word] = ACTIONS(2024), + [anon_sym_SEMI] = ACTIONS(2024), + [anon_sym_LF] = ACTIONS(2024), + [anon_sym_AMP] = ACTIONS(2024), }, [1972] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5433), + [sym_regex_without_right_brace] = ACTIONS(5495), }, [1973] = { [sym_concatenation] = STATE(451), @@ -56303,47 +56551,47 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(5497), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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__concat] = ACTIONS(2030), + [anon_sym_SEMI_SEMI] = ACTIONS(2032), + [sym__special_characters] = ACTIONS(2032), + [anon_sym_DQUOTE] = ACTIONS(2032), + [anon_sym_DOLLAR] = ACTIONS(2032), + [sym_raw_string] = ACTIONS(2032), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2032), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2032), + [anon_sym_BQUOTE] = ACTIONS(2032), + [anon_sym_LT_LPAREN] = ACTIONS(2032), + [anon_sym_GT_LPAREN] = ACTIONS(2032), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2002), - [anon_sym_SEMI] = ACTIONS(2002), - [anon_sym_LF] = ACTIONS(2002), - [anon_sym_AMP] = ACTIONS(2002), + [sym_word] = ACTIONS(2032), + [anon_sym_SEMI] = ACTIONS(2032), + [anon_sym_LF] = ACTIONS(2032), + [anon_sym_AMP] = ACTIONS(2032), }, [1975] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5437), + [sym_regex_without_right_brace] = ACTIONS(5499), }, [1976] = { [sym_concatenation] = STATE(451), @@ -56354,61 +56602,61 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(5471), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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__concat] = ACTIONS(2190), + [anon_sym_SEMI_SEMI] = ACTIONS(2192), + [sym__special_characters] = ACTIONS(2192), + [anon_sym_DQUOTE] = ACTIONS(2192), + [anon_sym_DOLLAR] = ACTIONS(2192), + [sym_raw_string] = ACTIONS(2192), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2192), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2192), + [anon_sym_BQUOTE] = ACTIONS(2192), + [anon_sym_LT_LPAREN] = ACTIONS(2192), + [anon_sym_GT_LPAREN] = ACTIONS(2192), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2158), - [anon_sym_SEMI] = ACTIONS(2158), - [anon_sym_LF] = ACTIONS(2158), - [anon_sym_AMP] = ACTIONS(2158), + [sym_word] = ACTIONS(2192), + [anon_sym_SEMI] = ACTIONS(2192), + [anon_sym_LF] = ACTIONS(2192), + [anon_sym_AMP] = ACTIONS(2192), }, [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__concat] = ACTIONS(2396), + [anon_sym_SEMI_SEMI] = ACTIONS(2398), + [sym__special_characters] = ACTIONS(2398), + [anon_sym_DQUOTE] = ACTIONS(2398), + [anon_sym_DOLLAR] = ACTIONS(2398), + [sym_raw_string] = ACTIONS(2398), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2398), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2398), + [anon_sym_BQUOTE] = ACTIONS(2398), + [anon_sym_LT_LPAREN] = ACTIONS(2398), + [anon_sym_GT_LPAREN] = ACTIONS(2398), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2360), - [anon_sym_SEMI] = ACTIONS(2360), - [anon_sym_LF] = ACTIONS(2360), - [anon_sym_AMP] = ACTIONS(2360), + [sym_word] = ACTIONS(2398), + [anon_sym_SEMI] = ACTIONS(2398), + [anon_sym_LF] = ACTIONS(2398), + [anon_sym_AMP] = ACTIONS(2398), }, [1979] = { [sym__terminated_statement] = STATE(691), @@ -56441,7 +56689,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(12), [anon_sym_for] = ACTIONS(16), [anon_sym_while] = ACTIONS(18), - [anon_sym_done] = ACTIONS(5439), + [anon_sym_done] = ACTIONS(5501), [anon_sym_if] = ACTIONS(20), [anon_sym_case] = ACTIONS(22), [anon_sym_function] = ACTIONS(24), @@ -56475,17 +56723,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(58), }, [1980] = { - [anon_sym_esac] = ACTIONS(5441), - [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), + [anon_sym_esac] = ACTIONS(5503), + [anon_sym_PIPE] = ACTIONS(5503), + [anon_sym_RPAREN] = ACTIONS(5503), + [anon_sym_SEMI_SEMI] = ACTIONS(5503), + [anon_sym_PIPE_AMP] = ACTIONS(5503), + [anon_sym_AMP_AMP] = ACTIONS(5503), + [anon_sym_PIPE_PIPE] = ACTIONS(5503), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(5441), - [anon_sym_LF] = ACTIONS(5441), - [anon_sym_AMP] = ACTIONS(5441), + [anon_sym_SEMI] = ACTIONS(5503), + [anon_sym_LF] = ACTIONS(5503), + [anon_sym_AMP] = ACTIONS(5503), }, [1981] = { [sym__terminated_statement] = STATE(699), @@ -56519,9 +56767,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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_fi] = ACTIONS(5505), + [anon_sym_elif] = ACTIONS(5505), + [anon_sym_else] = ACTIONS(5505), [anon_sym_case] = ACTIONS(22), [anon_sym_function] = ACTIONS(24), [anon_sym_LPAREN] = ACTIONS(26), @@ -56554,42 +56802,42 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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_file_descriptor] = ACTIONS(1100), + [sym_variable_name] = ACTIONS(1100), + [anon_sym_for] = ACTIONS(1102), + [anon_sym_while] = ACTIONS(1102), + [anon_sym_if] = ACTIONS(1102), + [anon_sym_fi] = ACTIONS(1102), + [anon_sym_case] = ACTIONS(1102), + [anon_sym_function] = ACTIONS(1102), + [anon_sym_LPAREN] = ACTIONS(1100), + [anon_sym_LBRACK] = ACTIONS(1102), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1100), + [anon_sym_declare] = ACTIONS(1102), + [anon_sym_typeset] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(1102), + [anon_sym_readonly] = ACTIONS(1102), + [anon_sym_local] = ACTIONS(1102), + [anon_sym_unset] = ACTIONS(1102), + [anon_sym_unsetenv] = ACTIONS(1102), + [anon_sym_LT] = ACTIONS(1102), + [anon_sym_GT] = ACTIONS(1102), + [anon_sym_GT_GT] = ACTIONS(1100), + [anon_sym_AMP_GT] = ACTIONS(1102), + [anon_sym_AMP_GT_GT] = ACTIONS(1100), + [anon_sym_LT_AMP] = ACTIONS(1100), + [anon_sym_GT_AMP] = ACTIONS(1100), + [sym__special_characters] = ACTIONS(1104), + [anon_sym_DQUOTE] = ACTIONS(1100), + [anon_sym_DOLLAR] = ACTIONS(1102), + [sym_raw_string] = ACTIONS(1100), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1100), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1100), + [anon_sym_BQUOTE] = ACTIONS(1100), + [anon_sym_LT_LPAREN] = ACTIONS(1100), + [anon_sym_GT_LPAREN] = ACTIONS(1100), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1084), + [sym_word] = ACTIONS(1104), }, [1983] = { [sym__terminated_statement] = STATE(1313), @@ -56618,58 +56866,58 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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_file_descriptor] = ACTIONS(1150), + [sym_variable_name] = ACTIONS(1153), + [anon_sym_for] = ACTIONS(1158), + [anon_sym_while] = ACTIONS(1161), + [anon_sym_if] = ACTIONS(1164), + [anon_sym_fi] = ACTIONS(4299), + [anon_sym_case] = ACTIONS(1167), + [anon_sym_function] = ACTIONS(1170), + [anon_sym_LPAREN] = ACTIONS(1173), + [anon_sym_LBRACK] = ACTIONS(1176), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1179), + [anon_sym_declare] = ACTIONS(1182), + [anon_sym_typeset] = ACTIONS(1182), + [anon_sym_export] = ACTIONS(1182), + [anon_sym_readonly] = ACTIONS(1182), + [anon_sym_local] = ACTIONS(1182), + [anon_sym_unset] = ACTIONS(1185), + [anon_sym_unsetenv] = ACTIONS(1185), + [anon_sym_LT] = ACTIONS(1188), + [anon_sym_GT] = ACTIONS(1188), + [anon_sym_GT_GT] = ACTIONS(1191), + [anon_sym_AMP_GT] = ACTIONS(1188), + [anon_sym_AMP_GT_GT] = ACTIONS(1191), + [anon_sym_LT_AMP] = ACTIONS(1191), + [anon_sym_GT_AMP] = ACTIONS(1191), + [sym__special_characters] = ACTIONS(1194), + [anon_sym_DQUOTE] = ACTIONS(1197), + [anon_sym_DOLLAR] = ACTIONS(1200), + [sym_raw_string] = ACTIONS(1203), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1206), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1209), + [anon_sym_BQUOTE] = ACTIONS(1212), + [anon_sym_LT_LPAREN] = ACTIONS(1215), + [anon_sym_GT_LPAREN] = ACTIONS(1215), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1198), + [sym_word] = ACTIONS(1218), }, [1984] = { - [anon_sym_esac] = ACTIONS(5445), - [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), + [anon_sym_esac] = ACTIONS(5507), + [anon_sym_PIPE] = ACTIONS(5507), + [anon_sym_RPAREN] = ACTIONS(5507), + [anon_sym_SEMI_SEMI] = ACTIONS(5507), + [anon_sym_PIPE_AMP] = ACTIONS(5507), + [anon_sym_AMP_AMP] = ACTIONS(5507), + [anon_sym_PIPE_PIPE] = ACTIONS(5507), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(5445), - [anon_sym_LF] = ACTIONS(5445), - [anon_sym_AMP] = ACTIONS(5445), + [anon_sym_SEMI] = ACTIONS(5507), + [anon_sym_LF] = ACTIONS(5507), + [anon_sym_AMP] = ACTIONS(5507), }, [1985] = { - [anon_sym_fi] = ACTIONS(5447), + [anon_sym_fi] = ACTIONS(5509), [sym_comment] = ACTIONS(56), }, [1986] = { @@ -56679,17 +56927,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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__special_characters] = ACTIONS(5511), + [anon_sym_DQUOTE] = ACTIONS(2699), + [anon_sym_DOLLAR] = ACTIONS(2701), + [sym_raw_string] = ACTIONS(5513), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2705), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2707), + [anon_sym_BQUOTE] = ACTIONS(2709), + [anon_sym_LT_LPAREN] = ACTIONS(2711), + [anon_sym_GT_LPAREN] = ACTIONS(2711), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5449), + [sym_word] = ACTIONS(5511), }, [1987] = { [sym_concatenation] = STATE(2633), @@ -56699,17 +56947,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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__special_characters] = ACTIONS(5515), + [anon_sym_DQUOTE] = ACTIONS(2699), + [anon_sym_DOLLAR] = ACTIONS(2701), + [sym_raw_string] = ACTIONS(5517), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2705), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2707), + [anon_sym_BQUOTE] = ACTIONS(2709), + [anon_sym_LT_LPAREN] = ACTIONS(2711), + [anon_sym_GT_LPAREN] = ACTIONS(2711), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5457), + [sym_word] = ACTIONS(5519), }, [1988] = { [sym__terminated_statement] = STATE(2651), @@ -56739,24 +56987,24 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_program_repeat1] = STATE(2657), [aux_sym_command_repeat1] = STATE(2658), [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(5459), + [sym_variable_name] = ACTIONS(5521), [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(5461), + [anon_sym_while] = ACTIONS(5523), [anon_sym_if] = ACTIONS(20), [anon_sym_case] = ACTIONS(22), - [anon_sym_esac] = ACTIONS(5463), - [anon_sym_SEMI_SEMI] = ACTIONS(5465), - [anon_sym_function] = ACTIONS(5467), + [anon_sym_esac] = ACTIONS(5525), + [anon_sym_SEMI_SEMI] = ACTIONS(5527), + [anon_sym_function] = ACTIONS(5529), [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(5469), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5471), - [anon_sym_declare] = ACTIONS(5473), - [anon_sym_typeset] = ACTIONS(5473), - [anon_sym_export] = ACTIONS(5473), - [anon_sym_readonly] = ACTIONS(5473), - [anon_sym_local] = ACTIONS(5473), - [anon_sym_unset] = ACTIONS(5475), - [anon_sym_unsetenv] = ACTIONS(5475), + [anon_sym_LBRACK] = ACTIONS(5531), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5533), + [anon_sym_declare] = ACTIONS(5535), + [anon_sym_typeset] = ACTIONS(5535), + [anon_sym_export] = ACTIONS(5535), + [anon_sym_readonly] = ACTIONS(5535), + [anon_sym_local] = ACTIONS(5535), + [anon_sym_unset] = ACTIONS(5537), + [anon_sym_unsetenv] = ACTIONS(5537), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -56764,35 +57012,35 @@ 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(5477), - [anon_sym_DQUOTE] = ACTIONS(5479), - [anon_sym_DOLLAR] = ACTIONS(5481), - [sym_raw_string] = ACTIONS(5483), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5485), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5487), - [anon_sym_BQUOTE] = ACTIONS(5489), - [anon_sym_LT_LPAREN] = ACTIONS(5491), - [anon_sym_GT_LPAREN] = ACTIONS(5491), + [sym__special_characters] = ACTIONS(5539), + [anon_sym_DQUOTE] = ACTIONS(5541), + [anon_sym_DOLLAR] = ACTIONS(5543), + [sym_raw_string] = ACTIONS(5545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5547), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5549), + [anon_sym_BQUOTE] = ACTIONS(5551), + [anon_sym_LT_LPAREN] = ACTIONS(5553), + [anon_sym_GT_LPAREN] = ACTIONS(5553), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5493), + [sym_word] = ACTIONS(5555), }, [1989] = { [aux_sym_case_item_repeat1] = STATE(2660), - [anon_sym_PIPE] = ACTIONS(4262), - [anon_sym_RPAREN] = ACTIONS(5495), + [anon_sym_PIPE] = ACTIONS(4320), + [anon_sym_RPAREN] = ACTIONS(5557), [sym_comment] = ACTIONS(56), }, [1990] = { [aux_sym_concatenation_repeat1] = STATE(2661), - [sym__concat] = ACTIONS(4260), - [anon_sym_PIPE] = ACTIONS(772), - [anon_sym_RPAREN] = ACTIONS(772), + [sym__concat] = ACTIONS(4318), + [anon_sym_PIPE] = ACTIONS(788), + [anon_sym_RPAREN] = ACTIONS(788), [sym_comment] = ACTIONS(56), }, [1991] = { - [sym__concat] = ACTIONS(776), - [anon_sym_PIPE] = ACTIONS(776), - [anon_sym_RPAREN] = ACTIONS(776), + [sym__concat] = ACTIONS(792), + [anon_sym_PIPE] = ACTIONS(792), + [anon_sym_RPAREN] = ACTIONS(792), [sym_comment] = ACTIONS(56), }, [1992] = { @@ -56800,7 +57048,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(134), [sym_command_substitution] = STATE(134), [aux_sym_string_repeat1] = STATE(447), - [anon_sym_DQUOTE] = ACTIONS(5497), + [anon_sym_DQUOTE] = ACTIONS(5559), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -56809,21 +57057,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(182), }, [1993] = { - [sym__concat] = ACTIONS(808), - [anon_sym_PIPE] = ACTIONS(808), - [anon_sym_RPAREN] = ACTIONS(808), + [sym__concat] = ACTIONS(824), + [anon_sym_PIPE] = ACTIONS(824), + [anon_sym_RPAREN] = ACTIONS(824), [sym_comment] = ACTIONS(56), }, [1994] = { - [sym__concat] = ACTIONS(812), - [anon_sym_PIPE] = ACTIONS(812), - [anon_sym_RPAREN] = ACTIONS(812), + [sym__concat] = ACTIONS(828), + [anon_sym_PIPE] = ACTIONS(828), + [anon_sym_RPAREN] = ACTIONS(828), [sym_comment] = ACTIONS(56), }, [1995] = { - [sym__concat] = ACTIONS(816), - [anon_sym_PIPE] = ACTIONS(816), - [anon_sym_RPAREN] = ACTIONS(816), + [sym__concat] = ACTIONS(832), + [anon_sym_PIPE] = ACTIONS(832), + [anon_sym_RPAREN] = ACTIONS(832), [sym_comment] = ACTIONS(56), }, [1996] = { @@ -56854,24 +57102,24 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_program_repeat1] = STATE(2666), [aux_sym_command_repeat1] = STATE(2658), [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(5459), + [sym_variable_name] = ACTIONS(5521), [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(5461), + [anon_sym_while] = ACTIONS(5523), [anon_sym_if] = ACTIONS(20), [anon_sym_case] = ACTIONS(22), - [anon_sym_esac] = ACTIONS(5499), - [anon_sym_SEMI_SEMI] = ACTIONS(5501), - [anon_sym_function] = ACTIONS(5467), + [anon_sym_esac] = ACTIONS(5561), + [anon_sym_SEMI_SEMI] = ACTIONS(5563), + [anon_sym_function] = ACTIONS(5529), [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(5469), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5471), - [anon_sym_declare] = ACTIONS(5473), - [anon_sym_typeset] = ACTIONS(5473), - [anon_sym_export] = ACTIONS(5473), - [anon_sym_readonly] = ACTIONS(5473), - [anon_sym_local] = ACTIONS(5473), - [anon_sym_unset] = ACTIONS(5475), - [anon_sym_unsetenv] = ACTIONS(5475), + [anon_sym_LBRACK] = ACTIONS(5531), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5533), + [anon_sym_declare] = ACTIONS(5535), + [anon_sym_typeset] = ACTIONS(5535), + [anon_sym_export] = ACTIONS(5535), + [anon_sym_readonly] = ACTIONS(5535), + [anon_sym_local] = ACTIONS(5535), + [anon_sym_unset] = ACTIONS(5537), + [anon_sym_unsetenv] = ACTIONS(5537), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -56879,27 +57127,27 @@ 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(5477), - [anon_sym_DQUOTE] = ACTIONS(5479), - [anon_sym_DOLLAR] = ACTIONS(5481), - [sym_raw_string] = ACTIONS(5483), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5485), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5487), - [anon_sym_BQUOTE] = ACTIONS(5489), - [anon_sym_LT_LPAREN] = ACTIONS(5491), - [anon_sym_GT_LPAREN] = ACTIONS(5491), + [sym__special_characters] = ACTIONS(5539), + [anon_sym_DQUOTE] = ACTIONS(5541), + [anon_sym_DOLLAR] = ACTIONS(5543), + [sym_raw_string] = ACTIONS(5545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5547), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5549), + [anon_sym_BQUOTE] = ACTIONS(5551), + [anon_sym_LT_LPAREN] = ACTIONS(5553), + [anon_sym_GT_LPAREN] = ACTIONS(5553), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5493), + [sym_word] = ACTIONS(5555), }, [1997] = { [aux_sym_case_item_repeat1] = STATE(2660), - [anon_sym_PIPE] = ACTIONS(4262), - [anon_sym_RPAREN] = ACTIONS(5503), + [anon_sym_PIPE] = ACTIONS(4320), + [anon_sym_RPAREN] = ACTIONS(5565), [sym_comment] = ACTIONS(56), }, [1998] = { - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(5505), + [anon_sym_LBRACK] = ACTIONS(836), + [anon_sym_EQ] = ACTIONS(5567), [sym_comment] = ACTIONS(56), }, [1999] = { @@ -56911,39 +57159,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(2671), - [anon_sym_RBRACE] = ACTIONS(5507), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_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(5509), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(5569), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(5571), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2000] = { [sym_subscript] = STATE(2675), - [sym_variable_name] = ACTIONS(5511), - [anon_sym_DOLLAR] = ACTIONS(5513), - [anon_sym_DASH] = ACTIONS(5513), + [sym_variable_name] = ACTIONS(5573), + [anon_sym_DOLLAR] = ACTIONS(5575), + [anon_sym_DASH] = ACTIONS(5575), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5515), - [anon_sym_STAR] = ACTIONS(5513), - [anon_sym_AT] = ACTIONS(5513), - [anon_sym_QMARK] = ACTIONS(5513), - [anon_sym_0] = ACTIONS(5517), - [anon_sym__] = ACTIONS(5517), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5577), + [anon_sym_STAR] = ACTIONS(5575), + [anon_sym_AT] = ACTIONS(5575), + [anon_sym_QMARK] = ACTIONS(5575), + [anon_sym_0] = ACTIONS(5579), + [anon_sym__] = ACTIONS(5579), }, [2001] = { [sym_concatenation] = STATE(451), @@ -56954,26 +57202,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(2678), - [anon_sym_RBRACE] = ACTIONS(5519), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_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(5521), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(5581), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(5583), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2002] = { [sym_concatenation] = STATE(451), @@ -56984,146 +57232,146 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(2681), - [anon_sym_RBRACE] = ACTIONS(5523), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_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(5525), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(5585), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(5587), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2003] = { - [anon_sym_PIPE] = ACTIONS(954), - [anon_sym_RPAREN] = ACTIONS(5527), - [anon_sym_PIPE_AMP] = ACTIONS(958), - [anon_sym_AMP_AMP] = ACTIONS(960), - [anon_sym_PIPE_PIPE] = ACTIONS(960), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(5589), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), [sym_comment] = ACTIONS(56), }, [2004] = { - [sym_file_descriptor] = ACTIONS(378), - [sym_variable_name] = ACTIONS(378), - [anon_sym_PIPE] = ACTIONS(954), - [anon_sym_RPAREN] = ACTIONS(5527), - [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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(5589), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [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(5527), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_PIPE_AMP] = ACTIONS(1072), + [anon_sym_AMP_AMP] = ACTIONS(1074), + [anon_sym_PIPE_PIPE] = ACTIONS(1074), + [anon_sym_BQUOTE] = ACTIONS(5589), [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(5527), - [anon_sym_LT_LPAREN] = ACTIONS(378), - [anon_sym_GT_LPAREN] = ACTIONS(378), + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_PIPE_AMP] = ACTIONS(1072), + [anon_sym_AMP_AMP] = ACTIONS(1074), + [anon_sym_PIPE_PIPE] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(5589), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [2007] = { - [anon_sym_PIPE] = ACTIONS(954), - [anon_sym_RPAREN] = ACTIONS(5529), - [anon_sym_PIPE_AMP] = ACTIONS(958), - [anon_sym_AMP_AMP] = ACTIONS(960), - [anon_sym_PIPE_PIPE] = ACTIONS(960), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(5591), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), [sym_comment] = ACTIONS(56), }, [2008] = { - [sym_file_descriptor] = ACTIONS(378), - [sym_variable_name] = ACTIONS(378), - [anon_sym_PIPE] = ACTIONS(954), - [anon_sym_RPAREN] = ACTIONS(5529), - [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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(5591), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [2009] = { - [anon_sym_esac] = ACTIONS(5531), - [anon_sym_PIPE] = ACTIONS(5531), - [anon_sym_RPAREN] = ACTIONS(5531), - [anon_sym_SEMI_SEMI] = ACTIONS(5531), - [anon_sym_PIPE_AMP] = ACTIONS(5531), - [anon_sym_AMP_AMP] = ACTIONS(5531), - [anon_sym_PIPE_PIPE] = ACTIONS(5531), + [anon_sym_esac] = ACTIONS(5593), + [anon_sym_PIPE] = ACTIONS(5593), + [anon_sym_RPAREN] = ACTIONS(5593), + [anon_sym_SEMI_SEMI] = ACTIONS(5593), + [anon_sym_PIPE_AMP] = ACTIONS(5593), + [anon_sym_AMP_AMP] = ACTIONS(5593), + [anon_sym_PIPE_PIPE] = ACTIONS(5593), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(5531), - [anon_sym_LF] = ACTIONS(5531), - [anon_sym_AMP] = ACTIONS(5531), + [anon_sym_SEMI] = ACTIONS(5593), + [anon_sym_LF] = ACTIONS(5593), + [anon_sym_AMP] = ACTIONS(5593), }, [2010] = { - [anon_sym_esac] = ACTIONS(5533), + [anon_sym_esac] = ACTIONS(5595), [sym_comment] = ACTIONS(56), }, [2011] = { @@ -57136,30 +57384,30 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(2686), [sym_process_substitution] = STATE(2686), [aux_sym_case_statement_repeat1] = STATE(2011), - [sym__special_characters] = ACTIONS(5535), - [anon_sym_DQUOTE] = ACTIONS(5538), - [anon_sym_DOLLAR] = ACTIONS(5541), - [sym_raw_string] = ACTIONS(5544), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5547), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5550), - [anon_sym_BQUOTE] = ACTIONS(5553), - [anon_sym_LT_LPAREN] = ACTIONS(5556), - [anon_sym_GT_LPAREN] = ACTIONS(5556), + [sym__special_characters] = ACTIONS(5597), + [anon_sym_DQUOTE] = ACTIONS(5600), + [anon_sym_DOLLAR] = ACTIONS(5603), + [sym_raw_string] = ACTIONS(5606), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5609), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5612), + [anon_sym_BQUOTE] = ACTIONS(5615), + [anon_sym_LT_LPAREN] = ACTIONS(5618), + [anon_sym_GT_LPAREN] = ACTIONS(5618), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5559), + [sym_word] = ACTIONS(5621), }, [2012] = { - [anon_sym_esac] = ACTIONS(5562), - [anon_sym_PIPE] = ACTIONS(5562), - [anon_sym_RPAREN] = ACTIONS(5562), - [anon_sym_SEMI_SEMI] = ACTIONS(5562), - [anon_sym_PIPE_AMP] = ACTIONS(5562), - [anon_sym_AMP_AMP] = ACTIONS(5562), - [anon_sym_PIPE_PIPE] = ACTIONS(5562), + [anon_sym_esac] = ACTIONS(5624), + [anon_sym_PIPE] = ACTIONS(5624), + [anon_sym_RPAREN] = ACTIONS(5624), + [anon_sym_SEMI_SEMI] = ACTIONS(5624), + [anon_sym_PIPE_AMP] = ACTIONS(5624), + [anon_sym_AMP_AMP] = ACTIONS(5624), + [anon_sym_PIPE_PIPE] = ACTIONS(5624), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(5562), - [anon_sym_LF] = ACTIONS(5562), - [anon_sym_AMP] = ACTIONS(5562), + [anon_sym_SEMI] = ACTIONS(5624), + [anon_sym_LF] = ACTIONS(5624), + [anon_sym_AMP] = ACTIONS(5624), }, [2013] = { [sym_case_item] = STATE(1332), @@ -57172,47 +57420,47 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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__special_characters] = ACTIONS(2697), + [anon_sym_DQUOTE] = ACTIONS(2699), + [anon_sym_DOLLAR] = ACTIONS(2701), + [sym_raw_string] = ACTIONS(2703), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2705), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2707), + [anon_sym_BQUOTE] = ACTIONS(2709), + [anon_sym_LT_LPAREN] = ACTIONS(2711), + [anon_sym_GT_LPAREN] = ACTIONS(2711), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4292), + [sym_word] = ACTIONS(4352), }, [2014] = { - [anon_sym_esac] = ACTIONS(5564), - [anon_sym_PIPE] = ACTIONS(5564), - [anon_sym_RPAREN] = ACTIONS(5564), - [anon_sym_SEMI_SEMI] = ACTIONS(5564), - [anon_sym_PIPE_AMP] = ACTIONS(5564), - [anon_sym_AMP_AMP] = ACTIONS(5564), - [anon_sym_PIPE_PIPE] = ACTIONS(5564), + [anon_sym_esac] = ACTIONS(5626), + [anon_sym_PIPE] = ACTIONS(5626), + [anon_sym_RPAREN] = ACTIONS(5626), + [anon_sym_SEMI_SEMI] = ACTIONS(5626), + [anon_sym_PIPE_AMP] = ACTIONS(5626), + [anon_sym_AMP_AMP] = ACTIONS(5626), + [anon_sym_PIPE_PIPE] = ACTIONS(5626), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(5564), - [anon_sym_LF] = ACTIONS(5564), - [anon_sym_AMP] = ACTIONS(5564), + [anon_sym_SEMI] = ACTIONS(5626), + [anon_sym_LF] = ACTIONS(5626), + [anon_sym_AMP] = ACTIONS(5626), }, [2015] = { - [anon_sym_esac] = ACTIONS(5566), + [anon_sym_esac] = ACTIONS(5628), [sym_comment] = ACTIONS(56), }, [2016] = { - [anon_sym_esac] = ACTIONS(5568), - [anon_sym_PIPE] = ACTIONS(5568), - [anon_sym_RPAREN] = ACTIONS(5568), - [anon_sym_SEMI_SEMI] = ACTIONS(5568), - [anon_sym_PIPE_AMP] = ACTIONS(5568), - [anon_sym_AMP_AMP] = ACTIONS(5568), - [anon_sym_PIPE_PIPE] = ACTIONS(5568), + [anon_sym_esac] = ACTIONS(5630), + [anon_sym_PIPE] = ACTIONS(5630), + [anon_sym_RPAREN] = ACTIONS(5630), + [anon_sym_SEMI_SEMI] = ACTIONS(5630), + [anon_sym_PIPE_AMP] = ACTIONS(5630), + [anon_sym_AMP_AMP] = ACTIONS(5630), + [anon_sym_PIPE_PIPE] = ACTIONS(5630), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(5568), - [anon_sym_LF] = ACTIONS(5568), - [anon_sym_AMP] = ACTIONS(5568), + [anon_sym_SEMI] = ACTIONS(5630), + [anon_sym_LF] = ACTIONS(5630), + [anon_sym_AMP] = ACTIONS(5630), }, [2017] = { [sym_case_item] = STATE(1332), @@ -57225,44 +57473,44 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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__special_characters] = ACTIONS(2697), + [anon_sym_DQUOTE] = ACTIONS(2699), + [anon_sym_DOLLAR] = ACTIONS(2701), + [sym_raw_string] = ACTIONS(2703), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2705), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2707), + [anon_sym_BQUOTE] = ACTIONS(2709), + [anon_sym_LT_LPAREN] = ACTIONS(2711), + [anon_sym_GT_LPAREN] = ACTIONS(2711), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4292), + [sym_word] = ACTIONS(4352), }, [2018] = { - [sym__concat] = ACTIONS(4728), - [anon_sym_in] = ACTIONS(4730), - [anon_sym_SEMI_SEMI] = ACTIONS(4730), + [sym__concat] = ACTIONS(4790), + [anon_sym_in] = ACTIONS(4792), + [anon_sym_SEMI_SEMI] = ACTIONS(4792), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4730), - [anon_sym_LF] = ACTIONS(4730), - [anon_sym_AMP] = ACTIONS(4730), + [anon_sym_SEMI] = ACTIONS(4792), + [anon_sym_LF] = ACTIONS(4792), + [anon_sym_AMP] = ACTIONS(4792), }, [2019] = { - [sym__concat] = ACTIONS(4734), - [anon_sym_in] = ACTIONS(4736), - [anon_sym_SEMI_SEMI] = ACTIONS(4736), + [sym__concat] = ACTIONS(4796), + [anon_sym_in] = ACTIONS(4798), + [anon_sym_SEMI_SEMI] = ACTIONS(4798), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4736), - [anon_sym_LF] = ACTIONS(4736), - [anon_sym_AMP] = ACTIONS(4736), + [anon_sym_SEMI] = ACTIONS(4798), + [anon_sym_LF] = ACTIONS(4798), + [anon_sym_AMP] = ACTIONS(4798), }, [2020] = { - [sym__concat] = ACTIONS(4797), - [anon_sym_in] = ACTIONS(4799), - [anon_sym_SEMI_SEMI] = ACTIONS(4799), + [sym__concat] = ACTIONS(4859), + [anon_sym_in] = ACTIONS(4861), + [anon_sym_SEMI_SEMI] = ACTIONS(4861), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4799), - [anon_sym_LF] = ACTIONS(4799), - [anon_sym_AMP] = ACTIONS(4799), + [anon_sym_SEMI] = ACTIONS(4861), + [anon_sym_LF] = ACTIONS(4861), + [anon_sym_AMP] = ACTIONS(4861), }, [2021] = { [sym_concatenation] = STATE(451), @@ -57273,40 +57521,40 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(5570), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(5632), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2022] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(5572), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(5634), [sym_comment] = ACTIONS(56), }, [2023] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(5574), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(5636), [sym_comment] = ACTIONS(56), }, [2024] = { - [anon_sym_RBRACE] = ACTIONS(5574), + [anon_sym_RBRACE] = ACTIONS(5636), [sym_comment] = ACTIONS(56), }, [2025] = { @@ -57318,34 +57566,34 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(2695), - [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), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(5638), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2026] = { - [sym__concat] = ACTIONS(4809), - [anon_sym_in] = ACTIONS(4811), - [anon_sym_SEMI_SEMI] = ACTIONS(4811), + [sym__concat] = ACTIONS(4871), + [anon_sym_in] = ACTIONS(4873), + [anon_sym_SEMI_SEMI] = ACTIONS(4873), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4811), - [anon_sym_LF] = ACTIONS(4811), - [anon_sym_AMP] = ACTIONS(4811), + [anon_sym_SEMI] = ACTIONS(4873), + [anon_sym_LF] = ACTIONS(4873), + [anon_sym_AMP] = ACTIONS(4873), }, [2027] = { [sym_concatenation] = STATE(451), @@ -57356,34 +57604,34 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(2697), - [anon_sym_RBRACE] = ACTIONS(5578), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(5640), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2028] = { - [sym__concat] = ACTIONS(4815), - [anon_sym_in] = ACTIONS(4817), - [anon_sym_SEMI_SEMI] = ACTIONS(4817), + [sym__concat] = ACTIONS(4877), + [anon_sym_in] = ACTIONS(4879), + [anon_sym_SEMI_SEMI] = ACTIONS(4879), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4817), - [anon_sym_LF] = ACTIONS(4817), - [anon_sym_AMP] = ACTIONS(4817), + [anon_sym_SEMI] = ACTIONS(4879), + [anon_sym_LF] = ACTIONS(4879), + [anon_sym_AMP] = ACTIONS(4879), }, [2029] = { [sym_concatenation] = STATE(451), @@ -57394,34 +57642,34 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(2699), - [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), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(5642), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2030] = { - [sym__concat] = ACTIONS(4821), - [anon_sym_in] = ACTIONS(4823), - [anon_sym_SEMI_SEMI] = ACTIONS(4823), + [sym__concat] = ACTIONS(4883), + [anon_sym_in] = ACTIONS(4885), + [anon_sym_SEMI_SEMI] = ACTIONS(4885), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4823), - [anon_sym_LF] = ACTIONS(4823), - [anon_sym_AMP] = ACTIONS(4823), + [anon_sym_SEMI] = ACTIONS(4885), + [anon_sym_LF] = ACTIONS(4885), + [anon_sym_AMP] = ACTIONS(4885), }, [2031] = { [sym_concatenation] = STATE(451), @@ -57432,34 +57680,34 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(5582), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(5644), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2032] = { - [sym__concat] = ACTIONS(4827), - [anon_sym_in] = ACTIONS(4829), - [anon_sym_SEMI_SEMI] = ACTIONS(4829), + [sym__concat] = ACTIONS(4889), + [anon_sym_in] = ACTIONS(4891), + [anon_sym_SEMI_SEMI] = ACTIONS(4891), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4829), - [anon_sym_LF] = ACTIONS(4829), - [anon_sym_AMP] = ACTIONS(4829), + [anon_sym_SEMI] = ACTIONS(4891), + [anon_sym_LF] = ACTIONS(4891), + [anon_sym_AMP] = ACTIONS(4891), }, [2033] = { [sym_concatenation] = STATE(451), @@ -57470,77 +57718,77 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(5584), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(5646), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2034] = { - [anon_sym_esac] = ACTIONS(5586), - [anon_sym_PIPE] = ACTIONS(5586), - [anon_sym_RPAREN] = ACTIONS(5586), - [anon_sym_SEMI_SEMI] = ACTIONS(5586), - [anon_sym_PIPE_AMP] = ACTIONS(5586), - [anon_sym_AMP_AMP] = ACTIONS(5586), - [anon_sym_PIPE_PIPE] = ACTIONS(5586), + [anon_sym_esac] = ACTIONS(5648), + [anon_sym_PIPE] = ACTIONS(5648), + [anon_sym_RPAREN] = ACTIONS(5648), + [anon_sym_SEMI_SEMI] = ACTIONS(5648), + [anon_sym_PIPE_AMP] = ACTIONS(5648), + [anon_sym_AMP_AMP] = ACTIONS(5648), + [anon_sym_PIPE_PIPE] = ACTIONS(5648), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(5586), - [anon_sym_LF] = ACTIONS(5586), - [anon_sym_AMP] = ACTIONS(5586), + [anon_sym_SEMI] = ACTIONS(5648), + [anon_sym_LF] = ACTIONS(5648), + [anon_sym_AMP] = ACTIONS(5648), }, [2035] = { [aux_sym_concatenation_repeat1] = STATE(2039), - [sym__concat] = ACTIONS(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__concat] = ACTIONS(4400), + [anon_sym_PIPE] = ACTIONS(4032), + [anon_sym_SEMI_SEMI] = ACTIONS(4032), + [anon_sym_PIPE_AMP] = ACTIONS(4032), + [anon_sym_AMP_AMP] = ACTIONS(4032), + [anon_sym_PIPE_PIPE] = ACTIONS(4032), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3974), - [anon_sym_LF] = ACTIONS(3974), - [anon_sym_AMP] = ACTIONS(3974), + [anon_sym_SEMI] = ACTIONS(4032), + [anon_sym_LF] = ACTIONS(4032), + [anon_sym_AMP] = ACTIONS(4032), }, [2036] = { [aux_sym_concatenation_repeat1] = STATE(2039), - [sym__concat] = ACTIONS(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__concat] = ACTIONS(4400), + [anon_sym_PIPE] = ACTIONS(4034), + [anon_sym_SEMI_SEMI] = ACTIONS(4034), + [anon_sym_PIPE_AMP] = ACTIONS(4034), + [anon_sym_AMP_AMP] = ACTIONS(4034), + [anon_sym_PIPE_PIPE] = ACTIONS(4034), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3976), - [anon_sym_LF] = ACTIONS(3976), - [anon_sym_AMP] = ACTIONS(3976), + [anon_sym_SEMI] = ACTIONS(4034), + [anon_sym_LF] = ACTIONS(4034), + [anon_sym_AMP] = ACTIONS(4034), }, [2037] = { - [anon_sym_esac] = ACTIONS(3976), - [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_esac] = ACTIONS(4034), + [anon_sym_PIPE] = ACTIONS(4034), + [anon_sym_RPAREN] = ACTIONS(4034), + [anon_sym_SEMI_SEMI] = ACTIONS(4034), + [anon_sym_PIPE_AMP] = ACTIONS(4034), + [anon_sym_AMP_AMP] = ACTIONS(4034), + [anon_sym_PIPE_PIPE] = ACTIONS(4034), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3976), - [anon_sym_LF] = ACTIONS(3976), - [anon_sym_AMP] = ACTIONS(3976), + [anon_sym_SEMI] = ACTIONS(4034), + [anon_sym_LF] = ACTIONS(4034), + [anon_sym_AMP] = ACTIONS(4034), }, [2038] = { [sym_string] = STATE(2702), @@ -57549,49 +57797,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(2702), [sym_command_substitution] = STATE(2702), [sym_process_substitution] = STATE(2702), - [sym__special_characters] = ACTIONS(5588), - [anon_sym_DQUOTE] = ACTIONS(2724), - [anon_sym_DOLLAR] = ACTIONS(2726), - [sym_raw_string] = ACTIONS(5590), - [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__special_characters] = ACTIONS(5650), + [anon_sym_DQUOTE] = ACTIONS(2768), + [anon_sym_DOLLAR] = ACTIONS(2770), + [sym_raw_string] = ACTIONS(5652), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2774), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2776), + [anon_sym_BQUOTE] = ACTIONS(2778), + [anon_sym_LT_LPAREN] = ACTIONS(2780), + [anon_sym_GT_LPAREN] = ACTIONS(2780), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5588), + [sym_word] = ACTIONS(5650), }, [2039] = { [aux_sym_concatenation_repeat1] = STATE(2703), - [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__concat] = ACTIONS(4400), + [anon_sym_PIPE] = ACTIONS(790), + [anon_sym_SEMI_SEMI] = ACTIONS(790), + [anon_sym_PIPE_AMP] = ACTIONS(790), + [anon_sym_AMP_AMP] = ACTIONS(790), + [anon_sym_PIPE_PIPE] = ACTIONS(790), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(774), - [anon_sym_LF] = ACTIONS(774), - [anon_sym_AMP] = ACTIONS(774), + [anon_sym_SEMI] = ACTIONS(790), + [anon_sym_LF] = ACTIONS(790), + [anon_sym_AMP] = ACTIONS(790), }, [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__concat] = ACTIONS(792), + [anon_sym_PIPE] = ACTIONS(794), + [anon_sym_SEMI_SEMI] = ACTIONS(794), + [anon_sym_PIPE_AMP] = ACTIONS(794), + [anon_sym_AMP_AMP] = ACTIONS(794), + [anon_sym_PIPE_PIPE] = ACTIONS(794), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(778), - [anon_sym_LF] = ACTIONS(778), - [anon_sym_AMP] = ACTIONS(778), + [anon_sym_SEMI] = ACTIONS(794), + [anon_sym_LF] = ACTIONS(794), + [anon_sym_AMP] = ACTIONS(794), }, [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(5592), + [anon_sym_DQUOTE] = ACTIONS(5654), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -57600,44 +57848,44 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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__concat] = ACTIONS(824), + [anon_sym_PIPE] = ACTIONS(826), + [anon_sym_SEMI_SEMI] = ACTIONS(826), + [anon_sym_PIPE_AMP] = ACTIONS(826), + [anon_sym_AMP_AMP] = ACTIONS(826), + [anon_sym_PIPE_PIPE] = ACTIONS(826), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(810), - [anon_sym_LF] = ACTIONS(810), - [anon_sym_AMP] = ACTIONS(810), + [anon_sym_SEMI] = ACTIONS(826), + [anon_sym_LF] = ACTIONS(826), + [anon_sym_AMP] = ACTIONS(826), }, [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__concat] = ACTIONS(828), + [anon_sym_PIPE] = ACTIONS(830), + [anon_sym_SEMI_SEMI] = ACTIONS(830), + [anon_sym_PIPE_AMP] = ACTIONS(830), + [anon_sym_AMP_AMP] = ACTIONS(830), + [anon_sym_PIPE_PIPE] = ACTIONS(830), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(814), - [anon_sym_LF] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(814), + [anon_sym_SEMI] = ACTIONS(830), + [anon_sym_LF] = ACTIONS(830), + [anon_sym_AMP] = ACTIONS(830), }, [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__concat] = ACTIONS(832), + [anon_sym_PIPE] = ACTIONS(834), + [anon_sym_SEMI_SEMI] = ACTIONS(834), + [anon_sym_PIPE_AMP] = ACTIONS(834), + [anon_sym_AMP_AMP] = ACTIONS(834), + [anon_sym_PIPE_PIPE] = ACTIONS(834), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(818), - [anon_sym_LF] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(818), + [anon_sym_SEMI] = ACTIONS(834), + [anon_sym_LF] = ACTIONS(834), + [anon_sym_AMP] = ACTIONS(834), }, [2045] = { - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(5594), + [anon_sym_LBRACK] = ACTIONS(836), + [anon_sym_EQ] = ACTIONS(5656), [sym_comment] = ACTIONS(56), }, [2046] = { @@ -57649,39 +57897,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(2708), - [anon_sym_RBRACE] = ACTIONS(5596), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_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(5598), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(5658), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(5660), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2047] = { [sym_subscript] = STATE(2712), - [sym_variable_name] = ACTIONS(5600), - [anon_sym_DOLLAR] = ACTIONS(5602), - [anon_sym_DASH] = ACTIONS(5602), + [sym_variable_name] = ACTIONS(5662), + [anon_sym_DOLLAR] = ACTIONS(5664), + [anon_sym_DASH] = ACTIONS(5664), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5604), - [anon_sym_STAR] = ACTIONS(5602), - [anon_sym_AT] = ACTIONS(5602), - [anon_sym_QMARK] = ACTIONS(5602), - [anon_sym_0] = ACTIONS(5606), - [anon_sym__] = ACTIONS(5606), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5666), + [anon_sym_STAR] = ACTIONS(5664), + [anon_sym_AT] = ACTIONS(5664), + [anon_sym_QMARK] = ACTIONS(5664), + [anon_sym_0] = ACTIONS(5668), + [anon_sym__] = ACTIONS(5668), }, [2048] = { [sym_concatenation] = STATE(451), @@ -57692,26 +57940,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(2715), - [anon_sym_RBRACE] = ACTIONS(5608), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_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(5610), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(5670), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(5672), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2049] = { [sym_concatenation] = STATE(451), @@ -57722,227 +57970,227 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(2718), - [anon_sym_RBRACE] = ACTIONS(5612), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_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(5614), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(5674), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(5676), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2050] = { - [anon_sym_PIPE] = ACTIONS(954), - [anon_sym_RPAREN] = ACTIONS(5616), - [anon_sym_PIPE_AMP] = ACTIONS(958), - [anon_sym_AMP_AMP] = ACTIONS(960), - [anon_sym_PIPE_PIPE] = ACTIONS(960), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(5678), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), [sym_comment] = ACTIONS(56), }, [2051] = { - [sym_file_descriptor] = ACTIONS(378), - [sym_variable_name] = ACTIONS(378), - [anon_sym_PIPE] = ACTIONS(954), - [anon_sym_RPAREN] = ACTIONS(5616), - [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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(5678), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [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(5616), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_PIPE_AMP] = ACTIONS(1072), + [anon_sym_AMP_AMP] = ACTIONS(1074), + [anon_sym_PIPE_PIPE] = ACTIONS(1074), + [anon_sym_BQUOTE] = ACTIONS(5678), [sym_comment] = ACTIONS(56), }, [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(5616), - [anon_sym_LT_LPAREN] = ACTIONS(378), - [anon_sym_GT_LPAREN] = ACTIONS(378), + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_PIPE_AMP] = ACTIONS(1072), + [anon_sym_AMP_AMP] = ACTIONS(1074), + [anon_sym_PIPE_PIPE] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(5678), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [2054] = { - [anon_sym_PIPE] = ACTIONS(954), - [anon_sym_RPAREN] = ACTIONS(5618), - [anon_sym_PIPE_AMP] = ACTIONS(958), - [anon_sym_AMP_AMP] = ACTIONS(960), - [anon_sym_PIPE_PIPE] = ACTIONS(960), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(5680), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), [sym_comment] = ACTIONS(56), }, [2055] = { - [sym_file_descriptor] = ACTIONS(378), - [sym_variable_name] = ACTIONS(378), - [anon_sym_PIPE] = ACTIONS(954), - [anon_sym_RPAREN] = ACTIONS(5618), - [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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(5680), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [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(1860), - [anon_sym_GT_LPAREN] = ACTIONS(1860), + [sym_file_descriptor] = ACTIONS(1886), + [sym__concat] = ACTIONS(1886), + [sym_variable_name] = ACTIONS(1886), + [anon_sym_PIPE] = ACTIONS(1888), + [anon_sym_RPAREN] = ACTIONS(1888), + [anon_sym_SEMI_SEMI] = ACTIONS(1888), + [anon_sym_PIPE_AMP] = ACTIONS(1888), + [anon_sym_AMP_AMP] = ACTIONS(1888), + [anon_sym_PIPE_PIPE] = ACTIONS(1888), + [anon_sym_LT] = ACTIONS(1888), + [anon_sym_GT] = ACTIONS(1888), + [anon_sym_GT_GT] = ACTIONS(1888), + [anon_sym_AMP_GT] = ACTIONS(1888), + [anon_sym_AMP_GT_GT] = ACTIONS(1888), + [anon_sym_LT_AMP] = ACTIONS(1888), + [anon_sym_GT_AMP] = ACTIONS(1888), + [sym__special_characters] = ACTIONS(1888), + [anon_sym_DQUOTE] = ACTIONS(1888), + [anon_sym_DOLLAR] = ACTIONS(1888), + [sym_raw_string] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1888), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1888), + [anon_sym_BQUOTE] = ACTIONS(1888), + [anon_sym_LT_LPAREN] = ACTIONS(1888), + [anon_sym_GT_LPAREN] = ACTIONS(1888), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1860), - [anon_sym_SEMI] = ACTIONS(1860), - [anon_sym_LF] = ACTIONS(1860), - [anon_sym_AMP] = ACTIONS(1860), + [sym_word] = ACTIONS(1888), + [anon_sym_SEMI] = ACTIONS(1888), + [anon_sym_LF] = ACTIONS(1888), + [anon_sym_AMP] = ACTIONS(1888), }, [2057] = { [aux_sym_concatenation_repeat1] = STATE(2057), - [sym_file_descriptor] = ACTIONS(1858), - [sym__concat] = ACTIONS(5620), - [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(1860), - [anon_sym_GT_LPAREN] = ACTIONS(1860), + [sym_file_descriptor] = ACTIONS(1886), + [sym__concat] = ACTIONS(5682), + [sym_variable_name] = ACTIONS(1886), + [anon_sym_PIPE] = ACTIONS(1888), + [anon_sym_RPAREN] = ACTIONS(1888), + [anon_sym_SEMI_SEMI] = ACTIONS(1888), + [anon_sym_PIPE_AMP] = ACTIONS(1888), + [anon_sym_AMP_AMP] = ACTIONS(1888), + [anon_sym_PIPE_PIPE] = ACTIONS(1888), + [anon_sym_LT] = ACTIONS(1888), + [anon_sym_GT] = ACTIONS(1888), + [anon_sym_GT_GT] = ACTIONS(1888), + [anon_sym_AMP_GT] = ACTIONS(1888), + [anon_sym_AMP_GT_GT] = ACTIONS(1888), + [anon_sym_LT_AMP] = ACTIONS(1888), + [anon_sym_GT_AMP] = ACTIONS(1888), + [sym__special_characters] = ACTIONS(1888), + [anon_sym_DQUOTE] = ACTIONS(1888), + [anon_sym_DOLLAR] = ACTIONS(1888), + [sym_raw_string] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1888), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1888), + [anon_sym_BQUOTE] = ACTIONS(1888), + [anon_sym_LT_LPAREN] = ACTIONS(1888), + [anon_sym_GT_LPAREN] = ACTIONS(1888), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1860), - [anon_sym_SEMI] = ACTIONS(1860), - [anon_sym_LF] = ACTIONS(1860), - [anon_sym_AMP] = ACTIONS(1860), + [sym_word] = ACTIONS(1888), + [anon_sym_SEMI] = ACTIONS(1888), + [anon_sym_LF] = ACTIONS(1888), + [anon_sym_AMP] = ACTIONS(1888), }, [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_file_descriptor] = ACTIONS(1923), + [sym__concat] = ACTIONS(1923), + [sym_variable_name] = ACTIONS(1923), + [anon_sym_PIPE] = ACTIONS(1925), + [anon_sym_RPAREN] = ACTIONS(1925), + [anon_sym_SEMI_SEMI] = ACTIONS(1925), + [anon_sym_PIPE_AMP] = ACTIONS(1925), + [anon_sym_AMP_AMP] = ACTIONS(1925), + [anon_sym_PIPE_PIPE] = ACTIONS(1925), + [anon_sym_LT] = ACTIONS(1925), + [anon_sym_GT] = ACTIONS(1925), + [anon_sym_GT_GT] = ACTIONS(1925), + [anon_sym_AMP_GT] = ACTIONS(1925), + [anon_sym_AMP_GT_GT] = ACTIONS(1925), + [anon_sym_LT_AMP] = ACTIONS(1925), + [anon_sym_GT_AMP] = ACTIONS(1925), + [sym__special_characters] = ACTIONS(1925), + [anon_sym_DQUOTE] = ACTIONS(1925), + [anon_sym_DOLLAR] = ACTIONS(1925), + [sym_raw_string] = ACTIONS(1925), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1925), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1925), + [anon_sym_BQUOTE] = ACTIONS(1925), + [anon_sym_LT_LPAREN] = ACTIONS(1925), + [anon_sym_GT_LPAREN] = ACTIONS(1925), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1897), - [anon_sym_SEMI] = ACTIONS(1897), - [anon_sym_LF] = ACTIONS(1897), - [anon_sym_AMP] = ACTIONS(1897), + [sym_word] = ACTIONS(1925), + [anon_sym_SEMI] = ACTIONS(1925), + [anon_sym_LF] = ACTIONS(1925), + [anon_sym_AMP] = ACTIONS(1925), }, [2059] = { [sym_concatenation] = STATE(2724), @@ -57952,54 +58200,54 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(2723), [sym_command_substitution] = STATE(2723), [sym_process_substitution] = STATE(2723), - [anon_sym_RBRACE] = ACTIONS(5623), - [sym__special_characters] = ACTIONS(5625), - [anon_sym_DQUOTE] = ACTIONS(1924), - [anon_sym_DOLLAR] = ACTIONS(1926), - [sym_raw_string] = ACTIONS(5627), - [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), + [anon_sym_RBRACE] = ACTIONS(5685), + [sym__special_characters] = ACTIONS(5687), + [anon_sym_DQUOTE] = ACTIONS(1952), + [anon_sym_DOLLAR] = ACTIONS(1954), + [sym_raw_string] = ACTIONS(5689), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), + [anon_sym_BQUOTE] = ACTIONS(1962), + [anon_sym_LT_LPAREN] = ACTIONS(1964), + [anon_sym_GT_LPAREN] = ACTIONS(1964), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5629), + [sym_word] = ACTIONS(5691), }, [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_file_descriptor] = ACTIONS(1968), + [sym__concat] = ACTIONS(1968), + [sym_variable_name] = ACTIONS(1968), + [anon_sym_PIPE] = ACTIONS(1970), + [anon_sym_RPAREN] = ACTIONS(1970), + [anon_sym_SEMI_SEMI] = ACTIONS(1970), + [anon_sym_PIPE_AMP] = ACTIONS(1970), + [anon_sym_AMP_AMP] = ACTIONS(1970), + [anon_sym_PIPE_PIPE] = ACTIONS(1970), + [anon_sym_LT] = ACTIONS(1970), + [anon_sym_GT] = ACTIONS(1970), + [anon_sym_GT_GT] = ACTIONS(1970), + [anon_sym_AMP_GT] = ACTIONS(1970), + [anon_sym_AMP_GT_GT] = ACTIONS(1970), + [anon_sym_LT_AMP] = ACTIONS(1970), + [anon_sym_GT_AMP] = ACTIONS(1970), + [sym__special_characters] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1970), + [anon_sym_DOLLAR] = ACTIONS(1970), + [sym_raw_string] = ACTIONS(1970), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1970), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1970), + [anon_sym_BQUOTE] = ACTIONS(1970), + [anon_sym_LT_LPAREN] = ACTIONS(1970), + [anon_sym_GT_LPAREN] = ACTIONS(1970), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1942), - [anon_sym_SEMI] = ACTIONS(1942), - [anon_sym_LF] = ACTIONS(1942), - [anon_sym_AMP] = ACTIONS(1942), + [sym_word] = ACTIONS(1970), + [anon_sym_SEMI] = ACTIONS(1970), + [anon_sym_LF] = ACTIONS(1970), + [anon_sym_AMP] = ACTIONS(1970), }, [2061] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5631), + [sym_regex_without_right_brace] = ACTIONS(5693), }, [2062] = { [sym_concatenation] = STATE(451), @@ -58010,29 +58258,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(5633), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(5695), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2063] = { - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(5635), + [anon_sym_LBRACK] = ACTIONS(836), + [anon_sym_EQ] = ACTIONS(5697), [sym_comment] = ACTIONS(56), }, [2064] = { @@ -58044,26 +58292,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(2730), - [anon_sym_RBRACE] = ACTIONS(5637), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_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(5639), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(5699), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(5701), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2065] = { [sym_concatenation] = STATE(451), @@ -58074,26 +58322,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(2733), - [anon_sym_RBRACE] = ACTIONS(5641), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_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(5643), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(5703), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(5705), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2066] = { [sym_concatenation] = STATE(451), @@ -58104,62 +58352,62 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(2735), - [anon_sym_RBRACE] = ACTIONS(5623), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_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(5645), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(5685), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(5707), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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_file_descriptor] = ACTIONS(2022), + [sym__concat] = ACTIONS(2022), + [sym_variable_name] = ACTIONS(2022), + [anon_sym_PIPE] = ACTIONS(2024), + [anon_sym_RPAREN] = ACTIONS(2024), + [anon_sym_SEMI_SEMI] = ACTIONS(2024), + [anon_sym_PIPE_AMP] = ACTIONS(2024), + [anon_sym_AMP_AMP] = ACTIONS(2024), + [anon_sym_PIPE_PIPE] = ACTIONS(2024), + [anon_sym_LT] = ACTIONS(2024), + [anon_sym_GT] = ACTIONS(2024), + [anon_sym_GT_GT] = ACTIONS(2024), + [anon_sym_AMP_GT] = ACTIONS(2024), + [anon_sym_AMP_GT_GT] = ACTIONS(2024), + [anon_sym_LT_AMP] = ACTIONS(2024), + [anon_sym_GT_AMP] = ACTIONS(2024), + [sym__special_characters] = ACTIONS(2024), + [anon_sym_DQUOTE] = ACTIONS(2024), + [anon_sym_DOLLAR] = ACTIONS(2024), + [sym_raw_string] = ACTIONS(2024), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2024), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2024), + [anon_sym_BQUOTE] = ACTIONS(2024), + [anon_sym_LT_LPAREN] = ACTIONS(2024), + [anon_sym_GT_LPAREN] = ACTIONS(2024), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1994), - [anon_sym_SEMI] = ACTIONS(1994), - [anon_sym_LF] = ACTIONS(1994), - [anon_sym_AMP] = ACTIONS(1994), + [sym_word] = ACTIONS(2024), + [anon_sym_SEMI] = ACTIONS(2024), + [anon_sym_LF] = ACTIONS(2024), + [anon_sym_AMP] = ACTIONS(2024), }, [2068] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5647), + [sym_regex_without_right_brace] = ACTIONS(5709), }, [2069] = { [sym_concatenation] = STATE(451), @@ -58170,61 +58418,61 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(5711), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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_file_descriptor] = ACTIONS(2030), + [sym__concat] = ACTIONS(2030), + [sym_variable_name] = ACTIONS(2030), + [anon_sym_PIPE] = ACTIONS(2032), + [anon_sym_RPAREN] = ACTIONS(2032), + [anon_sym_SEMI_SEMI] = ACTIONS(2032), + [anon_sym_PIPE_AMP] = ACTIONS(2032), + [anon_sym_AMP_AMP] = ACTIONS(2032), + [anon_sym_PIPE_PIPE] = ACTIONS(2032), + [anon_sym_LT] = ACTIONS(2032), + [anon_sym_GT] = ACTIONS(2032), + [anon_sym_GT_GT] = ACTIONS(2032), + [anon_sym_AMP_GT] = ACTIONS(2032), + [anon_sym_AMP_GT_GT] = ACTIONS(2032), + [anon_sym_LT_AMP] = ACTIONS(2032), + [anon_sym_GT_AMP] = ACTIONS(2032), + [sym__special_characters] = ACTIONS(2032), + [anon_sym_DQUOTE] = ACTIONS(2032), + [anon_sym_DOLLAR] = ACTIONS(2032), + [sym_raw_string] = ACTIONS(2032), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2032), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2032), + [anon_sym_BQUOTE] = ACTIONS(2032), + [anon_sym_LT_LPAREN] = ACTIONS(2032), + [anon_sym_GT_LPAREN] = ACTIONS(2032), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2002), - [anon_sym_SEMI] = ACTIONS(2002), - [anon_sym_LF] = ACTIONS(2002), - [anon_sym_AMP] = ACTIONS(2002), + [sym_word] = ACTIONS(2032), + [anon_sym_SEMI] = ACTIONS(2032), + [anon_sym_LF] = ACTIONS(2032), + [anon_sym_AMP] = ACTIONS(2032), }, [2071] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5651), + [sym_regex_without_right_brace] = ACTIONS(5713), }, [2072] = { [sym_concatenation] = STATE(451), @@ -58235,110 +58483,110 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(5623), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(5685), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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_file_descriptor] = ACTIONS(2190), + [sym__concat] = ACTIONS(2190), + [sym_variable_name] = ACTIONS(2190), + [anon_sym_PIPE] = ACTIONS(2192), + [anon_sym_RPAREN] = ACTIONS(2192), + [anon_sym_SEMI_SEMI] = ACTIONS(2192), + [anon_sym_PIPE_AMP] = ACTIONS(2192), + [anon_sym_AMP_AMP] = ACTIONS(2192), + [anon_sym_PIPE_PIPE] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(2192), + [anon_sym_GT] = ACTIONS(2192), + [anon_sym_GT_GT] = ACTIONS(2192), + [anon_sym_AMP_GT] = ACTIONS(2192), + [anon_sym_AMP_GT_GT] = ACTIONS(2192), + [anon_sym_LT_AMP] = ACTIONS(2192), + [anon_sym_GT_AMP] = ACTIONS(2192), + [sym__special_characters] = ACTIONS(2192), + [anon_sym_DQUOTE] = ACTIONS(2192), + [anon_sym_DOLLAR] = ACTIONS(2192), + [sym_raw_string] = ACTIONS(2192), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2192), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2192), + [anon_sym_BQUOTE] = ACTIONS(2192), + [anon_sym_LT_LPAREN] = ACTIONS(2192), + [anon_sym_GT_LPAREN] = ACTIONS(2192), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2158), - [anon_sym_SEMI] = ACTIONS(2158), - [anon_sym_LF] = ACTIONS(2158), - [anon_sym_AMP] = ACTIONS(2158), + [sym_word] = ACTIONS(2192), + [anon_sym_SEMI] = ACTIONS(2192), + [anon_sym_LF] = ACTIONS(2192), + [anon_sym_AMP] = ACTIONS(2192), }, [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_file_descriptor] = ACTIONS(2396), + [sym__concat] = ACTIONS(2396), + [sym_variable_name] = ACTIONS(2396), + [anon_sym_PIPE] = ACTIONS(2398), + [anon_sym_RPAREN] = ACTIONS(2398), + [anon_sym_SEMI_SEMI] = ACTIONS(2398), + [anon_sym_PIPE_AMP] = ACTIONS(2398), + [anon_sym_AMP_AMP] = ACTIONS(2398), + [anon_sym_PIPE_PIPE] = ACTIONS(2398), + [anon_sym_LT] = ACTIONS(2398), + [anon_sym_GT] = ACTIONS(2398), + [anon_sym_GT_GT] = ACTIONS(2398), + [anon_sym_AMP_GT] = ACTIONS(2398), + [anon_sym_AMP_GT_GT] = ACTIONS(2398), + [anon_sym_LT_AMP] = ACTIONS(2398), + [anon_sym_GT_AMP] = ACTIONS(2398), + [sym__special_characters] = ACTIONS(2398), + [anon_sym_DQUOTE] = ACTIONS(2398), + [anon_sym_DOLLAR] = ACTIONS(2398), + [sym_raw_string] = ACTIONS(2398), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2398), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2398), + [anon_sym_BQUOTE] = ACTIONS(2398), + [anon_sym_LT_LPAREN] = ACTIONS(2398), + [anon_sym_GT_LPAREN] = ACTIONS(2398), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2360), - [anon_sym_SEMI] = ACTIONS(2360), - [anon_sym_LF] = ACTIONS(2360), - [anon_sym_AMP] = ACTIONS(2360), + [sym_word] = ACTIONS(2398), + [anon_sym_SEMI] = ACTIONS(2398), + [anon_sym_LF] = ACTIONS(2398), + [anon_sym_AMP] = ACTIONS(2398), }, [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_file_descriptor] = ACTIONS(2810), + [anon_sym_PIPE] = ACTIONS(4388), + [anon_sym_RPAREN] = ACTIONS(4388), + [anon_sym_SEMI_SEMI] = ACTIONS(4388), + [anon_sym_PIPE_AMP] = ACTIONS(4388), + [anon_sym_AMP_AMP] = ACTIONS(4388), + [anon_sym_PIPE_PIPE] = ACTIONS(4388), + [anon_sym_LT] = ACTIONS(2812), + [anon_sym_GT] = ACTIONS(2812), + [anon_sym_GT_GT] = ACTIONS(2812), + [anon_sym_AMP_GT] = ACTIONS(2812), + [anon_sym_AMP_GT_GT] = ACTIONS(2812), + [anon_sym_LT_AMP] = ACTIONS(2812), + [anon_sym_GT_AMP] = ACTIONS(2812), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4328), - [anon_sym_LF] = ACTIONS(4328), - [anon_sym_AMP] = ACTIONS(4328), + [anon_sym_SEMI] = ACTIONS(4388), + [anon_sym_LF] = ACTIONS(4388), + [anon_sym_AMP] = ACTIONS(4388), }, [2076] = { [sym_concatenation] = STATE(2037), @@ -58348,38 +58596,38 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(2740), [sym_command_substitution] = STATE(2740), [sym_process_substitution] = STATE(2740), - [sym__special_characters] = ACTIONS(5653), - [anon_sym_DQUOTE] = ACTIONS(4398), - [anon_sym_DOLLAR] = ACTIONS(4400), - [sym_raw_string] = ACTIONS(5655), - [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__special_characters] = ACTIONS(5715), + [anon_sym_DQUOTE] = ACTIONS(4460), + [anon_sym_DOLLAR] = ACTIONS(4462), + [sym_raw_string] = ACTIONS(5717), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4466), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4468), + [anon_sym_BQUOTE] = ACTIONS(4470), + [anon_sym_LT_LPAREN] = ACTIONS(4472), + [anon_sym_GT_LPAREN] = ACTIONS(4472), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5657), + [sym_word] = ACTIONS(5719), }, [2077] = { [aux_sym_concatenation_repeat1] = STATE(2742), - [sym__concat] = ACTIONS(5659), - [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__concat] = ACTIONS(5721), + [anon_sym_PIPE] = ACTIONS(2412), + [anon_sym_RPAREN] = ACTIONS(2412), + [anon_sym_SEMI_SEMI] = ACTIONS(2412), + [anon_sym_PIPE_AMP] = ACTIONS(2412), + [anon_sym_AMP_AMP] = ACTIONS(2412), + [anon_sym_PIPE_PIPE] = ACTIONS(2412), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2374), - [anon_sym_LF] = ACTIONS(2374), - [anon_sym_AMP] = ACTIONS(2374), + [anon_sym_SEMI] = ACTIONS(2412), + [anon_sym_LF] = ACTIONS(2412), + [anon_sym_AMP] = ACTIONS(2412), }, [2078] = { [sym_simple_expansion] = STATE(134), [sym_expansion] = STATE(134), [sym_command_substitution] = STATE(134), [aux_sym_string_repeat1] = STATE(2744), - [anon_sym_DQUOTE] = ACTIONS(5661), + [anon_sym_DQUOTE] = ACTIONS(5723), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -58388,46 +58636,47 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(182), }, [2079] = { - [sym_string] = STATE(2747), - [anon_sym_DQUOTE] = ACTIONS(4398), - [anon_sym_DOLLAR] = ACTIONS(5663), - [anon_sym_POUND] = ACTIONS(5663), - [anon_sym_DASH] = ACTIONS(5663), + [sym_string] = STATE(2746), + [anon_sym_DQUOTE] = ACTIONS(4460), + [anon_sym_DOLLAR] = ACTIONS(5725), + [sym_raw_string] = ACTIONS(5727), + [anon_sym_POUND] = ACTIONS(5725), + [anon_sym_DASH] = ACTIONS(5725), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5665), - [anon_sym_STAR] = ACTIONS(5663), - [anon_sym_AT] = ACTIONS(5663), - [anon_sym_QMARK] = ACTIONS(5663), - [anon_sym_0] = ACTIONS(5667), - [anon_sym__] = ACTIONS(5667), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5729), + [anon_sym_STAR] = ACTIONS(5725), + [anon_sym_AT] = ACTIONS(5725), + [anon_sym_QMARK] = ACTIONS(5725), + [anon_sym_0] = ACTIONS(5731), + [anon_sym__] = ACTIONS(5731), }, [2080] = { [aux_sym_concatenation_repeat1] = STATE(2742), - [sym__concat] = ACTIONS(5659), - [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__concat] = ACTIONS(5721), + [anon_sym_PIPE] = ACTIONS(2424), + [anon_sym_RPAREN] = ACTIONS(2424), + [anon_sym_SEMI_SEMI] = ACTIONS(2424), + [anon_sym_PIPE_AMP] = ACTIONS(2424), + [anon_sym_AMP_AMP] = ACTIONS(2424), + [anon_sym_PIPE_PIPE] = ACTIONS(2424), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2384), - [anon_sym_LF] = ACTIONS(2384), - [anon_sym_AMP] = ACTIONS(2384), + [anon_sym_SEMI] = ACTIONS(2424), + [anon_sym_LF] = ACTIONS(2424), + [anon_sym_AMP] = ACTIONS(2424), }, [2081] = { [sym_subscript] = STATE(2752), - [sym_variable_name] = ACTIONS(5669), - [anon_sym_DOLLAR] = ACTIONS(5671), - [anon_sym_POUND] = ACTIONS(5673), - [anon_sym_DASH] = ACTIONS(5671), + [sym_variable_name] = ACTIONS(5733), + [anon_sym_DOLLAR] = ACTIONS(5735), + [anon_sym_POUND] = ACTIONS(5737), + [anon_sym_DASH] = ACTIONS(5735), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5675), - [anon_sym_STAR] = ACTIONS(5671), - [anon_sym_AT] = ACTIONS(5671), - [anon_sym_QMARK] = ACTIONS(5671), - [anon_sym_0] = ACTIONS(5677), - [anon_sym__] = ACTIONS(5677), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5739), + [anon_sym_STAR] = ACTIONS(5735), + [anon_sym_AT] = ACTIONS(5735), + [anon_sym_QMARK] = ACTIONS(5735), + [anon_sym_0] = ACTIONS(5741), + [anon_sym__] = ACTIONS(5741), }, [2082] = { [sym_for_statement] = STATE(2753), @@ -58455,22 +58704,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(264), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(268), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -58478,17 +58727,17 @@ 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(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__special_characters] = ACTIONS(286), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(300), + [sym_word] = ACTIONS(302), }, [2083] = { [sym_for_statement] = STATE(2755), @@ -58516,22 +58765,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(304), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(306), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(308), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_LBRACK_LBRACK] = ACTIONS(312), + [anon_sym_declare] = ACTIONS(314), + [anon_sym_typeset] = ACTIONS(314), + [anon_sym_export] = ACTIONS(314), + [anon_sym_readonly] = ACTIONS(314), + [anon_sym_local] = ACTIONS(314), + [anon_sym_unset] = ACTIONS(316), + [anon_sym_unsetenv] = ACTIONS(316), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -58539,17 +58788,17 @@ 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(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__special_characters] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [anon_sym_DOLLAR] = ACTIONS(322), + [sym_raw_string] = ACTIONS(324), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), + [anon_sym_BQUOTE] = ACTIONS(330), + [anon_sym_LT_LPAREN] = ACTIONS(332), + [anon_sym_GT_LPAREN] = ACTIONS(332), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(332), + [sym_word] = ACTIONS(334), }, [2084] = { [sym_for_statement] = STATE(2757), @@ -58577,22 +58826,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(264), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(268), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -58600,57 +58849,57 @@ 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(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__special_characters] = ACTIONS(286), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(300), + [sym_word] = ACTIONS(302), }, [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__concat] = ACTIONS(3283), + [sym_variable_name] = ACTIONS(3283), + [anon_sym_PIPE] = ACTIONS(3285), + [anon_sym_RPAREN] = ACTIONS(3285), + [anon_sym_SEMI_SEMI] = ACTIONS(3285), + [anon_sym_PIPE_AMP] = ACTIONS(3285), + [anon_sym_AMP_AMP] = ACTIONS(3285), + [anon_sym_PIPE_PIPE] = ACTIONS(3285), + [sym__special_characters] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3285), + [anon_sym_DOLLAR] = ACTIONS(3285), + [sym_raw_string] = ACTIONS(3285), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3285), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3285), + [anon_sym_BQUOTE] = ACTIONS(3285), + [anon_sym_LT_LPAREN] = ACTIONS(3285), + [anon_sym_GT_LPAREN] = ACTIONS(3285), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3237), - [sym_word] = ACTIONS(3237), - [anon_sym_SEMI] = ACTIONS(3237), - [anon_sym_LF] = ACTIONS(3237), - [anon_sym_AMP] = ACTIONS(3237), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3285), + [sym_word] = ACTIONS(3285), + [anon_sym_SEMI] = ACTIONS(3285), + [anon_sym_LF] = ACTIONS(3285), + [anon_sym_AMP] = ACTIONS(3285), }, [2086] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(5679), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(5743), [sym_comment] = ACTIONS(56), }, [2087] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(5681), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(5745), [sym_comment] = ACTIONS(56), }, [2088] = { - [anon_sym_RBRACE] = ACTIONS(5681), + [anon_sym_RBRACE] = ACTIONS(5745), [sym_comment] = ACTIONS(56), }, [2089] = { @@ -58662,50 +58911,50 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(2762), - [anon_sym_RBRACE] = ACTIONS(5683), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(5747), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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__concat] = ACTIONS(3347), + [sym_variable_name] = ACTIONS(3347), + [anon_sym_PIPE] = ACTIONS(3349), + [anon_sym_RPAREN] = ACTIONS(3349), + [anon_sym_SEMI_SEMI] = ACTIONS(3349), + [anon_sym_PIPE_AMP] = ACTIONS(3349), + [anon_sym_AMP_AMP] = ACTIONS(3349), + [anon_sym_PIPE_PIPE] = ACTIONS(3349), + [sym__special_characters] = ACTIONS(3349), + [anon_sym_DQUOTE] = ACTIONS(3349), + [anon_sym_DOLLAR] = ACTIONS(3349), + [sym_raw_string] = ACTIONS(3349), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3349), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3349), + [anon_sym_BQUOTE] = ACTIONS(3349), + [anon_sym_LT_LPAREN] = ACTIONS(3349), + [anon_sym_GT_LPAREN] = ACTIONS(3349), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3299), - [sym_word] = ACTIONS(3299), - [anon_sym_SEMI] = ACTIONS(3299), - [anon_sym_LF] = ACTIONS(3299), - [anon_sym_AMP] = ACTIONS(3299), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3349), + [sym_word] = ACTIONS(3349), + [anon_sym_SEMI] = ACTIONS(3349), + [anon_sym_LF] = ACTIONS(3349), + [anon_sym_AMP] = ACTIONS(3349), }, [2091] = { [sym_concatenation] = STATE(2765), @@ -58715,47 +58964,47 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(2764), [sym_command_substitution] = STATE(2764), [sym_process_substitution] = STATE(2764), - [anon_sym_RBRACE] = ACTIONS(5681), - [sym__special_characters] = ACTIONS(5685), - [anon_sym_DQUOTE] = ACTIONS(1924), - [anon_sym_DOLLAR] = ACTIONS(1926), - [sym_raw_string] = ACTIONS(5687), - [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), + [anon_sym_RBRACE] = ACTIONS(5745), + [sym__special_characters] = ACTIONS(5749), + [anon_sym_DQUOTE] = ACTIONS(1952), + [anon_sym_DOLLAR] = ACTIONS(1954), + [sym_raw_string] = ACTIONS(5751), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), + [anon_sym_BQUOTE] = ACTIONS(1962), + [anon_sym_LT_LPAREN] = ACTIONS(1964), + [anon_sym_GT_LPAREN] = ACTIONS(1964), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5689), + [sym_word] = ACTIONS(5753), }, [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__concat] = ACTIONS(3392), + [sym_variable_name] = ACTIONS(3392), + [anon_sym_PIPE] = ACTIONS(3394), + [anon_sym_RPAREN] = ACTIONS(3394), + [anon_sym_SEMI_SEMI] = ACTIONS(3394), + [anon_sym_PIPE_AMP] = ACTIONS(3394), + [anon_sym_AMP_AMP] = ACTIONS(3394), + [anon_sym_PIPE_PIPE] = ACTIONS(3394), + [sym__special_characters] = ACTIONS(3394), + [anon_sym_DQUOTE] = ACTIONS(3394), + [anon_sym_DOLLAR] = ACTIONS(3394), + [sym_raw_string] = ACTIONS(3394), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3394), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3394), + [anon_sym_BQUOTE] = ACTIONS(3394), + [anon_sym_LT_LPAREN] = ACTIONS(3394), + [anon_sym_GT_LPAREN] = ACTIONS(3394), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3344), - [sym_word] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(3344), - [anon_sym_LF] = ACTIONS(3344), - [anon_sym_AMP] = ACTIONS(3344), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3394), + [sym_word] = ACTIONS(3394), + [anon_sym_SEMI] = ACTIONS(3394), + [anon_sym_LF] = ACTIONS(3394), + [anon_sym_AMP] = ACTIONS(3394), }, [2093] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5691), + [sym_regex_without_right_brace] = ACTIONS(5755), }, [2094] = { [sym_concatenation] = STATE(451), @@ -58766,54 +59015,54 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(5693), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(5757), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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__concat] = ACTIONS(3400), + [sym_variable_name] = ACTIONS(3400), + [anon_sym_PIPE] = ACTIONS(3402), + [anon_sym_RPAREN] = ACTIONS(3402), + [anon_sym_SEMI_SEMI] = ACTIONS(3402), + [anon_sym_PIPE_AMP] = ACTIONS(3402), + [anon_sym_AMP_AMP] = ACTIONS(3402), + [anon_sym_PIPE_PIPE] = ACTIONS(3402), + [sym__special_characters] = ACTIONS(3402), + [anon_sym_DQUOTE] = ACTIONS(3402), + [anon_sym_DOLLAR] = ACTIONS(3402), + [sym_raw_string] = ACTIONS(3402), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3402), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3402), + [anon_sym_BQUOTE] = ACTIONS(3402), + [anon_sym_LT_LPAREN] = ACTIONS(3402), + [anon_sym_GT_LPAREN] = ACTIONS(3402), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3352), - [sym_word] = ACTIONS(3352), - [anon_sym_SEMI] = ACTIONS(3352), - [anon_sym_LF] = ACTIONS(3352), - [anon_sym_AMP] = ACTIONS(3352), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3402), + [sym_word] = ACTIONS(3402), + [anon_sym_SEMI] = ACTIONS(3402), + [anon_sym_LF] = ACTIONS(3402), + [anon_sym_AMP] = ACTIONS(3402), }, [2096] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5695), + [sym_regex_without_right_brace] = ACTIONS(5759), }, [2097] = { [sym_concatenation] = STATE(451), @@ -58824,29 +59073,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [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), + [anon_sym_RBRACE] = ACTIONS(5761), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2098] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5699), + [sym_regex_without_right_brace] = ACTIONS(5763), }, [2099] = { [sym_concatenation] = STATE(451), @@ -58857,25 +59106,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(5681), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(5745), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2100] = { [sym_concatenation] = STATE(451), @@ -58886,50 +59135,50 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(2772), - [anon_sym_RBRACE] = ACTIONS(5701), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(5765), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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__concat] = ACTIONS(3412), + [sym_variable_name] = ACTIONS(3412), + [anon_sym_PIPE] = ACTIONS(3414), + [anon_sym_RPAREN] = ACTIONS(3414), + [anon_sym_SEMI_SEMI] = ACTIONS(3414), + [anon_sym_PIPE_AMP] = ACTIONS(3414), + [anon_sym_AMP_AMP] = ACTIONS(3414), + [anon_sym_PIPE_PIPE] = ACTIONS(3414), + [sym__special_characters] = ACTIONS(3414), + [anon_sym_DQUOTE] = ACTIONS(3414), + [anon_sym_DOLLAR] = ACTIONS(3414), + [sym_raw_string] = ACTIONS(3414), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3414), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3414), + [anon_sym_BQUOTE] = ACTIONS(3414), + [anon_sym_LT_LPAREN] = ACTIONS(3414), + [anon_sym_GT_LPAREN] = ACTIONS(3414), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3364), - [sym_word] = ACTIONS(3364), - [anon_sym_SEMI] = ACTIONS(3364), - [anon_sym_LF] = ACTIONS(3364), - [anon_sym_AMP] = ACTIONS(3364), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3414), + [sym_word] = ACTIONS(3414), + [anon_sym_SEMI] = ACTIONS(3414), + [anon_sym_LF] = ACTIONS(3414), + [anon_sym_AMP] = ACTIONS(3414), }, [2102] = { [sym_concatenation] = STATE(451), @@ -58940,64 +59189,64 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(2774), - [anon_sym_RBRACE] = ACTIONS(5703), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(5767), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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__concat] = ACTIONS(3283), + [anon_sym_PIPE] = ACTIONS(3285), + [anon_sym_RPAREN] = ACTIONS(3285), + [anon_sym_SEMI_SEMI] = ACTIONS(3285), + [anon_sym_PIPE_AMP] = ACTIONS(3285), + [anon_sym_AMP_AMP] = ACTIONS(3285), + [anon_sym_PIPE_PIPE] = ACTIONS(3285), + [sym__special_characters] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3285), + [anon_sym_DOLLAR] = ACTIONS(3285), + [sym_raw_string] = ACTIONS(3285), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3285), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3285), + [anon_sym_BQUOTE] = ACTIONS(3285), + [anon_sym_LT_LPAREN] = ACTIONS(3285), + [anon_sym_GT_LPAREN] = ACTIONS(3285), [sym_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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3285), + [sym_word] = ACTIONS(3285), + [anon_sym_SEMI] = ACTIONS(3285), + [anon_sym_LF] = ACTIONS(3285), + [anon_sym_AMP] = ACTIONS(3285), }, [2104] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(5705), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(5769), [sym_comment] = ACTIONS(56), }, [2105] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(5707), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(5771), [sym_comment] = ACTIONS(56), }, [2106] = { - [anon_sym_RBRACE] = ACTIONS(5707), + [anon_sym_RBRACE] = ACTIONS(5771), [sym_comment] = ACTIONS(56), }, [2107] = { @@ -59009,49 +59258,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(2778), - [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), + [anon_sym_RBRACE] = ACTIONS(5773), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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__concat] = ACTIONS(3347), + [anon_sym_PIPE] = ACTIONS(3349), + [anon_sym_RPAREN] = ACTIONS(3349), + [anon_sym_SEMI_SEMI] = ACTIONS(3349), + [anon_sym_PIPE_AMP] = ACTIONS(3349), + [anon_sym_AMP_AMP] = ACTIONS(3349), + [anon_sym_PIPE_PIPE] = ACTIONS(3349), + [sym__special_characters] = ACTIONS(3349), + [anon_sym_DQUOTE] = ACTIONS(3349), + [anon_sym_DOLLAR] = ACTIONS(3349), + [sym_raw_string] = ACTIONS(3349), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3349), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3349), + [anon_sym_BQUOTE] = ACTIONS(3349), + [anon_sym_LT_LPAREN] = ACTIONS(3349), + [anon_sym_GT_LPAREN] = ACTIONS(3349), [sym_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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3349), + [sym_word] = ACTIONS(3349), + [anon_sym_SEMI] = ACTIONS(3349), + [anon_sym_LF] = ACTIONS(3349), + [anon_sym_AMP] = ACTIONS(3349), }, [2109] = { [sym_concatenation] = STATE(2781), @@ -59061,46 +59310,46 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(2780), [sym_command_substitution] = STATE(2780), [sym_process_substitution] = STATE(2780), - [anon_sym_RBRACE] = ACTIONS(5707), - [sym__special_characters] = ACTIONS(5711), - [anon_sym_DQUOTE] = ACTIONS(1924), - [anon_sym_DOLLAR] = ACTIONS(1926), - [sym_raw_string] = ACTIONS(5713), - [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), + [anon_sym_RBRACE] = ACTIONS(5771), + [sym__special_characters] = ACTIONS(5775), + [anon_sym_DQUOTE] = ACTIONS(1952), + [anon_sym_DOLLAR] = ACTIONS(1954), + [sym_raw_string] = ACTIONS(5777), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), + [anon_sym_BQUOTE] = ACTIONS(1962), + [anon_sym_LT_LPAREN] = ACTIONS(1964), + [anon_sym_GT_LPAREN] = ACTIONS(1964), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5715), + [sym_word] = ACTIONS(5779), }, [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__concat] = ACTIONS(3392), + [anon_sym_PIPE] = ACTIONS(3394), + [anon_sym_RPAREN] = ACTIONS(3394), + [anon_sym_SEMI_SEMI] = ACTIONS(3394), + [anon_sym_PIPE_AMP] = ACTIONS(3394), + [anon_sym_AMP_AMP] = ACTIONS(3394), + [anon_sym_PIPE_PIPE] = ACTIONS(3394), + [sym__special_characters] = ACTIONS(3394), + [anon_sym_DQUOTE] = ACTIONS(3394), + [anon_sym_DOLLAR] = ACTIONS(3394), + [sym_raw_string] = ACTIONS(3394), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3394), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3394), + [anon_sym_BQUOTE] = ACTIONS(3394), + [anon_sym_LT_LPAREN] = ACTIONS(3394), + [anon_sym_GT_LPAREN] = ACTIONS(3394), [sym_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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3394), + [sym_word] = ACTIONS(3394), + [anon_sym_SEMI] = ACTIONS(3394), + [anon_sym_LF] = ACTIONS(3394), + [anon_sym_AMP] = ACTIONS(3394), }, [2111] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5717), + [sym_regex_without_right_brace] = ACTIONS(5781), }, [2112] = { [sym_concatenation] = STATE(451), @@ -59111,53 +59360,53 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(5719), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(5783), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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__concat] = ACTIONS(3400), + [anon_sym_PIPE] = ACTIONS(3402), + [anon_sym_RPAREN] = ACTIONS(3402), + [anon_sym_SEMI_SEMI] = ACTIONS(3402), + [anon_sym_PIPE_AMP] = ACTIONS(3402), + [anon_sym_AMP_AMP] = ACTIONS(3402), + [anon_sym_PIPE_PIPE] = ACTIONS(3402), + [sym__special_characters] = ACTIONS(3402), + [anon_sym_DQUOTE] = ACTIONS(3402), + [anon_sym_DOLLAR] = ACTIONS(3402), + [sym_raw_string] = ACTIONS(3402), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3402), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3402), + [anon_sym_BQUOTE] = ACTIONS(3402), + [anon_sym_LT_LPAREN] = ACTIONS(3402), + [anon_sym_GT_LPAREN] = ACTIONS(3402), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3352), - [sym_word] = ACTIONS(3352), - [anon_sym_SEMI] = ACTIONS(3352), - [anon_sym_LF] = ACTIONS(3352), - [anon_sym_AMP] = ACTIONS(3352), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3402), + [sym_word] = ACTIONS(3402), + [anon_sym_SEMI] = ACTIONS(3402), + [anon_sym_LF] = ACTIONS(3402), + [anon_sym_AMP] = ACTIONS(3402), }, [2114] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5721), + [sym_regex_without_right_brace] = ACTIONS(5785), }, [2115] = { [sym_concatenation] = STATE(451), @@ -59168,29 +59417,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(5723), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(5787), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2116] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5725), + [sym_regex_without_right_brace] = ACTIONS(5789), }, [2117] = { [sym_concatenation] = STATE(451), @@ -59201,25 +59450,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [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), + [anon_sym_RBRACE] = ACTIONS(5771), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2118] = { [sym_concatenation] = STATE(451), @@ -59230,49 +59479,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(2788), - [anon_sym_RBRACE] = ACTIONS(5727), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(5791), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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__concat] = ACTIONS(3412), + [anon_sym_PIPE] = ACTIONS(3414), + [anon_sym_RPAREN] = ACTIONS(3414), + [anon_sym_SEMI_SEMI] = ACTIONS(3414), + [anon_sym_PIPE_AMP] = ACTIONS(3414), + [anon_sym_AMP_AMP] = ACTIONS(3414), + [anon_sym_PIPE_PIPE] = ACTIONS(3414), + [sym__special_characters] = ACTIONS(3414), + [anon_sym_DQUOTE] = ACTIONS(3414), + [anon_sym_DOLLAR] = ACTIONS(3414), + [sym_raw_string] = ACTIONS(3414), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3414), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3414), + [anon_sym_BQUOTE] = ACTIONS(3414), + [anon_sym_LT_LPAREN] = ACTIONS(3414), + [anon_sym_GT_LPAREN] = ACTIONS(3414), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3364), - [sym_word] = ACTIONS(3364), - [anon_sym_SEMI] = ACTIONS(3364), - [anon_sym_LF] = ACTIONS(3364), - [anon_sym_AMP] = ACTIONS(3364), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3414), + [sym_word] = ACTIONS(3414), + [anon_sym_SEMI] = ACTIONS(3414), + [anon_sym_LF] = ACTIONS(3414), + [anon_sym_AMP] = ACTIONS(3414), }, [2120] = { [sym_concatenation] = STATE(451), @@ -59283,130 +59532,133 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(2790), - [anon_sym_RBRACE] = ACTIONS(5729), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(5793), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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_file_descriptor] = ACTIONS(4790), + [sym__concat] = ACTIONS(4790), + [anon_sym_PIPE] = ACTIONS(4792), + [anon_sym_RPAREN] = ACTIONS(4792), + [anon_sym_SEMI_SEMI] = ACTIONS(4792), + [anon_sym_PIPE_AMP] = ACTIONS(4792), + [anon_sym_AMP_AMP] = ACTIONS(4792), + [anon_sym_PIPE_PIPE] = ACTIONS(4792), + [anon_sym_EQ_TILDE] = ACTIONS(4792), + [anon_sym_EQ_EQ] = ACTIONS(4792), + [anon_sym_LT] = ACTIONS(4792), + [anon_sym_GT] = ACTIONS(4792), + [anon_sym_GT_GT] = ACTIONS(4792), + [anon_sym_AMP_GT] = ACTIONS(4792), + [anon_sym_AMP_GT_GT] = ACTIONS(4792), + [anon_sym_LT_AMP] = ACTIONS(4792), + [anon_sym_GT_AMP] = ACTIONS(4792), + [anon_sym_LT_LT] = ACTIONS(4792), + [anon_sym_LT_LT_DASH] = ACTIONS(4792), + [anon_sym_LT_LT_LT] = ACTIONS(4792), + [sym__special_characters] = ACTIONS(4792), + [anon_sym_DQUOTE] = ACTIONS(4792), + [anon_sym_DOLLAR] = ACTIONS(4792), + [sym_raw_string] = ACTIONS(4792), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4792), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4792), + [anon_sym_BQUOTE] = ACTIONS(4792), + [anon_sym_LT_LPAREN] = ACTIONS(4792), + [anon_sym_GT_LPAREN] = ACTIONS(4792), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4730), - [anon_sym_SEMI] = ACTIONS(4730), - [anon_sym_LF] = ACTIONS(4730), - [anon_sym_AMP] = ACTIONS(4730), + [sym_word] = ACTIONS(4792), + [anon_sym_SEMI] = ACTIONS(4792), + [anon_sym_LF] = ACTIONS(4792), + [anon_sym_AMP] = ACTIONS(4792), }, [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_file_descriptor] = ACTIONS(4796), + [sym__concat] = ACTIONS(4796), + [anon_sym_PIPE] = ACTIONS(4798), + [anon_sym_RPAREN] = ACTIONS(4798), + [anon_sym_SEMI_SEMI] = ACTIONS(4798), + [anon_sym_PIPE_AMP] = ACTIONS(4798), + [anon_sym_AMP_AMP] = ACTIONS(4798), + [anon_sym_PIPE_PIPE] = ACTIONS(4798), + [anon_sym_EQ_TILDE] = ACTIONS(4798), + [anon_sym_EQ_EQ] = ACTIONS(4798), + [anon_sym_LT] = ACTIONS(4798), + [anon_sym_GT] = ACTIONS(4798), + [anon_sym_GT_GT] = ACTIONS(4798), + [anon_sym_AMP_GT] = ACTIONS(4798), + [anon_sym_AMP_GT_GT] = ACTIONS(4798), + [anon_sym_LT_AMP] = ACTIONS(4798), + [anon_sym_GT_AMP] = ACTIONS(4798), + [anon_sym_LT_LT] = ACTIONS(4798), + [anon_sym_LT_LT_DASH] = ACTIONS(4798), + [anon_sym_LT_LT_LT] = ACTIONS(4798), + [sym__special_characters] = ACTIONS(4798), + [anon_sym_DQUOTE] = ACTIONS(4798), + [anon_sym_DOLLAR] = ACTIONS(4798), + [sym_raw_string] = ACTIONS(4798), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4798), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4798), + [anon_sym_BQUOTE] = ACTIONS(4798), + [anon_sym_LT_LPAREN] = ACTIONS(4798), + [anon_sym_GT_LPAREN] = ACTIONS(4798), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4736), - [anon_sym_SEMI] = ACTIONS(4736), - [anon_sym_LF] = ACTIONS(4736), - [anon_sym_AMP] = ACTIONS(4736), + [sym_word] = ACTIONS(4798), + [anon_sym_SEMI] = ACTIONS(4798), + [anon_sym_LF] = ACTIONS(4798), + [anon_sym_AMP] = ACTIONS(4798), }, [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_file_descriptor] = ACTIONS(4859), + [sym__concat] = ACTIONS(4859), + [anon_sym_PIPE] = ACTIONS(4861), + [anon_sym_RPAREN] = ACTIONS(4861), + [anon_sym_SEMI_SEMI] = ACTIONS(4861), + [anon_sym_PIPE_AMP] = ACTIONS(4861), + [anon_sym_AMP_AMP] = ACTIONS(4861), + [anon_sym_PIPE_PIPE] = ACTIONS(4861), + [anon_sym_EQ_TILDE] = ACTIONS(4861), + [anon_sym_EQ_EQ] = ACTIONS(4861), + [anon_sym_LT] = ACTIONS(4861), + [anon_sym_GT] = ACTIONS(4861), + [anon_sym_GT_GT] = ACTIONS(4861), + [anon_sym_AMP_GT] = ACTIONS(4861), + [anon_sym_AMP_GT_GT] = ACTIONS(4861), + [anon_sym_LT_AMP] = ACTIONS(4861), + [anon_sym_GT_AMP] = ACTIONS(4861), + [anon_sym_LT_LT] = ACTIONS(4861), + [anon_sym_LT_LT_DASH] = ACTIONS(4861), + [anon_sym_LT_LT_LT] = ACTIONS(4861), + [sym__special_characters] = ACTIONS(4861), + [anon_sym_DQUOTE] = ACTIONS(4861), + [anon_sym_DOLLAR] = ACTIONS(4861), + [sym_raw_string] = ACTIONS(4861), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4861), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4861), + [anon_sym_BQUOTE] = ACTIONS(4861), + [anon_sym_LT_LPAREN] = ACTIONS(4861), + [anon_sym_GT_LPAREN] = ACTIONS(4861), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4799), - [anon_sym_SEMI] = ACTIONS(4799), - [anon_sym_LF] = ACTIONS(4799), - [anon_sym_AMP] = ACTIONS(4799), + [sym_word] = ACTIONS(4861), + [anon_sym_SEMI] = ACTIONS(4861), + [anon_sym_LF] = ACTIONS(4861), + [anon_sym_AMP] = ACTIONS(4861), }, [2124] = { [sym_concatenation] = STATE(451), @@ -59417,40 +59669,40 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(5731), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(5795), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2125] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(5733), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(5797), [sym_comment] = ACTIONS(56), }, [2126] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(5735), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(5799), [sym_comment] = ACTIONS(56), }, [2127] = { - [anon_sym_RBRACE] = ACTIONS(5735), + [anon_sym_RBRACE] = ACTIONS(5799), [sym_comment] = ACTIONS(56), }, [2128] = { @@ -59462,60 +59714,61 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(2795), - [anon_sym_RBRACE] = ACTIONS(5737), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(5801), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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_file_descriptor] = ACTIONS(4871), + [sym__concat] = ACTIONS(4871), + [anon_sym_PIPE] = ACTIONS(4873), + [anon_sym_RPAREN] = ACTIONS(4873), + [anon_sym_SEMI_SEMI] = ACTIONS(4873), + [anon_sym_PIPE_AMP] = ACTIONS(4873), + [anon_sym_AMP_AMP] = ACTIONS(4873), + [anon_sym_PIPE_PIPE] = ACTIONS(4873), + [anon_sym_EQ_TILDE] = ACTIONS(4873), + [anon_sym_EQ_EQ] = ACTIONS(4873), + [anon_sym_LT] = ACTIONS(4873), + [anon_sym_GT] = ACTIONS(4873), + [anon_sym_GT_GT] = ACTIONS(4873), + [anon_sym_AMP_GT] = ACTIONS(4873), + [anon_sym_AMP_GT_GT] = ACTIONS(4873), + [anon_sym_LT_AMP] = ACTIONS(4873), + [anon_sym_GT_AMP] = ACTIONS(4873), + [anon_sym_LT_LT] = ACTIONS(4873), + [anon_sym_LT_LT_DASH] = ACTIONS(4873), + [anon_sym_LT_LT_LT] = ACTIONS(4873), + [sym__special_characters] = ACTIONS(4873), + [anon_sym_DQUOTE] = ACTIONS(4873), + [anon_sym_DOLLAR] = ACTIONS(4873), + [sym_raw_string] = ACTIONS(4873), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4873), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4873), + [anon_sym_BQUOTE] = ACTIONS(4873), + [anon_sym_LT_LPAREN] = ACTIONS(4873), + [anon_sym_GT_LPAREN] = ACTIONS(4873), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4811), - [anon_sym_SEMI] = ACTIONS(4811), - [anon_sym_LF] = ACTIONS(4811), - [anon_sym_AMP] = ACTIONS(4811), + [sym_word] = ACTIONS(4873), + [anon_sym_SEMI] = ACTIONS(4873), + [anon_sym_LF] = ACTIONS(4873), + [anon_sym_AMP] = ACTIONS(4873), }, [2130] = { [sym_concatenation] = STATE(451), @@ -59526,60 +59779,61 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(2797), - [anon_sym_RBRACE] = ACTIONS(5739), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(5803), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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_file_descriptor] = ACTIONS(4877), + [sym__concat] = ACTIONS(4877), + [anon_sym_PIPE] = ACTIONS(4879), + [anon_sym_RPAREN] = ACTIONS(4879), + [anon_sym_SEMI_SEMI] = ACTIONS(4879), + [anon_sym_PIPE_AMP] = ACTIONS(4879), + [anon_sym_AMP_AMP] = ACTIONS(4879), + [anon_sym_PIPE_PIPE] = ACTIONS(4879), + [anon_sym_EQ_TILDE] = ACTIONS(4879), + [anon_sym_EQ_EQ] = ACTIONS(4879), + [anon_sym_LT] = ACTIONS(4879), + [anon_sym_GT] = ACTIONS(4879), + [anon_sym_GT_GT] = ACTIONS(4879), + [anon_sym_AMP_GT] = ACTIONS(4879), + [anon_sym_AMP_GT_GT] = ACTIONS(4879), + [anon_sym_LT_AMP] = ACTIONS(4879), + [anon_sym_GT_AMP] = ACTIONS(4879), + [anon_sym_LT_LT] = ACTIONS(4879), + [anon_sym_LT_LT_DASH] = ACTIONS(4879), + [anon_sym_LT_LT_LT] = ACTIONS(4879), + [sym__special_characters] = ACTIONS(4879), + [anon_sym_DQUOTE] = ACTIONS(4879), + [anon_sym_DOLLAR] = ACTIONS(4879), + [sym_raw_string] = ACTIONS(4879), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4879), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4879), + [anon_sym_BQUOTE] = ACTIONS(4879), + [anon_sym_LT_LPAREN] = ACTIONS(4879), + [anon_sym_GT_LPAREN] = ACTIONS(4879), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4817), - [anon_sym_SEMI] = ACTIONS(4817), - [anon_sym_LF] = ACTIONS(4817), - [anon_sym_AMP] = ACTIONS(4817), + [sym_word] = ACTIONS(4879), + [anon_sym_SEMI] = ACTIONS(4879), + [anon_sym_LF] = ACTIONS(4879), + [anon_sym_AMP] = ACTIONS(4879), }, [2132] = { [sym_concatenation] = STATE(451), @@ -59590,60 +59844,61 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(2799), - [anon_sym_RBRACE] = ACTIONS(5741), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(5805), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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_file_descriptor] = ACTIONS(4883), + [sym__concat] = ACTIONS(4883), + [anon_sym_PIPE] = ACTIONS(4885), + [anon_sym_RPAREN] = ACTIONS(4885), + [anon_sym_SEMI_SEMI] = ACTIONS(4885), + [anon_sym_PIPE_AMP] = ACTIONS(4885), + [anon_sym_AMP_AMP] = ACTIONS(4885), + [anon_sym_PIPE_PIPE] = ACTIONS(4885), + [anon_sym_EQ_TILDE] = ACTIONS(4885), + [anon_sym_EQ_EQ] = ACTIONS(4885), + [anon_sym_LT] = ACTIONS(4885), + [anon_sym_GT] = ACTIONS(4885), + [anon_sym_GT_GT] = ACTIONS(4885), + [anon_sym_AMP_GT] = ACTIONS(4885), + [anon_sym_AMP_GT_GT] = ACTIONS(4885), + [anon_sym_LT_AMP] = ACTIONS(4885), + [anon_sym_GT_AMP] = ACTIONS(4885), + [anon_sym_LT_LT] = ACTIONS(4885), + [anon_sym_LT_LT_DASH] = ACTIONS(4885), + [anon_sym_LT_LT_LT] = ACTIONS(4885), + [sym__special_characters] = ACTIONS(4885), + [anon_sym_DQUOTE] = ACTIONS(4885), + [anon_sym_DOLLAR] = ACTIONS(4885), + [sym_raw_string] = ACTIONS(4885), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4885), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4885), + [anon_sym_BQUOTE] = ACTIONS(4885), + [anon_sym_LT_LPAREN] = ACTIONS(4885), + [anon_sym_GT_LPAREN] = ACTIONS(4885), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4823), - [anon_sym_SEMI] = ACTIONS(4823), - [anon_sym_LF] = ACTIONS(4823), - [anon_sym_AMP] = ACTIONS(4823), + [sym_word] = ACTIONS(4885), + [anon_sym_SEMI] = ACTIONS(4885), + [anon_sym_LF] = ACTIONS(4885), + [anon_sym_AMP] = ACTIONS(4885), }, [2134] = { [sym_concatenation] = STATE(451), @@ -59654,60 +59909,61 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(5743), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(5807), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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_file_descriptor] = ACTIONS(4889), + [sym__concat] = ACTIONS(4889), + [anon_sym_PIPE] = ACTIONS(4891), + [anon_sym_RPAREN] = ACTIONS(4891), + [anon_sym_SEMI_SEMI] = ACTIONS(4891), + [anon_sym_PIPE_AMP] = ACTIONS(4891), + [anon_sym_AMP_AMP] = ACTIONS(4891), + [anon_sym_PIPE_PIPE] = ACTIONS(4891), + [anon_sym_EQ_TILDE] = ACTIONS(4891), + [anon_sym_EQ_EQ] = ACTIONS(4891), + [anon_sym_LT] = ACTIONS(4891), + [anon_sym_GT] = ACTIONS(4891), + [anon_sym_GT_GT] = ACTIONS(4891), + [anon_sym_AMP_GT] = ACTIONS(4891), + [anon_sym_AMP_GT_GT] = ACTIONS(4891), + [anon_sym_LT_AMP] = ACTIONS(4891), + [anon_sym_GT_AMP] = ACTIONS(4891), + [anon_sym_LT_LT] = ACTIONS(4891), + [anon_sym_LT_LT_DASH] = ACTIONS(4891), + [anon_sym_LT_LT_LT] = ACTIONS(4891), + [sym__special_characters] = ACTIONS(4891), + [anon_sym_DQUOTE] = ACTIONS(4891), + [anon_sym_DOLLAR] = ACTIONS(4891), + [sym_raw_string] = ACTIONS(4891), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4891), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4891), + [anon_sym_BQUOTE] = ACTIONS(4891), + [anon_sym_LT_LPAREN] = ACTIONS(4891), + [anon_sym_GT_LPAREN] = ACTIONS(4891), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4829), - [anon_sym_SEMI] = ACTIONS(4829), - [anon_sym_LF] = ACTIONS(4829), - [anon_sym_AMP] = ACTIONS(4829), + [sym_word] = ACTIONS(4891), + [anon_sym_SEMI] = ACTIONS(4891), + [anon_sym_LF] = ACTIONS(4891), + [anon_sym_AMP] = ACTIONS(4891), }, [2136] = { [sym_concatenation] = STATE(451), @@ -59718,98 +59974,98 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(5745), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(5809), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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_file_descriptor] = ACTIONS(1886), + [sym__concat] = ACTIONS(1886), + [anon_sym_PIPE] = ACTIONS(1888), + [anon_sym_RPAREN] = ACTIONS(1888), + [anon_sym_SEMI_SEMI] = ACTIONS(1888), + [anon_sym_PIPE_AMP] = ACTIONS(1888), + [anon_sym_AMP_AMP] = ACTIONS(1888), + [anon_sym_PIPE_PIPE] = ACTIONS(1888), + [anon_sym_LT] = ACTIONS(1888), + [anon_sym_GT] = ACTIONS(1888), + [anon_sym_GT_GT] = ACTIONS(1888), + [anon_sym_AMP_GT] = ACTIONS(1888), + [anon_sym_AMP_GT_GT] = ACTIONS(1888), + [anon_sym_LT_AMP] = ACTIONS(1888), + [anon_sym_GT_AMP] = ACTIONS(1888), + [anon_sym_LT_LT] = ACTIONS(1888), + [anon_sym_LT_LT_DASH] = ACTIONS(1888), + [anon_sym_LT_LT_LT] = ACTIONS(1888), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1860), - [anon_sym_LF] = ACTIONS(1860), - [anon_sym_AMP] = ACTIONS(1860), + [anon_sym_SEMI] = ACTIONS(1888), + [anon_sym_LF] = ACTIONS(1888), + [anon_sym_AMP] = ACTIONS(1888), }, [2138] = { [aux_sym_concatenation_repeat1] = STATE(2138), - [sym_file_descriptor] = ACTIONS(1858), - [sym__concat] = ACTIONS(5747), - [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_file_descriptor] = ACTIONS(1886), + [sym__concat] = ACTIONS(5811), + [anon_sym_PIPE] = ACTIONS(1888), + [anon_sym_RPAREN] = ACTIONS(1888), + [anon_sym_SEMI_SEMI] = ACTIONS(1888), + [anon_sym_PIPE_AMP] = ACTIONS(1888), + [anon_sym_AMP_AMP] = ACTIONS(1888), + [anon_sym_PIPE_PIPE] = ACTIONS(1888), + [anon_sym_LT] = ACTIONS(1888), + [anon_sym_GT] = ACTIONS(1888), + [anon_sym_GT_GT] = ACTIONS(1888), + [anon_sym_AMP_GT] = ACTIONS(1888), + [anon_sym_AMP_GT_GT] = ACTIONS(1888), + [anon_sym_LT_AMP] = ACTIONS(1888), + [anon_sym_GT_AMP] = ACTIONS(1888), + [anon_sym_LT_LT] = ACTIONS(1888), + [anon_sym_LT_LT_DASH] = ACTIONS(1888), + [anon_sym_LT_LT_LT] = ACTIONS(1888), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1860), - [anon_sym_LF] = ACTIONS(1860), - [anon_sym_AMP] = ACTIONS(1860), + [anon_sym_SEMI] = ACTIONS(1888), + [anon_sym_LF] = ACTIONS(1888), + [anon_sym_AMP] = ACTIONS(1888), }, [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_file_descriptor] = ACTIONS(1923), + [sym__concat] = ACTIONS(1923), + [anon_sym_PIPE] = ACTIONS(1925), + [anon_sym_RPAREN] = ACTIONS(1925), + [anon_sym_SEMI_SEMI] = ACTIONS(1925), + [anon_sym_PIPE_AMP] = ACTIONS(1925), + [anon_sym_AMP_AMP] = ACTIONS(1925), + [anon_sym_PIPE_PIPE] = ACTIONS(1925), + [anon_sym_LT] = ACTIONS(1925), + [anon_sym_GT] = ACTIONS(1925), + [anon_sym_GT_GT] = ACTIONS(1925), + [anon_sym_AMP_GT] = ACTIONS(1925), + [anon_sym_AMP_GT_GT] = ACTIONS(1925), + [anon_sym_LT_AMP] = ACTIONS(1925), + [anon_sym_GT_AMP] = ACTIONS(1925), + [anon_sym_LT_LT] = ACTIONS(1925), + [anon_sym_LT_LT_DASH] = ACTIONS(1925), + [anon_sym_LT_LT_LT] = ACTIONS(1925), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1897), - [anon_sym_LF] = ACTIONS(1897), - [anon_sym_AMP] = ACTIONS(1897), + [anon_sym_SEMI] = ACTIONS(1925), + [anon_sym_LF] = ACTIONS(1925), + [anon_sym_AMP] = ACTIONS(1925), }, [2140] = { [sym_concatenation] = STATE(2805), @@ -59819,46 +60075,46 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(2804), [sym_command_substitution] = STATE(2804), [sym_process_substitution] = STATE(2804), - [anon_sym_RBRACE] = ACTIONS(5750), - [sym__special_characters] = ACTIONS(5752), - [anon_sym_DQUOTE] = ACTIONS(1924), - [anon_sym_DOLLAR] = ACTIONS(1926), - [sym_raw_string] = ACTIONS(5754), - [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), + [anon_sym_RBRACE] = ACTIONS(5814), + [sym__special_characters] = ACTIONS(5816), + [anon_sym_DQUOTE] = ACTIONS(1952), + [anon_sym_DOLLAR] = ACTIONS(1954), + [sym_raw_string] = ACTIONS(5818), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), + [anon_sym_BQUOTE] = ACTIONS(1962), + [anon_sym_LT_LPAREN] = ACTIONS(1964), + [anon_sym_GT_LPAREN] = ACTIONS(1964), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5756), + [sym_word] = ACTIONS(5820), }, [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_file_descriptor] = ACTIONS(1968), + [sym__concat] = ACTIONS(1968), + [anon_sym_PIPE] = ACTIONS(1970), + [anon_sym_RPAREN] = ACTIONS(1970), + [anon_sym_SEMI_SEMI] = ACTIONS(1970), + [anon_sym_PIPE_AMP] = ACTIONS(1970), + [anon_sym_AMP_AMP] = ACTIONS(1970), + [anon_sym_PIPE_PIPE] = ACTIONS(1970), + [anon_sym_LT] = ACTIONS(1970), + [anon_sym_GT] = ACTIONS(1970), + [anon_sym_GT_GT] = ACTIONS(1970), + [anon_sym_AMP_GT] = ACTIONS(1970), + [anon_sym_AMP_GT_GT] = ACTIONS(1970), + [anon_sym_LT_AMP] = ACTIONS(1970), + [anon_sym_GT_AMP] = ACTIONS(1970), + [anon_sym_LT_LT] = ACTIONS(1970), + [anon_sym_LT_LT_DASH] = ACTIONS(1970), + [anon_sym_LT_LT_LT] = ACTIONS(1970), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1942), - [anon_sym_LF] = ACTIONS(1942), - [anon_sym_AMP] = ACTIONS(1942), + [anon_sym_SEMI] = ACTIONS(1970), + [anon_sym_LF] = ACTIONS(1970), + [anon_sym_AMP] = ACTIONS(1970), }, [2142] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5758), + [sym_regex_without_right_brace] = ACTIONS(5822), }, [2143] = { [sym_concatenation] = STATE(451), @@ -59869,29 +60125,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [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), + [anon_sym_RBRACE] = ACTIONS(5824), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2144] = { - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(5762), + [anon_sym_LBRACK] = ACTIONS(836), + [anon_sym_EQ] = ACTIONS(5826), [sym_comment] = ACTIONS(56), }, [2145] = { @@ -59903,26 +60159,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(2811), - [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), - [aux_sym_SLASH] = ACTIONS(5766), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(5828), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(5830), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2146] = { [sym_concatenation] = STATE(451), @@ -59933,26 +60189,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(2814), - [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), - [aux_sym_SLASH] = ACTIONS(5770), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(5832), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(5834), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2147] = { [sym_concatenation] = STATE(451), @@ -59963,54 +60219,54 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(2816), - [anon_sym_RBRACE] = ACTIONS(5750), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_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(5772), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(5814), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(5836), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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_file_descriptor] = ACTIONS(2022), + [sym__concat] = ACTIONS(2022), + [anon_sym_PIPE] = ACTIONS(2024), + [anon_sym_RPAREN] = ACTIONS(2024), + [anon_sym_SEMI_SEMI] = ACTIONS(2024), + [anon_sym_PIPE_AMP] = ACTIONS(2024), + [anon_sym_AMP_AMP] = ACTIONS(2024), + [anon_sym_PIPE_PIPE] = ACTIONS(2024), + [anon_sym_LT] = ACTIONS(2024), + [anon_sym_GT] = ACTIONS(2024), + [anon_sym_GT_GT] = ACTIONS(2024), + [anon_sym_AMP_GT] = ACTIONS(2024), + [anon_sym_AMP_GT_GT] = ACTIONS(2024), + [anon_sym_LT_AMP] = ACTIONS(2024), + [anon_sym_GT_AMP] = ACTIONS(2024), + [anon_sym_LT_LT] = ACTIONS(2024), + [anon_sym_LT_LT_DASH] = ACTIONS(2024), + [anon_sym_LT_LT_LT] = ACTIONS(2024), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1994), - [anon_sym_LF] = ACTIONS(1994), - [anon_sym_AMP] = ACTIONS(1994), + [anon_sym_SEMI] = ACTIONS(2024), + [anon_sym_LF] = ACTIONS(2024), + [anon_sym_AMP] = ACTIONS(2024), }, [2149] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5774), + [sym_regex_without_right_brace] = ACTIONS(5838), }, [2150] = { [sym_concatenation] = STATE(451), @@ -60021,53 +60277,53 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(5840), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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_file_descriptor] = ACTIONS(2030), + [sym__concat] = ACTIONS(2030), + [anon_sym_PIPE] = ACTIONS(2032), + [anon_sym_RPAREN] = ACTIONS(2032), + [anon_sym_SEMI_SEMI] = ACTIONS(2032), + [anon_sym_PIPE_AMP] = ACTIONS(2032), + [anon_sym_AMP_AMP] = ACTIONS(2032), + [anon_sym_PIPE_PIPE] = ACTIONS(2032), + [anon_sym_LT] = ACTIONS(2032), + [anon_sym_GT] = ACTIONS(2032), + [anon_sym_GT_GT] = ACTIONS(2032), + [anon_sym_AMP_GT] = ACTIONS(2032), + [anon_sym_AMP_GT_GT] = ACTIONS(2032), + [anon_sym_LT_AMP] = ACTIONS(2032), + [anon_sym_GT_AMP] = ACTIONS(2032), + [anon_sym_LT_LT] = ACTIONS(2032), + [anon_sym_LT_LT_DASH] = ACTIONS(2032), + [anon_sym_LT_LT_LT] = ACTIONS(2032), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2002), - [anon_sym_LF] = ACTIONS(2002), - [anon_sym_AMP] = ACTIONS(2002), + [anon_sym_SEMI] = ACTIONS(2032), + [anon_sym_LF] = ACTIONS(2032), + [anon_sym_AMP] = ACTIONS(2032), }, [2152] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5778), + [sym_regex_without_right_brace] = ACTIONS(5842), }, [2153] = { [sym_concatenation] = STATE(451), @@ -60078,121 +60334,124 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(5750), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(5814), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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_file_descriptor] = ACTIONS(2190), + [sym__concat] = ACTIONS(2190), + [anon_sym_PIPE] = ACTIONS(2192), + [anon_sym_RPAREN] = ACTIONS(2192), + [anon_sym_SEMI_SEMI] = ACTIONS(2192), + [anon_sym_PIPE_AMP] = ACTIONS(2192), + [anon_sym_AMP_AMP] = ACTIONS(2192), + [anon_sym_PIPE_PIPE] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(2192), + [anon_sym_GT] = ACTIONS(2192), + [anon_sym_GT_GT] = ACTIONS(2192), + [anon_sym_AMP_GT] = ACTIONS(2192), + [anon_sym_AMP_GT_GT] = ACTIONS(2192), + [anon_sym_LT_AMP] = ACTIONS(2192), + [anon_sym_GT_AMP] = ACTIONS(2192), + [anon_sym_LT_LT] = ACTIONS(2192), + [anon_sym_LT_LT_DASH] = ACTIONS(2192), + [anon_sym_LT_LT_LT] = ACTIONS(2192), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2158), - [anon_sym_LF] = ACTIONS(2158), - [anon_sym_AMP] = ACTIONS(2158), + [anon_sym_SEMI] = ACTIONS(2192), + [anon_sym_LF] = ACTIONS(2192), + [anon_sym_AMP] = ACTIONS(2192), }, [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_file_descriptor] = ACTIONS(2396), + [sym__concat] = ACTIONS(2396), + [anon_sym_PIPE] = ACTIONS(2398), + [anon_sym_RPAREN] = ACTIONS(2398), + [anon_sym_SEMI_SEMI] = ACTIONS(2398), + [anon_sym_PIPE_AMP] = ACTIONS(2398), + [anon_sym_AMP_AMP] = ACTIONS(2398), + [anon_sym_PIPE_PIPE] = ACTIONS(2398), + [anon_sym_LT] = ACTIONS(2398), + [anon_sym_GT] = ACTIONS(2398), + [anon_sym_GT_GT] = ACTIONS(2398), + [anon_sym_AMP_GT] = ACTIONS(2398), + [anon_sym_AMP_GT_GT] = ACTIONS(2398), + [anon_sym_LT_AMP] = ACTIONS(2398), + [anon_sym_GT_AMP] = ACTIONS(2398), + [anon_sym_LT_LT] = ACTIONS(2398), + [anon_sym_LT_LT_DASH] = ACTIONS(2398), + [anon_sym_LT_LT_LT] = ACTIONS(2398), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2360), - [anon_sym_LF] = ACTIONS(2360), - [anon_sym_AMP] = ACTIONS(2360), + [anon_sym_SEMI] = ACTIONS(2398), + [anon_sym_LF] = ACTIONS(2398), + [anon_sym_AMP] = ACTIONS(2398), }, [2156] = { - [sym__concat] = ACTIONS(4728), - [anon_sym_EQ_TILDE] = ACTIONS(5780), - [anon_sym_RBRACK] = ACTIONS(4728), - [sym__special_characters] = ACTIONS(4730), - [anon_sym_DQUOTE] = ACTIONS(4728), - [anon_sym_DOLLAR] = ACTIONS(5780), - [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__concat] = ACTIONS(4790), + [anon_sym_EQ_TILDE] = ACTIONS(5844), + [anon_sym_EQ_EQ] = ACTIONS(5844), + [anon_sym_RBRACK] = ACTIONS(4790), + [sym__special_characters] = ACTIONS(4792), + [anon_sym_DQUOTE] = ACTIONS(4790), + [anon_sym_DOLLAR] = ACTIONS(5844), + [sym_raw_string] = ACTIONS(4790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4790), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4790), + [anon_sym_BQUOTE] = ACTIONS(4790), + [anon_sym_LT_LPAREN] = ACTIONS(4790), + [anon_sym_GT_LPAREN] = ACTIONS(4790), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4730), + [sym_word] = ACTIONS(4792), }, [2157] = { - [sym__concat] = ACTIONS(4734), - [anon_sym_EQ_TILDE] = ACTIONS(5782), - [anon_sym_RBRACK] = ACTIONS(4734), - [sym__special_characters] = ACTIONS(4736), - [anon_sym_DQUOTE] = ACTIONS(4734), - [anon_sym_DOLLAR] = ACTIONS(5782), - [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__concat] = ACTIONS(4796), + [anon_sym_EQ_TILDE] = ACTIONS(5846), + [anon_sym_EQ_EQ] = ACTIONS(5846), + [anon_sym_RBRACK] = ACTIONS(4796), + [sym__special_characters] = ACTIONS(4798), + [anon_sym_DQUOTE] = ACTIONS(4796), + [anon_sym_DOLLAR] = ACTIONS(5846), + [sym_raw_string] = ACTIONS(4796), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4796), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4796), + [anon_sym_BQUOTE] = ACTIONS(4796), + [anon_sym_LT_LPAREN] = ACTIONS(4796), + [anon_sym_GT_LPAREN] = ACTIONS(4796), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4736), + [sym_word] = ACTIONS(4798), }, [2158] = { - [sym__concat] = ACTIONS(4797), - [anon_sym_EQ_TILDE] = ACTIONS(5784), - [anon_sym_RBRACK] = ACTIONS(4797), - [sym__special_characters] = ACTIONS(4799), - [anon_sym_DQUOTE] = ACTIONS(4797), - [anon_sym_DOLLAR] = ACTIONS(5784), - [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__concat] = ACTIONS(4859), + [anon_sym_EQ_TILDE] = ACTIONS(5848), + [anon_sym_EQ_EQ] = ACTIONS(5848), + [anon_sym_RBRACK] = ACTIONS(4859), + [sym__special_characters] = ACTIONS(4861), + [anon_sym_DQUOTE] = ACTIONS(4859), + [anon_sym_DOLLAR] = ACTIONS(5848), + [sym_raw_string] = ACTIONS(4859), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4859), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4859), + [anon_sym_BQUOTE] = ACTIONS(4859), + [anon_sym_LT_LPAREN] = ACTIONS(4859), + [anon_sym_GT_LPAREN] = ACTIONS(4859), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4799), + [sym_word] = ACTIONS(4861), }, [2159] = { [sym_concatenation] = STATE(451), @@ -60203,40 +60462,40 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [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), + [anon_sym_RBRACE] = ACTIONS(5850), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2160] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(5788), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(5852), [sym_comment] = ACTIONS(56), }, [2161] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(5790), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(5854), [sym_comment] = ACTIONS(56), }, [2162] = { - [anon_sym_RBRACE] = ACTIONS(5790), + [anon_sym_RBRACE] = ACTIONS(5854), [sym_comment] = ACTIONS(56), }, [2163] = { @@ -60248,41 +60507,42 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(2824), - [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), + [anon_sym_RBRACE] = ACTIONS(5856), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2164] = { - [sym__concat] = ACTIONS(4809), - [anon_sym_EQ_TILDE] = ACTIONS(5794), - [anon_sym_RBRACK] = ACTIONS(4809), - [sym__special_characters] = ACTIONS(4811), - [anon_sym_DQUOTE] = ACTIONS(4809), - [anon_sym_DOLLAR] = ACTIONS(5794), - [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__concat] = ACTIONS(4871), + [anon_sym_EQ_TILDE] = ACTIONS(5858), + [anon_sym_EQ_EQ] = ACTIONS(5858), + [anon_sym_RBRACK] = ACTIONS(4871), + [sym__special_characters] = ACTIONS(4873), + [anon_sym_DQUOTE] = ACTIONS(4871), + [anon_sym_DOLLAR] = ACTIONS(5858), + [sym_raw_string] = ACTIONS(4871), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4871), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4871), + [anon_sym_BQUOTE] = ACTIONS(4871), + [anon_sym_LT_LPAREN] = ACTIONS(4871), + [anon_sym_GT_LPAREN] = ACTIONS(4871), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4811), + [sym_word] = ACTIONS(4873), }, [2165] = { [sym_concatenation] = STATE(451), @@ -60293,41 +60553,42 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(2826), - [anon_sym_RBRACE] = ACTIONS(5796), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(5860), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2166] = { - [sym__concat] = ACTIONS(4815), - [anon_sym_EQ_TILDE] = ACTIONS(5798), - [anon_sym_RBRACK] = ACTIONS(4815), - [sym__special_characters] = ACTIONS(4817), - [anon_sym_DQUOTE] = ACTIONS(4815), - [anon_sym_DOLLAR] = ACTIONS(5798), - [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__concat] = ACTIONS(4877), + [anon_sym_EQ_TILDE] = ACTIONS(5862), + [anon_sym_EQ_EQ] = ACTIONS(5862), + [anon_sym_RBRACK] = ACTIONS(4877), + [sym__special_characters] = ACTIONS(4879), + [anon_sym_DQUOTE] = ACTIONS(4877), + [anon_sym_DOLLAR] = ACTIONS(5862), + [sym_raw_string] = ACTIONS(4877), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4877), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4877), + [anon_sym_BQUOTE] = ACTIONS(4877), + [anon_sym_LT_LPAREN] = ACTIONS(4877), + [anon_sym_GT_LPAREN] = ACTIONS(4877), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4817), + [sym_word] = ACTIONS(4879), }, [2167] = { [sym_concatenation] = STATE(451), @@ -60338,41 +60599,42 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(2828), - [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), + [anon_sym_RBRACE] = ACTIONS(5864), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2168] = { - [sym__concat] = ACTIONS(4821), - [anon_sym_EQ_TILDE] = ACTIONS(5802), - [anon_sym_RBRACK] = ACTIONS(4821), - [sym__special_characters] = ACTIONS(4823), - [anon_sym_DQUOTE] = ACTIONS(4821), - [anon_sym_DOLLAR] = ACTIONS(5802), - [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__concat] = ACTIONS(4883), + [anon_sym_EQ_TILDE] = ACTIONS(5866), + [anon_sym_EQ_EQ] = ACTIONS(5866), + [anon_sym_RBRACK] = ACTIONS(4883), + [sym__special_characters] = ACTIONS(4885), + [anon_sym_DQUOTE] = ACTIONS(4883), + [anon_sym_DOLLAR] = ACTIONS(5866), + [sym_raw_string] = ACTIONS(4883), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4883), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4883), + [anon_sym_BQUOTE] = ACTIONS(4883), + [anon_sym_LT_LPAREN] = ACTIONS(4883), + [anon_sym_GT_LPAREN] = ACTIONS(4883), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4823), + [sym_word] = ACTIONS(4885), }, [2169] = { [sym_concatenation] = STATE(451), @@ -60383,41 +60645,42 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [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), + [anon_sym_RBRACE] = ACTIONS(5868), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2170] = { - [sym__concat] = ACTIONS(4827), - [anon_sym_EQ_TILDE] = ACTIONS(5806), - [anon_sym_RBRACK] = ACTIONS(4827), - [sym__special_characters] = ACTIONS(4829), - [anon_sym_DQUOTE] = ACTIONS(4827), - [anon_sym_DOLLAR] = ACTIONS(5806), - [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__concat] = ACTIONS(4889), + [anon_sym_EQ_TILDE] = ACTIONS(5870), + [anon_sym_EQ_EQ] = ACTIONS(5870), + [anon_sym_RBRACK] = ACTIONS(4889), + [sym__special_characters] = ACTIONS(4891), + [anon_sym_DQUOTE] = ACTIONS(4889), + [anon_sym_DOLLAR] = ACTIONS(5870), + [sym_raw_string] = ACTIONS(4889), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4889), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4889), + [anon_sym_BQUOTE] = ACTIONS(4889), + [anon_sym_LT_LPAREN] = ACTIONS(4889), + [anon_sym_GT_LPAREN] = ACTIONS(4889), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4829), + [sym_word] = ACTIONS(4891), }, [2171] = { [sym_concatenation] = STATE(451), @@ -60428,73 +60691,76 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(5872), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2172] = { - [sym__concat] = ACTIONS(4728), - [anon_sym_EQ_TILDE] = ACTIONS(5780), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4728), - [sym__special_characters] = ACTIONS(4730), - [anon_sym_DQUOTE] = ACTIONS(4728), - [anon_sym_DOLLAR] = ACTIONS(5780), - [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__concat] = ACTIONS(4790), + [anon_sym_EQ_TILDE] = ACTIONS(5844), + [anon_sym_EQ_EQ] = ACTIONS(5844), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4790), + [sym__special_characters] = ACTIONS(4792), + [anon_sym_DQUOTE] = ACTIONS(4790), + [anon_sym_DOLLAR] = ACTIONS(5844), + [sym_raw_string] = ACTIONS(4790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4790), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4790), + [anon_sym_BQUOTE] = ACTIONS(4790), + [anon_sym_LT_LPAREN] = ACTIONS(4790), + [anon_sym_GT_LPAREN] = ACTIONS(4790), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4730), + [sym_word] = ACTIONS(4792), }, [2173] = { - [sym__concat] = ACTIONS(4734), - [anon_sym_EQ_TILDE] = ACTIONS(5782), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4734), - [sym__special_characters] = ACTIONS(4736), - [anon_sym_DQUOTE] = ACTIONS(4734), - [anon_sym_DOLLAR] = ACTIONS(5782), - [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__concat] = ACTIONS(4796), + [anon_sym_EQ_TILDE] = ACTIONS(5846), + [anon_sym_EQ_EQ] = ACTIONS(5846), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4796), + [sym__special_characters] = ACTIONS(4798), + [anon_sym_DQUOTE] = ACTIONS(4796), + [anon_sym_DOLLAR] = ACTIONS(5846), + [sym_raw_string] = ACTIONS(4796), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4796), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4796), + [anon_sym_BQUOTE] = ACTIONS(4796), + [anon_sym_LT_LPAREN] = ACTIONS(4796), + [anon_sym_GT_LPAREN] = ACTIONS(4796), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4736), + [sym_word] = ACTIONS(4798), }, [2174] = { - [sym__concat] = ACTIONS(4797), - [anon_sym_EQ_TILDE] = ACTIONS(5784), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4797), - [sym__special_characters] = ACTIONS(4799), - [anon_sym_DQUOTE] = ACTIONS(4797), - [anon_sym_DOLLAR] = ACTIONS(5784), - [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__concat] = ACTIONS(4859), + [anon_sym_EQ_TILDE] = ACTIONS(5848), + [anon_sym_EQ_EQ] = ACTIONS(5848), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4859), + [sym__special_characters] = ACTIONS(4861), + [anon_sym_DQUOTE] = ACTIONS(4859), + [anon_sym_DOLLAR] = ACTIONS(5848), + [sym_raw_string] = ACTIONS(4859), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4859), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4859), + [anon_sym_BQUOTE] = ACTIONS(4859), + [anon_sym_LT_LPAREN] = ACTIONS(4859), + [anon_sym_GT_LPAREN] = ACTIONS(4859), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4799), + [sym_word] = ACTIONS(4861), }, [2175] = { [sym_concatenation] = STATE(451), @@ -60505,40 +60771,40 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(5874), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2176] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(5812), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(5876), [sym_comment] = ACTIONS(56), }, [2177] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(5814), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(5878), [sym_comment] = ACTIONS(56), }, [2178] = { - [anon_sym_RBRACE] = ACTIONS(5814), + [anon_sym_RBRACE] = ACTIONS(5878), [sym_comment] = ACTIONS(56), }, [2179] = { @@ -60550,41 +60816,42 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(5880), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2180] = { - [sym__concat] = ACTIONS(4809), - [anon_sym_EQ_TILDE] = ACTIONS(5794), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4809), - [sym__special_characters] = ACTIONS(4811), - [anon_sym_DQUOTE] = ACTIONS(4809), - [anon_sym_DOLLAR] = ACTIONS(5794), - [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__concat] = ACTIONS(4871), + [anon_sym_EQ_TILDE] = ACTIONS(5858), + [anon_sym_EQ_EQ] = ACTIONS(5858), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4871), + [sym__special_characters] = ACTIONS(4873), + [anon_sym_DQUOTE] = ACTIONS(4871), + [anon_sym_DOLLAR] = ACTIONS(5858), + [sym_raw_string] = ACTIONS(4871), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4871), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4871), + [anon_sym_BQUOTE] = ACTIONS(4871), + [anon_sym_LT_LPAREN] = ACTIONS(4871), + [anon_sym_GT_LPAREN] = ACTIONS(4871), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4811), + [sym_word] = ACTIONS(4873), }, [2181] = { [sym_concatenation] = STATE(451), @@ -60595,41 +60862,42 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(5882), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2182] = { - [sym__concat] = ACTIONS(4815), - [anon_sym_EQ_TILDE] = ACTIONS(5798), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4815), - [sym__special_characters] = ACTIONS(4817), - [anon_sym_DQUOTE] = ACTIONS(4815), - [anon_sym_DOLLAR] = ACTIONS(5798), - [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__concat] = ACTIONS(4877), + [anon_sym_EQ_TILDE] = ACTIONS(5862), + [anon_sym_EQ_EQ] = ACTIONS(5862), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4877), + [sym__special_characters] = ACTIONS(4879), + [anon_sym_DQUOTE] = ACTIONS(4877), + [anon_sym_DOLLAR] = ACTIONS(5862), + [sym_raw_string] = ACTIONS(4877), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4877), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4877), + [anon_sym_BQUOTE] = ACTIONS(4877), + [anon_sym_LT_LPAREN] = ACTIONS(4877), + [anon_sym_GT_LPAREN] = ACTIONS(4877), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4817), + [sym_word] = ACTIONS(4879), }, [2183] = { [sym_concatenation] = STATE(451), @@ -60640,41 +60908,42 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(5884), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2184] = { - [sym__concat] = ACTIONS(4821), - [anon_sym_EQ_TILDE] = ACTIONS(5802), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4821), - [sym__special_characters] = ACTIONS(4823), - [anon_sym_DQUOTE] = ACTIONS(4821), - [anon_sym_DOLLAR] = ACTIONS(5802), - [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__concat] = ACTIONS(4883), + [anon_sym_EQ_TILDE] = ACTIONS(5866), + [anon_sym_EQ_EQ] = ACTIONS(5866), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4883), + [sym__special_characters] = ACTIONS(4885), + [anon_sym_DQUOTE] = ACTIONS(4883), + [anon_sym_DOLLAR] = ACTIONS(5866), + [sym_raw_string] = ACTIONS(4883), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4883), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4883), + [anon_sym_BQUOTE] = ACTIONS(4883), + [anon_sym_LT_LPAREN] = ACTIONS(4883), + [anon_sym_GT_LPAREN] = ACTIONS(4883), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4823), + [sym_word] = ACTIONS(4885), }, [2185] = { [sym_concatenation] = STATE(451), @@ -60685,41 +60954,42 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(5886), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2186] = { - [sym__concat] = ACTIONS(4827), - [anon_sym_EQ_TILDE] = ACTIONS(5806), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4827), - [sym__special_characters] = ACTIONS(4829), - [anon_sym_DQUOTE] = ACTIONS(4827), - [anon_sym_DOLLAR] = ACTIONS(5806), - [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__concat] = ACTIONS(4889), + [anon_sym_EQ_TILDE] = ACTIONS(5870), + [anon_sym_EQ_EQ] = ACTIONS(5870), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4889), + [sym__special_characters] = ACTIONS(4891), + [anon_sym_DQUOTE] = ACTIONS(4889), + [anon_sym_DOLLAR] = ACTIONS(5870), + [sym_raw_string] = ACTIONS(4889), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4889), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4889), + [anon_sym_BQUOTE] = ACTIONS(4889), + [anon_sym_LT_LPAREN] = ACTIONS(4889), + [anon_sym_GT_LPAREN] = ACTIONS(4889), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4829), + [sym_word] = ACTIONS(4891), }, [2187] = { [sym_concatenation] = STATE(451), @@ -60730,121 +61000,121 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(5824), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(5888), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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_variable_name] = ACTIONS(4169), + [anon_sym_PIPE] = ACTIONS(4171), + [anon_sym_RPAREN] = ACTIONS(4171), + [anon_sym_SEMI_SEMI] = ACTIONS(4171), + [anon_sym_PIPE_AMP] = ACTIONS(4171), + [anon_sym_AMP_AMP] = ACTIONS(4171), + [anon_sym_PIPE_PIPE] = ACTIONS(4171), + [sym__special_characters] = ACTIONS(4171), + [anon_sym_DQUOTE] = ACTIONS(4171), + [anon_sym_DOLLAR] = ACTIONS(4171), + [sym_raw_string] = ACTIONS(4171), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4171), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4171), + [anon_sym_BQUOTE] = ACTIONS(4171), + [anon_sym_LT_LPAREN] = ACTIONS(4171), + [anon_sym_GT_LPAREN] = ACTIONS(4171), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4113), - [sym_word] = ACTIONS(4113), - [anon_sym_SEMI] = ACTIONS(4113), - [anon_sym_LF] = ACTIONS(4113), - [anon_sym_AMP] = ACTIONS(4113), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4171), + [sym_word] = ACTIONS(4171), + [anon_sym_SEMI] = ACTIONS(4171), + [anon_sym_LF] = ACTIONS(4171), + [anon_sym_AMP] = ACTIONS(4171), }, [2189] = { - [sym__concat] = ACTIONS(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__concat] = ACTIONS(4790), + [sym_variable_name] = ACTIONS(4790), + [anon_sym_PIPE] = ACTIONS(4792), + [anon_sym_SEMI_SEMI] = ACTIONS(4792), + [anon_sym_PIPE_AMP] = ACTIONS(4792), + [anon_sym_AMP_AMP] = ACTIONS(4792), + [anon_sym_PIPE_PIPE] = ACTIONS(4792), + [sym__special_characters] = ACTIONS(4792), + [anon_sym_DQUOTE] = ACTIONS(4792), + [anon_sym_DOLLAR] = ACTIONS(4792), + [sym_raw_string] = ACTIONS(4792), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4792), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4792), + [anon_sym_BQUOTE] = ACTIONS(4792), + [anon_sym_LT_LPAREN] = ACTIONS(4792), + [anon_sym_GT_LPAREN] = ACTIONS(4792), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4730), - [sym_word] = ACTIONS(4730), - [anon_sym_SEMI] = ACTIONS(4730), - [anon_sym_LF] = ACTIONS(4730), - [anon_sym_AMP] = ACTIONS(4730), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4792), + [sym_word] = ACTIONS(4792), + [anon_sym_SEMI] = ACTIONS(4792), + [anon_sym_LF] = ACTIONS(4792), + [anon_sym_AMP] = ACTIONS(4792), }, [2190] = { - [sym__concat] = ACTIONS(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__concat] = ACTIONS(4796), + [sym_variable_name] = ACTIONS(4796), + [anon_sym_PIPE] = ACTIONS(4798), + [anon_sym_SEMI_SEMI] = ACTIONS(4798), + [anon_sym_PIPE_AMP] = ACTIONS(4798), + [anon_sym_AMP_AMP] = ACTIONS(4798), + [anon_sym_PIPE_PIPE] = ACTIONS(4798), + [sym__special_characters] = ACTIONS(4798), + [anon_sym_DQUOTE] = ACTIONS(4798), + [anon_sym_DOLLAR] = ACTIONS(4798), + [sym_raw_string] = ACTIONS(4798), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4798), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4798), + [anon_sym_BQUOTE] = ACTIONS(4798), + [anon_sym_LT_LPAREN] = ACTIONS(4798), + [anon_sym_GT_LPAREN] = ACTIONS(4798), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4736), - [sym_word] = ACTIONS(4736), - [anon_sym_SEMI] = ACTIONS(4736), - [anon_sym_LF] = ACTIONS(4736), - [anon_sym_AMP] = ACTIONS(4736), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4798), + [sym_word] = ACTIONS(4798), + [anon_sym_SEMI] = ACTIONS(4798), + [anon_sym_LF] = ACTIONS(4798), + [anon_sym_AMP] = ACTIONS(4798), }, [2191] = { - [sym__concat] = ACTIONS(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__concat] = ACTIONS(4859), + [sym_variable_name] = ACTIONS(4859), + [anon_sym_PIPE] = ACTIONS(4861), + [anon_sym_SEMI_SEMI] = ACTIONS(4861), + [anon_sym_PIPE_AMP] = ACTIONS(4861), + [anon_sym_AMP_AMP] = ACTIONS(4861), + [anon_sym_PIPE_PIPE] = ACTIONS(4861), + [sym__special_characters] = ACTIONS(4861), + [anon_sym_DQUOTE] = ACTIONS(4861), + [anon_sym_DOLLAR] = ACTIONS(4861), + [sym_raw_string] = ACTIONS(4861), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4861), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4861), + [anon_sym_BQUOTE] = ACTIONS(4861), + [anon_sym_LT_LPAREN] = ACTIONS(4861), + [anon_sym_GT_LPAREN] = ACTIONS(4861), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4799), - [sym_word] = ACTIONS(4799), - [anon_sym_SEMI] = ACTIONS(4799), - [anon_sym_LF] = ACTIONS(4799), - [anon_sym_AMP] = ACTIONS(4799), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4861), + [sym_word] = ACTIONS(4861), + [anon_sym_SEMI] = ACTIONS(4861), + [anon_sym_LF] = ACTIONS(4861), + [anon_sym_AMP] = ACTIONS(4861), }, [2192] = { [sym_concatenation] = STATE(451), @@ -60855,40 +61125,40 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(5890), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2193] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(5828), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(5892), [sym_comment] = ACTIONS(56), }, [2194] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(5830), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(5894), [sym_comment] = ACTIONS(56), }, [2195] = { - [anon_sym_RBRACE] = ACTIONS(5830), + [anon_sym_RBRACE] = ACTIONS(5894), [sym_comment] = ACTIONS(56), }, [2196] = { @@ -60900,49 +61170,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(5896), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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__concat] = ACTIONS(4871), + [sym_variable_name] = ACTIONS(4871), + [anon_sym_PIPE] = ACTIONS(4873), + [anon_sym_SEMI_SEMI] = ACTIONS(4873), + [anon_sym_PIPE_AMP] = ACTIONS(4873), + [anon_sym_AMP_AMP] = ACTIONS(4873), + [anon_sym_PIPE_PIPE] = ACTIONS(4873), + [sym__special_characters] = ACTIONS(4873), + [anon_sym_DQUOTE] = ACTIONS(4873), + [anon_sym_DOLLAR] = ACTIONS(4873), + [sym_raw_string] = ACTIONS(4873), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4873), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4873), + [anon_sym_BQUOTE] = ACTIONS(4873), + [anon_sym_LT_LPAREN] = ACTIONS(4873), + [anon_sym_GT_LPAREN] = ACTIONS(4873), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4811), - [sym_word] = ACTIONS(4811), - [anon_sym_SEMI] = ACTIONS(4811), - [anon_sym_LF] = ACTIONS(4811), - [anon_sym_AMP] = ACTIONS(4811), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4873), + [sym_word] = ACTIONS(4873), + [anon_sym_SEMI] = ACTIONS(4873), + [anon_sym_LF] = ACTIONS(4873), + [anon_sym_AMP] = ACTIONS(4873), }, [2198] = { [sym_concatenation] = STATE(451), @@ -60953,49 +61223,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(5898), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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__concat] = ACTIONS(4877), + [sym_variable_name] = ACTIONS(4877), + [anon_sym_PIPE] = ACTIONS(4879), + [anon_sym_SEMI_SEMI] = ACTIONS(4879), + [anon_sym_PIPE_AMP] = ACTIONS(4879), + [anon_sym_AMP_AMP] = ACTIONS(4879), + [anon_sym_PIPE_PIPE] = ACTIONS(4879), + [sym__special_characters] = ACTIONS(4879), + [anon_sym_DQUOTE] = ACTIONS(4879), + [anon_sym_DOLLAR] = ACTIONS(4879), + [sym_raw_string] = ACTIONS(4879), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4879), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4879), + [anon_sym_BQUOTE] = ACTIONS(4879), + [anon_sym_LT_LPAREN] = ACTIONS(4879), + [anon_sym_GT_LPAREN] = ACTIONS(4879), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4817), - [sym_word] = ACTIONS(4817), - [anon_sym_SEMI] = ACTIONS(4817), - [anon_sym_LF] = ACTIONS(4817), - [anon_sym_AMP] = ACTIONS(4817), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4879), + [sym_word] = ACTIONS(4879), + [anon_sym_SEMI] = ACTIONS(4879), + [anon_sym_LF] = ACTIONS(4879), + [anon_sym_AMP] = ACTIONS(4879), }, [2200] = { [sym_concatenation] = STATE(451), @@ -61006,49 +61276,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(5900), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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__concat] = ACTIONS(4883), + [sym_variable_name] = ACTIONS(4883), + [anon_sym_PIPE] = ACTIONS(4885), + [anon_sym_SEMI_SEMI] = ACTIONS(4885), + [anon_sym_PIPE_AMP] = ACTIONS(4885), + [anon_sym_AMP_AMP] = ACTIONS(4885), + [anon_sym_PIPE_PIPE] = ACTIONS(4885), + [sym__special_characters] = ACTIONS(4885), + [anon_sym_DQUOTE] = ACTIONS(4885), + [anon_sym_DOLLAR] = ACTIONS(4885), + [sym_raw_string] = ACTIONS(4885), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4885), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4885), + [anon_sym_BQUOTE] = ACTIONS(4885), + [anon_sym_LT_LPAREN] = ACTIONS(4885), + [anon_sym_GT_LPAREN] = ACTIONS(4885), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4823), - [sym_word] = ACTIONS(4823), - [anon_sym_SEMI] = ACTIONS(4823), - [anon_sym_LF] = ACTIONS(4823), - [anon_sym_AMP] = ACTIONS(4823), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4885), + [sym_word] = ACTIONS(4885), + [anon_sym_SEMI] = ACTIONS(4885), + [anon_sym_LF] = ACTIONS(4885), + [anon_sym_AMP] = ACTIONS(4885), }, [2202] = { [sym_concatenation] = STATE(451), @@ -61059,49 +61329,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(5902), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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__concat] = ACTIONS(4889), + [sym_variable_name] = ACTIONS(4889), + [anon_sym_PIPE] = ACTIONS(4891), + [anon_sym_SEMI_SEMI] = ACTIONS(4891), + [anon_sym_PIPE_AMP] = ACTIONS(4891), + [anon_sym_AMP_AMP] = ACTIONS(4891), + [anon_sym_PIPE_PIPE] = ACTIONS(4891), + [sym__special_characters] = ACTIONS(4891), + [anon_sym_DQUOTE] = ACTIONS(4891), + [anon_sym_DOLLAR] = ACTIONS(4891), + [sym_raw_string] = ACTIONS(4891), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4891), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4891), + [anon_sym_BQUOTE] = ACTIONS(4891), + [anon_sym_LT_LPAREN] = ACTIONS(4891), + [anon_sym_GT_LPAREN] = ACTIONS(4891), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4829), - [sym_word] = ACTIONS(4829), - [anon_sym_SEMI] = ACTIONS(4829), - [anon_sym_LF] = ACTIONS(4829), - [anon_sym_AMP] = ACTIONS(4829), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4891), + [sym_word] = ACTIONS(4891), + [anon_sym_SEMI] = ACTIONS(4891), + [anon_sym_LF] = ACTIONS(4891), + [anon_sym_AMP] = ACTIONS(4891), }, [2204] = { [sym_concatenation] = STATE(451), @@ -61112,94 +61382,94 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(5904), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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__concat] = ACTIONS(4790), + [anon_sym_PIPE] = ACTIONS(4792), + [anon_sym_SEMI_SEMI] = ACTIONS(4792), + [anon_sym_PIPE_AMP] = ACTIONS(4792), + [anon_sym_AMP_AMP] = ACTIONS(4792), + [anon_sym_PIPE_PIPE] = ACTIONS(4792), + [sym__special_characters] = ACTIONS(4792), + [anon_sym_DQUOTE] = ACTIONS(4792), + [anon_sym_DOLLAR] = ACTIONS(4792), + [sym_raw_string] = ACTIONS(4792), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4792), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4792), + [anon_sym_BQUOTE] = ACTIONS(4792), + [anon_sym_LT_LPAREN] = ACTIONS(4792), + [anon_sym_GT_LPAREN] = ACTIONS(4792), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4730), - [sym_word] = ACTIONS(4730), - [anon_sym_SEMI] = ACTIONS(4730), - [anon_sym_LF] = ACTIONS(4730), - [anon_sym_AMP] = ACTIONS(4730), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4792), + [sym_word] = ACTIONS(4792), + [anon_sym_SEMI] = ACTIONS(4792), + [anon_sym_LF] = ACTIONS(4792), + [anon_sym_AMP] = ACTIONS(4792), }, [2206] = { - [sym__concat] = ACTIONS(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__concat] = ACTIONS(4796), + [anon_sym_PIPE] = ACTIONS(4798), + [anon_sym_SEMI_SEMI] = ACTIONS(4798), + [anon_sym_PIPE_AMP] = ACTIONS(4798), + [anon_sym_AMP_AMP] = ACTIONS(4798), + [anon_sym_PIPE_PIPE] = ACTIONS(4798), + [sym__special_characters] = ACTIONS(4798), + [anon_sym_DQUOTE] = ACTIONS(4798), + [anon_sym_DOLLAR] = ACTIONS(4798), + [sym_raw_string] = ACTIONS(4798), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4798), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4798), + [anon_sym_BQUOTE] = ACTIONS(4798), + [anon_sym_LT_LPAREN] = ACTIONS(4798), + [anon_sym_GT_LPAREN] = ACTIONS(4798), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4736), - [sym_word] = ACTIONS(4736), - [anon_sym_SEMI] = ACTIONS(4736), - [anon_sym_LF] = ACTIONS(4736), - [anon_sym_AMP] = ACTIONS(4736), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4798), + [sym_word] = ACTIONS(4798), + [anon_sym_SEMI] = ACTIONS(4798), + [anon_sym_LF] = ACTIONS(4798), + [anon_sym_AMP] = ACTIONS(4798), }, [2207] = { - [sym__concat] = ACTIONS(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__concat] = ACTIONS(4859), + [anon_sym_PIPE] = ACTIONS(4861), + [anon_sym_SEMI_SEMI] = ACTIONS(4861), + [anon_sym_PIPE_AMP] = ACTIONS(4861), + [anon_sym_AMP_AMP] = ACTIONS(4861), + [anon_sym_PIPE_PIPE] = ACTIONS(4861), + [sym__special_characters] = ACTIONS(4861), + [anon_sym_DQUOTE] = ACTIONS(4861), + [anon_sym_DOLLAR] = ACTIONS(4861), + [sym_raw_string] = ACTIONS(4861), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4861), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4861), + [anon_sym_BQUOTE] = ACTIONS(4861), + [anon_sym_LT_LPAREN] = ACTIONS(4861), + [anon_sym_GT_LPAREN] = ACTIONS(4861), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4799), - [sym_word] = ACTIONS(4799), - [anon_sym_SEMI] = ACTIONS(4799), - [anon_sym_LF] = ACTIONS(4799), - [anon_sym_AMP] = ACTIONS(4799), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4861), + [sym_word] = ACTIONS(4861), + [anon_sym_SEMI] = ACTIONS(4861), + [anon_sym_LF] = ACTIONS(4861), + [anon_sym_AMP] = ACTIONS(4861), }, [2208] = { [sym_concatenation] = STATE(451), @@ -61210,40 +61480,40 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(5842), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(5906), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2209] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(5844), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(5908), [sym_comment] = ACTIONS(56), }, [2210] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(5846), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(5910), [sym_comment] = ACTIONS(56), }, [2211] = { - [anon_sym_RBRACE] = ACTIONS(5846), + [anon_sym_RBRACE] = ACTIONS(5910), [sym_comment] = ACTIONS(56), }, [2212] = { @@ -61255,48 +61525,48 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(5912), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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__concat] = ACTIONS(4871), + [anon_sym_PIPE] = ACTIONS(4873), + [anon_sym_SEMI_SEMI] = ACTIONS(4873), + [anon_sym_PIPE_AMP] = ACTIONS(4873), + [anon_sym_AMP_AMP] = ACTIONS(4873), + [anon_sym_PIPE_PIPE] = ACTIONS(4873), + [sym__special_characters] = ACTIONS(4873), + [anon_sym_DQUOTE] = ACTIONS(4873), + [anon_sym_DOLLAR] = ACTIONS(4873), + [sym_raw_string] = ACTIONS(4873), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4873), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4873), + [anon_sym_BQUOTE] = ACTIONS(4873), + [anon_sym_LT_LPAREN] = ACTIONS(4873), + [anon_sym_GT_LPAREN] = ACTIONS(4873), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4811), - [sym_word] = ACTIONS(4811), - [anon_sym_SEMI] = ACTIONS(4811), - [anon_sym_LF] = ACTIONS(4811), - [anon_sym_AMP] = ACTIONS(4811), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4873), + [sym_word] = ACTIONS(4873), + [anon_sym_SEMI] = ACTIONS(4873), + [anon_sym_LF] = ACTIONS(4873), + [anon_sym_AMP] = ACTIONS(4873), }, [2214] = { [sym_concatenation] = STATE(451), @@ -61307,48 +61577,48 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(5914), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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__concat] = ACTIONS(4877), + [anon_sym_PIPE] = ACTIONS(4879), + [anon_sym_SEMI_SEMI] = ACTIONS(4879), + [anon_sym_PIPE_AMP] = ACTIONS(4879), + [anon_sym_AMP_AMP] = ACTIONS(4879), + [anon_sym_PIPE_PIPE] = ACTIONS(4879), + [sym__special_characters] = ACTIONS(4879), + [anon_sym_DQUOTE] = ACTIONS(4879), + [anon_sym_DOLLAR] = ACTIONS(4879), + [sym_raw_string] = ACTIONS(4879), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4879), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4879), + [anon_sym_BQUOTE] = ACTIONS(4879), + [anon_sym_LT_LPAREN] = ACTIONS(4879), + [anon_sym_GT_LPAREN] = ACTIONS(4879), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4817), - [sym_word] = ACTIONS(4817), - [anon_sym_SEMI] = ACTIONS(4817), - [anon_sym_LF] = ACTIONS(4817), - [anon_sym_AMP] = ACTIONS(4817), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4879), + [sym_word] = ACTIONS(4879), + [anon_sym_SEMI] = ACTIONS(4879), + [anon_sym_LF] = ACTIONS(4879), + [anon_sym_AMP] = ACTIONS(4879), }, [2216] = { [sym_concatenation] = STATE(451), @@ -61359,48 +61629,48 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(5916), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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__concat] = ACTIONS(4883), + [anon_sym_PIPE] = ACTIONS(4885), + [anon_sym_SEMI_SEMI] = ACTIONS(4885), + [anon_sym_PIPE_AMP] = ACTIONS(4885), + [anon_sym_AMP_AMP] = ACTIONS(4885), + [anon_sym_PIPE_PIPE] = ACTIONS(4885), + [sym__special_characters] = ACTIONS(4885), + [anon_sym_DQUOTE] = ACTIONS(4885), + [anon_sym_DOLLAR] = ACTIONS(4885), + [sym_raw_string] = ACTIONS(4885), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4885), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4885), + [anon_sym_BQUOTE] = ACTIONS(4885), + [anon_sym_LT_LPAREN] = ACTIONS(4885), + [anon_sym_GT_LPAREN] = ACTIONS(4885), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4823), - [sym_word] = ACTIONS(4823), - [anon_sym_SEMI] = ACTIONS(4823), - [anon_sym_LF] = ACTIONS(4823), - [anon_sym_AMP] = ACTIONS(4823), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4885), + [sym_word] = ACTIONS(4885), + [anon_sym_SEMI] = ACTIONS(4885), + [anon_sym_LF] = ACTIONS(4885), + [anon_sym_AMP] = ACTIONS(4885), }, [2218] = { [sym_concatenation] = STATE(451), @@ -61411,48 +61681,48 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(5918), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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__concat] = ACTIONS(4889), + [anon_sym_PIPE] = ACTIONS(4891), + [anon_sym_SEMI_SEMI] = ACTIONS(4891), + [anon_sym_PIPE_AMP] = ACTIONS(4891), + [anon_sym_AMP_AMP] = ACTIONS(4891), + [anon_sym_PIPE_PIPE] = ACTIONS(4891), + [sym__special_characters] = ACTIONS(4891), + [anon_sym_DQUOTE] = ACTIONS(4891), + [anon_sym_DOLLAR] = ACTIONS(4891), + [sym_raw_string] = ACTIONS(4891), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4891), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4891), + [anon_sym_BQUOTE] = ACTIONS(4891), + [anon_sym_LT_LPAREN] = ACTIONS(4891), + [anon_sym_GT_LPAREN] = ACTIONS(4891), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4829), - [sym_word] = ACTIONS(4829), - [anon_sym_SEMI] = ACTIONS(4829), - [anon_sym_LF] = ACTIONS(4829), - [anon_sym_AMP] = ACTIONS(4829), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4891), + [sym_word] = ACTIONS(4891), + [anon_sym_SEMI] = ACTIONS(4891), + [anon_sym_LF] = ACTIONS(4891), + [anon_sym_AMP] = ACTIONS(4891), }, [2220] = { [sym_concatenation] = STATE(451), @@ -61463,94 +61733,94 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(5920), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2221] = { - [sym_file_descriptor] = ACTIONS(4728), - [sym__concat] = ACTIONS(4728), - [sym_variable_name] = ACTIONS(4728), - [anon_sym_LT] = ACTIONS(5780), - [anon_sym_GT] = ACTIONS(5780), - [anon_sym_GT_GT] = ACTIONS(4728), - [anon_sym_AMP_GT] = ACTIONS(5780), - [anon_sym_AMP_GT_GT] = ACTIONS(4728), - [anon_sym_LT_AMP] = ACTIONS(4728), - [anon_sym_GT_AMP] = ACTIONS(4728), - [sym__special_characters] = ACTIONS(5780), - [anon_sym_DQUOTE] = ACTIONS(4728), - [anon_sym_DOLLAR] = ACTIONS(5780), - [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_file_descriptor] = ACTIONS(4790), + [sym__concat] = ACTIONS(4790), + [sym_variable_name] = ACTIONS(4790), + [anon_sym_LT] = ACTIONS(5844), + [anon_sym_GT] = ACTIONS(5844), + [anon_sym_GT_GT] = ACTIONS(4790), + [anon_sym_AMP_GT] = ACTIONS(5844), + [anon_sym_AMP_GT_GT] = ACTIONS(4790), + [anon_sym_LT_AMP] = ACTIONS(4790), + [anon_sym_GT_AMP] = ACTIONS(4790), + [sym__special_characters] = ACTIONS(5844), + [anon_sym_DQUOTE] = ACTIONS(4790), + [anon_sym_DOLLAR] = ACTIONS(5844), + [sym_raw_string] = ACTIONS(4790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4790), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4790), + [anon_sym_BQUOTE] = ACTIONS(4790), + [anon_sym_LT_LPAREN] = ACTIONS(4790), + [anon_sym_GT_LPAREN] = ACTIONS(4790), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5780), + [sym_word] = ACTIONS(5844), }, [2222] = { - [sym_file_descriptor] = ACTIONS(4734), - [sym__concat] = ACTIONS(4734), - [sym_variable_name] = ACTIONS(4734), - [anon_sym_LT] = ACTIONS(5782), - [anon_sym_GT] = ACTIONS(5782), - [anon_sym_GT_GT] = ACTIONS(4734), - [anon_sym_AMP_GT] = ACTIONS(5782), - [anon_sym_AMP_GT_GT] = ACTIONS(4734), - [anon_sym_LT_AMP] = ACTIONS(4734), - [anon_sym_GT_AMP] = ACTIONS(4734), - [sym__special_characters] = ACTIONS(5782), - [anon_sym_DQUOTE] = ACTIONS(4734), - [anon_sym_DOLLAR] = ACTIONS(5782), - [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_file_descriptor] = ACTIONS(4796), + [sym__concat] = ACTIONS(4796), + [sym_variable_name] = ACTIONS(4796), + [anon_sym_LT] = ACTIONS(5846), + [anon_sym_GT] = ACTIONS(5846), + [anon_sym_GT_GT] = ACTIONS(4796), + [anon_sym_AMP_GT] = ACTIONS(5846), + [anon_sym_AMP_GT_GT] = ACTIONS(4796), + [anon_sym_LT_AMP] = ACTIONS(4796), + [anon_sym_GT_AMP] = ACTIONS(4796), + [sym__special_characters] = ACTIONS(5846), + [anon_sym_DQUOTE] = ACTIONS(4796), + [anon_sym_DOLLAR] = ACTIONS(5846), + [sym_raw_string] = ACTIONS(4796), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4796), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4796), + [anon_sym_BQUOTE] = ACTIONS(4796), + [anon_sym_LT_LPAREN] = ACTIONS(4796), + [anon_sym_GT_LPAREN] = ACTIONS(4796), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5782), + [sym_word] = ACTIONS(5846), }, [2223] = { - [sym_file_descriptor] = ACTIONS(4797), - [sym__concat] = ACTIONS(4797), - [sym_variable_name] = ACTIONS(4797), - [anon_sym_LT] = ACTIONS(5784), - [anon_sym_GT] = ACTIONS(5784), - [anon_sym_GT_GT] = ACTIONS(4797), - [anon_sym_AMP_GT] = ACTIONS(5784), - [anon_sym_AMP_GT_GT] = ACTIONS(4797), - [anon_sym_LT_AMP] = ACTIONS(4797), - [anon_sym_GT_AMP] = ACTIONS(4797), - [sym__special_characters] = ACTIONS(5784), - [anon_sym_DQUOTE] = ACTIONS(4797), - [anon_sym_DOLLAR] = ACTIONS(5784), - [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_file_descriptor] = ACTIONS(4859), + [sym__concat] = ACTIONS(4859), + [sym_variable_name] = ACTIONS(4859), + [anon_sym_LT] = ACTIONS(5848), + [anon_sym_GT] = ACTIONS(5848), + [anon_sym_GT_GT] = ACTIONS(4859), + [anon_sym_AMP_GT] = ACTIONS(5848), + [anon_sym_AMP_GT_GT] = ACTIONS(4859), + [anon_sym_LT_AMP] = ACTIONS(4859), + [anon_sym_GT_AMP] = ACTIONS(4859), + [sym__special_characters] = ACTIONS(5848), + [anon_sym_DQUOTE] = ACTIONS(4859), + [anon_sym_DOLLAR] = ACTIONS(5848), + [sym_raw_string] = ACTIONS(4859), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4859), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4859), + [anon_sym_BQUOTE] = ACTIONS(4859), + [anon_sym_LT_LPAREN] = ACTIONS(4859), + [anon_sym_GT_LPAREN] = ACTIONS(4859), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5784), + [sym_word] = ACTIONS(5848), }, [2224] = { [sym_concatenation] = STATE(451), @@ -61561,40 +61831,40 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(5858), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(5922), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2225] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(5860), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(5924), [sym_comment] = ACTIONS(56), }, [2226] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(5862), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(5926), [sym_comment] = ACTIONS(56), }, [2227] = { - [anon_sym_RBRACE] = ACTIONS(5862), + [anon_sym_RBRACE] = ACTIONS(5926), [sym_comment] = ACTIONS(56), }, [2228] = { @@ -61606,48 +61876,48 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(2868), - [anon_sym_RBRACE] = ACTIONS(5864), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(5928), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2229] = { - [sym_file_descriptor] = ACTIONS(4809), - [sym__concat] = ACTIONS(4809), - [sym_variable_name] = ACTIONS(4809), - [anon_sym_LT] = ACTIONS(5794), - [anon_sym_GT] = ACTIONS(5794), - [anon_sym_GT_GT] = ACTIONS(4809), - [anon_sym_AMP_GT] = ACTIONS(5794), - [anon_sym_AMP_GT_GT] = ACTIONS(4809), - [anon_sym_LT_AMP] = ACTIONS(4809), - [anon_sym_GT_AMP] = ACTIONS(4809), - [sym__special_characters] = ACTIONS(5794), - [anon_sym_DQUOTE] = ACTIONS(4809), - [anon_sym_DOLLAR] = ACTIONS(5794), - [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_file_descriptor] = ACTIONS(4871), + [sym__concat] = ACTIONS(4871), + [sym_variable_name] = ACTIONS(4871), + [anon_sym_LT] = ACTIONS(5858), + [anon_sym_GT] = ACTIONS(5858), + [anon_sym_GT_GT] = ACTIONS(4871), + [anon_sym_AMP_GT] = ACTIONS(5858), + [anon_sym_AMP_GT_GT] = ACTIONS(4871), + [anon_sym_LT_AMP] = ACTIONS(4871), + [anon_sym_GT_AMP] = ACTIONS(4871), + [sym__special_characters] = ACTIONS(5858), + [anon_sym_DQUOTE] = ACTIONS(4871), + [anon_sym_DOLLAR] = ACTIONS(5858), + [sym_raw_string] = ACTIONS(4871), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4871), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4871), + [anon_sym_BQUOTE] = ACTIONS(4871), + [anon_sym_LT_LPAREN] = ACTIONS(4871), + [anon_sym_GT_LPAREN] = ACTIONS(4871), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5794), + [sym_word] = ACTIONS(5858), }, [2230] = { [sym_concatenation] = STATE(451), @@ -61658,48 +61928,48 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(2870), - [anon_sym_RBRACE] = ACTIONS(5866), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(5930), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2231] = { - [sym_file_descriptor] = ACTIONS(4815), - [sym__concat] = ACTIONS(4815), - [sym_variable_name] = ACTIONS(4815), - [anon_sym_LT] = ACTIONS(5798), - [anon_sym_GT] = ACTIONS(5798), - [anon_sym_GT_GT] = ACTIONS(4815), - [anon_sym_AMP_GT] = ACTIONS(5798), - [anon_sym_AMP_GT_GT] = ACTIONS(4815), - [anon_sym_LT_AMP] = ACTIONS(4815), - [anon_sym_GT_AMP] = ACTIONS(4815), - [sym__special_characters] = ACTIONS(5798), - [anon_sym_DQUOTE] = ACTIONS(4815), - [anon_sym_DOLLAR] = ACTIONS(5798), - [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_file_descriptor] = ACTIONS(4877), + [sym__concat] = ACTIONS(4877), + [sym_variable_name] = ACTIONS(4877), + [anon_sym_LT] = ACTIONS(5862), + [anon_sym_GT] = ACTIONS(5862), + [anon_sym_GT_GT] = ACTIONS(4877), + [anon_sym_AMP_GT] = ACTIONS(5862), + [anon_sym_AMP_GT_GT] = ACTIONS(4877), + [anon_sym_LT_AMP] = ACTIONS(4877), + [anon_sym_GT_AMP] = ACTIONS(4877), + [sym__special_characters] = ACTIONS(5862), + [anon_sym_DQUOTE] = ACTIONS(4877), + [anon_sym_DOLLAR] = ACTIONS(5862), + [sym_raw_string] = ACTIONS(4877), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4877), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4877), + [anon_sym_BQUOTE] = ACTIONS(4877), + [anon_sym_LT_LPAREN] = ACTIONS(4877), + [anon_sym_GT_LPAREN] = ACTIONS(4877), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5798), + [sym_word] = ACTIONS(5862), }, [2232] = { [sym_concatenation] = STATE(451), @@ -61710,48 +61980,48 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(2872), - [anon_sym_RBRACE] = ACTIONS(5868), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(5932), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2233] = { - [sym_file_descriptor] = ACTIONS(4821), - [sym__concat] = ACTIONS(4821), - [sym_variable_name] = ACTIONS(4821), - [anon_sym_LT] = ACTIONS(5802), - [anon_sym_GT] = ACTIONS(5802), - [anon_sym_GT_GT] = ACTIONS(4821), - [anon_sym_AMP_GT] = ACTIONS(5802), - [anon_sym_AMP_GT_GT] = ACTIONS(4821), - [anon_sym_LT_AMP] = ACTIONS(4821), - [anon_sym_GT_AMP] = ACTIONS(4821), - [sym__special_characters] = ACTIONS(5802), - [anon_sym_DQUOTE] = ACTIONS(4821), - [anon_sym_DOLLAR] = ACTIONS(5802), - [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_file_descriptor] = ACTIONS(4883), + [sym__concat] = ACTIONS(4883), + [sym_variable_name] = ACTIONS(4883), + [anon_sym_LT] = ACTIONS(5866), + [anon_sym_GT] = ACTIONS(5866), + [anon_sym_GT_GT] = ACTIONS(4883), + [anon_sym_AMP_GT] = ACTIONS(5866), + [anon_sym_AMP_GT_GT] = ACTIONS(4883), + [anon_sym_LT_AMP] = ACTIONS(4883), + [anon_sym_GT_AMP] = ACTIONS(4883), + [sym__special_characters] = ACTIONS(5866), + [anon_sym_DQUOTE] = ACTIONS(4883), + [anon_sym_DOLLAR] = ACTIONS(5866), + [sym_raw_string] = ACTIONS(4883), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4883), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4883), + [anon_sym_BQUOTE] = ACTIONS(4883), + [anon_sym_LT_LPAREN] = ACTIONS(4883), + [anon_sym_GT_LPAREN] = ACTIONS(4883), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5802), + [sym_word] = ACTIONS(5866), }, [2234] = { [sym_concatenation] = STATE(451), @@ -61762,48 +62032,48 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(5870), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(5934), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2235] = { - [sym_file_descriptor] = ACTIONS(4827), - [sym__concat] = ACTIONS(4827), - [sym_variable_name] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(5806), - [anon_sym_GT] = ACTIONS(5806), - [anon_sym_GT_GT] = ACTIONS(4827), - [anon_sym_AMP_GT] = ACTIONS(5806), - [anon_sym_AMP_GT_GT] = ACTIONS(4827), - [anon_sym_LT_AMP] = ACTIONS(4827), - [anon_sym_GT_AMP] = ACTIONS(4827), - [sym__special_characters] = ACTIONS(5806), - [anon_sym_DQUOTE] = ACTIONS(4827), - [anon_sym_DOLLAR] = ACTIONS(5806), - [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_file_descriptor] = ACTIONS(4889), + [sym__concat] = ACTIONS(4889), + [sym_variable_name] = ACTIONS(4889), + [anon_sym_LT] = ACTIONS(5870), + [anon_sym_GT] = ACTIONS(5870), + [anon_sym_GT_GT] = ACTIONS(4889), + [anon_sym_AMP_GT] = ACTIONS(5870), + [anon_sym_AMP_GT_GT] = ACTIONS(4889), + [anon_sym_LT_AMP] = ACTIONS(4889), + [anon_sym_GT_AMP] = ACTIONS(4889), + [sym__special_characters] = ACTIONS(5870), + [anon_sym_DQUOTE] = ACTIONS(4889), + [anon_sym_DOLLAR] = ACTIONS(5870), + [sym_raw_string] = ACTIONS(4889), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4889), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4889), + [anon_sym_BQUOTE] = ACTIONS(4889), + [anon_sym_LT_LPAREN] = ACTIONS(4889), + [anon_sym_GT_LPAREN] = ACTIONS(4889), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5806), + [sym_word] = ACTIONS(5870), }, [2236] = { [sym_concatenation] = STATE(451), @@ -61814,54 +62084,54 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(5872), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(5936), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2237] = { - [sym__concat] = ACTIONS(4728), - [anon_sym_DQUOTE] = ACTIONS(4730), - [anon_sym_DOLLAR] = ACTIONS(4730), - [sym__string_content] = ACTIONS(5780), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4730), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4730), - [anon_sym_BQUOTE] = ACTIONS(4730), + [sym__concat] = ACTIONS(4790), + [anon_sym_DQUOTE] = ACTIONS(4792), + [anon_sym_DOLLAR] = ACTIONS(4792), + [sym__string_content] = ACTIONS(5844), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4792), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4792), + [anon_sym_BQUOTE] = ACTIONS(4792), [sym_comment] = ACTIONS(182), }, [2238] = { - [sym__concat] = ACTIONS(4734), - [anon_sym_DQUOTE] = ACTIONS(4736), - [anon_sym_DOLLAR] = ACTIONS(4736), - [sym__string_content] = ACTIONS(5782), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4736), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4736), - [anon_sym_BQUOTE] = ACTIONS(4736), + [sym__concat] = ACTIONS(4796), + [anon_sym_DQUOTE] = ACTIONS(4798), + [anon_sym_DOLLAR] = ACTIONS(4798), + [sym__string_content] = ACTIONS(5846), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4798), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4798), + [anon_sym_BQUOTE] = ACTIONS(4798), [sym_comment] = ACTIONS(182), }, [2239] = { - [sym__concat] = ACTIONS(4797), - [anon_sym_DQUOTE] = ACTIONS(4799), - [anon_sym_DOLLAR] = ACTIONS(4799), - [sym__string_content] = ACTIONS(5784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4799), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4799), - [anon_sym_BQUOTE] = ACTIONS(4799), + [sym__concat] = ACTIONS(4859), + [anon_sym_DQUOTE] = ACTIONS(4861), + [anon_sym_DOLLAR] = ACTIONS(4861), + [sym__string_content] = ACTIONS(5848), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4861), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4861), + [anon_sym_BQUOTE] = ACTIONS(4861), [sym_comment] = ACTIONS(182), }, [2240] = { @@ -61873,40 +62143,40 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(5874), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(5938), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2241] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(5876), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(5940), [sym_comment] = ACTIONS(56), }, [2242] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(5878), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(5942), [sym_comment] = ACTIONS(56), }, [2243] = { - [anon_sym_RBRACE] = ACTIONS(5878), + [anon_sym_RBRACE] = ACTIONS(5942), [sym_comment] = ACTIONS(56), }, [2244] = { @@ -61918,34 +62188,34 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(2879), - [anon_sym_RBRACE] = ACTIONS(5880), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(5944), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2245] = { - [sym__concat] = ACTIONS(4809), - [anon_sym_DQUOTE] = ACTIONS(4811), - [anon_sym_DOLLAR] = ACTIONS(4811), - [sym__string_content] = ACTIONS(5794), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4811), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4811), - [anon_sym_BQUOTE] = ACTIONS(4811), + [sym__concat] = ACTIONS(4871), + [anon_sym_DQUOTE] = ACTIONS(4873), + [anon_sym_DOLLAR] = ACTIONS(4873), + [sym__string_content] = ACTIONS(5858), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4873), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4873), + [anon_sym_BQUOTE] = ACTIONS(4873), [sym_comment] = ACTIONS(182), }, [2246] = { @@ -61957,34 +62227,34 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(2881), - [anon_sym_RBRACE] = ACTIONS(5882), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(5946), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2247] = { - [sym__concat] = ACTIONS(4815), - [anon_sym_DQUOTE] = ACTIONS(4817), - [anon_sym_DOLLAR] = ACTIONS(4817), - [sym__string_content] = ACTIONS(5798), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4817), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4817), - [anon_sym_BQUOTE] = ACTIONS(4817), + [sym__concat] = ACTIONS(4877), + [anon_sym_DQUOTE] = ACTIONS(4879), + [anon_sym_DOLLAR] = ACTIONS(4879), + [sym__string_content] = ACTIONS(5862), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4879), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4879), + [anon_sym_BQUOTE] = ACTIONS(4879), [sym_comment] = ACTIONS(182), }, [2248] = { @@ -61996,34 +62266,34 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(2883), - [anon_sym_RBRACE] = ACTIONS(5884), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(5948), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2249] = { - [sym__concat] = ACTIONS(4821), - [anon_sym_DQUOTE] = ACTIONS(4823), - [anon_sym_DOLLAR] = ACTIONS(4823), - [sym__string_content] = ACTIONS(5802), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4823), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4823), - [anon_sym_BQUOTE] = ACTIONS(4823), + [sym__concat] = ACTIONS(4883), + [anon_sym_DQUOTE] = ACTIONS(4885), + [anon_sym_DOLLAR] = ACTIONS(4885), + [sym__string_content] = ACTIONS(5866), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4885), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4885), + [anon_sym_BQUOTE] = ACTIONS(4885), [sym_comment] = ACTIONS(182), }, [2250] = { @@ -62035,34 +62305,34 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(5886), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(5950), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2251] = { - [sym__concat] = ACTIONS(4827), - [anon_sym_DQUOTE] = ACTIONS(4829), - [anon_sym_DOLLAR] = ACTIONS(4829), - [sym__string_content] = ACTIONS(5806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4829), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4829), - [anon_sym_BQUOTE] = ACTIONS(4829), + [sym__concat] = ACTIONS(4889), + [anon_sym_DQUOTE] = ACTIONS(4891), + [anon_sym_DOLLAR] = ACTIONS(4891), + [sym__string_content] = ACTIONS(5870), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4891), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4891), + [anon_sym_BQUOTE] = ACTIONS(4891), [sym_comment] = ACTIONS(182), }, [2252] = { @@ -62074,130 +62344,130 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(5888), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(5952), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2253] = { - [sym__concat] = ACTIONS(5890), - [anon_sym_RBRACE] = ACTIONS(4040), - [anon_sym_EQ] = ACTIONS(5892), - [sym__special_characters] = ACTIONS(5894), - [anon_sym_DQUOTE] = ACTIONS(4040), - [anon_sym_DOLLAR] = ACTIONS(5892), - [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(5892), - [anon_sym_COLON_QMARK] = ACTIONS(5892), - [anon_sym_COLON_DASH] = ACTIONS(5892), - [anon_sym_PERCENT] = ACTIONS(5892), - [anon_sym_DASH] = ACTIONS(5892), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4040), - [anon_sym_BQUOTE] = ACTIONS(4040), - [anon_sym_LT_LPAREN] = ACTIONS(4040), - [anon_sym_GT_LPAREN] = ACTIONS(4040), + [sym__concat] = ACTIONS(5954), + [anon_sym_RBRACE] = ACTIONS(4098), + [anon_sym_EQ] = ACTIONS(5956), + [sym__special_characters] = ACTIONS(5958), + [anon_sym_DQUOTE] = ACTIONS(4098), + [anon_sym_DOLLAR] = ACTIONS(5956), + [sym_raw_string] = ACTIONS(4098), + [anon_sym_POUND] = ACTIONS(4098), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4098), + [aux_sym_SLASH] = ACTIONS(4098), + [anon_sym_COLON] = ACTIONS(5956), + [anon_sym_COLON_QMARK] = ACTIONS(5956), + [anon_sym_COLON_DASH] = ACTIONS(5956), + [anon_sym_PERCENT] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4098), + [anon_sym_BQUOTE] = ACTIONS(4098), + [anon_sym_LT_LPAREN] = ACTIONS(4098), + [anon_sym_GT_LPAREN] = ACTIONS(4098), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(5894), + [sym_word] = ACTIONS(5958), }, [2254] = { - [anon_sym_RBRACE] = ACTIONS(4040), - [anon_sym_EQ] = ACTIONS(5892), - [sym__special_characters] = ACTIONS(5894), - [anon_sym_DQUOTE] = ACTIONS(4040), - [anon_sym_DOLLAR] = ACTIONS(5892), - [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(5892), - [anon_sym_COLON_QMARK] = ACTIONS(5892), - [anon_sym_COLON_DASH] = ACTIONS(5892), - [anon_sym_PERCENT] = ACTIONS(5892), - [anon_sym_DASH] = ACTIONS(5892), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4040), - [anon_sym_BQUOTE] = ACTIONS(4040), - [anon_sym_LT_LPAREN] = ACTIONS(4040), - [anon_sym_GT_LPAREN] = ACTIONS(4040), + [anon_sym_RBRACE] = ACTIONS(4098), + [anon_sym_EQ] = ACTIONS(5956), + [sym__special_characters] = ACTIONS(5958), + [anon_sym_DQUOTE] = ACTIONS(4098), + [anon_sym_DOLLAR] = ACTIONS(5956), + [sym_raw_string] = ACTIONS(4098), + [anon_sym_POUND] = ACTIONS(4098), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4098), + [aux_sym_SLASH] = ACTIONS(4098), + [anon_sym_COLON] = ACTIONS(5956), + [anon_sym_COLON_QMARK] = ACTIONS(5956), + [anon_sym_COLON_DASH] = ACTIONS(5956), + [anon_sym_PERCENT] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4098), + [anon_sym_BQUOTE] = ACTIONS(4098), + [anon_sym_LT_LPAREN] = ACTIONS(4098), + [anon_sym_GT_LPAREN] = ACTIONS(4098), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(5894), + [sym_word] = ACTIONS(5958), }, [2255] = { - [sym__concat] = ACTIONS(5896), - [anon_sym_RBRACE] = ACTIONS(4047), - [anon_sym_EQ] = ACTIONS(5898), - [sym__special_characters] = ACTIONS(5900), - [anon_sym_DQUOTE] = ACTIONS(4047), - [anon_sym_DOLLAR] = ACTIONS(5898), - [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(5898), - [anon_sym_COLON_QMARK] = ACTIONS(5898), - [anon_sym_COLON_DASH] = ACTIONS(5898), - [anon_sym_PERCENT] = ACTIONS(5898), - [anon_sym_DASH] = ACTIONS(5898), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4047), - [anon_sym_BQUOTE] = ACTIONS(4047), - [anon_sym_LT_LPAREN] = ACTIONS(4047), - [anon_sym_GT_LPAREN] = ACTIONS(4047), + [sym__concat] = ACTIONS(5960), + [anon_sym_RBRACE] = ACTIONS(4105), + [anon_sym_EQ] = ACTIONS(5962), + [sym__special_characters] = ACTIONS(5964), + [anon_sym_DQUOTE] = ACTIONS(4105), + [anon_sym_DOLLAR] = ACTIONS(5962), + [sym_raw_string] = ACTIONS(4105), + [anon_sym_POUND] = ACTIONS(4105), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4105), + [aux_sym_SLASH] = ACTIONS(4105), + [anon_sym_COLON] = ACTIONS(5962), + [anon_sym_COLON_QMARK] = ACTIONS(5962), + [anon_sym_COLON_DASH] = ACTIONS(5962), + [anon_sym_PERCENT] = ACTIONS(5962), + [anon_sym_DASH] = ACTIONS(5962), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4105), + [anon_sym_BQUOTE] = ACTIONS(4105), + [anon_sym_LT_LPAREN] = ACTIONS(4105), + [anon_sym_GT_LPAREN] = ACTIONS(4105), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(5900), + [sym_word] = ACTIONS(5964), }, [2256] = { - [anon_sym_RBRACE] = ACTIONS(4047), - [anon_sym_EQ] = ACTIONS(5898), - [sym__special_characters] = ACTIONS(5900), - [anon_sym_DQUOTE] = ACTIONS(4047), - [anon_sym_DOLLAR] = ACTIONS(5898), - [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(5898), - [anon_sym_COLON_QMARK] = ACTIONS(5898), - [anon_sym_COLON_DASH] = ACTIONS(5898), - [anon_sym_PERCENT] = ACTIONS(5898), - [anon_sym_DASH] = ACTIONS(5898), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4047), - [anon_sym_BQUOTE] = ACTIONS(4047), - [anon_sym_LT_LPAREN] = ACTIONS(4047), - [anon_sym_GT_LPAREN] = ACTIONS(4047), + [anon_sym_RBRACE] = ACTIONS(4105), + [anon_sym_EQ] = ACTIONS(5962), + [sym__special_characters] = ACTIONS(5964), + [anon_sym_DQUOTE] = ACTIONS(4105), + [anon_sym_DOLLAR] = ACTIONS(5962), + [sym_raw_string] = ACTIONS(4105), + [anon_sym_POUND] = ACTIONS(4105), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4105), + [aux_sym_SLASH] = ACTIONS(4105), + [anon_sym_COLON] = ACTIONS(5962), + [anon_sym_COLON_QMARK] = ACTIONS(5962), + [anon_sym_COLON_DASH] = ACTIONS(5962), + [anon_sym_PERCENT] = ACTIONS(5962), + [anon_sym_DASH] = ACTIONS(5962), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4105), + [anon_sym_BQUOTE] = ACTIONS(4105), + [anon_sym_LT_LPAREN] = ACTIONS(4105), + [anon_sym_GT_LPAREN] = ACTIONS(4105), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(5900), + [sym_word] = ACTIONS(5964), }, [2257] = { - [sym__concat] = ACTIONS(1858), - [anon_sym_RBRACE] = ACTIONS(1858), + [sym__concat] = ACTIONS(1886), + [anon_sym_RBRACE] = ACTIONS(1886), [sym_comment] = ACTIONS(56), }, [2258] = { [aux_sym_concatenation_repeat1] = STATE(2258), - [sym__concat] = ACTIONS(5902), - [anon_sym_RBRACE] = ACTIONS(1858), + [sym__concat] = ACTIONS(5966), + [anon_sym_RBRACE] = ACTIONS(1886), [sym_comment] = ACTIONS(56), }, [2259] = { - [sym__concat] = ACTIONS(1895), - [anon_sym_RBRACE] = ACTIONS(1895), + [sym__concat] = ACTIONS(1923), + [anon_sym_RBRACE] = ACTIONS(1923), [sym_comment] = ACTIONS(56), }, [2260] = { @@ -62208,27 +62478,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(2890), [sym_command_substitution] = STATE(2890), [sym_process_substitution] = STATE(2890), - [anon_sym_RBRACE] = ACTIONS(5905), - [sym__special_characters] = ACTIONS(5907), - [anon_sym_DQUOTE] = ACTIONS(1924), - [anon_sym_DOLLAR] = ACTIONS(1926), - [sym_raw_string] = ACTIONS(5909), - [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), + [anon_sym_RBRACE] = ACTIONS(5969), + [sym__special_characters] = ACTIONS(5971), + [anon_sym_DQUOTE] = ACTIONS(1952), + [anon_sym_DOLLAR] = ACTIONS(1954), + [sym_raw_string] = ACTIONS(5973), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), + [anon_sym_BQUOTE] = ACTIONS(1962), + [anon_sym_LT_LPAREN] = ACTIONS(1964), + [anon_sym_GT_LPAREN] = ACTIONS(1964), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5911), + [sym_word] = ACTIONS(5975), }, [2261] = { - [sym__concat] = ACTIONS(1940), - [anon_sym_RBRACE] = ACTIONS(1940), + [sym__concat] = ACTIONS(1968), + [anon_sym_RBRACE] = ACTIONS(1968), [sym_comment] = ACTIONS(56), }, [2262] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5913), + [sym_regex_without_right_brace] = ACTIONS(5977), }, [2263] = { [sym_concatenation] = STATE(451), @@ -62239,29 +62509,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(5915), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(5979), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2264] = { - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(5917), + [anon_sym_LBRACK] = ACTIONS(836), + [anon_sym_EQ] = ACTIONS(5981), [sym_comment] = ACTIONS(56), }, [2265] = { @@ -62273,26 +62543,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(2897), - [anon_sym_RBRACE] = ACTIONS(5919), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_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(5921), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(5983), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(5985), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2266] = { [sym_concatenation] = STATE(451), @@ -62303,26 +62573,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(2900), - [anon_sym_RBRACE] = ACTIONS(5923), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_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(5925), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(5987), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(5989), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2267] = { [sym_concatenation] = STATE(451), @@ -62333,35 +62603,35 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(2902), - [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), - [aux_sym_SLASH] = ACTIONS(5927), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(5969), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(5991), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2268] = { - [sym__concat] = ACTIONS(1992), - [anon_sym_RBRACE] = ACTIONS(1992), + [sym__concat] = ACTIONS(2022), + [anon_sym_RBRACE] = ACTIONS(2022), [sym_comment] = ACTIONS(56), }, [2269] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5929), + [sym_regex_without_right_brace] = ACTIONS(5993), }, [2270] = { [sym_concatenation] = STATE(451), @@ -62372,34 +62642,34 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(5931), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(5995), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2271] = { - [sym__concat] = ACTIONS(2000), - [anon_sym_RBRACE] = ACTIONS(2000), + [sym__concat] = ACTIONS(2030), + [anon_sym_RBRACE] = ACTIONS(2030), [sym_comment] = ACTIONS(56), }, [2272] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5933), + [sym_regex_without_right_brace] = ACTIONS(5997), }, [2273] = { [sym_concatenation] = STATE(451), @@ -62410,72 +62680,72 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(5969), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2274] = { - [sym__concat] = ACTIONS(2156), - [anon_sym_RBRACE] = ACTIONS(2156), + [sym__concat] = ACTIONS(2190), + [anon_sym_RBRACE] = ACTIONS(2190), [sym_comment] = ACTIONS(56), }, [2275] = { - [sym__concat] = ACTIONS(2358), - [anon_sym_RBRACE] = ACTIONS(2358), + [sym__concat] = ACTIONS(2396), + [anon_sym_RBRACE] = ACTIONS(2396), [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__concat] = ACTIONS(3283), + [anon_sym_RBRACE] = ACTIONS(3283), + [anon_sym_EQ] = ACTIONS(4602), + [sym__special_characters] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3283), + [anon_sym_DOLLAR] = ACTIONS(4602), + [sym_raw_string] = ACTIONS(3283), + [anon_sym_POUND] = ACTIONS(3283), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3283), + [anon_sym_COLON] = ACTIONS(4602), + [anon_sym_COLON_QMARK] = ACTIONS(4602), + [anon_sym_COLON_DASH] = ACTIONS(4602), + [anon_sym_PERCENT] = ACTIONS(4602), + [anon_sym_DASH] = ACTIONS(4602), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3283), + [anon_sym_BQUOTE] = ACTIONS(3283), + [anon_sym_LT_LPAREN] = ACTIONS(3283), + [anon_sym_GT_LPAREN] = ACTIONS(3283), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3237), + [sym_word] = ACTIONS(3285), }, [2277] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(5935), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(5999), [sym_comment] = ACTIONS(56), }, [2278] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(5937), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(6001), [sym_comment] = ACTIONS(56), }, [2279] = { - [anon_sym_RBRACE] = ACTIONS(5937), + [anon_sym_RBRACE] = ACTIONS(6001), [sym_comment] = ACTIONS(56), }, [2280] = { @@ -62487,47 +62757,47 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(2909), - [anon_sym_RBRACE] = ACTIONS(5939), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6003), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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__concat] = ACTIONS(3347), + [anon_sym_RBRACE] = ACTIONS(3347), + [anon_sym_EQ] = ACTIONS(4610), + [sym__special_characters] = ACTIONS(3349), + [anon_sym_DQUOTE] = ACTIONS(3347), + [anon_sym_DOLLAR] = ACTIONS(4610), + [sym_raw_string] = ACTIONS(3347), + [anon_sym_POUND] = ACTIONS(3347), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3347), + [anon_sym_COLON] = ACTIONS(4610), + [anon_sym_COLON_QMARK] = ACTIONS(4610), + [anon_sym_COLON_DASH] = ACTIONS(4610), + [anon_sym_PERCENT] = ACTIONS(4610), + [anon_sym_DASH] = ACTIONS(4610), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3347), + [anon_sym_BQUOTE] = ACTIONS(3347), + [anon_sym_LT_LPAREN] = ACTIONS(3347), + [anon_sym_GT_LPAREN] = ACTIONS(3347), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3299), + [sym_word] = ACTIONS(3349), }, [2282] = { [sym_concatenation] = STATE(2912), @@ -62537,44 +62807,44 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(2911), [sym_command_substitution] = STATE(2911), [sym_process_substitution] = STATE(2911), - [anon_sym_RBRACE] = ACTIONS(5937), - [sym__special_characters] = ACTIONS(5941), - [anon_sym_DQUOTE] = ACTIONS(1924), - [anon_sym_DOLLAR] = ACTIONS(1926), - [sym_raw_string] = ACTIONS(5943), - [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), + [anon_sym_RBRACE] = ACTIONS(6001), + [sym__special_characters] = ACTIONS(6005), + [anon_sym_DQUOTE] = ACTIONS(1952), + [anon_sym_DOLLAR] = ACTIONS(1954), + [sym_raw_string] = ACTIONS(6007), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), + [anon_sym_BQUOTE] = ACTIONS(1962), + [anon_sym_LT_LPAREN] = ACTIONS(1964), + [anon_sym_GT_LPAREN] = ACTIONS(1964), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5945), + [sym_word] = ACTIONS(6009), }, [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__concat] = ACTIONS(3392), + [anon_sym_RBRACE] = ACTIONS(3392), + [anon_sym_EQ] = ACTIONS(4618), + [sym__special_characters] = ACTIONS(3394), + [anon_sym_DQUOTE] = ACTIONS(3392), + [anon_sym_DOLLAR] = ACTIONS(4618), + [sym_raw_string] = ACTIONS(3392), + [anon_sym_POUND] = ACTIONS(3392), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3392), + [anon_sym_COLON] = ACTIONS(4618), + [anon_sym_COLON_QMARK] = ACTIONS(4618), + [anon_sym_COLON_DASH] = ACTIONS(4618), + [anon_sym_PERCENT] = ACTIONS(4618), + [anon_sym_DASH] = ACTIONS(4618), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3392), + [anon_sym_BQUOTE] = ACTIONS(3392), + [anon_sym_LT_LPAREN] = ACTIONS(3392), + [anon_sym_GT_LPAREN] = ACTIONS(3392), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3344), + [sym_word] = ACTIONS(3394), }, [2284] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5947), + [sym_regex_without_right_brace] = ACTIONS(6011), }, [2285] = { [sym_concatenation] = STATE(451), @@ -62585,51 +62855,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(5949), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6013), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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__concat] = ACTIONS(3400), + [anon_sym_RBRACE] = ACTIONS(3400), + [anon_sym_EQ] = ACTIONS(4624), + [sym__special_characters] = ACTIONS(3402), + [anon_sym_DQUOTE] = ACTIONS(3400), + [anon_sym_DOLLAR] = ACTIONS(4624), + [sym_raw_string] = ACTIONS(3400), + [anon_sym_POUND] = ACTIONS(3400), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3400), + [anon_sym_COLON] = ACTIONS(4624), + [anon_sym_COLON_QMARK] = ACTIONS(4624), + [anon_sym_COLON_DASH] = ACTIONS(4624), + [anon_sym_PERCENT] = ACTIONS(4624), + [anon_sym_DASH] = ACTIONS(4624), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3400), + [anon_sym_BQUOTE] = ACTIONS(3400), + [anon_sym_LT_LPAREN] = ACTIONS(3400), + [anon_sym_GT_LPAREN] = ACTIONS(3400), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3352), + [sym_word] = ACTIONS(3402), }, [2287] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5951), + [sym_regex_without_right_brace] = ACTIONS(6015), }, [2288] = { [sym_concatenation] = STATE(451), @@ -62640,29 +62910,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(5953), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6017), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2289] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5955), + [sym_regex_without_right_brace] = ACTIONS(6019), }, [2290] = { [sym_concatenation] = STATE(451), @@ -62673,25 +62943,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(5937), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6001), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2291] = { [sym_concatenation] = STATE(451), @@ -62702,47 +62972,47 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(2919), - [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), + [anon_sym_RBRACE] = ACTIONS(6021), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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__concat] = ACTIONS(3412), + [anon_sym_RBRACE] = ACTIONS(3412), + [anon_sym_EQ] = ACTIONS(4634), + [sym__special_characters] = ACTIONS(3414), + [anon_sym_DQUOTE] = ACTIONS(3412), + [anon_sym_DOLLAR] = ACTIONS(4634), + [sym_raw_string] = ACTIONS(3412), + [anon_sym_POUND] = ACTIONS(3412), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3412), + [anon_sym_COLON] = ACTIONS(4634), + [anon_sym_COLON_QMARK] = ACTIONS(4634), + [anon_sym_COLON_DASH] = ACTIONS(4634), + [anon_sym_PERCENT] = ACTIONS(4634), + [anon_sym_DASH] = ACTIONS(4634), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3412), + [anon_sym_BQUOTE] = ACTIONS(3412), + [anon_sym_LT_LPAREN] = ACTIONS(3412), + [anon_sym_GT_LPAREN] = ACTIONS(3412), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3364), + [sym_word] = ACTIONS(3414), }, [2293] = { [sym_concatenation] = STATE(451), @@ -62753,161 +63023,165 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(2921), - [anon_sym_RBRACE] = ACTIONS(5959), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6023), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2294] = { - [sym_file_descriptor] = ACTIONS(5961), - [sym__concat] = ACTIONS(5961), - [anon_sym_PIPE] = ACTIONS(5963), - [anon_sym_SEMI_SEMI] = 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(5963), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_GT] = ACTIONS(5963), - [anon_sym_GT_GT] = ACTIONS(5963), - [anon_sym_AMP_GT] = ACTIONS(5963), - [anon_sym_AMP_GT_GT] = ACTIONS(5963), - [anon_sym_LT_AMP] = ACTIONS(5963), - [anon_sym_GT_AMP] = ACTIONS(5963), - [anon_sym_LT_LT] = ACTIONS(5963), - [anon_sym_LT_LT_DASH] = ACTIONS(5963), - [anon_sym_LT_LT_LT] = ACTIONS(5963), - [sym__special_characters] = ACTIONS(5963), - [anon_sym_DQUOTE] = ACTIONS(5963), - [anon_sym_DOLLAR] = ACTIONS(5963), - [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_file_descriptor] = ACTIONS(6025), + [sym__concat] = ACTIONS(6025), + [anon_sym_PIPE] = ACTIONS(6027), + [anon_sym_SEMI_SEMI] = ACTIONS(6027), + [anon_sym_PIPE_AMP] = ACTIONS(6027), + [anon_sym_AMP_AMP] = ACTIONS(6027), + [anon_sym_PIPE_PIPE] = ACTIONS(6027), + [anon_sym_EQ_TILDE] = ACTIONS(6027), + [anon_sym_EQ_EQ] = ACTIONS(6027), + [anon_sym_LT] = ACTIONS(6027), + [anon_sym_GT] = ACTIONS(6027), + [anon_sym_GT_GT] = ACTIONS(6027), + [anon_sym_AMP_GT] = ACTIONS(6027), + [anon_sym_AMP_GT_GT] = ACTIONS(6027), + [anon_sym_LT_AMP] = ACTIONS(6027), + [anon_sym_GT_AMP] = ACTIONS(6027), + [anon_sym_LT_LT] = ACTIONS(6027), + [anon_sym_LT_LT_DASH] = ACTIONS(6027), + [anon_sym_LT_LT_LT] = ACTIONS(6027), + [sym__special_characters] = ACTIONS(6027), + [anon_sym_DQUOTE] = ACTIONS(6027), + [anon_sym_DOLLAR] = ACTIONS(6027), + [sym_raw_string] = ACTIONS(6027), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6027), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6027), + [anon_sym_BQUOTE] = ACTIONS(6027), + [anon_sym_LT_LPAREN] = ACTIONS(6027), + [anon_sym_GT_LPAREN] = ACTIONS(6027), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(5963), - [anon_sym_SEMI] = ACTIONS(5963), - [anon_sym_LF] = ACTIONS(5963), - [anon_sym_AMP] = ACTIONS(5963), + [sym_word] = ACTIONS(6027), + [anon_sym_SEMI] = ACTIONS(6027), + [anon_sym_LF] = ACTIONS(6027), + [anon_sym_AMP] = ACTIONS(6027), }, [2295] = { - [sym_file_descriptor] = ACTIONS(5965), - [sym__concat] = ACTIONS(5965), - [anon_sym_PIPE] = ACTIONS(5967), - [anon_sym_SEMI_SEMI] = ACTIONS(5967), - [anon_sym_PIPE_AMP] = ACTIONS(5967), - [anon_sym_AMP_AMP] = ACTIONS(5967), - [anon_sym_PIPE_PIPE] = ACTIONS(5967), - [anon_sym_EQ_TILDE] = ACTIONS(5967), - [anon_sym_LT] = ACTIONS(5967), - [anon_sym_GT] = ACTIONS(5967), - [anon_sym_GT_GT] = ACTIONS(5967), - [anon_sym_AMP_GT] = ACTIONS(5967), - [anon_sym_AMP_GT_GT] = ACTIONS(5967), - [anon_sym_LT_AMP] = ACTIONS(5967), - [anon_sym_GT_AMP] = ACTIONS(5967), - [anon_sym_LT_LT] = ACTIONS(5967), - [anon_sym_LT_LT_DASH] = ACTIONS(5967), - [anon_sym_LT_LT_LT] = ACTIONS(5967), - [sym__special_characters] = ACTIONS(5967), - [anon_sym_DQUOTE] = ACTIONS(5967), - [anon_sym_DOLLAR] = ACTIONS(5967), - [sym_raw_string] = ACTIONS(5967), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5967), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5967), - [anon_sym_BQUOTE] = ACTIONS(5967), - [anon_sym_LT_LPAREN] = ACTIONS(5967), - [anon_sym_GT_LPAREN] = ACTIONS(5967), + [sym_file_descriptor] = ACTIONS(6029), + [sym__concat] = ACTIONS(6029), + [anon_sym_PIPE] = ACTIONS(6031), + [anon_sym_SEMI_SEMI] = ACTIONS(6031), + [anon_sym_PIPE_AMP] = ACTIONS(6031), + [anon_sym_AMP_AMP] = ACTIONS(6031), + [anon_sym_PIPE_PIPE] = ACTIONS(6031), + [anon_sym_EQ_TILDE] = ACTIONS(6031), + [anon_sym_EQ_EQ] = ACTIONS(6031), + [anon_sym_LT] = ACTIONS(6031), + [anon_sym_GT] = ACTIONS(6031), + [anon_sym_GT_GT] = ACTIONS(6031), + [anon_sym_AMP_GT] = ACTIONS(6031), + [anon_sym_AMP_GT_GT] = ACTIONS(6031), + [anon_sym_LT_AMP] = ACTIONS(6031), + [anon_sym_GT_AMP] = ACTIONS(6031), + [anon_sym_LT_LT] = ACTIONS(6031), + [anon_sym_LT_LT_DASH] = ACTIONS(6031), + [anon_sym_LT_LT_LT] = ACTIONS(6031), + [sym__special_characters] = ACTIONS(6031), + [anon_sym_DQUOTE] = ACTIONS(6031), + [anon_sym_DOLLAR] = ACTIONS(6031), + [sym_raw_string] = ACTIONS(6031), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6031), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6031), + [anon_sym_BQUOTE] = ACTIONS(6031), + [anon_sym_LT_LPAREN] = ACTIONS(6031), + [anon_sym_GT_LPAREN] = ACTIONS(6031), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(5967), - [anon_sym_SEMI] = ACTIONS(5967), - [anon_sym_LF] = ACTIONS(5967), - [anon_sym_AMP] = ACTIONS(5967), + [sym_word] = ACTIONS(6031), + [anon_sym_SEMI] = ACTIONS(6031), + [anon_sym_LF] = ACTIONS(6031), + [anon_sym_AMP] = ACTIONS(6031), }, [2296] = { - [sym_file_descriptor] = ACTIONS(5969), - [sym__concat] = ACTIONS(5969), - [anon_sym_PIPE] = ACTIONS(5971), - [anon_sym_SEMI_SEMI] = ACTIONS(5971), - [anon_sym_PIPE_AMP] = ACTIONS(5971), - [anon_sym_AMP_AMP] = ACTIONS(5971), - [anon_sym_PIPE_PIPE] = ACTIONS(5971), - [anon_sym_EQ_TILDE] = ACTIONS(5971), - [anon_sym_LT] = ACTIONS(5971), - [anon_sym_GT] = ACTIONS(5971), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_AMP_GT] = ACTIONS(5971), - [anon_sym_AMP_GT_GT] = ACTIONS(5971), - [anon_sym_LT_AMP] = ACTIONS(5971), - [anon_sym_GT_AMP] = ACTIONS(5971), - [anon_sym_LT_LT] = ACTIONS(5971), - [anon_sym_LT_LT_DASH] = ACTIONS(5971), - [anon_sym_LT_LT_LT] = ACTIONS(5971), - [sym__special_characters] = ACTIONS(5971), - [anon_sym_DQUOTE] = ACTIONS(5971), - [anon_sym_DOLLAR] = ACTIONS(5971), - [sym_raw_string] = ACTIONS(5971), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5971), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5971), - [anon_sym_BQUOTE] = ACTIONS(5971), - [anon_sym_LT_LPAREN] = ACTIONS(5971), - [anon_sym_GT_LPAREN] = ACTIONS(5971), + [sym_file_descriptor] = ACTIONS(6033), + [sym__concat] = ACTIONS(6033), + [anon_sym_PIPE] = ACTIONS(6035), + [anon_sym_SEMI_SEMI] = ACTIONS(6035), + [anon_sym_PIPE_AMP] = ACTIONS(6035), + [anon_sym_AMP_AMP] = ACTIONS(6035), + [anon_sym_PIPE_PIPE] = ACTIONS(6035), + [anon_sym_EQ_TILDE] = ACTIONS(6035), + [anon_sym_EQ_EQ] = ACTIONS(6035), + [anon_sym_LT] = ACTIONS(6035), + [anon_sym_GT] = ACTIONS(6035), + [anon_sym_GT_GT] = ACTIONS(6035), + [anon_sym_AMP_GT] = ACTIONS(6035), + [anon_sym_AMP_GT_GT] = ACTIONS(6035), + [anon_sym_LT_AMP] = ACTIONS(6035), + [anon_sym_GT_AMP] = ACTIONS(6035), + [anon_sym_LT_LT] = ACTIONS(6035), + [anon_sym_LT_LT_DASH] = ACTIONS(6035), + [anon_sym_LT_LT_LT] = ACTIONS(6035), + [sym__special_characters] = ACTIONS(6035), + [anon_sym_DQUOTE] = ACTIONS(6035), + [anon_sym_DOLLAR] = ACTIONS(6035), + [sym_raw_string] = ACTIONS(6035), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6035), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6035), + [anon_sym_BQUOTE] = ACTIONS(6035), + [anon_sym_LT_LPAREN] = ACTIONS(6035), + [anon_sym_GT_LPAREN] = ACTIONS(6035), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(5971), - [anon_sym_SEMI] = ACTIONS(5971), - [anon_sym_LF] = ACTIONS(5971), - [anon_sym_AMP] = ACTIONS(5971), + [sym_word] = ACTIONS(6035), + [anon_sym_SEMI] = ACTIONS(6035), + [anon_sym_LF] = ACTIONS(6035), + [anon_sym_AMP] = ACTIONS(6035), }, [2297] = { - [sym_file_descriptor] = ACTIONS(5973), - [sym__concat] = ACTIONS(5973), - [anon_sym_PIPE] = ACTIONS(5975), - [anon_sym_SEMI_SEMI] = ACTIONS(5975), - [anon_sym_PIPE_AMP] = ACTIONS(5975), - [anon_sym_AMP_AMP] = ACTIONS(5975), - [anon_sym_PIPE_PIPE] = ACTIONS(5975), - [anon_sym_EQ_TILDE] = ACTIONS(5975), - [anon_sym_LT] = ACTIONS(5975), - [anon_sym_GT] = ACTIONS(5975), - [anon_sym_GT_GT] = ACTIONS(5975), - [anon_sym_AMP_GT] = ACTIONS(5975), - [anon_sym_AMP_GT_GT] = ACTIONS(5975), - [anon_sym_LT_AMP] = ACTIONS(5975), - [anon_sym_GT_AMP] = ACTIONS(5975), - [anon_sym_LT_LT] = ACTIONS(5975), - [anon_sym_LT_LT_DASH] = ACTIONS(5975), - [anon_sym_LT_LT_LT] = ACTIONS(5975), - [sym__special_characters] = ACTIONS(5975), - [anon_sym_DQUOTE] = ACTIONS(5975), - [anon_sym_DOLLAR] = ACTIONS(5975), - [sym_raw_string] = ACTIONS(5975), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5975), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5975), - [anon_sym_BQUOTE] = ACTIONS(5975), - [anon_sym_LT_LPAREN] = ACTIONS(5975), - [anon_sym_GT_LPAREN] = ACTIONS(5975), + [sym_file_descriptor] = ACTIONS(6037), + [sym__concat] = ACTIONS(6037), + [anon_sym_PIPE] = ACTIONS(6039), + [anon_sym_SEMI_SEMI] = ACTIONS(6039), + [anon_sym_PIPE_AMP] = ACTIONS(6039), + [anon_sym_AMP_AMP] = ACTIONS(6039), + [anon_sym_PIPE_PIPE] = ACTIONS(6039), + [anon_sym_EQ_TILDE] = ACTIONS(6039), + [anon_sym_EQ_EQ] = ACTIONS(6039), + [anon_sym_LT] = ACTIONS(6039), + [anon_sym_GT] = ACTIONS(6039), + [anon_sym_GT_GT] = ACTIONS(6039), + [anon_sym_AMP_GT] = ACTIONS(6039), + [anon_sym_AMP_GT_GT] = ACTIONS(6039), + [anon_sym_LT_AMP] = ACTIONS(6039), + [anon_sym_GT_AMP] = ACTIONS(6039), + [anon_sym_LT_LT] = ACTIONS(6039), + [anon_sym_LT_LT_DASH] = ACTIONS(6039), + [anon_sym_LT_LT_LT] = ACTIONS(6039), + [sym__special_characters] = ACTIONS(6039), + [anon_sym_DQUOTE] = ACTIONS(6039), + [anon_sym_DOLLAR] = ACTIONS(6039), + [sym_raw_string] = ACTIONS(6039), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6039), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6039), + [anon_sym_BQUOTE] = ACTIONS(6039), + [anon_sym_LT_LPAREN] = ACTIONS(6039), + [anon_sym_GT_LPAREN] = ACTIONS(6039), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(5975), - [anon_sym_SEMI] = ACTIONS(5975), - [anon_sym_LF] = ACTIONS(5975), - [anon_sym_AMP] = ACTIONS(5975), + [sym_word] = ACTIONS(6039), + [anon_sym_SEMI] = ACTIONS(6039), + [anon_sym_LF] = ACTIONS(6039), + [anon_sym_AMP] = ACTIONS(6039), }, [2298] = { [sym_concatenation] = STATE(451), @@ -62918,59 +63192,60 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(5977), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6041), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2299] = { - [sym_file_descriptor] = ACTIONS(5979), - [sym__concat] = ACTIONS(5979), - [anon_sym_PIPE] = ACTIONS(5981), - [anon_sym_SEMI_SEMI] = ACTIONS(5981), - [anon_sym_PIPE_AMP] = ACTIONS(5981), - [anon_sym_AMP_AMP] = ACTIONS(5981), - [anon_sym_PIPE_PIPE] = ACTIONS(5981), - [anon_sym_EQ_TILDE] = ACTIONS(5981), - [anon_sym_LT] = ACTIONS(5981), - [anon_sym_GT] = ACTIONS(5981), - [anon_sym_GT_GT] = ACTIONS(5981), - [anon_sym_AMP_GT] = ACTIONS(5981), - [anon_sym_AMP_GT_GT] = ACTIONS(5981), - [anon_sym_LT_AMP] = ACTIONS(5981), - [anon_sym_GT_AMP] = ACTIONS(5981), - [anon_sym_LT_LT] = ACTIONS(5981), - [anon_sym_LT_LT_DASH] = ACTIONS(5981), - [anon_sym_LT_LT_LT] = ACTIONS(5981), - [sym__special_characters] = ACTIONS(5981), - [anon_sym_DQUOTE] = ACTIONS(5981), - [anon_sym_DOLLAR] = ACTIONS(5981), - [sym_raw_string] = ACTIONS(5981), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5981), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5981), - [anon_sym_BQUOTE] = ACTIONS(5981), - [anon_sym_LT_LPAREN] = ACTIONS(5981), - [anon_sym_GT_LPAREN] = ACTIONS(5981), + [sym_file_descriptor] = ACTIONS(6043), + [sym__concat] = ACTIONS(6043), + [anon_sym_PIPE] = ACTIONS(6045), + [anon_sym_SEMI_SEMI] = ACTIONS(6045), + [anon_sym_PIPE_AMP] = ACTIONS(6045), + [anon_sym_AMP_AMP] = ACTIONS(6045), + [anon_sym_PIPE_PIPE] = ACTIONS(6045), + [anon_sym_EQ_TILDE] = ACTIONS(6045), + [anon_sym_EQ_EQ] = ACTIONS(6045), + [anon_sym_LT] = ACTIONS(6045), + [anon_sym_GT] = ACTIONS(6045), + [anon_sym_GT_GT] = ACTIONS(6045), + [anon_sym_AMP_GT] = ACTIONS(6045), + [anon_sym_AMP_GT_GT] = ACTIONS(6045), + [anon_sym_LT_AMP] = ACTIONS(6045), + [anon_sym_GT_AMP] = ACTIONS(6045), + [anon_sym_LT_LT] = ACTIONS(6045), + [anon_sym_LT_LT_DASH] = ACTIONS(6045), + [anon_sym_LT_LT_LT] = ACTIONS(6045), + [sym__special_characters] = ACTIONS(6045), + [anon_sym_DQUOTE] = ACTIONS(6045), + [anon_sym_DOLLAR] = ACTIONS(6045), + [sym_raw_string] = ACTIONS(6045), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6045), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6045), + [anon_sym_BQUOTE] = ACTIONS(6045), + [anon_sym_LT_LPAREN] = ACTIONS(6045), + [anon_sym_GT_LPAREN] = ACTIONS(6045), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(5981), - [anon_sym_SEMI] = ACTIONS(5981), - [anon_sym_LF] = ACTIONS(5981), - [anon_sym_AMP] = ACTIONS(5981), + [sym_word] = ACTIONS(6045), + [anon_sym_SEMI] = ACTIONS(6045), + [anon_sym_LF] = ACTIONS(6045), + [anon_sym_AMP] = ACTIONS(6045), }, [2300] = { [sym_concatenation] = STATE(451), @@ -62981,59 +63256,60 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(5983), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6047), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2301] = { - [sym_file_descriptor] = ACTIONS(5985), - [sym__concat] = ACTIONS(5985), - [anon_sym_PIPE] = ACTIONS(5987), - [anon_sym_SEMI_SEMI] = ACTIONS(5987), - [anon_sym_PIPE_AMP] = ACTIONS(5987), - [anon_sym_AMP_AMP] = ACTIONS(5987), - [anon_sym_PIPE_PIPE] = ACTIONS(5987), - [anon_sym_EQ_TILDE] = ACTIONS(5987), - [anon_sym_LT] = ACTIONS(5987), - [anon_sym_GT] = ACTIONS(5987), - [anon_sym_GT_GT] = ACTIONS(5987), - [anon_sym_AMP_GT] = ACTIONS(5987), - [anon_sym_AMP_GT_GT] = ACTIONS(5987), - [anon_sym_LT_AMP] = ACTIONS(5987), - [anon_sym_GT_AMP] = ACTIONS(5987), - [anon_sym_LT_LT] = ACTIONS(5987), - [anon_sym_LT_LT_DASH] = ACTIONS(5987), - [anon_sym_LT_LT_LT] = ACTIONS(5987), - [sym__special_characters] = ACTIONS(5987), - [anon_sym_DQUOTE] = ACTIONS(5987), - [anon_sym_DOLLAR] = ACTIONS(5987), - [sym_raw_string] = ACTIONS(5987), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5987), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5987), - [anon_sym_BQUOTE] = ACTIONS(5987), - [anon_sym_LT_LPAREN] = ACTIONS(5987), - [anon_sym_GT_LPAREN] = ACTIONS(5987), + [sym_file_descriptor] = ACTIONS(6049), + [sym__concat] = ACTIONS(6049), + [anon_sym_PIPE] = ACTIONS(6051), + [anon_sym_SEMI_SEMI] = ACTIONS(6051), + [anon_sym_PIPE_AMP] = ACTIONS(6051), + [anon_sym_AMP_AMP] = ACTIONS(6051), + [anon_sym_PIPE_PIPE] = ACTIONS(6051), + [anon_sym_EQ_TILDE] = ACTIONS(6051), + [anon_sym_EQ_EQ] = ACTIONS(6051), + [anon_sym_LT] = ACTIONS(6051), + [anon_sym_GT] = ACTIONS(6051), + [anon_sym_GT_GT] = ACTIONS(6051), + [anon_sym_AMP_GT] = ACTIONS(6051), + [anon_sym_AMP_GT_GT] = ACTIONS(6051), + [anon_sym_LT_AMP] = ACTIONS(6051), + [anon_sym_GT_AMP] = ACTIONS(6051), + [anon_sym_LT_LT] = ACTIONS(6051), + [anon_sym_LT_LT_DASH] = ACTIONS(6051), + [anon_sym_LT_LT_LT] = ACTIONS(6051), + [sym__special_characters] = ACTIONS(6051), + [anon_sym_DQUOTE] = ACTIONS(6051), + [anon_sym_DOLLAR] = ACTIONS(6051), + [sym_raw_string] = ACTIONS(6051), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6051), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6051), + [anon_sym_BQUOTE] = ACTIONS(6051), + [anon_sym_LT_LPAREN] = ACTIONS(6051), + [anon_sym_GT_LPAREN] = ACTIONS(6051), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(5987), - [anon_sym_SEMI] = ACTIONS(5987), - [anon_sym_LF] = ACTIONS(5987), - [anon_sym_AMP] = ACTIONS(5987), + [sym_word] = ACTIONS(6051), + [anon_sym_SEMI] = ACTIONS(6051), + [anon_sym_LF] = ACTIONS(6051), + [anon_sym_AMP] = ACTIONS(6051), }, [2302] = { [sym_concatenation] = STATE(451), @@ -63044,205 +63320,207 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(5989), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6053), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2303] = { - [sym_file_descriptor] = ACTIONS(5991), - [sym__concat] = ACTIONS(5991), - [anon_sym_PIPE] = ACTIONS(5993), - [anon_sym_SEMI_SEMI] = ACTIONS(5993), - [anon_sym_PIPE_AMP] = ACTIONS(5993), - [anon_sym_AMP_AMP] = ACTIONS(5993), - [anon_sym_PIPE_PIPE] = ACTIONS(5993), - [anon_sym_EQ_TILDE] = ACTIONS(5993), - [anon_sym_LT] = ACTIONS(5993), - [anon_sym_GT] = ACTIONS(5993), - [anon_sym_GT_GT] = ACTIONS(5993), - [anon_sym_AMP_GT] = ACTIONS(5993), - [anon_sym_AMP_GT_GT] = ACTIONS(5993), - [anon_sym_LT_AMP] = ACTIONS(5993), - [anon_sym_GT_AMP] = ACTIONS(5993), - [anon_sym_LT_LT] = ACTIONS(5993), - [anon_sym_LT_LT_DASH] = ACTIONS(5993), - [anon_sym_LT_LT_LT] = ACTIONS(5993), - [sym__special_characters] = ACTIONS(5993), - [anon_sym_DQUOTE] = ACTIONS(5993), - [anon_sym_DOLLAR] = ACTIONS(5993), - [sym_raw_string] = ACTIONS(5993), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5993), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5993), - [anon_sym_BQUOTE] = ACTIONS(5993), - [anon_sym_LT_LPAREN] = ACTIONS(5993), - [anon_sym_GT_LPAREN] = ACTIONS(5993), + [sym_file_descriptor] = ACTIONS(6055), + [sym__concat] = ACTIONS(6055), + [anon_sym_PIPE] = ACTIONS(6057), + [anon_sym_SEMI_SEMI] = ACTIONS(6057), + [anon_sym_PIPE_AMP] = ACTIONS(6057), + [anon_sym_AMP_AMP] = ACTIONS(6057), + [anon_sym_PIPE_PIPE] = ACTIONS(6057), + [anon_sym_EQ_TILDE] = ACTIONS(6057), + [anon_sym_EQ_EQ] = ACTIONS(6057), + [anon_sym_LT] = ACTIONS(6057), + [anon_sym_GT] = ACTIONS(6057), + [anon_sym_GT_GT] = ACTIONS(6057), + [anon_sym_AMP_GT] = ACTIONS(6057), + [anon_sym_AMP_GT_GT] = ACTIONS(6057), + [anon_sym_LT_AMP] = ACTIONS(6057), + [anon_sym_GT_AMP] = ACTIONS(6057), + [anon_sym_LT_LT] = ACTIONS(6057), + [anon_sym_LT_LT_DASH] = ACTIONS(6057), + [anon_sym_LT_LT_LT] = ACTIONS(6057), + [sym__special_characters] = ACTIONS(6057), + [anon_sym_DQUOTE] = ACTIONS(6057), + [anon_sym_DOLLAR] = ACTIONS(6057), + [sym_raw_string] = ACTIONS(6057), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6057), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6057), + [anon_sym_BQUOTE] = ACTIONS(6057), + [anon_sym_LT_LPAREN] = ACTIONS(6057), + [anon_sym_GT_LPAREN] = ACTIONS(6057), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(5993), - [anon_sym_SEMI] = ACTIONS(5993), - [anon_sym_LF] = ACTIONS(5993), - [anon_sym_AMP] = ACTIONS(5993), + [sym_word] = ACTIONS(6057), + [anon_sym_SEMI] = ACTIONS(6057), + [anon_sym_LF] = ACTIONS(6057), + [anon_sym_AMP] = ACTIONS(6057), }, [2304] = { - [sym_file_descriptor] = ACTIONS(5995), - [sym__concat] = ACTIONS(5995), - [anon_sym_PIPE] = ACTIONS(5997), - [anon_sym_SEMI_SEMI] = ACTIONS(5997), - [anon_sym_PIPE_AMP] = ACTIONS(5997), - [anon_sym_AMP_AMP] = ACTIONS(5997), - [anon_sym_PIPE_PIPE] = ACTIONS(5997), - [anon_sym_EQ_TILDE] = ACTIONS(5997), - [anon_sym_LT] = ACTIONS(5997), - [anon_sym_GT] = ACTIONS(5997), - [anon_sym_GT_GT] = ACTIONS(5997), - [anon_sym_AMP_GT] = ACTIONS(5997), - [anon_sym_AMP_GT_GT] = ACTIONS(5997), - [anon_sym_LT_AMP] = ACTIONS(5997), - [anon_sym_GT_AMP] = ACTIONS(5997), - [anon_sym_LT_LT] = ACTIONS(5997), - [anon_sym_LT_LT_DASH] = ACTIONS(5997), - [anon_sym_LT_LT_LT] = ACTIONS(5997), - [sym__special_characters] = ACTIONS(5997), - [anon_sym_DQUOTE] = ACTIONS(5997), - [anon_sym_DOLLAR] = ACTIONS(5997), - [sym_raw_string] = ACTIONS(5997), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5997), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5997), - [anon_sym_BQUOTE] = ACTIONS(5997), - [anon_sym_LT_LPAREN] = ACTIONS(5997), - [anon_sym_GT_LPAREN] = ACTIONS(5997), + [sym_file_descriptor] = ACTIONS(6059), + [sym__concat] = ACTIONS(6059), + [anon_sym_PIPE] = ACTIONS(6061), + [anon_sym_SEMI_SEMI] = ACTIONS(6061), + [anon_sym_PIPE_AMP] = ACTIONS(6061), + [anon_sym_AMP_AMP] = ACTIONS(6061), + [anon_sym_PIPE_PIPE] = ACTIONS(6061), + [anon_sym_EQ_TILDE] = ACTIONS(6061), + [anon_sym_EQ_EQ] = ACTIONS(6061), + [anon_sym_LT] = ACTIONS(6061), + [anon_sym_GT] = ACTIONS(6061), + [anon_sym_GT_GT] = ACTIONS(6061), + [anon_sym_AMP_GT] = ACTIONS(6061), + [anon_sym_AMP_GT_GT] = ACTIONS(6061), + [anon_sym_LT_AMP] = ACTIONS(6061), + [anon_sym_GT_AMP] = ACTIONS(6061), + [anon_sym_LT_LT] = ACTIONS(6061), + [anon_sym_LT_LT_DASH] = ACTIONS(6061), + [anon_sym_LT_LT_LT] = ACTIONS(6061), + [sym__special_characters] = ACTIONS(6061), + [anon_sym_DQUOTE] = ACTIONS(6061), + [anon_sym_DOLLAR] = ACTIONS(6061), + [sym_raw_string] = ACTIONS(6061), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6061), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6061), + [anon_sym_BQUOTE] = ACTIONS(6061), + [anon_sym_LT_LPAREN] = ACTIONS(6061), + [anon_sym_GT_LPAREN] = ACTIONS(6061), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(5997), - [anon_sym_SEMI] = ACTIONS(5997), - [anon_sym_LF] = ACTIONS(5997), - [anon_sym_AMP] = ACTIONS(5997), + [sym_word] = ACTIONS(6061), + [anon_sym_SEMI] = ACTIONS(6061), + [anon_sym_LF] = ACTIONS(6061), + [anon_sym_AMP] = ACTIONS(6061), }, [2305] = { - [sym_file_descriptor] = ACTIONS(4111), - [sym_variable_name] = ACTIONS(4111), - [anon_sym_PIPE] = ACTIONS(5999), - [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(5999), - [anon_sym_GT] = ACTIONS(5999), - [anon_sym_GT_GT] = ACTIONS(4111), - [anon_sym_AMP_GT] = ACTIONS(5999), - [anon_sym_AMP_GT_GT] = ACTIONS(4111), - [anon_sym_LT_AMP] = ACTIONS(4111), - [anon_sym_GT_AMP] = ACTIONS(4111), - [sym__special_characters] = ACTIONS(5999), - [anon_sym_DQUOTE] = ACTIONS(4111), - [anon_sym_DOLLAR] = ACTIONS(5999), - [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_file_descriptor] = ACTIONS(4169), + [sym_variable_name] = ACTIONS(4169), + [anon_sym_PIPE] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(4169), + [anon_sym_PIPE_AMP] = ACTIONS(4169), + [anon_sym_AMP_AMP] = ACTIONS(4169), + [anon_sym_PIPE_PIPE] = ACTIONS(4169), + [anon_sym_LT] = ACTIONS(6063), + [anon_sym_GT] = ACTIONS(6063), + [anon_sym_GT_GT] = ACTIONS(4169), + [anon_sym_AMP_GT] = ACTIONS(6063), + [anon_sym_AMP_GT_GT] = ACTIONS(4169), + [anon_sym_LT_AMP] = ACTIONS(4169), + [anon_sym_GT_AMP] = ACTIONS(4169), + [sym__special_characters] = ACTIONS(6063), + [anon_sym_DQUOTE] = ACTIONS(4169), + [anon_sym_DOLLAR] = ACTIONS(6063), + [sym_raw_string] = ACTIONS(4169), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4169), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4169), + [anon_sym_BQUOTE] = ACTIONS(4169), + [anon_sym_LT_LPAREN] = ACTIONS(4169), + [anon_sym_GT_LPAREN] = ACTIONS(4169), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5999), + [sym_word] = ACTIONS(6063), }, [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_file_descriptor] = ACTIONS(1886), + [sym__concat] = ACTIONS(1886), + [sym_variable_name] = ACTIONS(1886), + [anon_sym_PIPE] = ACTIONS(3056), + [anon_sym_RPAREN] = ACTIONS(1886), + [anon_sym_PIPE_AMP] = ACTIONS(1886), + [anon_sym_AMP_AMP] = ACTIONS(1886), + [anon_sym_PIPE_PIPE] = ACTIONS(1886), + [anon_sym_LT] = ACTIONS(3056), + [anon_sym_GT] = ACTIONS(3056), + [anon_sym_GT_GT] = ACTIONS(1886), + [anon_sym_AMP_GT] = ACTIONS(3056), + [anon_sym_AMP_GT_GT] = ACTIONS(1886), + [anon_sym_LT_AMP] = ACTIONS(1886), + [anon_sym_GT_AMP] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(3056), + [anon_sym_DQUOTE] = ACTIONS(1886), + [anon_sym_DOLLAR] = ACTIONS(3056), + [sym_raw_string] = ACTIONS(1886), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1886), + [anon_sym_BQUOTE] = ACTIONS(1886), + [anon_sym_LT_LPAREN] = ACTIONS(1886), + [anon_sym_GT_LPAREN] = ACTIONS(1886), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3008), + [sym_word] = ACTIONS(3056), }, [2307] = { [aux_sym_concatenation_repeat1] = STATE(2307), - [sym_file_descriptor] = ACTIONS(1858), - [sym__concat] = ACTIONS(6001), - [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_file_descriptor] = ACTIONS(1886), + [sym__concat] = ACTIONS(6065), + [sym_variable_name] = ACTIONS(1886), + [anon_sym_PIPE] = ACTIONS(3056), + [anon_sym_RPAREN] = ACTIONS(1886), + [anon_sym_PIPE_AMP] = ACTIONS(1886), + [anon_sym_AMP_AMP] = ACTIONS(1886), + [anon_sym_PIPE_PIPE] = ACTIONS(1886), + [anon_sym_LT] = ACTIONS(3056), + [anon_sym_GT] = ACTIONS(3056), + [anon_sym_GT_GT] = ACTIONS(1886), + [anon_sym_AMP_GT] = ACTIONS(3056), + [anon_sym_AMP_GT_GT] = ACTIONS(1886), + [anon_sym_LT_AMP] = ACTIONS(1886), + [anon_sym_GT_AMP] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(3056), + [anon_sym_DQUOTE] = ACTIONS(1886), + [anon_sym_DOLLAR] = ACTIONS(3056), + [sym_raw_string] = ACTIONS(1886), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1886), + [anon_sym_BQUOTE] = ACTIONS(1886), + [anon_sym_LT_LPAREN] = ACTIONS(1886), + [anon_sym_GT_LPAREN] = ACTIONS(1886), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3008), + [sym_word] = ACTIONS(3056), }, [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_file_descriptor] = ACTIONS(1923), + [sym__concat] = ACTIONS(1923), + [sym_variable_name] = ACTIONS(1923), + [anon_sym_PIPE] = ACTIONS(3061), + [anon_sym_RPAREN] = ACTIONS(1923), + [anon_sym_PIPE_AMP] = ACTIONS(1923), + [anon_sym_AMP_AMP] = ACTIONS(1923), + [anon_sym_PIPE_PIPE] = ACTIONS(1923), + [anon_sym_LT] = ACTIONS(3061), + [anon_sym_GT] = ACTIONS(3061), + [anon_sym_GT_GT] = ACTIONS(1923), + [anon_sym_AMP_GT] = ACTIONS(3061), + [anon_sym_AMP_GT_GT] = ACTIONS(1923), + [anon_sym_LT_AMP] = ACTIONS(1923), + [anon_sym_GT_AMP] = ACTIONS(1923), + [sym__special_characters] = ACTIONS(3061), + [anon_sym_DQUOTE] = ACTIONS(1923), + [anon_sym_DOLLAR] = ACTIONS(3061), + [sym_raw_string] = ACTIONS(1923), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1923), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1923), + [anon_sym_BQUOTE] = ACTIONS(1923), + [anon_sym_LT_LPAREN] = ACTIONS(1923), + [anon_sym_GT_LPAREN] = ACTIONS(1923), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3013), + [sym_word] = ACTIONS(3061), }, [2309] = { [sym_concatenation] = STATE(2928), @@ -63252,50 +63530,50 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(2927), [sym_command_substitution] = STATE(2927), [sym_process_substitution] = STATE(2927), - [anon_sym_RBRACE] = ACTIONS(6004), - [sym__special_characters] = ACTIONS(6006), - [anon_sym_DQUOTE] = ACTIONS(1924), - [anon_sym_DOLLAR] = ACTIONS(1926), - [sym_raw_string] = ACTIONS(6008), - [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), + [anon_sym_RBRACE] = ACTIONS(6068), + [sym__special_characters] = ACTIONS(6070), + [anon_sym_DQUOTE] = ACTIONS(1952), + [anon_sym_DOLLAR] = ACTIONS(1954), + [sym_raw_string] = ACTIONS(6072), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), + [anon_sym_BQUOTE] = ACTIONS(1962), + [anon_sym_LT_LPAREN] = ACTIONS(1964), + [anon_sym_GT_LPAREN] = ACTIONS(1964), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6010), + [sym_word] = ACTIONS(6074), }, [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_file_descriptor] = ACTIONS(1968), + [sym__concat] = ACTIONS(1968), + [sym_variable_name] = ACTIONS(1968), + [anon_sym_PIPE] = ACTIONS(3071), + [anon_sym_RPAREN] = ACTIONS(1968), + [anon_sym_PIPE_AMP] = ACTIONS(1968), + [anon_sym_AMP_AMP] = ACTIONS(1968), + [anon_sym_PIPE_PIPE] = ACTIONS(1968), + [anon_sym_LT] = ACTIONS(3071), + [anon_sym_GT] = ACTIONS(3071), + [anon_sym_GT_GT] = ACTIONS(1968), + [anon_sym_AMP_GT] = ACTIONS(3071), + [anon_sym_AMP_GT_GT] = ACTIONS(1968), + [anon_sym_LT_AMP] = ACTIONS(1968), + [anon_sym_GT_AMP] = ACTIONS(1968), + [sym__special_characters] = ACTIONS(3071), + [anon_sym_DQUOTE] = ACTIONS(1968), + [anon_sym_DOLLAR] = ACTIONS(3071), + [sym_raw_string] = ACTIONS(1968), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1968), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1968), + [anon_sym_BQUOTE] = ACTIONS(1968), + [anon_sym_LT_LPAREN] = ACTIONS(1968), + [anon_sym_GT_LPAREN] = ACTIONS(1968), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3023), + [sym_word] = ACTIONS(3071), }, [2311] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6012), + [sym_regex_without_right_brace] = ACTIONS(6076), }, [2312] = { [sym_concatenation] = STATE(451), @@ -63306,29 +63584,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6014), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6078), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2313] = { - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(6016), + [anon_sym_LBRACK] = ACTIONS(836), + [anon_sym_EQ] = ACTIONS(6080), [sym_comment] = ACTIONS(56), }, [2314] = { @@ -63340,26 +63618,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(2934), - [anon_sym_RBRACE] = ACTIONS(6018), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_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(6020), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6082), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(6084), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2315] = { [sym_concatenation] = STATE(451), @@ -63370,26 +63648,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(2937), - [anon_sym_RBRACE] = ACTIONS(6022), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_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(6024), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6086), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(6088), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2316] = { [sym_concatenation] = STATE(451), @@ -63400,58 +63678,58 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(2939), - [anon_sym_RBRACE] = ACTIONS(6004), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_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(6026), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6068), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(6090), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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_file_descriptor] = ACTIONS(2022), + [sym__concat] = ACTIONS(2022), + [sym_variable_name] = ACTIONS(2022), + [anon_sym_PIPE] = ACTIONS(3089), + [anon_sym_RPAREN] = ACTIONS(2022), + [anon_sym_PIPE_AMP] = ACTIONS(2022), + [anon_sym_AMP_AMP] = ACTIONS(2022), + [anon_sym_PIPE_PIPE] = ACTIONS(2022), + [anon_sym_LT] = ACTIONS(3089), + [anon_sym_GT] = ACTIONS(3089), + [anon_sym_GT_GT] = ACTIONS(2022), + [anon_sym_AMP_GT] = ACTIONS(3089), + [anon_sym_AMP_GT_GT] = ACTIONS(2022), + [anon_sym_LT_AMP] = ACTIONS(2022), + [anon_sym_GT_AMP] = ACTIONS(2022), + [sym__special_characters] = ACTIONS(3089), + [anon_sym_DQUOTE] = ACTIONS(2022), + [anon_sym_DOLLAR] = ACTIONS(3089), + [sym_raw_string] = ACTIONS(2022), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2022), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2022), + [anon_sym_BQUOTE] = ACTIONS(2022), + [anon_sym_LT_LPAREN] = ACTIONS(2022), + [anon_sym_GT_LPAREN] = ACTIONS(2022), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3041), + [sym_word] = ACTIONS(3089), }, [2318] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6028), + [sym_regex_without_right_brace] = ACTIONS(6092), }, [2319] = { [sym_concatenation] = STATE(451), @@ -63462,57 +63740,57 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6030), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6094), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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_file_descriptor] = ACTIONS(2030), + [sym__concat] = ACTIONS(2030), + [sym_variable_name] = ACTIONS(2030), + [anon_sym_PIPE] = ACTIONS(3095), + [anon_sym_RPAREN] = ACTIONS(2030), + [anon_sym_PIPE_AMP] = ACTIONS(2030), + [anon_sym_AMP_AMP] = ACTIONS(2030), + [anon_sym_PIPE_PIPE] = ACTIONS(2030), + [anon_sym_LT] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(3095), + [anon_sym_GT_GT] = ACTIONS(2030), + [anon_sym_AMP_GT] = ACTIONS(3095), + [anon_sym_AMP_GT_GT] = ACTIONS(2030), + [anon_sym_LT_AMP] = ACTIONS(2030), + [anon_sym_GT_AMP] = ACTIONS(2030), + [sym__special_characters] = ACTIONS(3095), + [anon_sym_DQUOTE] = ACTIONS(2030), + [anon_sym_DOLLAR] = ACTIONS(3095), + [sym_raw_string] = ACTIONS(2030), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2030), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2030), + [anon_sym_BQUOTE] = ACTIONS(2030), + [anon_sym_LT_LPAREN] = ACTIONS(2030), + [anon_sym_GT_LPAREN] = ACTIONS(2030), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3047), + [sym_word] = ACTIONS(3095), }, [2321] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6032), + [sym_regex_without_right_brace] = ACTIONS(6096), }, [2322] = { [sym_concatenation] = STATE(451), @@ -63523,140 +63801,140 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6004), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6068), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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_file_descriptor] = ACTIONS(2190), + [sym__concat] = ACTIONS(2190), + [sym_variable_name] = ACTIONS(2190), + [anon_sym_PIPE] = ACTIONS(3099), + [anon_sym_RPAREN] = ACTIONS(2190), + [anon_sym_PIPE_AMP] = ACTIONS(2190), + [anon_sym_AMP_AMP] = ACTIONS(2190), + [anon_sym_PIPE_PIPE] = ACTIONS(2190), + [anon_sym_LT] = ACTIONS(3099), + [anon_sym_GT] = ACTIONS(3099), + [anon_sym_GT_GT] = ACTIONS(2190), + [anon_sym_AMP_GT] = ACTIONS(3099), + [anon_sym_AMP_GT_GT] = ACTIONS(2190), + [anon_sym_LT_AMP] = ACTIONS(2190), + [anon_sym_GT_AMP] = ACTIONS(2190), + [sym__special_characters] = ACTIONS(3099), + [anon_sym_DQUOTE] = ACTIONS(2190), + [anon_sym_DOLLAR] = ACTIONS(3099), + [sym_raw_string] = ACTIONS(2190), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2190), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2190), + [anon_sym_BQUOTE] = ACTIONS(2190), + [anon_sym_LT_LPAREN] = ACTIONS(2190), + [anon_sym_GT_LPAREN] = ACTIONS(2190), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3051), + [sym_word] = ACTIONS(3099), }, [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_file_descriptor] = ACTIONS(2396), + [sym__concat] = ACTIONS(2396), + [sym_variable_name] = ACTIONS(2396), + [anon_sym_PIPE] = ACTIONS(3101), + [anon_sym_RPAREN] = ACTIONS(2396), + [anon_sym_PIPE_AMP] = ACTIONS(2396), + [anon_sym_AMP_AMP] = ACTIONS(2396), + [anon_sym_PIPE_PIPE] = ACTIONS(2396), + [anon_sym_LT] = ACTIONS(3101), + [anon_sym_GT] = ACTIONS(3101), + [anon_sym_GT_GT] = ACTIONS(2396), + [anon_sym_AMP_GT] = ACTIONS(3101), + [anon_sym_AMP_GT_GT] = ACTIONS(2396), + [anon_sym_LT_AMP] = ACTIONS(2396), + [anon_sym_GT_AMP] = ACTIONS(2396), + [sym__special_characters] = ACTIONS(3101), + [anon_sym_DQUOTE] = ACTIONS(2396), + [anon_sym_DOLLAR] = ACTIONS(3101), + [sym_raw_string] = ACTIONS(2396), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2396), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2396), + [anon_sym_BQUOTE] = ACTIONS(2396), + [anon_sym_LT_LPAREN] = ACTIONS(2396), + [anon_sym_GT_LPAREN] = ACTIONS(2396), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3053), + [sym_word] = ACTIONS(3101), }, [2325] = { [sym_do_group] = STATE(2944), - [anon_sym_do] = ACTIONS(6034), + [anon_sym_do] = ACTIONS(6098), [sym_comment] = ACTIONS(56), }, [2326] = { - [sym_file_descriptor] = ACTIONS(4237), - [anon_sym_PIPE] = ACTIONS(6036), - [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(6036), - [anon_sym_GT] = ACTIONS(6036), - [anon_sym_GT_GT] = ACTIONS(4237), - [anon_sym_AMP_GT] = ACTIONS(6036), - [anon_sym_AMP_GT_GT] = ACTIONS(4237), - [anon_sym_LT_AMP] = ACTIONS(4237), - [anon_sym_GT_AMP] = ACTIONS(4237), - [anon_sym_LT_LT] = ACTIONS(6036), - [anon_sym_LT_LT_DASH] = ACTIONS(4237), - [anon_sym_LT_LT_LT] = ACTIONS(4237), - [anon_sym_BQUOTE] = ACTIONS(4237), + [sym_file_descriptor] = ACTIONS(4295), + [anon_sym_PIPE] = ACTIONS(6100), + [anon_sym_RPAREN] = ACTIONS(4295), + [anon_sym_PIPE_AMP] = ACTIONS(4295), + [anon_sym_AMP_AMP] = ACTIONS(4295), + [anon_sym_PIPE_PIPE] = ACTIONS(4295), + [anon_sym_LT] = ACTIONS(6100), + [anon_sym_GT] = ACTIONS(6100), + [anon_sym_GT_GT] = ACTIONS(4295), + [anon_sym_AMP_GT] = ACTIONS(6100), + [anon_sym_AMP_GT_GT] = ACTIONS(4295), + [anon_sym_LT_AMP] = ACTIONS(4295), + [anon_sym_GT_AMP] = ACTIONS(4295), + [anon_sym_LT_LT] = ACTIONS(6100), + [anon_sym_LT_LT_DASH] = ACTIONS(4295), + [anon_sym_LT_LT_LT] = ACTIONS(4295), + [anon_sym_BQUOTE] = ACTIONS(4295), [sym_comment] = ACTIONS(56), }, [2327] = { - [anon_sym_PIPE] = ACTIONS(6038), - [anon_sym_RPAREN] = ACTIONS(6040), - [anon_sym_PIPE_AMP] = ACTIONS(6040), - [anon_sym_AMP_AMP] = ACTIONS(6040), - [anon_sym_PIPE_PIPE] = ACTIONS(6040), - [anon_sym_BQUOTE] = ACTIONS(6040), + [anon_sym_PIPE] = ACTIONS(6102), + [anon_sym_RPAREN] = ACTIONS(6104), + [anon_sym_PIPE_AMP] = ACTIONS(6104), + [anon_sym_AMP_AMP] = ACTIONS(6104), + [anon_sym_PIPE_PIPE] = ACTIONS(6104), + [anon_sym_BQUOTE] = ACTIONS(6104), [sym_comment] = ACTIONS(56), }, [2328] = { - [anon_sym_fi] = ACTIONS(6042), + [anon_sym_fi] = ACTIONS(6106), [sym_comment] = ACTIONS(56), }, [2329] = { [sym_elif_clause] = STATE(701), [sym_else_clause] = STATE(2946), [aux_sym_if_statement_repeat1] = STATE(1322), - [anon_sym_fi] = ACTIONS(6042), - [anon_sym_elif] = ACTIONS(2647), - [anon_sym_else] = ACTIONS(2649), + [anon_sym_fi] = ACTIONS(6106), + [anon_sym_elif] = ACTIONS(2691), + [anon_sym_else] = ACTIONS(2693), [sym_comment] = ACTIONS(56), }, [2330] = { - [anon_sym_PIPE] = ACTIONS(6044), - [anon_sym_RPAREN] = ACTIONS(6046), - [anon_sym_PIPE_AMP] = ACTIONS(6046), - [anon_sym_AMP_AMP] = ACTIONS(6046), - [anon_sym_PIPE_PIPE] = ACTIONS(6046), - [anon_sym_BQUOTE] = ACTIONS(6046), + [anon_sym_PIPE] = ACTIONS(6108), + [anon_sym_RPAREN] = ACTIONS(6110), + [anon_sym_PIPE_AMP] = ACTIONS(6110), + [anon_sym_AMP_AMP] = ACTIONS(6110), + [anon_sym_PIPE_PIPE] = ACTIONS(6110), + [anon_sym_BQUOTE] = ACTIONS(6110), [sym_comment] = ACTIONS(56), }, [2331] = { - [anon_sym_esac] = ACTIONS(6048), + [anon_sym_esac] = ACTIONS(6112), [sym_comment] = ACTIONS(56), }, [2332] = { @@ -63670,17 +63948,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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__special_characters] = ACTIONS(2697), + [anon_sym_DQUOTE] = ACTIONS(2699), + [anon_sym_DOLLAR] = ACTIONS(2701), + [sym_raw_string] = ACTIONS(2703), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2705), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2707), + [anon_sym_BQUOTE] = ACTIONS(2709), + [anon_sym_LT_LPAREN] = ACTIONS(2711), + [anon_sym_GT_LPAREN] = ACTIONS(2711), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4292), + [sym_word] = ACTIONS(4352), }, [2333] = { [sym_case_item] = STATE(1332), @@ -63693,30 +63971,30 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(1327), [sym_process_substitution] = STATE(1327), [aux_sym_case_statement_repeat1] = STATE(2950), - [anon_sym_esac] = ACTIONS(6050), - [sym__special_characters] = ACTIONS(2653), - [anon_sym_DQUOTE] = ACTIONS(2655), - [anon_sym_DOLLAR] = ACTIONS(2657), - [sym_raw_string] = ACTIONS(2659), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2661), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2663), - [anon_sym_BQUOTE] = ACTIONS(2665), - [anon_sym_LT_LPAREN] = ACTIONS(2667), - [anon_sym_GT_LPAREN] = ACTIONS(2667), + [anon_sym_esac] = ACTIONS(6114), + [sym__special_characters] = ACTIONS(2697), + [anon_sym_DQUOTE] = ACTIONS(2699), + [anon_sym_DOLLAR] = ACTIONS(2701), + [sym_raw_string] = ACTIONS(2703), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2705), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2707), + [anon_sym_BQUOTE] = ACTIONS(2709), + [anon_sym_LT_LPAREN] = ACTIONS(2711), + [anon_sym_GT_LPAREN] = ACTIONS(2711), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2669), + [sym_word] = ACTIONS(2713), }, [2334] = { - [anon_sym_PIPE] = ACTIONS(6052), - [anon_sym_RPAREN] = ACTIONS(6054), - [anon_sym_PIPE_AMP] = ACTIONS(6054), - [anon_sym_AMP_AMP] = ACTIONS(6054), - [anon_sym_PIPE_PIPE] = ACTIONS(6054), - [anon_sym_BQUOTE] = ACTIONS(6054), + [anon_sym_PIPE] = ACTIONS(6116), + [anon_sym_RPAREN] = ACTIONS(6118), + [anon_sym_PIPE_AMP] = ACTIONS(6118), + [anon_sym_AMP_AMP] = ACTIONS(6118), + [anon_sym_PIPE_PIPE] = ACTIONS(6118), + [anon_sym_BQUOTE] = ACTIONS(6118), [sym_comment] = ACTIONS(56), }, [2335] = { - [anon_sym_esac] = ACTIONS(6056), + [anon_sym_esac] = ACTIONS(6120), [sym_comment] = ACTIONS(56), }, [2336] = { @@ -63730,17 +64008,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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__special_characters] = ACTIONS(2697), + [anon_sym_DQUOTE] = ACTIONS(2699), + [anon_sym_DOLLAR] = ACTIONS(2701), + [sym_raw_string] = ACTIONS(2703), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2705), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2707), + [anon_sym_BQUOTE] = ACTIONS(2709), + [anon_sym_LT_LPAREN] = ACTIONS(2711), + [anon_sym_GT_LPAREN] = ACTIONS(2711), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4292), + [sym_word] = ACTIONS(4352), }, [2337] = { [sym_case_item] = STATE(1332), @@ -63753,51 +64031,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(1327), [sym_process_substitution] = STATE(1327), [aux_sym_case_statement_repeat1] = STATE(2954), - [anon_sym_esac] = ACTIONS(6058), - [sym__special_characters] = ACTIONS(2653), - [anon_sym_DQUOTE] = ACTIONS(2655), - [anon_sym_DOLLAR] = ACTIONS(2657), - [sym_raw_string] = ACTIONS(2659), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2661), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2663), - [anon_sym_BQUOTE] = ACTIONS(2665), - [anon_sym_LT_LPAREN] = ACTIONS(2667), - [anon_sym_GT_LPAREN] = ACTIONS(2667), + [anon_sym_esac] = ACTIONS(6122), + [sym__special_characters] = ACTIONS(2697), + [anon_sym_DQUOTE] = ACTIONS(2699), + [anon_sym_DOLLAR] = ACTIONS(2701), + [sym_raw_string] = ACTIONS(2703), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2705), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2707), + [anon_sym_BQUOTE] = ACTIONS(2709), + [anon_sym_LT_LPAREN] = ACTIONS(2711), + [anon_sym_GT_LPAREN] = ACTIONS(2711), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2669), + [sym_word] = ACTIONS(2713), }, [2338] = { [sym_file_redirect] = STATE(2955), - [sym_file_descriptor] = ACTIONS(3414), - [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_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_file_descriptor] = ACTIONS(3466), + [anon_sym_PIPE] = ACTIONS(6124), + [anon_sym_RPAREN] = ACTIONS(6126), + [anon_sym_PIPE_AMP] = ACTIONS(6126), + [anon_sym_AMP_AMP] = ACTIONS(6126), + [anon_sym_PIPE_PIPE] = ACTIONS(6126), + [anon_sym_LT] = ACTIONS(3472), + [anon_sym_GT] = ACTIONS(3472), + [anon_sym_GT_GT] = ACTIONS(3474), + [anon_sym_AMP_GT] = ACTIONS(3472), + [anon_sym_AMP_GT_GT] = ACTIONS(3474), + [anon_sym_LT_AMP] = ACTIONS(3474), + [anon_sym_GT_AMP] = ACTIONS(3474), [sym_comment] = ACTIONS(56), }, [2339] = { - [sym_file_descriptor] = ACTIONS(4330), - [anon_sym_PIPE] = ACTIONS(6064), - [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(6064), - [anon_sym_GT] = ACTIONS(6064), - [anon_sym_GT_GT] = ACTIONS(4330), - [anon_sym_AMP_GT] = ACTIONS(6064), - [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_file_descriptor] = ACTIONS(4390), + [anon_sym_PIPE] = ACTIONS(6128), + [anon_sym_RPAREN] = ACTIONS(4390), + [anon_sym_PIPE_AMP] = ACTIONS(4390), + [anon_sym_AMP_AMP] = ACTIONS(4390), + [anon_sym_PIPE_PIPE] = ACTIONS(4390), + [anon_sym_LT] = ACTIONS(6128), + [anon_sym_GT] = ACTIONS(6128), + [anon_sym_GT_GT] = ACTIONS(4390), + [anon_sym_AMP_GT] = ACTIONS(6128), + [anon_sym_AMP_GT_GT] = ACTIONS(4390), + [anon_sym_LT_AMP] = ACTIONS(4390), + [anon_sym_GT_AMP] = ACTIONS(4390), + [anon_sym_BQUOTE] = ACTIONS(4390), [sym_comment] = ACTIONS(56), }, [2340] = { @@ -63808,26 +64086,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(2957), [sym_command_substitution] = STATE(2957), [sym_process_substitution] = STATE(2957), - [sym__special_characters] = ACTIONS(6066), - [anon_sym_DQUOTE] = ACTIONS(4905), - [anon_sym_DOLLAR] = ACTIONS(4907), - [sym_raw_string] = ACTIONS(6068), - [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__special_characters] = ACTIONS(6130), + [anon_sym_DQUOTE] = ACTIONS(4967), + [anon_sym_DOLLAR] = ACTIONS(4969), + [sym_raw_string] = ACTIONS(6132), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4973), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4975), + [anon_sym_BQUOTE] = ACTIONS(4977), + [anon_sym_LT_LPAREN] = ACTIONS(4979), + [anon_sym_GT_LPAREN] = ACTIONS(4979), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6070), + [sym_word] = ACTIONS(6134), }, [2341] = { [aux_sym_concatenation_repeat1] = STATE(2960), - [sym__concat] = ACTIONS(6072), - [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__concat] = ACTIONS(6136), + [anon_sym_PIPE] = ACTIONS(758), + [anon_sym_RPAREN] = ACTIONS(754), + [anon_sym_PIPE_AMP] = ACTIONS(754), + [anon_sym_AMP_AMP] = ACTIONS(754), + [anon_sym_PIPE_PIPE] = ACTIONS(754), [sym_comment] = ACTIONS(56), }, [2342] = { @@ -63835,7 +64113,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(134), [sym_command_substitution] = STATE(134), [aux_sym_string_repeat1] = STATE(2962), - [anon_sym_DQUOTE] = ACTIONS(6074), + [anon_sym_DQUOTE] = ACTIONS(6138), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -63844,42 +64122,43 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(182), }, [2343] = { - [sym_string] = STATE(2965), - [anon_sym_DQUOTE] = ACTIONS(4905), - [anon_sym_DOLLAR] = ACTIONS(6076), - [anon_sym_POUND] = ACTIONS(6076), - [anon_sym_DASH] = ACTIONS(6076), + [sym_string] = STATE(2964), + [anon_sym_DQUOTE] = ACTIONS(4967), + [anon_sym_DOLLAR] = ACTIONS(6140), + [sym_raw_string] = ACTIONS(6142), + [anon_sym_POUND] = ACTIONS(6140), + [anon_sym_DASH] = ACTIONS(6140), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6078), - [anon_sym_STAR] = ACTIONS(6076), - [anon_sym_AT] = ACTIONS(6076), - [anon_sym_QMARK] = ACTIONS(6076), - [anon_sym_0] = ACTIONS(6080), - [anon_sym__] = ACTIONS(6080), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6144), + [anon_sym_STAR] = ACTIONS(6140), + [anon_sym_AT] = ACTIONS(6140), + [anon_sym_QMARK] = ACTIONS(6140), + [anon_sym_0] = ACTIONS(6146), + [anon_sym__] = ACTIONS(6146), }, [2344] = { [aux_sym_concatenation_repeat1] = STATE(2960), - [sym__concat] = ACTIONS(6072), - [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__concat] = ACTIONS(6136), + [anon_sym_PIPE] = ACTIONS(772), + [anon_sym_RPAREN] = ACTIONS(770), + [anon_sym_PIPE_AMP] = ACTIONS(770), + [anon_sym_AMP_AMP] = ACTIONS(770), + [anon_sym_PIPE_PIPE] = ACTIONS(770), [sym_comment] = ACTIONS(56), }, [2345] = { [sym_subscript] = STATE(2970), - [sym_variable_name] = ACTIONS(6082), - [anon_sym_DOLLAR] = ACTIONS(6084), - [anon_sym_POUND] = ACTIONS(6086), - [anon_sym_DASH] = ACTIONS(6084), + [sym_variable_name] = ACTIONS(6148), + [anon_sym_DOLLAR] = ACTIONS(6150), + [anon_sym_POUND] = ACTIONS(6152), + [anon_sym_DASH] = ACTIONS(6150), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6088), - [anon_sym_STAR] = ACTIONS(6084), - [anon_sym_AT] = ACTIONS(6084), - [anon_sym_QMARK] = ACTIONS(6084), - [anon_sym_0] = ACTIONS(6090), - [anon_sym__] = ACTIONS(6090), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6154), + [anon_sym_STAR] = ACTIONS(6150), + [anon_sym_AT] = ACTIONS(6150), + [anon_sym_QMARK] = ACTIONS(6150), + [anon_sym_0] = ACTIONS(6156), + [anon_sym__] = ACTIONS(6156), }, [2346] = { [sym_for_statement] = STATE(2971), @@ -63907,22 +64186,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(264), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(268), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -63930,17 +64209,17 @@ 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(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__special_characters] = ACTIONS(286), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(300), + [sym_word] = ACTIONS(302), }, [2347] = { [sym_for_statement] = STATE(2973), @@ -63968,22 +64247,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(304), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(306), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(308), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_LBRACK_LBRACK] = ACTIONS(312), + [anon_sym_declare] = ACTIONS(314), + [anon_sym_typeset] = ACTIONS(314), + [anon_sym_export] = ACTIONS(314), + [anon_sym_readonly] = ACTIONS(314), + [anon_sym_local] = ACTIONS(314), + [anon_sym_unset] = ACTIONS(316), + [anon_sym_unsetenv] = ACTIONS(316), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -63991,17 +64270,17 @@ 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(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__special_characters] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [anon_sym_DOLLAR] = ACTIONS(322), + [sym_raw_string] = ACTIONS(324), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), + [anon_sym_BQUOTE] = ACTIONS(330), + [anon_sym_LT_LPAREN] = ACTIONS(332), + [anon_sym_GT_LPAREN] = ACTIONS(332), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(332), + [sym_word] = ACTIONS(334), }, [2348] = { [sym_for_statement] = STATE(2975), @@ -64029,22 +64308,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(264), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(268), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -64052,55 +64331,55 @@ 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(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__special_characters] = ACTIONS(286), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(300), + [sym_word] = ACTIONS(302), }, [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), + [anon_sym_PIPE] = ACTIONS(772), + [anon_sym_RPAREN] = ACTIONS(770), + [anon_sym_PIPE_AMP] = ACTIONS(770), + [anon_sym_AMP_AMP] = ACTIONS(770), + [anon_sym_PIPE_PIPE] = ACTIONS(770), + [anon_sym_BQUOTE] = ACTIONS(770), [sym_comment] = ACTIONS(56), }, [2350] = { - [anon_sym_PIPE] = ACTIONS(6092), - [anon_sym_RPAREN] = ACTIONS(6094), - [anon_sym_PIPE_AMP] = ACTIONS(6094), - [anon_sym_AMP_AMP] = ACTIONS(6094), - [anon_sym_PIPE_PIPE] = ACTIONS(6094), - [anon_sym_BQUOTE] = ACTIONS(6094), + [anon_sym_PIPE] = ACTIONS(6158), + [anon_sym_RPAREN] = ACTIONS(6160), + [anon_sym_PIPE_AMP] = ACTIONS(6160), + [anon_sym_AMP_AMP] = ACTIONS(6160), + [anon_sym_PIPE_PIPE] = ACTIONS(6160), + [anon_sym_BQUOTE] = ACTIONS(6160), [sym_comment] = ACTIONS(56), }, [2351] = { - [sym_variable_name] = ACTIONS(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_variable_name] = ACTIONS(2557), + [anon_sym_PIPE] = ACTIONS(4895), + [anon_sym_RPAREN] = ACTIONS(2557), + [anon_sym_PIPE_AMP] = ACTIONS(2557), + [anon_sym_AMP_AMP] = ACTIONS(2557), + [anon_sym_PIPE_PIPE] = ACTIONS(2557), + [sym__special_characters] = ACTIONS(4895), + [anon_sym_DQUOTE] = ACTIONS(2557), + [anon_sym_DOLLAR] = ACTIONS(4895), + [sym_raw_string] = ACTIONS(2557), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2557), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2557), + [anon_sym_BQUOTE] = ACTIONS(2557), + [anon_sym_LT_LPAREN] = ACTIONS(2557), + [anon_sym_GT_LPAREN] = ACTIONS(2557), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4833), - [sym_word] = ACTIONS(2519), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4895), + [sym_word] = ACTIONS(2559), }, [2352] = { [sym_concatenation] = STATE(660), @@ -64111,54 +64390,54 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(655), [sym_process_substitution] = STATE(655), [aux_sym_for_statement_repeat1] = STATE(1269), - [anon_sym_RPAREN] = ACTIONS(6096), - [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), + [anon_sym_RPAREN] = ACTIONS(6162), + [sym__special_characters] = ACTIONS(1283), + [anon_sym_DQUOTE] = ACTIONS(1285), + [anon_sym_DOLLAR] = ACTIONS(1287), + [sym_raw_string] = ACTIONS(1289), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1291), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1293), + [anon_sym_BQUOTE] = ACTIONS(1295), + [anon_sym_LT_LPAREN] = ACTIONS(1297), + [anon_sym_GT_LPAREN] = ACTIONS(1297), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1277), + [sym_word] = ACTIONS(1299), }, [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__concat] = ACTIONS(3283), + [sym_variable_name] = ACTIONS(3283), + [anon_sym_PIPE] = ACTIONS(4602), + [anon_sym_RPAREN] = ACTIONS(3283), + [anon_sym_PIPE_AMP] = ACTIONS(3283), + [anon_sym_AMP_AMP] = ACTIONS(3283), + [anon_sym_PIPE_PIPE] = ACTIONS(3283), + [sym__special_characters] = ACTIONS(4602), + [anon_sym_DQUOTE] = ACTIONS(3283), + [anon_sym_DOLLAR] = ACTIONS(4602), + [sym_raw_string] = ACTIONS(3283), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3283), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3283), + [anon_sym_BQUOTE] = ACTIONS(3283), + [anon_sym_LT_LPAREN] = ACTIONS(3283), + [anon_sym_GT_LPAREN] = ACTIONS(3283), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4540), - [sym_word] = ACTIONS(3237), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4602), + [sym_word] = ACTIONS(3285), }, [2354] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(6098), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(6164), [sym_comment] = ACTIONS(56), }, [2355] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(6100), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(6166), [sym_comment] = ACTIONS(56), }, [2356] = { - [anon_sym_RBRACE] = ACTIONS(6100), + [anon_sym_RBRACE] = ACTIONS(6166), [sym_comment] = ACTIONS(56), }, [2357] = { @@ -64170,46 +64449,46 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(2981), - [anon_sym_RBRACE] = ACTIONS(6102), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6168), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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__concat] = ACTIONS(3347), + [sym_variable_name] = ACTIONS(3347), + [anon_sym_PIPE] = ACTIONS(4610), + [anon_sym_RPAREN] = ACTIONS(3347), + [anon_sym_PIPE_AMP] = ACTIONS(3347), + [anon_sym_AMP_AMP] = ACTIONS(3347), + [anon_sym_PIPE_PIPE] = ACTIONS(3347), + [sym__special_characters] = ACTIONS(4610), + [anon_sym_DQUOTE] = ACTIONS(3347), + [anon_sym_DOLLAR] = ACTIONS(4610), + [sym_raw_string] = ACTIONS(3347), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3347), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3347), + [anon_sym_BQUOTE] = ACTIONS(3347), + [anon_sym_LT_LPAREN] = ACTIONS(3347), + [anon_sym_GT_LPAREN] = ACTIONS(3347), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4548), - [sym_word] = ACTIONS(3299), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4610), + [sym_word] = ACTIONS(3349), }, [2359] = { [sym_concatenation] = STATE(2984), @@ -64219,43 +64498,43 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(2983), [sym_command_substitution] = STATE(2983), [sym_process_substitution] = STATE(2983), - [anon_sym_RBRACE] = ACTIONS(6100), - [sym__special_characters] = ACTIONS(6104), - [anon_sym_DQUOTE] = ACTIONS(1924), - [anon_sym_DOLLAR] = ACTIONS(1926), - [sym_raw_string] = ACTIONS(6106), - [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), + [anon_sym_RBRACE] = ACTIONS(6166), + [sym__special_characters] = ACTIONS(6170), + [anon_sym_DQUOTE] = ACTIONS(1952), + [anon_sym_DOLLAR] = ACTIONS(1954), + [sym_raw_string] = ACTIONS(6172), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), + [anon_sym_BQUOTE] = ACTIONS(1962), + [anon_sym_LT_LPAREN] = ACTIONS(1964), + [anon_sym_GT_LPAREN] = ACTIONS(1964), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6108), + [sym_word] = ACTIONS(6174), }, [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__concat] = ACTIONS(3392), + [sym_variable_name] = ACTIONS(3392), + [anon_sym_PIPE] = ACTIONS(4618), + [anon_sym_RPAREN] = ACTIONS(3392), + [anon_sym_PIPE_AMP] = ACTIONS(3392), + [anon_sym_AMP_AMP] = ACTIONS(3392), + [anon_sym_PIPE_PIPE] = ACTIONS(3392), + [sym__special_characters] = ACTIONS(4618), + [anon_sym_DQUOTE] = ACTIONS(3392), + [anon_sym_DOLLAR] = ACTIONS(4618), + [sym_raw_string] = ACTIONS(3392), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3392), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3392), + [anon_sym_BQUOTE] = ACTIONS(3392), + [anon_sym_LT_LPAREN] = ACTIONS(3392), + [anon_sym_GT_LPAREN] = ACTIONS(3392), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4556), - [sym_word] = ACTIONS(3344), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4618), + [sym_word] = ACTIONS(3394), }, [2361] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6110), + [sym_regex_without_right_brace] = ACTIONS(6176), }, [2362] = { [sym_concatenation] = STATE(451), @@ -64266,50 +64545,50 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6112), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6178), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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__concat] = ACTIONS(3400), + [sym_variable_name] = ACTIONS(3400), + [anon_sym_PIPE] = ACTIONS(4624), + [anon_sym_RPAREN] = ACTIONS(3400), + [anon_sym_PIPE_AMP] = ACTIONS(3400), + [anon_sym_AMP_AMP] = ACTIONS(3400), + [anon_sym_PIPE_PIPE] = ACTIONS(3400), + [sym__special_characters] = ACTIONS(4624), + [anon_sym_DQUOTE] = ACTIONS(3400), + [anon_sym_DOLLAR] = ACTIONS(4624), + [sym_raw_string] = ACTIONS(3400), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3400), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3400), + [anon_sym_BQUOTE] = ACTIONS(3400), + [anon_sym_LT_LPAREN] = ACTIONS(3400), + [anon_sym_GT_LPAREN] = ACTIONS(3400), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4562), - [sym_word] = ACTIONS(3352), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4624), + [sym_word] = ACTIONS(3402), }, [2364] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6114), + [sym_regex_without_right_brace] = ACTIONS(6180), }, [2365] = { [sym_concatenation] = STATE(451), @@ -64320,29 +64599,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [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), + [anon_sym_RBRACE] = ACTIONS(6182), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2366] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6118), + [sym_regex_without_right_brace] = ACTIONS(6184), }, [2367] = { [sym_concatenation] = STATE(451), @@ -64353,25 +64632,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6100), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6166), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2368] = { [sym_concatenation] = STATE(451), @@ -64382,46 +64661,46 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(2991), - [anon_sym_RBRACE] = ACTIONS(6120), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6186), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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__concat] = ACTIONS(3412), + [sym_variable_name] = ACTIONS(3412), + [anon_sym_PIPE] = ACTIONS(4634), + [anon_sym_RPAREN] = ACTIONS(3412), + [anon_sym_PIPE_AMP] = ACTIONS(3412), + [anon_sym_AMP_AMP] = ACTIONS(3412), + [anon_sym_PIPE_PIPE] = ACTIONS(3412), + [sym__special_characters] = ACTIONS(4634), + [anon_sym_DQUOTE] = ACTIONS(3412), + [anon_sym_DOLLAR] = ACTIONS(4634), + [sym_raw_string] = ACTIONS(3412), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3412), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3412), + [anon_sym_BQUOTE] = ACTIONS(3412), + [anon_sym_LT_LPAREN] = ACTIONS(3412), + [anon_sym_GT_LPAREN] = ACTIONS(3412), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4572), - [sym_word] = ACTIONS(3364), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4634), + [sym_word] = ACTIONS(3414), }, [2370] = { [sym_concatenation] = STATE(451), @@ -64432,60 +64711,60 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(2993), - [anon_sym_RBRACE] = ACTIONS(6122), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6188), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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__concat] = ACTIONS(3283), + [anon_sym_PIPE] = ACTIONS(4602), + [anon_sym_RPAREN] = ACTIONS(3283), + [anon_sym_PIPE_AMP] = ACTIONS(3283), + [anon_sym_AMP_AMP] = ACTIONS(3283), + [anon_sym_PIPE_PIPE] = ACTIONS(3283), + [sym__special_characters] = ACTIONS(4602), + [anon_sym_DQUOTE] = ACTIONS(3283), + [anon_sym_DOLLAR] = ACTIONS(4602), + [sym_raw_string] = ACTIONS(3283), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3283), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3283), + [anon_sym_BQUOTE] = ACTIONS(3283), + [anon_sym_LT_LPAREN] = ACTIONS(3283), + [anon_sym_GT_LPAREN] = ACTIONS(3283), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4540), - [sym_word] = ACTIONS(3237), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4602), + [sym_word] = ACTIONS(3285), }, [2372] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(6124), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(6190), [sym_comment] = ACTIONS(56), }, [2373] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(6126), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(6192), [sym_comment] = ACTIONS(56), }, [2374] = { - [anon_sym_RBRACE] = ACTIONS(6126), + [anon_sym_RBRACE] = ACTIONS(6192), [sym_comment] = ACTIONS(56), }, [2375] = { @@ -64497,45 +64776,45 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(2997), - [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), + [anon_sym_RBRACE] = ACTIONS(6194), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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__concat] = ACTIONS(3347), + [anon_sym_PIPE] = ACTIONS(4610), + [anon_sym_RPAREN] = ACTIONS(3347), + [anon_sym_PIPE_AMP] = ACTIONS(3347), + [anon_sym_AMP_AMP] = ACTIONS(3347), + [anon_sym_PIPE_PIPE] = ACTIONS(3347), + [sym__special_characters] = ACTIONS(4610), + [anon_sym_DQUOTE] = ACTIONS(3347), + [anon_sym_DOLLAR] = ACTIONS(4610), + [sym_raw_string] = ACTIONS(3347), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3347), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3347), + [anon_sym_BQUOTE] = ACTIONS(3347), + [anon_sym_LT_LPAREN] = ACTIONS(3347), + [anon_sym_GT_LPAREN] = ACTIONS(3347), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4548), - [sym_word] = ACTIONS(3299), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4610), + [sym_word] = ACTIONS(3349), }, [2377] = { [sym_concatenation] = STATE(3000), @@ -64545,42 +64824,42 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(2999), [sym_command_substitution] = STATE(2999), [sym_process_substitution] = STATE(2999), - [anon_sym_RBRACE] = ACTIONS(6126), - [sym__special_characters] = ACTIONS(6130), - [anon_sym_DQUOTE] = ACTIONS(1924), - [anon_sym_DOLLAR] = ACTIONS(1926), - [sym_raw_string] = ACTIONS(6132), - [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), + [anon_sym_RBRACE] = ACTIONS(6192), + [sym__special_characters] = ACTIONS(6196), + [anon_sym_DQUOTE] = ACTIONS(1952), + [anon_sym_DOLLAR] = ACTIONS(1954), + [sym_raw_string] = ACTIONS(6198), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), + [anon_sym_BQUOTE] = ACTIONS(1962), + [anon_sym_LT_LPAREN] = ACTIONS(1964), + [anon_sym_GT_LPAREN] = ACTIONS(1964), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6134), + [sym_word] = ACTIONS(6200), }, [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__concat] = ACTIONS(3392), + [anon_sym_PIPE] = ACTIONS(4618), + [anon_sym_RPAREN] = ACTIONS(3392), + [anon_sym_PIPE_AMP] = ACTIONS(3392), + [anon_sym_AMP_AMP] = ACTIONS(3392), + [anon_sym_PIPE_PIPE] = ACTIONS(3392), + [sym__special_characters] = ACTIONS(4618), + [anon_sym_DQUOTE] = ACTIONS(3392), + [anon_sym_DOLLAR] = ACTIONS(4618), + [sym_raw_string] = ACTIONS(3392), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3392), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3392), + [anon_sym_BQUOTE] = ACTIONS(3392), + [anon_sym_LT_LPAREN] = ACTIONS(3392), + [anon_sym_GT_LPAREN] = ACTIONS(3392), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4556), - [sym_word] = ACTIONS(3344), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4618), + [sym_word] = ACTIONS(3394), }, [2379] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6136), + [sym_regex_without_right_brace] = ACTIONS(6202), }, [2380] = { [sym_concatenation] = STATE(451), @@ -64591,49 +64870,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6138), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6204), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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__concat] = ACTIONS(3400), + [anon_sym_PIPE] = ACTIONS(4624), + [anon_sym_RPAREN] = ACTIONS(3400), + [anon_sym_PIPE_AMP] = ACTIONS(3400), + [anon_sym_AMP_AMP] = ACTIONS(3400), + [anon_sym_PIPE_PIPE] = ACTIONS(3400), + [sym__special_characters] = ACTIONS(4624), + [anon_sym_DQUOTE] = ACTIONS(3400), + [anon_sym_DOLLAR] = ACTIONS(4624), + [sym_raw_string] = ACTIONS(3400), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3400), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3400), + [anon_sym_BQUOTE] = ACTIONS(3400), + [anon_sym_LT_LPAREN] = ACTIONS(3400), + [anon_sym_GT_LPAREN] = ACTIONS(3400), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4562), - [sym_word] = ACTIONS(3352), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4624), + [sym_word] = ACTIONS(3402), }, [2382] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6140), + [sym_regex_without_right_brace] = ACTIONS(6206), }, [2383] = { [sym_concatenation] = STATE(451), @@ -64644,29 +64923,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6142), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6208), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2384] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6144), + [sym_regex_without_right_brace] = ACTIONS(6210), }, [2385] = { [sym_concatenation] = STATE(451), @@ -64677,25 +64956,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [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), + [anon_sym_RBRACE] = ACTIONS(6192), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2386] = { [sym_concatenation] = STATE(451), @@ -64706,45 +64985,45 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3007), - [anon_sym_RBRACE] = ACTIONS(6146), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6212), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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__concat] = ACTIONS(3412), + [anon_sym_PIPE] = ACTIONS(4634), + [anon_sym_RPAREN] = ACTIONS(3412), + [anon_sym_PIPE_AMP] = ACTIONS(3412), + [anon_sym_AMP_AMP] = ACTIONS(3412), + [anon_sym_PIPE_PIPE] = ACTIONS(3412), + [sym__special_characters] = ACTIONS(4634), + [anon_sym_DQUOTE] = ACTIONS(3412), + [anon_sym_DOLLAR] = ACTIONS(4634), + [sym_raw_string] = ACTIONS(3412), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3412), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3412), + [anon_sym_BQUOTE] = ACTIONS(3412), + [anon_sym_LT_LPAREN] = ACTIONS(3412), + [anon_sym_GT_LPAREN] = ACTIONS(3412), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4572), - [sym_word] = ACTIONS(3364), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4634), + [sym_word] = ACTIONS(3414), }, [2388] = { [sym_concatenation] = STATE(451), @@ -64755,118 +65034,121 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3009), - [anon_sym_RBRACE] = ACTIONS(6148), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6214), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2389] = { - [sym_file_descriptor] = ACTIONS(4728), - [sym__concat] = ACTIONS(4728), - [anon_sym_PIPE] = ACTIONS(5780), - [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(5780), - [anon_sym_LT] = ACTIONS(5780), - [anon_sym_GT] = ACTIONS(5780), - [anon_sym_GT_GT] = ACTIONS(4728), - [anon_sym_AMP_GT] = ACTIONS(5780), - [anon_sym_AMP_GT_GT] = ACTIONS(4728), - [anon_sym_LT_AMP] = ACTIONS(4728), - [anon_sym_GT_AMP] = ACTIONS(4728), - [anon_sym_LT_LT] = ACTIONS(5780), - [anon_sym_LT_LT_DASH] = ACTIONS(4728), - [anon_sym_LT_LT_LT] = ACTIONS(4728), - [sym__special_characters] = ACTIONS(5780), - [anon_sym_DQUOTE] = ACTIONS(4728), - [anon_sym_DOLLAR] = ACTIONS(5780), - [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_file_descriptor] = ACTIONS(4790), + [sym__concat] = ACTIONS(4790), + [anon_sym_PIPE] = ACTIONS(5844), + [anon_sym_RPAREN] = ACTIONS(4790), + [anon_sym_PIPE_AMP] = ACTIONS(4790), + [anon_sym_AMP_AMP] = ACTIONS(4790), + [anon_sym_PIPE_PIPE] = ACTIONS(4790), + [anon_sym_EQ_TILDE] = ACTIONS(5844), + [anon_sym_EQ_EQ] = ACTIONS(5844), + [anon_sym_LT] = ACTIONS(5844), + [anon_sym_GT] = ACTIONS(5844), + [anon_sym_GT_GT] = ACTIONS(4790), + [anon_sym_AMP_GT] = ACTIONS(5844), + [anon_sym_AMP_GT_GT] = ACTIONS(4790), + [anon_sym_LT_AMP] = ACTIONS(4790), + [anon_sym_GT_AMP] = ACTIONS(4790), + [anon_sym_LT_LT] = ACTIONS(5844), + [anon_sym_LT_LT_DASH] = ACTIONS(4790), + [anon_sym_LT_LT_LT] = ACTIONS(4790), + [sym__special_characters] = ACTIONS(5844), + [anon_sym_DQUOTE] = ACTIONS(4790), + [anon_sym_DOLLAR] = ACTIONS(5844), + [sym_raw_string] = ACTIONS(4790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4790), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4790), + [anon_sym_BQUOTE] = ACTIONS(4790), + [anon_sym_LT_LPAREN] = ACTIONS(4790), + [anon_sym_GT_LPAREN] = ACTIONS(4790), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4730), + [sym_word] = ACTIONS(4792), }, [2390] = { - [sym_file_descriptor] = ACTIONS(4734), - [sym__concat] = ACTIONS(4734), - [anon_sym_PIPE] = ACTIONS(5782), - [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(5782), - [anon_sym_LT] = ACTIONS(5782), - [anon_sym_GT] = ACTIONS(5782), - [anon_sym_GT_GT] = ACTIONS(4734), - [anon_sym_AMP_GT] = ACTIONS(5782), - [anon_sym_AMP_GT_GT] = ACTIONS(4734), - [anon_sym_LT_AMP] = ACTIONS(4734), - [anon_sym_GT_AMP] = ACTIONS(4734), - [anon_sym_LT_LT] = ACTIONS(5782), - [anon_sym_LT_LT_DASH] = ACTIONS(4734), - [anon_sym_LT_LT_LT] = ACTIONS(4734), - [sym__special_characters] = ACTIONS(5782), - [anon_sym_DQUOTE] = ACTIONS(4734), - [anon_sym_DOLLAR] = ACTIONS(5782), - [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_file_descriptor] = ACTIONS(4796), + [sym__concat] = ACTIONS(4796), + [anon_sym_PIPE] = ACTIONS(5846), + [anon_sym_RPAREN] = ACTIONS(4796), + [anon_sym_PIPE_AMP] = ACTIONS(4796), + [anon_sym_AMP_AMP] = ACTIONS(4796), + [anon_sym_PIPE_PIPE] = ACTIONS(4796), + [anon_sym_EQ_TILDE] = ACTIONS(5846), + [anon_sym_EQ_EQ] = ACTIONS(5846), + [anon_sym_LT] = ACTIONS(5846), + [anon_sym_GT] = ACTIONS(5846), + [anon_sym_GT_GT] = ACTIONS(4796), + [anon_sym_AMP_GT] = ACTIONS(5846), + [anon_sym_AMP_GT_GT] = ACTIONS(4796), + [anon_sym_LT_AMP] = ACTIONS(4796), + [anon_sym_GT_AMP] = ACTIONS(4796), + [anon_sym_LT_LT] = ACTIONS(5846), + [anon_sym_LT_LT_DASH] = ACTIONS(4796), + [anon_sym_LT_LT_LT] = ACTIONS(4796), + [sym__special_characters] = ACTIONS(5846), + [anon_sym_DQUOTE] = ACTIONS(4796), + [anon_sym_DOLLAR] = ACTIONS(5846), + [sym_raw_string] = ACTIONS(4796), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4796), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4796), + [anon_sym_BQUOTE] = ACTIONS(4796), + [anon_sym_LT_LPAREN] = ACTIONS(4796), + [anon_sym_GT_LPAREN] = ACTIONS(4796), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4736), + [sym_word] = ACTIONS(4798), }, [2391] = { - [sym_file_descriptor] = ACTIONS(4797), - [sym__concat] = ACTIONS(4797), - [anon_sym_PIPE] = ACTIONS(5784), - [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(5784), - [anon_sym_LT] = ACTIONS(5784), - [anon_sym_GT] = ACTIONS(5784), - [anon_sym_GT_GT] = ACTIONS(4797), - [anon_sym_AMP_GT] = ACTIONS(5784), - [anon_sym_AMP_GT_GT] = ACTIONS(4797), - [anon_sym_LT_AMP] = ACTIONS(4797), - [anon_sym_GT_AMP] = ACTIONS(4797), - [anon_sym_LT_LT] = ACTIONS(5784), - [anon_sym_LT_LT_DASH] = ACTIONS(4797), - [anon_sym_LT_LT_LT] = ACTIONS(4797), - [sym__special_characters] = ACTIONS(5784), - [anon_sym_DQUOTE] = ACTIONS(4797), - [anon_sym_DOLLAR] = ACTIONS(5784), - [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_file_descriptor] = ACTIONS(4859), + [sym__concat] = ACTIONS(4859), + [anon_sym_PIPE] = ACTIONS(5848), + [anon_sym_RPAREN] = ACTIONS(4859), + [anon_sym_PIPE_AMP] = ACTIONS(4859), + [anon_sym_AMP_AMP] = ACTIONS(4859), + [anon_sym_PIPE_PIPE] = ACTIONS(4859), + [anon_sym_EQ_TILDE] = ACTIONS(5848), + [anon_sym_EQ_EQ] = ACTIONS(5848), + [anon_sym_LT] = ACTIONS(5848), + [anon_sym_GT] = ACTIONS(5848), + [anon_sym_GT_GT] = ACTIONS(4859), + [anon_sym_AMP_GT] = ACTIONS(5848), + [anon_sym_AMP_GT_GT] = ACTIONS(4859), + [anon_sym_LT_AMP] = ACTIONS(4859), + [anon_sym_GT_AMP] = ACTIONS(4859), + [anon_sym_LT_LT] = ACTIONS(5848), + [anon_sym_LT_LT_DASH] = ACTIONS(4859), + [anon_sym_LT_LT_LT] = ACTIONS(4859), + [sym__special_characters] = ACTIONS(5848), + [anon_sym_DQUOTE] = ACTIONS(4859), + [anon_sym_DOLLAR] = ACTIONS(5848), + [sym_raw_string] = ACTIONS(4859), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4859), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4859), + [anon_sym_BQUOTE] = ACTIONS(4859), + [anon_sym_LT_LPAREN] = ACTIONS(4859), + [anon_sym_GT_LPAREN] = ACTIONS(4859), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4799), + [sym_word] = ACTIONS(4861), }, [2392] = { [sym_concatenation] = STATE(451), @@ -64877,40 +65159,40 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6150), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6216), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2393] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(6152), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(6218), [sym_comment] = ACTIONS(56), }, [2394] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(6154), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(6220), [sym_comment] = ACTIONS(56), }, [2395] = { - [anon_sym_RBRACE] = ACTIONS(6154), + [anon_sym_RBRACE] = ACTIONS(6220), [sym_comment] = ACTIONS(56), }, [2396] = { @@ -64922,56 +65204,57 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3014), - [anon_sym_RBRACE] = ACTIONS(6156), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6222), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2397] = { - [sym_file_descriptor] = ACTIONS(4809), - [sym__concat] = ACTIONS(4809), - [anon_sym_PIPE] = ACTIONS(5794), - [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(5794), - [anon_sym_LT] = ACTIONS(5794), - [anon_sym_GT] = ACTIONS(5794), - [anon_sym_GT_GT] = ACTIONS(4809), - [anon_sym_AMP_GT] = ACTIONS(5794), - [anon_sym_AMP_GT_GT] = ACTIONS(4809), - [anon_sym_LT_AMP] = ACTIONS(4809), - [anon_sym_GT_AMP] = ACTIONS(4809), - [anon_sym_LT_LT] = ACTIONS(5794), - [anon_sym_LT_LT_DASH] = ACTIONS(4809), - [anon_sym_LT_LT_LT] = ACTIONS(4809), - [sym__special_characters] = ACTIONS(5794), - [anon_sym_DQUOTE] = ACTIONS(4809), - [anon_sym_DOLLAR] = ACTIONS(5794), - [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_file_descriptor] = ACTIONS(4871), + [sym__concat] = ACTIONS(4871), + [anon_sym_PIPE] = ACTIONS(5858), + [anon_sym_RPAREN] = ACTIONS(4871), + [anon_sym_PIPE_AMP] = ACTIONS(4871), + [anon_sym_AMP_AMP] = ACTIONS(4871), + [anon_sym_PIPE_PIPE] = ACTIONS(4871), + [anon_sym_EQ_TILDE] = ACTIONS(5858), + [anon_sym_EQ_EQ] = ACTIONS(5858), + [anon_sym_LT] = ACTIONS(5858), + [anon_sym_GT] = ACTIONS(5858), + [anon_sym_GT_GT] = ACTIONS(4871), + [anon_sym_AMP_GT] = ACTIONS(5858), + [anon_sym_AMP_GT_GT] = ACTIONS(4871), + [anon_sym_LT_AMP] = ACTIONS(4871), + [anon_sym_GT_AMP] = ACTIONS(4871), + [anon_sym_LT_LT] = ACTIONS(5858), + [anon_sym_LT_LT_DASH] = ACTIONS(4871), + [anon_sym_LT_LT_LT] = ACTIONS(4871), + [sym__special_characters] = ACTIONS(5858), + [anon_sym_DQUOTE] = ACTIONS(4871), + [anon_sym_DOLLAR] = ACTIONS(5858), + [sym_raw_string] = ACTIONS(4871), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4871), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4871), + [anon_sym_BQUOTE] = ACTIONS(4871), + [anon_sym_LT_LPAREN] = ACTIONS(4871), + [anon_sym_GT_LPAREN] = ACTIONS(4871), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4811), + [sym_word] = ACTIONS(4873), }, [2398] = { [sym_concatenation] = STATE(451), @@ -64982,56 +65265,57 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3016), - [anon_sym_RBRACE] = ACTIONS(6158), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6224), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2399] = { - [sym_file_descriptor] = ACTIONS(4815), - [sym__concat] = ACTIONS(4815), - [anon_sym_PIPE] = ACTIONS(5798), - [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(5798), - [anon_sym_LT] = ACTIONS(5798), - [anon_sym_GT] = ACTIONS(5798), - [anon_sym_GT_GT] = ACTIONS(4815), - [anon_sym_AMP_GT] = ACTIONS(5798), - [anon_sym_AMP_GT_GT] = ACTIONS(4815), - [anon_sym_LT_AMP] = ACTIONS(4815), - [anon_sym_GT_AMP] = ACTIONS(4815), - [anon_sym_LT_LT] = ACTIONS(5798), - [anon_sym_LT_LT_DASH] = ACTIONS(4815), - [anon_sym_LT_LT_LT] = ACTIONS(4815), - [sym__special_characters] = ACTIONS(5798), - [anon_sym_DQUOTE] = ACTIONS(4815), - [anon_sym_DOLLAR] = ACTIONS(5798), - [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_file_descriptor] = ACTIONS(4877), + [sym__concat] = ACTIONS(4877), + [anon_sym_PIPE] = ACTIONS(5862), + [anon_sym_RPAREN] = ACTIONS(4877), + [anon_sym_PIPE_AMP] = ACTIONS(4877), + [anon_sym_AMP_AMP] = ACTIONS(4877), + [anon_sym_PIPE_PIPE] = ACTIONS(4877), + [anon_sym_EQ_TILDE] = ACTIONS(5862), + [anon_sym_EQ_EQ] = ACTIONS(5862), + [anon_sym_LT] = ACTIONS(5862), + [anon_sym_GT] = ACTIONS(5862), + [anon_sym_GT_GT] = ACTIONS(4877), + [anon_sym_AMP_GT] = ACTIONS(5862), + [anon_sym_AMP_GT_GT] = ACTIONS(4877), + [anon_sym_LT_AMP] = ACTIONS(4877), + [anon_sym_GT_AMP] = ACTIONS(4877), + [anon_sym_LT_LT] = ACTIONS(5862), + [anon_sym_LT_LT_DASH] = ACTIONS(4877), + [anon_sym_LT_LT_LT] = ACTIONS(4877), + [sym__special_characters] = ACTIONS(5862), + [anon_sym_DQUOTE] = ACTIONS(4877), + [anon_sym_DOLLAR] = ACTIONS(5862), + [sym_raw_string] = ACTIONS(4877), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4877), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4877), + [anon_sym_BQUOTE] = ACTIONS(4877), + [anon_sym_LT_LPAREN] = ACTIONS(4877), + [anon_sym_GT_LPAREN] = ACTIONS(4877), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4817), + [sym_word] = ACTIONS(4879), }, [2400] = { [sym_concatenation] = STATE(451), @@ -65042,56 +65326,57 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3018), - [anon_sym_RBRACE] = ACTIONS(6160), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6226), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2401] = { - [sym_file_descriptor] = ACTIONS(4821), - [sym__concat] = ACTIONS(4821), - [anon_sym_PIPE] = ACTIONS(5802), - [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(5802), - [anon_sym_LT] = ACTIONS(5802), - [anon_sym_GT] = ACTIONS(5802), - [anon_sym_GT_GT] = ACTIONS(4821), - [anon_sym_AMP_GT] = ACTIONS(5802), - [anon_sym_AMP_GT_GT] = ACTIONS(4821), - [anon_sym_LT_AMP] = ACTIONS(4821), - [anon_sym_GT_AMP] = ACTIONS(4821), - [anon_sym_LT_LT] = ACTIONS(5802), - [anon_sym_LT_LT_DASH] = ACTIONS(4821), - [anon_sym_LT_LT_LT] = ACTIONS(4821), - [sym__special_characters] = ACTIONS(5802), - [anon_sym_DQUOTE] = ACTIONS(4821), - [anon_sym_DOLLAR] = ACTIONS(5802), - [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_file_descriptor] = ACTIONS(4883), + [sym__concat] = ACTIONS(4883), + [anon_sym_PIPE] = ACTIONS(5866), + [anon_sym_RPAREN] = ACTIONS(4883), + [anon_sym_PIPE_AMP] = ACTIONS(4883), + [anon_sym_AMP_AMP] = ACTIONS(4883), + [anon_sym_PIPE_PIPE] = ACTIONS(4883), + [anon_sym_EQ_TILDE] = ACTIONS(5866), + [anon_sym_EQ_EQ] = ACTIONS(5866), + [anon_sym_LT] = ACTIONS(5866), + [anon_sym_GT] = ACTIONS(5866), + [anon_sym_GT_GT] = ACTIONS(4883), + [anon_sym_AMP_GT] = ACTIONS(5866), + [anon_sym_AMP_GT_GT] = ACTIONS(4883), + [anon_sym_LT_AMP] = ACTIONS(4883), + [anon_sym_GT_AMP] = ACTIONS(4883), + [anon_sym_LT_LT] = ACTIONS(5866), + [anon_sym_LT_LT_DASH] = ACTIONS(4883), + [anon_sym_LT_LT_LT] = ACTIONS(4883), + [sym__special_characters] = ACTIONS(5866), + [anon_sym_DQUOTE] = ACTIONS(4883), + [anon_sym_DOLLAR] = ACTIONS(5866), + [sym_raw_string] = ACTIONS(4883), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4883), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4883), + [anon_sym_BQUOTE] = ACTIONS(4883), + [anon_sym_LT_LPAREN] = ACTIONS(4883), + [anon_sym_GT_LPAREN] = ACTIONS(4883), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4823), + [sym_word] = ACTIONS(4885), }, [2402] = { [sym_concatenation] = STATE(451), @@ -65102,56 +65387,57 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6162), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6228), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2403] = { - [sym_file_descriptor] = ACTIONS(4827), - [sym__concat] = ACTIONS(4827), - [anon_sym_PIPE] = ACTIONS(5806), - [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(5806), - [anon_sym_LT] = ACTIONS(5806), - [anon_sym_GT] = ACTIONS(5806), - [anon_sym_GT_GT] = ACTIONS(4827), - [anon_sym_AMP_GT] = ACTIONS(5806), - [anon_sym_AMP_GT_GT] = ACTIONS(4827), - [anon_sym_LT_AMP] = ACTIONS(4827), - [anon_sym_GT_AMP] = ACTIONS(4827), - [anon_sym_LT_LT] = ACTIONS(5806), - [anon_sym_LT_LT_DASH] = ACTIONS(4827), - [anon_sym_LT_LT_LT] = ACTIONS(4827), - [sym__special_characters] = ACTIONS(5806), - [anon_sym_DQUOTE] = ACTIONS(4827), - [anon_sym_DOLLAR] = ACTIONS(5806), - [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_file_descriptor] = ACTIONS(4889), + [sym__concat] = ACTIONS(4889), + [anon_sym_PIPE] = ACTIONS(5870), + [anon_sym_RPAREN] = ACTIONS(4889), + [anon_sym_PIPE_AMP] = ACTIONS(4889), + [anon_sym_AMP_AMP] = ACTIONS(4889), + [anon_sym_PIPE_PIPE] = ACTIONS(4889), + [anon_sym_EQ_TILDE] = ACTIONS(5870), + [anon_sym_EQ_EQ] = ACTIONS(5870), + [anon_sym_LT] = ACTIONS(5870), + [anon_sym_GT] = ACTIONS(5870), + [anon_sym_GT_GT] = ACTIONS(4889), + [anon_sym_AMP_GT] = ACTIONS(5870), + [anon_sym_AMP_GT_GT] = ACTIONS(4889), + [anon_sym_LT_AMP] = ACTIONS(4889), + [anon_sym_GT_AMP] = ACTIONS(4889), + [anon_sym_LT_LT] = ACTIONS(5870), + [anon_sym_LT_LT_DASH] = ACTIONS(4889), + [anon_sym_LT_LT_LT] = ACTIONS(4889), + [sym__special_characters] = ACTIONS(5870), + [anon_sym_DQUOTE] = ACTIONS(4889), + [anon_sym_DOLLAR] = ACTIONS(5870), + [sym_raw_string] = ACTIONS(4889), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4889), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4889), + [anon_sym_BQUOTE] = ACTIONS(4889), + [anon_sym_LT_LPAREN] = ACTIONS(4889), + [anon_sym_GT_LPAREN] = ACTIONS(4889), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4829), + [sym_word] = ACTIONS(4891), }, [2404] = { [sym_concatenation] = STATE(451), @@ -65162,94 +65448,94 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6164), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6230), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2405] = { - [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), + [anon_sym_PIPE] = ACTIONS(6124), + [anon_sym_RPAREN] = ACTIONS(6126), + [anon_sym_PIPE_AMP] = ACTIONS(6126), + [anon_sym_AMP_AMP] = ACTIONS(6126), + [anon_sym_PIPE_PIPE] = ACTIONS(6126), + [anon_sym_BQUOTE] = ACTIONS(6126), [sym_comment] = ACTIONS(56), }, [2406] = { - [sym_file_descriptor] = ACTIONS(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_file_descriptor] = ACTIONS(1886), + [sym__concat] = ACTIONS(1886), + [anon_sym_PIPE] = ACTIONS(3056), + [anon_sym_RPAREN] = ACTIONS(1886), + [anon_sym_PIPE_AMP] = ACTIONS(1886), + [anon_sym_AMP_AMP] = ACTIONS(1886), + [anon_sym_PIPE_PIPE] = ACTIONS(1886), + [anon_sym_LT] = ACTIONS(3056), + [anon_sym_GT] = ACTIONS(3056), + [anon_sym_GT_GT] = ACTIONS(1886), + [anon_sym_AMP_GT] = ACTIONS(3056), + [anon_sym_AMP_GT_GT] = ACTIONS(1886), + [anon_sym_LT_AMP] = ACTIONS(1886), + [anon_sym_GT_AMP] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(3056), + [anon_sym_LT_LT_DASH] = ACTIONS(1886), + [anon_sym_LT_LT_LT] = ACTIONS(1886), [sym_comment] = ACTIONS(56), }, [2407] = { [aux_sym_concatenation_repeat1] = STATE(2407), - [sym_file_descriptor] = ACTIONS(1858), - [sym__concat] = ACTIONS(6166), - [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_file_descriptor] = ACTIONS(1886), + [sym__concat] = ACTIONS(6232), + [anon_sym_PIPE] = ACTIONS(3056), + [anon_sym_RPAREN] = ACTIONS(1886), + [anon_sym_PIPE_AMP] = ACTIONS(1886), + [anon_sym_AMP_AMP] = ACTIONS(1886), + [anon_sym_PIPE_PIPE] = ACTIONS(1886), + [anon_sym_LT] = ACTIONS(3056), + [anon_sym_GT] = ACTIONS(3056), + [anon_sym_GT_GT] = ACTIONS(1886), + [anon_sym_AMP_GT] = ACTIONS(3056), + [anon_sym_AMP_GT_GT] = ACTIONS(1886), + [anon_sym_LT_AMP] = ACTIONS(1886), + [anon_sym_GT_AMP] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(3056), + [anon_sym_LT_LT_DASH] = ACTIONS(1886), + [anon_sym_LT_LT_LT] = ACTIONS(1886), [sym_comment] = ACTIONS(56), }, [2408] = { - [sym_file_descriptor] = ACTIONS(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_file_descriptor] = ACTIONS(1923), + [sym__concat] = ACTIONS(1923), + [anon_sym_PIPE] = ACTIONS(3061), + [anon_sym_RPAREN] = ACTIONS(1923), + [anon_sym_PIPE_AMP] = ACTIONS(1923), + [anon_sym_AMP_AMP] = ACTIONS(1923), + [anon_sym_PIPE_PIPE] = ACTIONS(1923), + [anon_sym_LT] = ACTIONS(3061), + [anon_sym_GT] = ACTIONS(3061), + [anon_sym_GT_GT] = ACTIONS(1923), + [anon_sym_AMP_GT] = ACTIONS(3061), + [anon_sym_AMP_GT_GT] = ACTIONS(1923), + [anon_sym_LT_AMP] = ACTIONS(1923), + [anon_sym_GT_AMP] = ACTIONS(1923), + [anon_sym_LT_LT] = ACTIONS(3061), + [anon_sym_LT_LT_DASH] = ACTIONS(1923), + [anon_sym_LT_LT_LT] = ACTIONS(1923), [sym_comment] = ACTIONS(56), }, [2409] = { @@ -65260,42 +65546,42 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(3023), [sym_command_substitution] = STATE(3023), [sym_process_substitution] = STATE(3023), - [anon_sym_RBRACE] = ACTIONS(6169), - [sym__special_characters] = ACTIONS(6171), - [anon_sym_DQUOTE] = ACTIONS(1924), - [anon_sym_DOLLAR] = ACTIONS(1926), - [sym_raw_string] = ACTIONS(6173), - [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), + [anon_sym_RBRACE] = ACTIONS(6235), + [sym__special_characters] = ACTIONS(6237), + [anon_sym_DQUOTE] = ACTIONS(1952), + [anon_sym_DOLLAR] = ACTIONS(1954), + [sym_raw_string] = ACTIONS(6239), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), + [anon_sym_BQUOTE] = ACTIONS(1962), + [anon_sym_LT_LPAREN] = ACTIONS(1964), + [anon_sym_GT_LPAREN] = ACTIONS(1964), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6175), + [sym_word] = ACTIONS(6241), }, [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_file_descriptor] = ACTIONS(1968), + [sym__concat] = ACTIONS(1968), + [anon_sym_PIPE] = ACTIONS(3071), + [anon_sym_RPAREN] = ACTIONS(1968), + [anon_sym_PIPE_AMP] = ACTIONS(1968), + [anon_sym_AMP_AMP] = ACTIONS(1968), + [anon_sym_PIPE_PIPE] = ACTIONS(1968), + [anon_sym_LT] = ACTIONS(3071), + [anon_sym_GT] = ACTIONS(3071), + [anon_sym_GT_GT] = ACTIONS(1968), + [anon_sym_AMP_GT] = ACTIONS(3071), + [anon_sym_AMP_GT_GT] = ACTIONS(1968), + [anon_sym_LT_AMP] = ACTIONS(1968), + [anon_sym_GT_AMP] = ACTIONS(1968), + [anon_sym_LT_LT] = ACTIONS(3071), + [anon_sym_LT_LT_DASH] = ACTIONS(1968), + [anon_sym_LT_LT_LT] = ACTIONS(1968), [sym_comment] = ACTIONS(56), }, [2411] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6177), + [sym_regex_without_right_brace] = ACTIONS(6243), }, [2412] = { [sym_concatenation] = STATE(451), @@ -65306,29 +65592,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6179), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6245), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2413] = { - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(6181), + [anon_sym_LBRACK] = ACTIONS(836), + [anon_sym_EQ] = ACTIONS(6247), [sym_comment] = ACTIONS(56), }, [2414] = { @@ -65340,26 +65626,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3030), - [anon_sym_RBRACE] = ACTIONS(6183), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_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(6185), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6249), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(6251), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2415] = { [sym_concatenation] = STATE(451), @@ -65370,26 +65656,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3033), - [anon_sym_RBRACE] = ACTIONS(6187), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_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(6189), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6253), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(6255), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2416] = { [sym_concatenation] = STATE(451), @@ -65400,50 +65686,50 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3035), - [anon_sym_RBRACE] = ACTIONS(6169), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_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(6191), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6235), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(6257), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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_file_descriptor] = ACTIONS(2022), + [sym__concat] = ACTIONS(2022), + [anon_sym_PIPE] = ACTIONS(3089), + [anon_sym_RPAREN] = ACTIONS(2022), + [anon_sym_PIPE_AMP] = ACTIONS(2022), + [anon_sym_AMP_AMP] = ACTIONS(2022), + [anon_sym_PIPE_PIPE] = ACTIONS(2022), + [anon_sym_LT] = ACTIONS(3089), + [anon_sym_GT] = ACTIONS(3089), + [anon_sym_GT_GT] = ACTIONS(2022), + [anon_sym_AMP_GT] = ACTIONS(3089), + [anon_sym_AMP_GT_GT] = ACTIONS(2022), + [anon_sym_LT_AMP] = ACTIONS(2022), + [anon_sym_GT_AMP] = ACTIONS(2022), + [anon_sym_LT_LT] = ACTIONS(3089), + [anon_sym_LT_LT_DASH] = ACTIONS(2022), + [anon_sym_LT_LT_LT] = ACTIONS(2022), [sym_comment] = ACTIONS(56), }, [2418] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6193), + [sym_regex_without_right_brace] = ACTIONS(6259), }, [2419] = { [sym_concatenation] = STATE(451), @@ -65454,49 +65740,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6195), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6261), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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_file_descriptor] = ACTIONS(2030), + [sym__concat] = ACTIONS(2030), + [anon_sym_PIPE] = ACTIONS(3095), + [anon_sym_RPAREN] = ACTIONS(2030), + [anon_sym_PIPE_AMP] = ACTIONS(2030), + [anon_sym_AMP_AMP] = ACTIONS(2030), + [anon_sym_PIPE_PIPE] = ACTIONS(2030), + [anon_sym_LT] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(3095), + [anon_sym_GT_GT] = ACTIONS(2030), + [anon_sym_AMP_GT] = ACTIONS(3095), + [anon_sym_AMP_GT_GT] = ACTIONS(2030), + [anon_sym_LT_AMP] = ACTIONS(2030), + [anon_sym_GT_AMP] = ACTIONS(2030), + [anon_sym_LT_LT] = ACTIONS(3095), + [anon_sym_LT_LT_DASH] = ACTIONS(2030), + [anon_sym_LT_LT_LT] = ACTIONS(2030), [sym_comment] = ACTIONS(56), }, [2421] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6197), + [sym_regex_without_right_brace] = ACTIONS(6263), }, [2422] = { [sym_concatenation] = STATE(451), @@ -65507,167 +65793,167 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6169), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6235), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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_file_descriptor] = ACTIONS(2190), + [sym__concat] = ACTIONS(2190), + [anon_sym_PIPE] = ACTIONS(3099), + [anon_sym_RPAREN] = ACTIONS(2190), + [anon_sym_PIPE_AMP] = ACTIONS(2190), + [anon_sym_AMP_AMP] = ACTIONS(2190), + [anon_sym_PIPE_PIPE] = ACTIONS(2190), + [anon_sym_LT] = ACTIONS(3099), + [anon_sym_GT] = ACTIONS(3099), + [anon_sym_GT_GT] = ACTIONS(2190), + [anon_sym_AMP_GT] = ACTIONS(3099), + [anon_sym_AMP_GT_GT] = ACTIONS(2190), + [anon_sym_LT_AMP] = ACTIONS(2190), + [anon_sym_GT_AMP] = ACTIONS(2190), + [anon_sym_LT_LT] = ACTIONS(3099), + [anon_sym_LT_LT_DASH] = ACTIONS(2190), + [anon_sym_LT_LT_LT] = ACTIONS(2190), [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_file_descriptor] = ACTIONS(2396), + [sym__concat] = ACTIONS(2396), + [anon_sym_PIPE] = ACTIONS(3101), + [anon_sym_RPAREN] = ACTIONS(2396), + [anon_sym_PIPE_AMP] = ACTIONS(2396), + [anon_sym_AMP_AMP] = ACTIONS(2396), + [anon_sym_PIPE_PIPE] = ACTIONS(2396), + [anon_sym_LT] = ACTIONS(3101), + [anon_sym_GT] = ACTIONS(3101), + [anon_sym_GT_GT] = ACTIONS(2396), + [anon_sym_AMP_GT] = ACTIONS(3101), + [anon_sym_AMP_GT_GT] = ACTIONS(2396), + [anon_sym_LT_AMP] = ACTIONS(2396), + [anon_sym_GT_AMP] = ACTIONS(2396), + [anon_sym_LT_LT] = ACTIONS(3101), + [anon_sym_LT_LT_DASH] = ACTIONS(2396), + [anon_sym_LT_LT_LT] = ACTIONS(2396), [sym_comment] = ACTIONS(56), }, [2425] = { - [sym_file_descriptor] = ACTIONS(5302), - [anon_sym_PIPE] = ACTIONS(6199), - [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(6199), - [anon_sym_GT] = ACTIONS(6199), - [anon_sym_GT_GT] = ACTIONS(5302), - [anon_sym_AMP_GT] = ACTIONS(6199), - [anon_sym_AMP_GT_GT] = ACTIONS(5302), - [anon_sym_LT_AMP] = ACTIONS(5302), - [anon_sym_GT_AMP] = ACTIONS(5302), - [anon_sym_LT_LT] = ACTIONS(6199), - [anon_sym_LT_LT_DASH] = ACTIONS(5302), - [anon_sym_LT_LT_LT] = ACTIONS(5302), - [anon_sym_BQUOTE] = ACTIONS(5302), + [sym_file_descriptor] = ACTIONS(5364), + [anon_sym_PIPE] = ACTIONS(6265), + [anon_sym_RPAREN] = ACTIONS(5364), + [anon_sym_PIPE_AMP] = ACTIONS(5364), + [anon_sym_AMP_AMP] = ACTIONS(5364), + [anon_sym_PIPE_PIPE] = ACTIONS(5364), + [anon_sym_LT] = ACTIONS(6265), + [anon_sym_GT] = ACTIONS(6265), + [anon_sym_GT_GT] = ACTIONS(5364), + [anon_sym_AMP_GT] = ACTIONS(6265), + [anon_sym_AMP_GT_GT] = ACTIONS(5364), + [anon_sym_LT_AMP] = ACTIONS(5364), + [anon_sym_GT_AMP] = ACTIONS(5364), + [anon_sym_LT_LT] = ACTIONS(6265), + [anon_sym_LT_LT_DASH] = ACTIONS(5364), + [anon_sym_LT_LT_LT] = ACTIONS(5364), + [anon_sym_BQUOTE] = ACTIONS(5364), [sym_comment] = ACTIONS(56), }, [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_file_descriptor] = ACTIONS(1886), + [sym__concat] = ACTIONS(1886), + [sym_variable_name] = ACTIONS(1886), + [anon_sym_PIPE] = ACTIONS(3056), + [anon_sym_PIPE_AMP] = ACTIONS(1886), + [anon_sym_AMP_AMP] = ACTIONS(1886), + [anon_sym_PIPE_PIPE] = ACTIONS(1886), + [anon_sym_LT] = ACTIONS(3056), + [anon_sym_GT] = ACTIONS(3056), + [anon_sym_GT_GT] = ACTIONS(1886), + [anon_sym_AMP_GT] = ACTIONS(3056), + [anon_sym_AMP_GT_GT] = ACTIONS(1886), + [anon_sym_LT_AMP] = ACTIONS(1886), + [anon_sym_GT_AMP] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(3056), + [anon_sym_DQUOTE] = ACTIONS(1886), + [anon_sym_DOLLAR] = ACTIONS(3056), + [sym_raw_string] = ACTIONS(1886), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1886), + [anon_sym_BQUOTE] = ACTIONS(1886), + [anon_sym_LT_LPAREN] = ACTIONS(1886), + [anon_sym_GT_LPAREN] = ACTIONS(1886), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3008), + [sym_word] = ACTIONS(3056), }, [2427] = { [aux_sym_concatenation_repeat1] = STATE(2427), - [sym_file_descriptor] = ACTIONS(1858), - [sym__concat] = ACTIONS(6201), - [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_file_descriptor] = ACTIONS(1886), + [sym__concat] = ACTIONS(6267), + [sym_variable_name] = ACTIONS(1886), + [anon_sym_PIPE] = ACTIONS(3056), + [anon_sym_PIPE_AMP] = ACTIONS(1886), + [anon_sym_AMP_AMP] = ACTIONS(1886), + [anon_sym_PIPE_PIPE] = ACTIONS(1886), + [anon_sym_LT] = ACTIONS(3056), + [anon_sym_GT] = ACTIONS(3056), + [anon_sym_GT_GT] = ACTIONS(1886), + [anon_sym_AMP_GT] = ACTIONS(3056), + [anon_sym_AMP_GT_GT] = ACTIONS(1886), + [anon_sym_LT_AMP] = ACTIONS(1886), + [anon_sym_GT_AMP] = ACTIONS(1886), + [sym__special_characters] = ACTIONS(3056), + [anon_sym_DQUOTE] = ACTIONS(1886), + [anon_sym_DOLLAR] = ACTIONS(3056), + [sym_raw_string] = ACTIONS(1886), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1886), + [anon_sym_BQUOTE] = ACTIONS(1886), + [anon_sym_LT_LPAREN] = ACTIONS(1886), + [anon_sym_GT_LPAREN] = ACTIONS(1886), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3008), + [sym_word] = ACTIONS(3056), }, [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_file_descriptor] = ACTIONS(1923), + [sym__concat] = ACTIONS(1923), + [sym_variable_name] = ACTIONS(1923), + [anon_sym_PIPE] = ACTIONS(3061), + [anon_sym_PIPE_AMP] = ACTIONS(1923), + [anon_sym_AMP_AMP] = ACTIONS(1923), + [anon_sym_PIPE_PIPE] = ACTIONS(1923), + [anon_sym_LT] = ACTIONS(3061), + [anon_sym_GT] = ACTIONS(3061), + [anon_sym_GT_GT] = ACTIONS(1923), + [anon_sym_AMP_GT] = ACTIONS(3061), + [anon_sym_AMP_GT_GT] = ACTIONS(1923), + [anon_sym_LT_AMP] = ACTIONS(1923), + [anon_sym_GT_AMP] = ACTIONS(1923), + [sym__special_characters] = ACTIONS(3061), + [anon_sym_DQUOTE] = ACTIONS(1923), + [anon_sym_DOLLAR] = ACTIONS(3061), + [sym_raw_string] = ACTIONS(1923), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1923), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1923), + [anon_sym_BQUOTE] = ACTIONS(1923), + [anon_sym_LT_LPAREN] = ACTIONS(1923), + [anon_sym_GT_LPAREN] = ACTIONS(1923), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3013), + [sym_word] = ACTIONS(3061), }, [2429] = { [sym_concatenation] = STATE(3042), @@ -65677,49 +65963,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(3041), [sym_command_substitution] = STATE(3041), [sym_process_substitution] = STATE(3041), - [anon_sym_RBRACE] = ACTIONS(6204), - [sym__special_characters] = ACTIONS(6206), - [anon_sym_DQUOTE] = ACTIONS(1924), - [anon_sym_DOLLAR] = ACTIONS(1926), - [sym_raw_string] = ACTIONS(6208), - [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), + [anon_sym_RBRACE] = ACTIONS(6270), + [sym__special_characters] = ACTIONS(6272), + [anon_sym_DQUOTE] = ACTIONS(1952), + [anon_sym_DOLLAR] = ACTIONS(1954), + [sym_raw_string] = ACTIONS(6274), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), + [anon_sym_BQUOTE] = ACTIONS(1962), + [anon_sym_LT_LPAREN] = ACTIONS(1964), + [anon_sym_GT_LPAREN] = ACTIONS(1964), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6210), + [sym_word] = ACTIONS(6276), }, [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_file_descriptor] = ACTIONS(1968), + [sym__concat] = ACTIONS(1968), + [sym_variable_name] = ACTIONS(1968), + [anon_sym_PIPE] = ACTIONS(3071), + [anon_sym_PIPE_AMP] = ACTIONS(1968), + [anon_sym_AMP_AMP] = ACTIONS(1968), + [anon_sym_PIPE_PIPE] = ACTIONS(1968), + [anon_sym_LT] = ACTIONS(3071), + [anon_sym_GT] = ACTIONS(3071), + [anon_sym_GT_GT] = ACTIONS(1968), + [anon_sym_AMP_GT] = ACTIONS(3071), + [anon_sym_AMP_GT_GT] = ACTIONS(1968), + [anon_sym_LT_AMP] = ACTIONS(1968), + [anon_sym_GT_AMP] = ACTIONS(1968), + [sym__special_characters] = ACTIONS(3071), + [anon_sym_DQUOTE] = ACTIONS(1968), + [anon_sym_DOLLAR] = ACTIONS(3071), + [sym_raw_string] = ACTIONS(1968), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1968), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1968), + [anon_sym_BQUOTE] = ACTIONS(1968), + [anon_sym_LT_LPAREN] = ACTIONS(1968), + [anon_sym_GT_LPAREN] = ACTIONS(1968), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3023), + [sym_word] = ACTIONS(3071), }, [2431] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6212), + [sym_regex_without_right_brace] = ACTIONS(6278), }, [2432] = { [sym_concatenation] = STATE(451), @@ -65730,29 +66016,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6214), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6280), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2433] = { - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(6216), + [anon_sym_LBRACK] = ACTIONS(836), + [anon_sym_EQ] = ACTIONS(6282), [sym_comment] = ACTIONS(56), }, [2434] = { @@ -65764,26 +66050,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3048), - [anon_sym_RBRACE] = ACTIONS(6218), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_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(6220), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6284), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(6286), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2435] = { [sym_concatenation] = STATE(451), @@ -65794,26 +66080,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3051), - [anon_sym_RBRACE] = ACTIONS(6222), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_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(6224), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6288), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(6290), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2436] = { [sym_concatenation] = STATE(451), @@ -65824,57 +66110,57 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3053), - [anon_sym_RBRACE] = ACTIONS(6204), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_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(6226), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6270), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(6292), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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_file_descriptor] = ACTIONS(2022), + [sym__concat] = ACTIONS(2022), + [sym_variable_name] = ACTIONS(2022), + [anon_sym_PIPE] = ACTIONS(3089), + [anon_sym_PIPE_AMP] = ACTIONS(2022), + [anon_sym_AMP_AMP] = ACTIONS(2022), + [anon_sym_PIPE_PIPE] = ACTIONS(2022), + [anon_sym_LT] = ACTIONS(3089), + [anon_sym_GT] = ACTIONS(3089), + [anon_sym_GT_GT] = ACTIONS(2022), + [anon_sym_AMP_GT] = ACTIONS(3089), + [anon_sym_AMP_GT_GT] = ACTIONS(2022), + [anon_sym_LT_AMP] = ACTIONS(2022), + [anon_sym_GT_AMP] = ACTIONS(2022), + [sym__special_characters] = ACTIONS(3089), + [anon_sym_DQUOTE] = ACTIONS(2022), + [anon_sym_DOLLAR] = ACTIONS(3089), + [sym_raw_string] = ACTIONS(2022), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2022), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2022), + [anon_sym_BQUOTE] = ACTIONS(2022), + [anon_sym_LT_LPAREN] = ACTIONS(2022), + [anon_sym_GT_LPAREN] = ACTIONS(2022), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3041), + [sym_word] = ACTIONS(3089), }, [2438] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6228), + [sym_regex_without_right_brace] = ACTIONS(6294), }, [2439] = { [sym_concatenation] = STATE(451), @@ -65885,56 +66171,56 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(6296), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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_file_descriptor] = ACTIONS(2030), + [sym__concat] = ACTIONS(2030), + [sym_variable_name] = ACTIONS(2030), + [anon_sym_PIPE] = ACTIONS(3095), + [anon_sym_PIPE_AMP] = ACTIONS(2030), + [anon_sym_AMP_AMP] = ACTIONS(2030), + [anon_sym_PIPE_PIPE] = ACTIONS(2030), + [anon_sym_LT] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(3095), + [anon_sym_GT_GT] = ACTIONS(2030), + [anon_sym_AMP_GT] = ACTIONS(3095), + [anon_sym_AMP_GT_GT] = ACTIONS(2030), + [anon_sym_LT_AMP] = ACTIONS(2030), + [anon_sym_GT_AMP] = ACTIONS(2030), + [sym__special_characters] = ACTIONS(3095), + [anon_sym_DQUOTE] = ACTIONS(2030), + [anon_sym_DOLLAR] = ACTIONS(3095), + [sym_raw_string] = ACTIONS(2030), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2030), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2030), + [anon_sym_BQUOTE] = ACTIONS(2030), + [anon_sym_LT_LPAREN] = ACTIONS(2030), + [anon_sym_GT_LPAREN] = ACTIONS(2030), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3047), + [sym_word] = ACTIONS(3095), }, [2441] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6232), + [sym_regex_without_right_brace] = ACTIONS(6298), }, [2442] = { [sym_concatenation] = STATE(451), @@ -65945,95 +66231,95 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6204), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6270), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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_file_descriptor] = ACTIONS(2190), + [sym__concat] = ACTIONS(2190), + [sym_variable_name] = ACTIONS(2190), + [anon_sym_PIPE] = ACTIONS(3099), + [anon_sym_PIPE_AMP] = ACTIONS(2190), + [anon_sym_AMP_AMP] = ACTIONS(2190), + [anon_sym_PIPE_PIPE] = ACTIONS(2190), + [anon_sym_LT] = ACTIONS(3099), + [anon_sym_GT] = ACTIONS(3099), + [anon_sym_GT_GT] = ACTIONS(2190), + [anon_sym_AMP_GT] = ACTIONS(3099), + [anon_sym_AMP_GT_GT] = ACTIONS(2190), + [anon_sym_LT_AMP] = ACTIONS(2190), + [anon_sym_GT_AMP] = ACTIONS(2190), + [sym__special_characters] = ACTIONS(3099), + [anon_sym_DQUOTE] = ACTIONS(2190), + [anon_sym_DOLLAR] = ACTIONS(3099), + [sym_raw_string] = ACTIONS(2190), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2190), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2190), + [anon_sym_BQUOTE] = ACTIONS(2190), + [anon_sym_LT_LPAREN] = ACTIONS(2190), + [anon_sym_GT_LPAREN] = ACTIONS(2190), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3051), + [sym_word] = ACTIONS(3099), }, [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_file_descriptor] = ACTIONS(2396), + [sym__concat] = ACTIONS(2396), + [sym_variable_name] = ACTIONS(2396), + [anon_sym_PIPE] = ACTIONS(3101), + [anon_sym_PIPE_AMP] = ACTIONS(2396), + [anon_sym_AMP_AMP] = ACTIONS(2396), + [anon_sym_PIPE_PIPE] = ACTIONS(2396), + [anon_sym_LT] = ACTIONS(3101), + [anon_sym_GT] = ACTIONS(3101), + [anon_sym_GT_GT] = ACTIONS(2396), + [anon_sym_AMP_GT] = ACTIONS(3101), + [anon_sym_AMP_GT_GT] = ACTIONS(2396), + [anon_sym_LT_AMP] = ACTIONS(2396), + [anon_sym_GT_AMP] = ACTIONS(2396), + [sym__special_characters] = ACTIONS(3101), + [anon_sym_DQUOTE] = ACTIONS(2396), + [anon_sym_DOLLAR] = ACTIONS(3101), + [sym_raw_string] = ACTIONS(2396), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2396), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2396), + [anon_sym_BQUOTE] = ACTIONS(2396), + [anon_sym_LT_LPAREN] = ACTIONS(2396), + [anon_sym_GT_LPAREN] = ACTIONS(2396), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3053), + [sym_word] = ACTIONS(3101), }, [2445] = { [sym_file_redirect] = STATE(2955), - [sym_file_descriptor] = ACTIONS(3736), - [anon_sym_PIPE] = ACTIONS(6060), - [anon_sym_PIPE_AMP] = ACTIONS(6062), - [anon_sym_AMP_AMP] = ACTIONS(6062), - [anon_sym_PIPE_PIPE] = ACTIONS(6062), - [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(6062), + [sym_file_descriptor] = ACTIONS(3792), + [anon_sym_PIPE] = ACTIONS(6124), + [anon_sym_PIPE_AMP] = ACTIONS(6126), + [anon_sym_AMP_AMP] = ACTIONS(6126), + [anon_sym_PIPE_PIPE] = ACTIONS(6126), + [anon_sym_LT] = ACTIONS(3794), + [anon_sym_GT] = ACTIONS(3794), + [anon_sym_GT_GT] = ACTIONS(3796), + [anon_sym_AMP_GT] = ACTIONS(3794), + [anon_sym_AMP_GT_GT] = ACTIONS(3796), + [anon_sym_LT_AMP] = ACTIONS(3796), + [anon_sym_GT_AMP] = ACTIONS(3796), + [anon_sym_BQUOTE] = ACTIONS(6126), [sym_comment] = ACTIONS(56), }, [2446] = { @@ -66044,26 +66330,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(3058), [sym_command_substitution] = STATE(3058), [sym_process_substitution] = STATE(3058), - [sym__special_characters] = ACTIONS(6234), - [anon_sym_DQUOTE] = ACTIONS(5107), - [anon_sym_DOLLAR] = ACTIONS(5109), - [sym_raw_string] = ACTIONS(6236), - [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__special_characters] = ACTIONS(6300), + [anon_sym_DQUOTE] = ACTIONS(5169), + [anon_sym_DOLLAR] = ACTIONS(5171), + [sym_raw_string] = ACTIONS(6302), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5175), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5177), + [anon_sym_BQUOTE] = ACTIONS(5179), + [anon_sym_LT_LPAREN] = ACTIONS(5181), + [anon_sym_GT_LPAREN] = ACTIONS(5181), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6238), + [sym_word] = ACTIONS(6304), }, [2447] = { [aux_sym_concatenation_repeat1] = STATE(3060), - [sym__concat] = ACTIONS(6240), - [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__concat] = ACTIONS(6306), + [anon_sym_PIPE] = ACTIONS(758), + [anon_sym_PIPE_AMP] = ACTIONS(754), + [anon_sym_AMP_AMP] = ACTIONS(754), + [anon_sym_PIPE_PIPE] = ACTIONS(754), + [anon_sym_BQUOTE] = ACTIONS(754), [sym_comment] = ACTIONS(56), }, [2448] = { @@ -66071,7 +66357,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(134), [sym_command_substitution] = STATE(134), [aux_sym_string_repeat1] = STATE(3062), - [anon_sym_DQUOTE] = ACTIONS(6242), + [anon_sym_DQUOTE] = ACTIONS(6308), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -66080,42 +66366,43 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(182), }, [2449] = { - [sym_string] = STATE(3065), - [anon_sym_DQUOTE] = ACTIONS(5107), - [anon_sym_DOLLAR] = ACTIONS(6244), - [anon_sym_POUND] = ACTIONS(6244), - [anon_sym_DASH] = ACTIONS(6244), + [sym_string] = STATE(3064), + [anon_sym_DQUOTE] = ACTIONS(5169), + [anon_sym_DOLLAR] = ACTIONS(6310), + [sym_raw_string] = ACTIONS(6312), + [anon_sym_POUND] = ACTIONS(6310), + [anon_sym_DASH] = ACTIONS(6310), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6246), - [anon_sym_STAR] = ACTIONS(6244), - [anon_sym_AT] = ACTIONS(6244), - [anon_sym_QMARK] = ACTIONS(6244), - [anon_sym_0] = ACTIONS(6248), - [anon_sym__] = ACTIONS(6248), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6314), + [anon_sym_STAR] = ACTIONS(6310), + [anon_sym_AT] = ACTIONS(6310), + [anon_sym_QMARK] = ACTIONS(6310), + [anon_sym_0] = ACTIONS(6316), + [anon_sym__] = ACTIONS(6316), }, [2450] = { [aux_sym_concatenation_repeat1] = STATE(3060), - [sym__concat] = ACTIONS(6240), - [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__concat] = ACTIONS(6306), + [anon_sym_PIPE] = ACTIONS(772), + [anon_sym_PIPE_AMP] = ACTIONS(770), + [anon_sym_AMP_AMP] = ACTIONS(770), + [anon_sym_PIPE_PIPE] = ACTIONS(770), + [anon_sym_BQUOTE] = ACTIONS(770), [sym_comment] = ACTIONS(56), }, [2451] = { [sym_subscript] = STATE(3070), - [sym_variable_name] = ACTIONS(6250), - [anon_sym_DOLLAR] = ACTIONS(6252), - [anon_sym_POUND] = ACTIONS(6254), - [anon_sym_DASH] = ACTIONS(6252), + [sym_variable_name] = ACTIONS(6318), + [anon_sym_DOLLAR] = ACTIONS(6320), + [anon_sym_POUND] = ACTIONS(6322), + [anon_sym_DASH] = ACTIONS(6320), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6256), - [anon_sym_STAR] = ACTIONS(6252), - [anon_sym_AT] = ACTIONS(6252), - [anon_sym_QMARK] = ACTIONS(6252), - [anon_sym_0] = ACTIONS(6258), - [anon_sym__] = ACTIONS(6258), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6324), + [anon_sym_STAR] = ACTIONS(6320), + [anon_sym_AT] = ACTIONS(6320), + [anon_sym_QMARK] = ACTIONS(6320), + [anon_sym_0] = ACTIONS(6326), + [anon_sym__] = ACTIONS(6326), }, [2452] = { [sym_for_statement] = STATE(3071), @@ -66143,22 +66430,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(264), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(268), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -66166,17 +66453,17 @@ 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(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__special_characters] = ACTIONS(286), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(300), + [sym_word] = ACTIONS(302), }, [2453] = { [sym_for_statement] = STATE(3073), @@ -66204,22 +66491,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(304), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(306), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(308), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_LBRACK_LBRACK] = ACTIONS(312), + [anon_sym_declare] = ACTIONS(314), + [anon_sym_typeset] = ACTIONS(314), + [anon_sym_export] = ACTIONS(314), + [anon_sym_readonly] = ACTIONS(314), + [anon_sym_local] = ACTIONS(314), + [anon_sym_unset] = ACTIONS(316), + [anon_sym_unsetenv] = ACTIONS(316), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -66227,17 +66514,17 @@ 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(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__special_characters] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [anon_sym_DOLLAR] = ACTIONS(322), + [sym_raw_string] = ACTIONS(324), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), + [anon_sym_BQUOTE] = ACTIONS(330), + [anon_sym_LT_LPAREN] = ACTIONS(332), + [anon_sym_GT_LPAREN] = ACTIONS(332), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(332), + [sym_word] = ACTIONS(334), }, [2454] = { [sym_for_statement] = STATE(3075), @@ -66265,22 +66552,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(264), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(268), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -66288,52 +66575,52 @@ 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(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__special_characters] = ACTIONS(286), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(300), + [sym_word] = ACTIONS(302), }, [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__concat] = ACTIONS(3283), + [sym_variable_name] = ACTIONS(3283), + [anon_sym_PIPE] = ACTIONS(4602), + [anon_sym_PIPE_AMP] = ACTIONS(3283), + [anon_sym_AMP_AMP] = ACTIONS(3283), + [anon_sym_PIPE_PIPE] = ACTIONS(3283), + [sym__special_characters] = ACTIONS(4602), + [anon_sym_DQUOTE] = ACTIONS(3283), + [anon_sym_DOLLAR] = ACTIONS(4602), + [sym_raw_string] = ACTIONS(3283), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3283), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3283), + [anon_sym_BQUOTE] = ACTIONS(3283), + [anon_sym_LT_LPAREN] = ACTIONS(3283), + [anon_sym_GT_LPAREN] = ACTIONS(3283), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4540), - [sym_word] = ACTIONS(3237), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4602), + [sym_word] = ACTIONS(3285), }, [2456] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(6260), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(6328), [sym_comment] = ACTIONS(56), }, [2457] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(6262), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(6330), [sym_comment] = ACTIONS(56), }, [2458] = { - [anon_sym_RBRACE] = ACTIONS(6262), + [anon_sym_RBRACE] = ACTIONS(6330), [sym_comment] = ACTIONS(56), }, [2459] = { @@ -66345,45 +66632,45 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3080), - [anon_sym_RBRACE] = ACTIONS(6264), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6332), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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__concat] = ACTIONS(3347), + [sym_variable_name] = ACTIONS(3347), + [anon_sym_PIPE] = ACTIONS(4610), + [anon_sym_PIPE_AMP] = ACTIONS(3347), + [anon_sym_AMP_AMP] = ACTIONS(3347), + [anon_sym_PIPE_PIPE] = ACTIONS(3347), + [sym__special_characters] = ACTIONS(4610), + [anon_sym_DQUOTE] = ACTIONS(3347), + [anon_sym_DOLLAR] = ACTIONS(4610), + [sym_raw_string] = ACTIONS(3347), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3347), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3347), + [anon_sym_BQUOTE] = ACTIONS(3347), + [anon_sym_LT_LPAREN] = ACTIONS(3347), + [anon_sym_GT_LPAREN] = ACTIONS(3347), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4548), - [sym_word] = ACTIONS(3299), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4610), + [sym_word] = ACTIONS(3349), }, [2461] = { [sym_concatenation] = STATE(3083), @@ -66393,42 +66680,42 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(3082), [sym_command_substitution] = STATE(3082), [sym_process_substitution] = STATE(3082), - [anon_sym_RBRACE] = ACTIONS(6262), - [sym__special_characters] = ACTIONS(6266), - [anon_sym_DQUOTE] = ACTIONS(1924), - [anon_sym_DOLLAR] = ACTIONS(1926), - [sym_raw_string] = ACTIONS(6268), - [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), + [anon_sym_RBRACE] = ACTIONS(6330), + [sym__special_characters] = ACTIONS(6334), + [anon_sym_DQUOTE] = ACTIONS(1952), + [anon_sym_DOLLAR] = ACTIONS(1954), + [sym_raw_string] = ACTIONS(6336), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), + [anon_sym_BQUOTE] = ACTIONS(1962), + [anon_sym_LT_LPAREN] = ACTIONS(1964), + [anon_sym_GT_LPAREN] = ACTIONS(1964), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6270), + [sym_word] = ACTIONS(6338), }, [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__concat] = ACTIONS(3392), + [sym_variable_name] = ACTIONS(3392), + [anon_sym_PIPE] = ACTIONS(4618), + [anon_sym_PIPE_AMP] = ACTIONS(3392), + [anon_sym_AMP_AMP] = ACTIONS(3392), + [anon_sym_PIPE_PIPE] = ACTIONS(3392), + [sym__special_characters] = ACTIONS(4618), + [anon_sym_DQUOTE] = ACTIONS(3392), + [anon_sym_DOLLAR] = ACTIONS(4618), + [sym_raw_string] = ACTIONS(3392), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3392), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3392), + [anon_sym_BQUOTE] = ACTIONS(3392), + [anon_sym_LT_LPAREN] = ACTIONS(3392), + [anon_sym_GT_LPAREN] = ACTIONS(3392), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4556), - [sym_word] = ACTIONS(3344), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4618), + [sym_word] = ACTIONS(3394), }, [2463] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6272), + [sym_regex_without_right_brace] = ACTIONS(6340), }, [2464] = { [sym_concatenation] = STATE(451), @@ -66439,49 +66726,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6274), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6342), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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__concat] = ACTIONS(3400), + [sym_variable_name] = ACTIONS(3400), + [anon_sym_PIPE] = ACTIONS(4624), + [anon_sym_PIPE_AMP] = ACTIONS(3400), + [anon_sym_AMP_AMP] = ACTIONS(3400), + [anon_sym_PIPE_PIPE] = ACTIONS(3400), + [sym__special_characters] = ACTIONS(4624), + [anon_sym_DQUOTE] = ACTIONS(3400), + [anon_sym_DOLLAR] = ACTIONS(4624), + [sym_raw_string] = ACTIONS(3400), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3400), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3400), + [anon_sym_BQUOTE] = ACTIONS(3400), + [anon_sym_LT_LPAREN] = ACTIONS(3400), + [anon_sym_GT_LPAREN] = ACTIONS(3400), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4562), - [sym_word] = ACTIONS(3352), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4624), + [sym_word] = ACTIONS(3402), }, [2466] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6276), + [sym_regex_without_right_brace] = ACTIONS(6344), }, [2467] = { [sym_concatenation] = STATE(451), @@ -66492,29 +66779,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [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), + [anon_sym_RBRACE] = ACTIONS(6346), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2468] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6280), + [sym_regex_without_right_brace] = ACTIONS(6348), }, [2469] = { [sym_concatenation] = STATE(451), @@ -66525,25 +66812,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6262), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6330), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2470] = { [sym_concatenation] = STATE(451), @@ -66554,45 +66841,45 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3090), - [anon_sym_RBRACE] = ACTIONS(6282), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6350), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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__concat] = ACTIONS(3412), + [sym_variable_name] = ACTIONS(3412), + [anon_sym_PIPE] = ACTIONS(4634), + [anon_sym_PIPE_AMP] = ACTIONS(3412), + [anon_sym_AMP_AMP] = ACTIONS(3412), + [anon_sym_PIPE_PIPE] = ACTIONS(3412), + [sym__special_characters] = ACTIONS(4634), + [anon_sym_DQUOTE] = ACTIONS(3412), + [anon_sym_DOLLAR] = ACTIONS(4634), + [sym_raw_string] = ACTIONS(3412), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3412), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3412), + [anon_sym_BQUOTE] = ACTIONS(3412), + [anon_sym_LT_LPAREN] = ACTIONS(3412), + [anon_sym_GT_LPAREN] = ACTIONS(3412), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4572), - [sym_word] = ACTIONS(3364), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4634), + [sym_word] = ACTIONS(3414), }, [2472] = { [sym_concatenation] = STATE(451), @@ -66603,59 +66890,59 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3092), - [anon_sym_RBRACE] = ACTIONS(6284), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6352), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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__concat] = ACTIONS(3283), + [anon_sym_PIPE] = ACTIONS(4602), + [anon_sym_PIPE_AMP] = ACTIONS(3283), + [anon_sym_AMP_AMP] = ACTIONS(3283), + [anon_sym_PIPE_PIPE] = ACTIONS(3283), + [sym__special_characters] = ACTIONS(4602), + [anon_sym_DQUOTE] = ACTIONS(3283), + [anon_sym_DOLLAR] = ACTIONS(4602), + [sym_raw_string] = ACTIONS(3283), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3283), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3283), + [anon_sym_BQUOTE] = ACTIONS(3283), + [anon_sym_LT_LPAREN] = ACTIONS(3283), + [anon_sym_GT_LPAREN] = ACTIONS(3283), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4540), - [sym_word] = ACTIONS(3237), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4602), + [sym_word] = ACTIONS(3285), }, [2474] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(6286), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(6354), [sym_comment] = ACTIONS(56), }, [2475] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(6288), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(6356), [sym_comment] = ACTIONS(56), }, [2476] = { - [anon_sym_RBRACE] = ACTIONS(6288), + [anon_sym_RBRACE] = ACTIONS(6356), [sym_comment] = ACTIONS(56), }, [2477] = { @@ -66667,44 +66954,44 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3096), - [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), + [anon_sym_RBRACE] = ACTIONS(6358), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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__concat] = ACTIONS(3347), + [anon_sym_PIPE] = ACTIONS(4610), + [anon_sym_PIPE_AMP] = ACTIONS(3347), + [anon_sym_AMP_AMP] = ACTIONS(3347), + [anon_sym_PIPE_PIPE] = ACTIONS(3347), + [sym__special_characters] = ACTIONS(4610), + [anon_sym_DQUOTE] = ACTIONS(3347), + [anon_sym_DOLLAR] = ACTIONS(4610), + [sym_raw_string] = ACTIONS(3347), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3347), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3347), + [anon_sym_BQUOTE] = ACTIONS(3347), + [anon_sym_LT_LPAREN] = ACTIONS(3347), + [anon_sym_GT_LPAREN] = ACTIONS(3347), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4548), - [sym_word] = ACTIONS(3299), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4610), + [sym_word] = ACTIONS(3349), }, [2479] = { [sym_concatenation] = STATE(3099), @@ -66714,41 +67001,41 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(3098), [sym_command_substitution] = STATE(3098), [sym_process_substitution] = STATE(3098), - [anon_sym_RBRACE] = ACTIONS(6288), - [sym__special_characters] = ACTIONS(6292), - [anon_sym_DQUOTE] = ACTIONS(1924), - [anon_sym_DOLLAR] = ACTIONS(1926), - [sym_raw_string] = ACTIONS(6294), - [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), + [anon_sym_RBRACE] = ACTIONS(6356), + [sym__special_characters] = ACTIONS(6360), + [anon_sym_DQUOTE] = ACTIONS(1952), + [anon_sym_DOLLAR] = ACTIONS(1954), + [sym_raw_string] = ACTIONS(6362), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), + [anon_sym_BQUOTE] = ACTIONS(1962), + [anon_sym_LT_LPAREN] = ACTIONS(1964), + [anon_sym_GT_LPAREN] = ACTIONS(1964), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6296), + [sym_word] = ACTIONS(6364), }, [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__concat] = ACTIONS(3392), + [anon_sym_PIPE] = ACTIONS(4618), + [anon_sym_PIPE_AMP] = ACTIONS(3392), + [anon_sym_AMP_AMP] = ACTIONS(3392), + [anon_sym_PIPE_PIPE] = ACTIONS(3392), + [sym__special_characters] = ACTIONS(4618), + [anon_sym_DQUOTE] = ACTIONS(3392), + [anon_sym_DOLLAR] = ACTIONS(4618), + [sym_raw_string] = ACTIONS(3392), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3392), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3392), + [anon_sym_BQUOTE] = ACTIONS(3392), + [anon_sym_LT_LPAREN] = ACTIONS(3392), + [anon_sym_GT_LPAREN] = ACTIONS(3392), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4556), - [sym_word] = ACTIONS(3344), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4618), + [sym_word] = ACTIONS(3394), }, [2481] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6298), + [sym_regex_without_right_brace] = ACTIONS(6366), }, [2482] = { [sym_concatenation] = STATE(451), @@ -66759,48 +67046,48 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6300), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6368), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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__concat] = ACTIONS(3400), + [anon_sym_PIPE] = ACTIONS(4624), + [anon_sym_PIPE_AMP] = ACTIONS(3400), + [anon_sym_AMP_AMP] = ACTIONS(3400), + [anon_sym_PIPE_PIPE] = ACTIONS(3400), + [sym__special_characters] = ACTIONS(4624), + [anon_sym_DQUOTE] = ACTIONS(3400), + [anon_sym_DOLLAR] = ACTIONS(4624), + [sym_raw_string] = ACTIONS(3400), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3400), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3400), + [anon_sym_BQUOTE] = ACTIONS(3400), + [anon_sym_LT_LPAREN] = ACTIONS(3400), + [anon_sym_GT_LPAREN] = ACTIONS(3400), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4562), - [sym_word] = ACTIONS(3352), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4624), + [sym_word] = ACTIONS(3402), }, [2484] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6302), + [sym_regex_without_right_brace] = ACTIONS(6370), }, [2485] = { [sym_concatenation] = STATE(451), @@ -66811,29 +67098,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6304), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6372), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2486] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6306), + [sym_regex_without_right_brace] = ACTIONS(6374), }, [2487] = { [sym_concatenation] = STATE(451), @@ -66844,25 +67131,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [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), + [anon_sym_RBRACE] = ACTIONS(6356), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2488] = { [sym_concatenation] = STATE(451), @@ -66873,44 +67160,44 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3106), - [anon_sym_RBRACE] = ACTIONS(6308), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6376), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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__concat] = ACTIONS(3412), + [anon_sym_PIPE] = ACTIONS(4634), + [anon_sym_PIPE_AMP] = ACTIONS(3412), + [anon_sym_AMP_AMP] = ACTIONS(3412), + [anon_sym_PIPE_PIPE] = ACTIONS(3412), + [sym__special_characters] = ACTIONS(4634), + [anon_sym_DQUOTE] = ACTIONS(3412), + [anon_sym_DOLLAR] = ACTIONS(4634), + [sym_raw_string] = ACTIONS(3412), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3412), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3412), + [anon_sym_BQUOTE] = ACTIONS(3412), + [anon_sym_LT_LPAREN] = ACTIONS(3412), + [anon_sym_GT_LPAREN] = ACTIONS(3412), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4572), - [sym_word] = ACTIONS(3364), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4634), + [sym_word] = ACTIONS(3414), }, [2490] = { [sym_concatenation] = STATE(451), @@ -66921,115 +67208,118 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3108), - [anon_sym_RBRACE] = ACTIONS(6310), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6378), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2491] = { - [sym_file_descriptor] = ACTIONS(4728), - [sym__concat] = ACTIONS(4728), - [anon_sym_PIPE] = ACTIONS(5780), - [anon_sym_PIPE_AMP] = ACTIONS(4728), - [anon_sym_AMP_AMP] = ACTIONS(4728), - [anon_sym_PIPE_PIPE] = ACTIONS(4728), - [anon_sym_EQ_TILDE] = ACTIONS(5780), - [anon_sym_LT] = ACTIONS(5780), - [anon_sym_GT] = ACTIONS(5780), - [anon_sym_GT_GT] = ACTIONS(4728), - [anon_sym_AMP_GT] = ACTIONS(5780), - [anon_sym_AMP_GT_GT] = ACTIONS(4728), - [anon_sym_LT_AMP] = ACTIONS(4728), - [anon_sym_GT_AMP] = ACTIONS(4728), - [anon_sym_LT_LT] = ACTIONS(5780), - [anon_sym_LT_LT_DASH] = ACTIONS(4728), - [anon_sym_LT_LT_LT] = ACTIONS(4728), - [sym__special_characters] = ACTIONS(5780), - [anon_sym_DQUOTE] = ACTIONS(4728), - [anon_sym_DOLLAR] = ACTIONS(5780), - [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_file_descriptor] = ACTIONS(4790), + [sym__concat] = ACTIONS(4790), + [anon_sym_PIPE] = ACTIONS(5844), + [anon_sym_PIPE_AMP] = ACTIONS(4790), + [anon_sym_AMP_AMP] = ACTIONS(4790), + [anon_sym_PIPE_PIPE] = ACTIONS(4790), + [anon_sym_EQ_TILDE] = ACTIONS(5844), + [anon_sym_EQ_EQ] = ACTIONS(5844), + [anon_sym_LT] = ACTIONS(5844), + [anon_sym_GT] = ACTIONS(5844), + [anon_sym_GT_GT] = ACTIONS(4790), + [anon_sym_AMP_GT] = ACTIONS(5844), + [anon_sym_AMP_GT_GT] = ACTIONS(4790), + [anon_sym_LT_AMP] = ACTIONS(4790), + [anon_sym_GT_AMP] = ACTIONS(4790), + [anon_sym_LT_LT] = ACTIONS(5844), + [anon_sym_LT_LT_DASH] = ACTIONS(4790), + [anon_sym_LT_LT_LT] = ACTIONS(4790), + [sym__special_characters] = ACTIONS(5844), + [anon_sym_DQUOTE] = ACTIONS(4790), + [anon_sym_DOLLAR] = ACTIONS(5844), + [sym_raw_string] = ACTIONS(4790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4790), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4790), + [anon_sym_BQUOTE] = ACTIONS(4790), + [anon_sym_LT_LPAREN] = ACTIONS(4790), + [anon_sym_GT_LPAREN] = ACTIONS(4790), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4730), + [sym_word] = ACTIONS(4792), }, [2492] = { - [sym_file_descriptor] = ACTIONS(4734), - [sym__concat] = ACTIONS(4734), - [anon_sym_PIPE] = ACTIONS(5782), - [anon_sym_PIPE_AMP] = ACTIONS(4734), - [anon_sym_AMP_AMP] = ACTIONS(4734), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [anon_sym_EQ_TILDE] = ACTIONS(5782), - [anon_sym_LT] = ACTIONS(5782), - [anon_sym_GT] = ACTIONS(5782), - [anon_sym_GT_GT] = ACTIONS(4734), - [anon_sym_AMP_GT] = ACTIONS(5782), - [anon_sym_AMP_GT_GT] = ACTIONS(4734), - [anon_sym_LT_AMP] = ACTIONS(4734), - [anon_sym_GT_AMP] = ACTIONS(4734), - [anon_sym_LT_LT] = ACTIONS(5782), - [anon_sym_LT_LT_DASH] = ACTIONS(4734), - [anon_sym_LT_LT_LT] = ACTIONS(4734), - [sym__special_characters] = ACTIONS(5782), - [anon_sym_DQUOTE] = ACTIONS(4734), - [anon_sym_DOLLAR] = ACTIONS(5782), - [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_file_descriptor] = ACTIONS(4796), + [sym__concat] = ACTIONS(4796), + [anon_sym_PIPE] = ACTIONS(5846), + [anon_sym_PIPE_AMP] = ACTIONS(4796), + [anon_sym_AMP_AMP] = ACTIONS(4796), + [anon_sym_PIPE_PIPE] = ACTIONS(4796), + [anon_sym_EQ_TILDE] = ACTIONS(5846), + [anon_sym_EQ_EQ] = ACTIONS(5846), + [anon_sym_LT] = ACTIONS(5846), + [anon_sym_GT] = ACTIONS(5846), + [anon_sym_GT_GT] = ACTIONS(4796), + [anon_sym_AMP_GT] = ACTIONS(5846), + [anon_sym_AMP_GT_GT] = ACTIONS(4796), + [anon_sym_LT_AMP] = ACTIONS(4796), + [anon_sym_GT_AMP] = ACTIONS(4796), + [anon_sym_LT_LT] = ACTIONS(5846), + [anon_sym_LT_LT_DASH] = ACTIONS(4796), + [anon_sym_LT_LT_LT] = ACTIONS(4796), + [sym__special_characters] = ACTIONS(5846), + [anon_sym_DQUOTE] = ACTIONS(4796), + [anon_sym_DOLLAR] = ACTIONS(5846), + [sym_raw_string] = ACTIONS(4796), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4796), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4796), + [anon_sym_BQUOTE] = ACTIONS(4796), + [anon_sym_LT_LPAREN] = ACTIONS(4796), + [anon_sym_GT_LPAREN] = ACTIONS(4796), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4736), + [sym_word] = ACTIONS(4798), }, [2493] = { - [sym_file_descriptor] = ACTIONS(4797), - [sym__concat] = ACTIONS(4797), - [anon_sym_PIPE] = ACTIONS(5784), - [anon_sym_PIPE_AMP] = ACTIONS(4797), - [anon_sym_AMP_AMP] = ACTIONS(4797), - [anon_sym_PIPE_PIPE] = ACTIONS(4797), - [anon_sym_EQ_TILDE] = ACTIONS(5784), - [anon_sym_LT] = ACTIONS(5784), - [anon_sym_GT] = ACTIONS(5784), - [anon_sym_GT_GT] = ACTIONS(4797), - [anon_sym_AMP_GT] = ACTIONS(5784), - [anon_sym_AMP_GT_GT] = ACTIONS(4797), - [anon_sym_LT_AMP] = ACTIONS(4797), - [anon_sym_GT_AMP] = ACTIONS(4797), - [anon_sym_LT_LT] = ACTIONS(5784), - [anon_sym_LT_LT_DASH] = ACTIONS(4797), - [anon_sym_LT_LT_LT] = ACTIONS(4797), - [sym__special_characters] = ACTIONS(5784), - [anon_sym_DQUOTE] = ACTIONS(4797), - [anon_sym_DOLLAR] = ACTIONS(5784), - [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_file_descriptor] = ACTIONS(4859), + [sym__concat] = ACTIONS(4859), + [anon_sym_PIPE] = ACTIONS(5848), + [anon_sym_PIPE_AMP] = ACTIONS(4859), + [anon_sym_AMP_AMP] = ACTIONS(4859), + [anon_sym_PIPE_PIPE] = ACTIONS(4859), + [anon_sym_EQ_TILDE] = ACTIONS(5848), + [anon_sym_EQ_EQ] = ACTIONS(5848), + [anon_sym_LT] = ACTIONS(5848), + [anon_sym_GT] = ACTIONS(5848), + [anon_sym_GT_GT] = ACTIONS(4859), + [anon_sym_AMP_GT] = ACTIONS(5848), + [anon_sym_AMP_GT_GT] = ACTIONS(4859), + [anon_sym_LT_AMP] = ACTIONS(4859), + [anon_sym_GT_AMP] = ACTIONS(4859), + [anon_sym_LT_LT] = ACTIONS(5848), + [anon_sym_LT_LT_DASH] = ACTIONS(4859), + [anon_sym_LT_LT_LT] = ACTIONS(4859), + [sym__special_characters] = ACTIONS(5848), + [anon_sym_DQUOTE] = ACTIONS(4859), + [anon_sym_DOLLAR] = ACTIONS(5848), + [sym_raw_string] = ACTIONS(4859), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4859), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4859), + [anon_sym_BQUOTE] = ACTIONS(4859), + [anon_sym_LT_LPAREN] = ACTIONS(4859), + [anon_sym_GT_LPAREN] = ACTIONS(4859), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4799), + [sym_word] = ACTIONS(4861), }, [2494] = { [sym_concatenation] = STATE(451), @@ -67040,40 +67330,40 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6312), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6380), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2495] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(6314), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(6382), [sym_comment] = ACTIONS(56), }, [2496] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(6316), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(6384), [sym_comment] = ACTIONS(56), }, [2497] = { - [anon_sym_RBRACE] = ACTIONS(6316), + [anon_sym_RBRACE] = ACTIONS(6384), [sym_comment] = ACTIONS(56), }, [2498] = { @@ -67085,55 +67375,56 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3113), - [anon_sym_RBRACE] = ACTIONS(6318), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6386), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2499] = { - [sym_file_descriptor] = ACTIONS(4809), - [sym__concat] = ACTIONS(4809), - [anon_sym_PIPE] = ACTIONS(5794), - [anon_sym_PIPE_AMP] = ACTIONS(4809), - [anon_sym_AMP_AMP] = ACTIONS(4809), - [anon_sym_PIPE_PIPE] = ACTIONS(4809), - [anon_sym_EQ_TILDE] = ACTIONS(5794), - [anon_sym_LT] = ACTIONS(5794), - [anon_sym_GT] = ACTIONS(5794), - [anon_sym_GT_GT] = ACTIONS(4809), - [anon_sym_AMP_GT] = ACTIONS(5794), - [anon_sym_AMP_GT_GT] = ACTIONS(4809), - [anon_sym_LT_AMP] = ACTIONS(4809), - [anon_sym_GT_AMP] = ACTIONS(4809), - [anon_sym_LT_LT] = ACTIONS(5794), - [anon_sym_LT_LT_DASH] = ACTIONS(4809), - [anon_sym_LT_LT_LT] = ACTIONS(4809), - [sym__special_characters] = ACTIONS(5794), - [anon_sym_DQUOTE] = ACTIONS(4809), - [anon_sym_DOLLAR] = ACTIONS(5794), - [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_file_descriptor] = ACTIONS(4871), + [sym__concat] = ACTIONS(4871), + [anon_sym_PIPE] = ACTIONS(5858), + [anon_sym_PIPE_AMP] = ACTIONS(4871), + [anon_sym_AMP_AMP] = ACTIONS(4871), + [anon_sym_PIPE_PIPE] = ACTIONS(4871), + [anon_sym_EQ_TILDE] = ACTIONS(5858), + [anon_sym_EQ_EQ] = ACTIONS(5858), + [anon_sym_LT] = ACTIONS(5858), + [anon_sym_GT] = ACTIONS(5858), + [anon_sym_GT_GT] = ACTIONS(4871), + [anon_sym_AMP_GT] = ACTIONS(5858), + [anon_sym_AMP_GT_GT] = ACTIONS(4871), + [anon_sym_LT_AMP] = ACTIONS(4871), + [anon_sym_GT_AMP] = ACTIONS(4871), + [anon_sym_LT_LT] = ACTIONS(5858), + [anon_sym_LT_LT_DASH] = ACTIONS(4871), + [anon_sym_LT_LT_LT] = ACTIONS(4871), + [sym__special_characters] = ACTIONS(5858), + [anon_sym_DQUOTE] = ACTIONS(4871), + [anon_sym_DOLLAR] = ACTIONS(5858), + [sym_raw_string] = ACTIONS(4871), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4871), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4871), + [anon_sym_BQUOTE] = ACTIONS(4871), + [anon_sym_LT_LPAREN] = ACTIONS(4871), + [anon_sym_GT_LPAREN] = ACTIONS(4871), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4811), + [sym_word] = ACTIONS(4873), }, [2500] = { [sym_concatenation] = STATE(451), @@ -67144,55 +67435,56 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3115), - [anon_sym_RBRACE] = ACTIONS(6320), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6388), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2501] = { - [sym_file_descriptor] = ACTIONS(4815), - [sym__concat] = ACTIONS(4815), - [anon_sym_PIPE] = ACTIONS(5798), - [anon_sym_PIPE_AMP] = ACTIONS(4815), - [anon_sym_AMP_AMP] = ACTIONS(4815), - [anon_sym_PIPE_PIPE] = ACTIONS(4815), - [anon_sym_EQ_TILDE] = ACTIONS(5798), - [anon_sym_LT] = ACTIONS(5798), - [anon_sym_GT] = ACTIONS(5798), - [anon_sym_GT_GT] = ACTIONS(4815), - [anon_sym_AMP_GT] = ACTIONS(5798), - [anon_sym_AMP_GT_GT] = ACTIONS(4815), - [anon_sym_LT_AMP] = ACTIONS(4815), - [anon_sym_GT_AMP] = ACTIONS(4815), - [anon_sym_LT_LT] = ACTIONS(5798), - [anon_sym_LT_LT_DASH] = ACTIONS(4815), - [anon_sym_LT_LT_LT] = ACTIONS(4815), - [sym__special_characters] = ACTIONS(5798), - [anon_sym_DQUOTE] = ACTIONS(4815), - [anon_sym_DOLLAR] = ACTIONS(5798), - [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_file_descriptor] = ACTIONS(4877), + [sym__concat] = ACTIONS(4877), + [anon_sym_PIPE] = ACTIONS(5862), + [anon_sym_PIPE_AMP] = ACTIONS(4877), + [anon_sym_AMP_AMP] = ACTIONS(4877), + [anon_sym_PIPE_PIPE] = ACTIONS(4877), + [anon_sym_EQ_TILDE] = ACTIONS(5862), + [anon_sym_EQ_EQ] = ACTIONS(5862), + [anon_sym_LT] = ACTIONS(5862), + [anon_sym_GT] = ACTIONS(5862), + [anon_sym_GT_GT] = ACTIONS(4877), + [anon_sym_AMP_GT] = ACTIONS(5862), + [anon_sym_AMP_GT_GT] = ACTIONS(4877), + [anon_sym_LT_AMP] = ACTIONS(4877), + [anon_sym_GT_AMP] = ACTIONS(4877), + [anon_sym_LT_LT] = ACTIONS(5862), + [anon_sym_LT_LT_DASH] = ACTIONS(4877), + [anon_sym_LT_LT_LT] = ACTIONS(4877), + [sym__special_characters] = ACTIONS(5862), + [anon_sym_DQUOTE] = ACTIONS(4877), + [anon_sym_DOLLAR] = ACTIONS(5862), + [sym_raw_string] = ACTIONS(4877), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4877), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4877), + [anon_sym_BQUOTE] = ACTIONS(4877), + [anon_sym_LT_LPAREN] = ACTIONS(4877), + [anon_sym_GT_LPAREN] = ACTIONS(4877), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4817), + [sym_word] = ACTIONS(4879), }, [2502] = { [sym_concatenation] = STATE(451), @@ -67203,55 +67495,56 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3117), - [anon_sym_RBRACE] = ACTIONS(6322), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6390), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2503] = { - [sym_file_descriptor] = ACTIONS(4821), - [sym__concat] = ACTIONS(4821), - [anon_sym_PIPE] = ACTIONS(5802), - [anon_sym_PIPE_AMP] = ACTIONS(4821), - [anon_sym_AMP_AMP] = ACTIONS(4821), - [anon_sym_PIPE_PIPE] = ACTIONS(4821), - [anon_sym_EQ_TILDE] = ACTIONS(5802), - [anon_sym_LT] = ACTIONS(5802), - [anon_sym_GT] = ACTIONS(5802), - [anon_sym_GT_GT] = ACTIONS(4821), - [anon_sym_AMP_GT] = ACTIONS(5802), - [anon_sym_AMP_GT_GT] = ACTIONS(4821), - [anon_sym_LT_AMP] = ACTIONS(4821), - [anon_sym_GT_AMP] = ACTIONS(4821), - [anon_sym_LT_LT] = ACTIONS(5802), - [anon_sym_LT_LT_DASH] = ACTIONS(4821), - [anon_sym_LT_LT_LT] = ACTIONS(4821), - [sym__special_characters] = ACTIONS(5802), - [anon_sym_DQUOTE] = ACTIONS(4821), - [anon_sym_DOLLAR] = ACTIONS(5802), - [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_file_descriptor] = ACTIONS(4883), + [sym__concat] = ACTIONS(4883), + [anon_sym_PIPE] = ACTIONS(5866), + [anon_sym_PIPE_AMP] = ACTIONS(4883), + [anon_sym_AMP_AMP] = ACTIONS(4883), + [anon_sym_PIPE_PIPE] = ACTIONS(4883), + [anon_sym_EQ_TILDE] = ACTIONS(5866), + [anon_sym_EQ_EQ] = ACTIONS(5866), + [anon_sym_LT] = ACTIONS(5866), + [anon_sym_GT] = ACTIONS(5866), + [anon_sym_GT_GT] = ACTIONS(4883), + [anon_sym_AMP_GT] = ACTIONS(5866), + [anon_sym_AMP_GT_GT] = ACTIONS(4883), + [anon_sym_LT_AMP] = ACTIONS(4883), + [anon_sym_GT_AMP] = ACTIONS(4883), + [anon_sym_LT_LT] = ACTIONS(5866), + [anon_sym_LT_LT_DASH] = ACTIONS(4883), + [anon_sym_LT_LT_LT] = ACTIONS(4883), + [sym__special_characters] = ACTIONS(5866), + [anon_sym_DQUOTE] = ACTIONS(4883), + [anon_sym_DOLLAR] = ACTIONS(5866), + [sym_raw_string] = ACTIONS(4883), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4883), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4883), + [anon_sym_BQUOTE] = ACTIONS(4883), + [anon_sym_LT_LPAREN] = ACTIONS(4883), + [anon_sym_GT_LPAREN] = ACTIONS(4883), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4823), + [sym_word] = ACTIONS(4885), }, [2504] = { [sym_concatenation] = STATE(451), @@ -67262,55 +67555,56 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6324), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6392), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2505] = { - [sym_file_descriptor] = ACTIONS(4827), - [sym__concat] = ACTIONS(4827), - [anon_sym_PIPE] = ACTIONS(5806), - [anon_sym_PIPE_AMP] = ACTIONS(4827), - [anon_sym_AMP_AMP] = ACTIONS(4827), - [anon_sym_PIPE_PIPE] = ACTIONS(4827), - [anon_sym_EQ_TILDE] = ACTIONS(5806), - [anon_sym_LT] = ACTIONS(5806), - [anon_sym_GT] = ACTIONS(5806), - [anon_sym_GT_GT] = ACTIONS(4827), - [anon_sym_AMP_GT] = ACTIONS(5806), - [anon_sym_AMP_GT_GT] = ACTIONS(4827), - [anon_sym_LT_AMP] = ACTIONS(4827), - [anon_sym_GT_AMP] = ACTIONS(4827), - [anon_sym_LT_LT] = ACTIONS(5806), - [anon_sym_LT_LT_DASH] = ACTIONS(4827), - [anon_sym_LT_LT_LT] = ACTIONS(4827), - [sym__special_characters] = ACTIONS(5806), - [anon_sym_DQUOTE] = ACTIONS(4827), - [anon_sym_DOLLAR] = ACTIONS(5806), - [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_file_descriptor] = ACTIONS(4889), + [sym__concat] = ACTIONS(4889), + [anon_sym_PIPE] = ACTIONS(5870), + [anon_sym_PIPE_AMP] = ACTIONS(4889), + [anon_sym_AMP_AMP] = ACTIONS(4889), + [anon_sym_PIPE_PIPE] = ACTIONS(4889), + [anon_sym_EQ_TILDE] = ACTIONS(5870), + [anon_sym_EQ_EQ] = ACTIONS(5870), + [anon_sym_LT] = ACTIONS(5870), + [anon_sym_GT] = ACTIONS(5870), + [anon_sym_GT_GT] = ACTIONS(4889), + [anon_sym_AMP_GT] = ACTIONS(5870), + [anon_sym_AMP_GT_GT] = ACTIONS(4889), + [anon_sym_LT_AMP] = ACTIONS(4889), + [anon_sym_GT_AMP] = ACTIONS(4889), + [anon_sym_LT_LT] = ACTIONS(5870), + [anon_sym_LT_LT_DASH] = ACTIONS(4889), + [anon_sym_LT_LT_LT] = ACTIONS(4889), + [sym__special_characters] = ACTIONS(5870), + [anon_sym_DQUOTE] = ACTIONS(4889), + [anon_sym_DOLLAR] = ACTIONS(5870), + [sym_raw_string] = ACTIONS(4889), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4889), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4889), + [anon_sym_BQUOTE] = ACTIONS(4889), + [anon_sym_LT_LPAREN] = ACTIONS(4889), + [anon_sym_GT_LPAREN] = ACTIONS(4889), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4829), + [sym_word] = ACTIONS(4891), }, [2506] = { [sym_concatenation] = STATE(451), @@ -67321,85 +67615,85 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6326), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6394), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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_file_descriptor] = ACTIONS(1886), + [sym__concat] = ACTIONS(1886), + [anon_sym_PIPE] = ACTIONS(3056), + [anon_sym_PIPE_AMP] = ACTIONS(1886), + [anon_sym_AMP_AMP] = ACTIONS(1886), + [anon_sym_PIPE_PIPE] = ACTIONS(1886), + [anon_sym_LT] = ACTIONS(3056), + [anon_sym_GT] = ACTIONS(3056), + [anon_sym_GT_GT] = ACTIONS(1886), + [anon_sym_AMP_GT] = ACTIONS(3056), + [anon_sym_AMP_GT_GT] = ACTIONS(1886), + [anon_sym_LT_AMP] = ACTIONS(1886), + [anon_sym_GT_AMP] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(3056), + [anon_sym_LT_LT_DASH] = ACTIONS(1886), + [anon_sym_LT_LT_LT] = ACTIONS(1886), + [anon_sym_BQUOTE] = ACTIONS(1886), [sym_comment] = ACTIONS(56), }, [2508] = { [aux_sym_concatenation_repeat1] = STATE(2508), - [sym_file_descriptor] = ACTIONS(1858), - [sym__concat] = ACTIONS(6328), - [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_file_descriptor] = ACTIONS(1886), + [sym__concat] = ACTIONS(6396), + [anon_sym_PIPE] = ACTIONS(3056), + [anon_sym_PIPE_AMP] = ACTIONS(1886), + [anon_sym_AMP_AMP] = ACTIONS(1886), + [anon_sym_PIPE_PIPE] = ACTIONS(1886), + [anon_sym_LT] = ACTIONS(3056), + [anon_sym_GT] = ACTIONS(3056), + [anon_sym_GT_GT] = ACTIONS(1886), + [anon_sym_AMP_GT] = ACTIONS(3056), + [anon_sym_AMP_GT_GT] = ACTIONS(1886), + [anon_sym_LT_AMP] = ACTIONS(1886), + [anon_sym_GT_AMP] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(3056), + [anon_sym_LT_LT_DASH] = ACTIONS(1886), + [anon_sym_LT_LT_LT] = ACTIONS(1886), + [anon_sym_BQUOTE] = ACTIONS(1886), [sym_comment] = ACTIONS(56), }, [2509] = { - [sym_file_descriptor] = ACTIONS(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_file_descriptor] = ACTIONS(1923), + [sym__concat] = ACTIONS(1923), + [anon_sym_PIPE] = ACTIONS(3061), + [anon_sym_PIPE_AMP] = ACTIONS(1923), + [anon_sym_AMP_AMP] = ACTIONS(1923), + [anon_sym_PIPE_PIPE] = ACTIONS(1923), + [anon_sym_LT] = ACTIONS(3061), + [anon_sym_GT] = ACTIONS(3061), + [anon_sym_GT_GT] = ACTIONS(1923), + [anon_sym_AMP_GT] = ACTIONS(3061), + [anon_sym_AMP_GT_GT] = ACTIONS(1923), + [anon_sym_LT_AMP] = ACTIONS(1923), + [anon_sym_GT_AMP] = ACTIONS(1923), + [anon_sym_LT_LT] = ACTIONS(3061), + [anon_sym_LT_LT_DASH] = ACTIONS(1923), + [anon_sym_LT_LT_LT] = ACTIONS(1923), + [anon_sym_BQUOTE] = ACTIONS(1923), [sym_comment] = ACTIONS(56), }, [2510] = { @@ -67410,42 +67704,42 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(3122), [sym_command_substitution] = STATE(3122), [sym_process_substitution] = STATE(3122), - [anon_sym_RBRACE] = ACTIONS(6331), - [sym__special_characters] = ACTIONS(6333), - [anon_sym_DQUOTE] = ACTIONS(1924), - [anon_sym_DOLLAR] = ACTIONS(1926), - [sym_raw_string] = ACTIONS(6335), - [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), + [anon_sym_RBRACE] = ACTIONS(6399), + [sym__special_characters] = ACTIONS(6401), + [anon_sym_DQUOTE] = ACTIONS(1952), + [anon_sym_DOLLAR] = ACTIONS(1954), + [sym_raw_string] = ACTIONS(6403), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), + [anon_sym_BQUOTE] = ACTIONS(1962), + [anon_sym_LT_LPAREN] = ACTIONS(1964), + [anon_sym_GT_LPAREN] = ACTIONS(1964), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6337), + [sym_word] = ACTIONS(6405), }, [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_file_descriptor] = ACTIONS(1968), + [sym__concat] = ACTIONS(1968), + [anon_sym_PIPE] = ACTIONS(3071), + [anon_sym_PIPE_AMP] = ACTIONS(1968), + [anon_sym_AMP_AMP] = ACTIONS(1968), + [anon_sym_PIPE_PIPE] = ACTIONS(1968), + [anon_sym_LT] = ACTIONS(3071), + [anon_sym_GT] = ACTIONS(3071), + [anon_sym_GT_GT] = ACTIONS(1968), + [anon_sym_AMP_GT] = ACTIONS(3071), + [anon_sym_AMP_GT_GT] = ACTIONS(1968), + [anon_sym_LT_AMP] = ACTIONS(1968), + [anon_sym_GT_AMP] = ACTIONS(1968), + [anon_sym_LT_LT] = ACTIONS(3071), + [anon_sym_LT_LT_DASH] = ACTIONS(1968), + [anon_sym_LT_LT_LT] = ACTIONS(1968), + [anon_sym_BQUOTE] = ACTIONS(1968), [sym_comment] = ACTIONS(56), }, [2512] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6339), + [sym_regex_without_right_brace] = ACTIONS(6407), }, [2513] = { [sym_concatenation] = STATE(451), @@ -67456,29 +67750,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6341), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6409), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2514] = { - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(6343), + [anon_sym_LBRACK] = ACTIONS(836), + [anon_sym_EQ] = ACTIONS(6411), [sym_comment] = ACTIONS(56), }, [2515] = { @@ -67490,26 +67784,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3129), - [anon_sym_RBRACE] = ACTIONS(6345), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_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(6347), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6413), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(6415), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2516] = { [sym_concatenation] = STATE(451), @@ -67520,26 +67814,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3132), - [anon_sym_RBRACE] = ACTIONS(6349), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_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(6351), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6417), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(6419), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2517] = { [sym_concatenation] = STATE(451), @@ -67550,50 +67844,50 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3134), - [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), - [aux_sym_SLASH] = ACTIONS(6353), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6399), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(6421), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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_file_descriptor] = ACTIONS(2022), + [sym__concat] = ACTIONS(2022), + [anon_sym_PIPE] = ACTIONS(3089), + [anon_sym_PIPE_AMP] = ACTIONS(2022), + [anon_sym_AMP_AMP] = ACTIONS(2022), + [anon_sym_PIPE_PIPE] = ACTIONS(2022), + [anon_sym_LT] = ACTIONS(3089), + [anon_sym_GT] = ACTIONS(3089), + [anon_sym_GT_GT] = ACTIONS(2022), + [anon_sym_AMP_GT] = ACTIONS(3089), + [anon_sym_AMP_GT_GT] = ACTIONS(2022), + [anon_sym_LT_AMP] = ACTIONS(2022), + [anon_sym_GT_AMP] = ACTIONS(2022), + [anon_sym_LT_LT] = ACTIONS(3089), + [anon_sym_LT_LT_DASH] = ACTIONS(2022), + [anon_sym_LT_LT_LT] = ACTIONS(2022), + [anon_sym_BQUOTE] = ACTIONS(2022), [sym_comment] = ACTIONS(56), }, [2519] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6355), + [sym_regex_without_right_brace] = ACTIONS(6423), }, [2520] = { [sym_concatenation] = STATE(451), @@ -67604,49 +67898,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6357), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6425), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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_file_descriptor] = ACTIONS(2030), + [sym__concat] = ACTIONS(2030), + [anon_sym_PIPE] = ACTIONS(3095), + [anon_sym_PIPE_AMP] = ACTIONS(2030), + [anon_sym_AMP_AMP] = ACTIONS(2030), + [anon_sym_PIPE_PIPE] = ACTIONS(2030), + [anon_sym_LT] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(3095), + [anon_sym_GT_GT] = ACTIONS(2030), + [anon_sym_AMP_GT] = ACTIONS(3095), + [anon_sym_AMP_GT_GT] = ACTIONS(2030), + [anon_sym_LT_AMP] = ACTIONS(2030), + [anon_sym_GT_AMP] = ACTIONS(2030), + [anon_sym_LT_LT] = ACTIONS(3095), + [anon_sym_LT_LT_DASH] = ACTIONS(2030), + [anon_sym_LT_LT_LT] = ACTIONS(2030), + [anon_sym_BQUOTE] = ACTIONS(2030), [sym_comment] = ACTIONS(56), }, [2522] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6359), + [sym_regex_without_right_brace] = ACTIONS(6427), }, [2523] = { [sym_concatenation] = STATE(451), @@ -67657,103 +67951,103 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(6399), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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_file_descriptor] = ACTIONS(2190), + [sym__concat] = ACTIONS(2190), + [anon_sym_PIPE] = ACTIONS(3099), + [anon_sym_PIPE_AMP] = ACTIONS(2190), + [anon_sym_AMP_AMP] = ACTIONS(2190), + [anon_sym_PIPE_PIPE] = ACTIONS(2190), + [anon_sym_LT] = ACTIONS(3099), + [anon_sym_GT] = ACTIONS(3099), + [anon_sym_GT_GT] = ACTIONS(2190), + [anon_sym_AMP_GT] = ACTIONS(3099), + [anon_sym_AMP_GT_GT] = ACTIONS(2190), + [anon_sym_LT_AMP] = ACTIONS(2190), + [anon_sym_GT_AMP] = ACTIONS(2190), + [anon_sym_LT_LT] = ACTIONS(3099), + [anon_sym_LT_LT_DASH] = ACTIONS(2190), + [anon_sym_LT_LT_LT] = ACTIONS(2190), + [anon_sym_BQUOTE] = ACTIONS(2190), [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_file_descriptor] = ACTIONS(2396), + [sym__concat] = ACTIONS(2396), + [anon_sym_PIPE] = ACTIONS(3101), + [anon_sym_PIPE_AMP] = ACTIONS(2396), + [anon_sym_AMP_AMP] = ACTIONS(2396), + [anon_sym_PIPE_PIPE] = ACTIONS(2396), + [anon_sym_LT] = ACTIONS(3101), + [anon_sym_GT] = ACTIONS(3101), + [anon_sym_GT_GT] = ACTIONS(2396), + [anon_sym_AMP_GT] = ACTIONS(3101), + [anon_sym_AMP_GT_GT] = ACTIONS(2396), + [anon_sym_LT_AMP] = ACTIONS(2396), + [anon_sym_GT_AMP] = ACTIONS(2396), + [anon_sym_LT_LT] = ACTIONS(3101), + [anon_sym_LT_LT_DASH] = ACTIONS(2396), + [anon_sym_LT_LT_LT] = ACTIONS(2396), + [anon_sym_BQUOTE] = ACTIONS(2396), [sym_comment] = ACTIONS(56), }, [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_file_descriptor] = ACTIONS(3283), + [sym__concat] = ACTIONS(3283), + [anon_sym_PIPE] = ACTIONS(3285), + [anon_sym_SEMI_SEMI] = ACTIONS(3285), + [anon_sym_PIPE_AMP] = ACTIONS(3285), + [anon_sym_AMP_AMP] = ACTIONS(3285), + [anon_sym_PIPE_PIPE] = ACTIONS(3285), + [anon_sym_LT] = ACTIONS(3285), + [anon_sym_GT] = ACTIONS(3285), + [anon_sym_GT_GT] = ACTIONS(3285), + [anon_sym_AMP_GT] = ACTIONS(3285), + [anon_sym_AMP_GT_GT] = ACTIONS(3285), + [anon_sym_LT_AMP] = ACTIONS(3285), + [anon_sym_GT_AMP] = ACTIONS(3285), + [anon_sym_LT_LT] = ACTIONS(3285), + [anon_sym_LT_LT_DASH] = ACTIONS(3285), + [anon_sym_LT_LT_LT] = ACTIONS(3285), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3237), - [anon_sym_LF] = ACTIONS(3237), - [anon_sym_AMP] = ACTIONS(3237), + [anon_sym_SEMI] = ACTIONS(3285), + [anon_sym_LF] = ACTIONS(3285), + [anon_sym_AMP] = ACTIONS(3285), }, [2527] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(6361), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(6429), [sym_comment] = ACTIONS(56), }, [2528] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(6363), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(6431), [sym_comment] = ACTIONS(56), }, [2529] = { - [anon_sym_RBRACE] = ACTIONS(6363), + [anon_sym_RBRACE] = ACTIONS(6431), [sym_comment] = ACTIONS(56), }, [2530] = { @@ -67765,48 +68059,48 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3141), - [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), + [anon_sym_RBRACE] = ACTIONS(6433), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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_file_descriptor] = ACTIONS(3347), + [sym__concat] = ACTIONS(3347), + [anon_sym_PIPE] = ACTIONS(3349), + [anon_sym_SEMI_SEMI] = ACTIONS(3349), + [anon_sym_PIPE_AMP] = ACTIONS(3349), + [anon_sym_AMP_AMP] = ACTIONS(3349), + [anon_sym_PIPE_PIPE] = ACTIONS(3349), + [anon_sym_LT] = ACTIONS(3349), + [anon_sym_GT] = ACTIONS(3349), + [anon_sym_GT_GT] = ACTIONS(3349), + [anon_sym_AMP_GT] = ACTIONS(3349), + [anon_sym_AMP_GT_GT] = ACTIONS(3349), + [anon_sym_LT_AMP] = ACTIONS(3349), + [anon_sym_GT_AMP] = ACTIONS(3349), + [anon_sym_LT_LT] = ACTIONS(3349), + [anon_sym_LT_LT_DASH] = ACTIONS(3349), + [anon_sym_LT_LT_LT] = ACTIONS(3349), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3299), - [anon_sym_LF] = ACTIONS(3299), - [anon_sym_AMP] = ACTIONS(3299), + [anon_sym_SEMI] = ACTIONS(3349), + [anon_sym_LF] = ACTIONS(3349), + [anon_sym_AMP] = ACTIONS(3349), }, [2532] = { [sym_concatenation] = STATE(3144), @@ -67816,45 +68110,45 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(3143), [sym_command_substitution] = STATE(3143), [sym_process_substitution] = STATE(3143), - [anon_sym_RBRACE] = ACTIONS(6363), - [sym__special_characters] = ACTIONS(6367), - [anon_sym_DQUOTE] = ACTIONS(1924), - [anon_sym_DOLLAR] = ACTIONS(1926), - [sym_raw_string] = ACTIONS(6369), - [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), + [anon_sym_RBRACE] = ACTIONS(6431), + [sym__special_characters] = ACTIONS(6435), + [anon_sym_DQUOTE] = ACTIONS(1952), + [anon_sym_DOLLAR] = ACTIONS(1954), + [sym_raw_string] = ACTIONS(6437), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), + [anon_sym_BQUOTE] = ACTIONS(1962), + [anon_sym_LT_LPAREN] = ACTIONS(1964), + [anon_sym_GT_LPAREN] = ACTIONS(1964), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6371), + [sym_word] = ACTIONS(6439), }, [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_file_descriptor] = ACTIONS(3392), + [sym__concat] = ACTIONS(3392), + [anon_sym_PIPE] = ACTIONS(3394), + [anon_sym_SEMI_SEMI] = ACTIONS(3394), + [anon_sym_PIPE_AMP] = ACTIONS(3394), + [anon_sym_AMP_AMP] = ACTIONS(3394), + [anon_sym_PIPE_PIPE] = ACTIONS(3394), + [anon_sym_LT] = ACTIONS(3394), + [anon_sym_GT] = ACTIONS(3394), + [anon_sym_GT_GT] = ACTIONS(3394), + [anon_sym_AMP_GT] = ACTIONS(3394), + [anon_sym_AMP_GT_GT] = ACTIONS(3394), + [anon_sym_LT_AMP] = ACTIONS(3394), + [anon_sym_GT_AMP] = ACTIONS(3394), + [anon_sym_LT_LT] = ACTIONS(3394), + [anon_sym_LT_LT_DASH] = ACTIONS(3394), + [anon_sym_LT_LT_LT] = ACTIONS(3394), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3344), - [anon_sym_LF] = ACTIONS(3344), - [anon_sym_AMP] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(3394), + [anon_sym_LF] = ACTIONS(3394), + [anon_sym_AMP] = ACTIONS(3394), }, [2534] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6373), + [sym_regex_without_right_brace] = ACTIONS(6441), }, [2535] = { [sym_concatenation] = STATE(451), @@ -67865,52 +68159,52 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6375), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6443), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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_file_descriptor] = ACTIONS(3400), + [sym__concat] = ACTIONS(3400), + [anon_sym_PIPE] = ACTIONS(3402), + [anon_sym_SEMI_SEMI] = ACTIONS(3402), + [anon_sym_PIPE_AMP] = ACTIONS(3402), + [anon_sym_AMP_AMP] = ACTIONS(3402), + [anon_sym_PIPE_PIPE] = ACTIONS(3402), + [anon_sym_LT] = ACTIONS(3402), + [anon_sym_GT] = ACTIONS(3402), + [anon_sym_GT_GT] = ACTIONS(3402), + [anon_sym_AMP_GT] = ACTIONS(3402), + [anon_sym_AMP_GT_GT] = ACTIONS(3402), + [anon_sym_LT_AMP] = ACTIONS(3402), + [anon_sym_GT_AMP] = ACTIONS(3402), + [anon_sym_LT_LT] = ACTIONS(3402), + [anon_sym_LT_LT_DASH] = ACTIONS(3402), + [anon_sym_LT_LT_LT] = ACTIONS(3402), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3352), - [anon_sym_LF] = ACTIONS(3352), - [anon_sym_AMP] = ACTIONS(3352), + [anon_sym_SEMI] = ACTIONS(3402), + [anon_sym_LF] = ACTIONS(3402), + [anon_sym_AMP] = ACTIONS(3402), }, [2537] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6377), + [sym_regex_without_right_brace] = ACTIONS(6445), }, [2538] = { [sym_concatenation] = STATE(451), @@ -67921,29 +68215,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6379), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6447), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2539] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6381), + [sym_regex_without_right_brace] = ACTIONS(6449), }, [2540] = { [sym_concatenation] = STATE(451), @@ -67954,25 +68248,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6363), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6431), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2541] = { [sym_concatenation] = STATE(451), @@ -67983,48 +68277,48 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3151), - [anon_sym_RBRACE] = ACTIONS(6383), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6451), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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_file_descriptor] = ACTIONS(3412), + [sym__concat] = ACTIONS(3412), + [anon_sym_PIPE] = ACTIONS(3414), + [anon_sym_SEMI_SEMI] = ACTIONS(3414), + [anon_sym_PIPE_AMP] = ACTIONS(3414), + [anon_sym_AMP_AMP] = ACTIONS(3414), + [anon_sym_PIPE_PIPE] = ACTIONS(3414), + [anon_sym_LT] = ACTIONS(3414), + [anon_sym_GT] = ACTIONS(3414), + [anon_sym_GT_GT] = ACTIONS(3414), + [anon_sym_AMP_GT] = ACTIONS(3414), + [anon_sym_AMP_GT_GT] = ACTIONS(3414), + [anon_sym_LT_AMP] = ACTIONS(3414), + [anon_sym_GT_AMP] = ACTIONS(3414), + [anon_sym_LT_LT] = ACTIONS(3414), + [anon_sym_LT_LT_DASH] = ACTIONS(3414), + [anon_sym_LT_LT_LT] = ACTIONS(3414), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3364), - [anon_sym_LF] = ACTIONS(3364), - [anon_sym_AMP] = ACTIONS(3364), + [anon_sym_SEMI] = ACTIONS(3414), + [anon_sym_LF] = ACTIONS(3414), + [anon_sym_AMP] = ACTIONS(3414), }, [2543] = { [sym_concatenation] = STATE(451), @@ -68035,25 +68329,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3153), - [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), + [anon_sym_RBRACE] = ACTIONS(6453), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2544] = { [sym_concatenation] = STATE(3157), @@ -68063,29 +68357,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(3156), [sym_command_substitution] = STATE(3156), [sym_process_substitution] = STATE(3156), - [anon_sym_RBRACE] = ACTIONS(6387), - [sym__special_characters] = ACTIONS(6389), - [anon_sym_DQUOTE] = ACTIONS(1924), - [anon_sym_DOLLAR] = ACTIONS(1926), - [sym_raw_string] = ACTIONS(6391), - [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), + [anon_sym_RBRACE] = ACTIONS(6455), + [sym__special_characters] = ACTIONS(6457), + [anon_sym_DQUOTE] = ACTIONS(1952), + [anon_sym_DOLLAR] = ACTIONS(1954), + [sym_raw_string] = ACTIONS(6459), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), + [anon_sym_BQUOTE] = ACTIONS(1962), + [anon_sym_LT_LPAREN] = ACTIONS(1964), + [anon_sym_GT_LPAREN] = ACTIONS(1964), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6393), + [sym_word] = ACTIONS(6461), }, [2545] = { - [sym__heredoc_middle] = ACTIONS(1940), - [sym__heredoc_end] = ACTIONS(1940), - [anon_sym_DOLLAR] = ACTIONS(3023), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1940), + [sym__heredoc_middle] = ACTIONS(1968), + [sym__heredoc_end] = ACTIONS(1968), + [anon_sym_DOLLAR] = ACTIONS(3071), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1968), [sym_comment] = ACTIONS(56), }, [2546] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6395), + [sym_regex_without_right_brace] = ACTIONS(6463), }, [2547] = { [sym_concatenation] = STATE(451), @@ -68096,29 +68390,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(6465), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2548] = { - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(6399), + [anon_sym_LBRACK] = ACTIONS(836), + [anon_sym_EQ] = ACTIONS(6467), [sym_comment] = ACTIONS(56), }, [2549] = { @@ -68130,26 +68424,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3163), - [anon_sym_RBRACE] = ACTIONS(6401), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_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(6403), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6469), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(6471), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2550] = { [sym_concatenation] = STATE(451), @@ -68160,26 +68454,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3166), - [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), - [aux_sym_SLASH] = ACTIONS(6407), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6473), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(6475), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2551] = { [sym_concatenation] = STATE(451), @@ -68190,37 +68484,37 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3168), - [anon_sym_RBRACE] = ACTIONS(6387), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_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(6409), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6455), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(6477), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2552] = { - [sym__heredoc_middle] = ACTIONS(1992), - [sym__heredoc_end] = ACTIONS(1992), - [anon_sym_DOLLAR] = ACTIONS(3041), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1992), + [sym__heredoc_middle] = ACTIONS(2022), + [sym__heredoc_end] = ACTIONS(2022), + [anon_sym_DOLLAR] = ACTIONS(3089), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2022), [sym_comment] = ACTIONS(56), }, [2553] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6411), + [sym_regex_without_right_brace] = ACTIONS(6479), }, [2554] = { [sym_concatenation] = STATE(451), @@ -68231,36 +68525,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6413), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6481), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2555] = { - [sym__heredoc_middle] = ACTIONS(2000), - [sym__heredoc_end] = ACTIONS(2000), - [anon_sym_DOLLAR] = ACTIONS(3047), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2000), + [sym__heredoc_middle] = ACTIONS(2030), + [sym__heredoc_end] = ACTIONS(2030), + [anon_sym_DOLLAR] = ACTIONS(3095), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2030), [sym_comment] = ACTIONS(56), }, [2556] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6415), + [sym_regex_without_right_brace] = ACTIONS(6483), }, [2557] = { [sym_concatenation] = STATE(451), @@ -68271,39 +68565,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6387), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6455), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2558] = { - [sym__concat] = ACTIONS(4728), - [anon_sym_RBRACK] = ACTIONS(4728), + [sym__concat] = ACTIONS(4790), + [anon_sym_RBRACK] = ACTIONS(4790), [sym_comment] = ACTIONS(56), }, [2559] = { - [sym__concat] = ACTIONS(4734), - [anon_sym_RBRACK] = ACTIONS(4734), + [sym__concat] = ACTIONS(4796), + [anon_sym_RBRACK] = ACTIONS(4796), [sym_comment] = ACTIONS(56), }, [2560] = { - [sym__concat] = ACTIONS(4797), - [anon_sym_RBRACK] = ACTIONS(4797), + [sym__concat] = ACTIONS(4859), + [anon_sym_RBRACK] = ACTIONS(4859), [sym_comment] = ACTIONS(56), }, [2561] = { @@ -68315,40 +68609,40 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6417), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6485), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2562] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(6419), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(6487), [sym_comment] = ACTIONS(56), }, [2563] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(6421), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(6489), [sym_comment] = ACTIONS(56), }, [2564] = { - [anon_sym_RBRACE] = ACTIONS(6421), + [anon_sym_RBRACE] = ACTIONS(6489), [sym_comment] = ACTIONS(56), }, [2565] = { @@ -68360,29 +68654,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3176), - [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), + [anon_sym_RBRACE] = ACTIONS(6491), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2566] = { - [sym__concat] = ACTIONS(4809), - [anon_sym_RBRACK] = ACTIONS(4809), + [sym__concat] = ACTIONS(4871), + [anon_sym_RBRACK] = ACTIONS(4871), [sym_comment] = ACTIONS(56), }, [2567] = { @@ -68394,29 +68688,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3178), - [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), + [anon_sym_RBRACE] = ACTIONS(6493), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2568] = { - [sym__concat] = ACTIONS(4815), - [anon_sym_RBRACK] = ACTIONS(4815), + [sym__concat] = ACTIONS(4877), + [anon_sym_RBRACK] = ACTIONS(4877), [sym_comment] = ACTIONS(56), }, [2569] = { @@ -68428,29 +68722,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3180), - [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), + [anon_sym_RBRACE] = ACTIONS(6495), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2570] = { - [sym__concat] = ACTIONS(4821), - [anon_sym_RBRACK] = ACTIONS(4821), + [sym__concat] = ACTIONS(4883), + [anon_sym_RBRACK] = ACTIONS(4883), [sym_comment] = ACTIONS(56), }, [2571] = { @@ -68462,29 +68756,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6429), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6497), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2572] = { - [sym__concat] = ACTIONS(4827), - [anon_sym_RBRACK] = ACTIONS(4827), + [sym__concat] = ACTIONS(4889), + [anon_sym_RBRACK] = ACTIONS(4889), [sym_comment] = ACTIONS(56), }, [2573] = { @@ -68496,55 +68790,55 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6431), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6499), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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__concat] = ACTIONS(3283), + [anon_sym_RPAREN] = ACTIONS(3283), + [sym__special_characters] = ACTIONS(4602), + [anon_sym_DQUOTE] = ACTIONS(3283), + [anon_sym_DOLLAR] = ACTIONS(4602), + [sym_raw_string] = ACTIONS(3283), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3283), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3283), + [anon_sym_BQUOTE] = ACTIONS(3283), + [anon_sym_LT_LPAREN] = ACTIONS(3283), + [anon_sym_GT_LPAREN] = ACTIONS(3283), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4540), + [sym_word] = ACTIONS(4602), }, [2575] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(6433), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(6501), [sym_comment] = ACTIONS(56), }, [2576] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(6435), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(6503), [sym_comment] = ACTIONS(56), }, [2577] = { - [anon_sym_RBRACE] = ACTIONS(6435), + [anon_sym_RBRACE] = ACTIONS(6503), [sym_comment] = ACTIONS(56), }, [2578] = { @@ -68556,40 +68850,40 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3186), - [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), + [anon_sym_RBRACE] = ACTIONS(6505), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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__concat] = ACTIONS(3347), + [anon_sym_RPAREN] = ACTIONS(3347), + [sym__special_characters] = ACTIONS(4610), + [anon_sym_DQUOTE] = ACTIONS(3347), + [anon_sym_DOLLAR] = ACTIONS(4610), + [sym_raw_string] = ACTIONS(3347), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3347), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3347), + [anon_sym_BQUOTE] = ACTIONS(3347), + [anon_sym_LT_LPAREN] = ACTIONS(3347), + [anon_sym_GT_LPAREN] = ACTIONS(3347), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4548), + [sym_word] = ACTIONS(4610), }, [2580] = { [sym_concatenation] = STATE(3189), @@ -68599,37 +68893,37 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(3188), [sym_command_substitution] = STATE(3188), [sym_process_substitution] = STATE(3188), - [anon_sym_RBRACE] = ACTIONS(6435), - [sym__special_characters] = ACTIONS(6439), - [anon_sym_DQUOTE] = ACTIONS(1924), - [anon_sym_DOLLAR] = ACTIONS(1926), - [sym_raw_string] = ACTIONS(6441), - [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), + [anon_sym_RBRACE] = ACTIONS(6503), + [sym__special_characters] = ACTIONS(6507), + [anon_sym_DQUOTE] = ACTIONS(1952), + [anon_sym_DOLLAR] = ACTIONS(1954), + [sym_raw_string] = ACTIONS(6509), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), + [anon_sym_BQUOTE] = ACTIONS(1962), + [anon_sym_LT_LPAREN] = ACTIONS(1964), + [anon_sym_GT_LPAREN] = ACTIONS(1964), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6443), + [sym_word] = ACTIONS(6511), }, [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__concat] = ACTIONS(3392), + [anon_sym_RPAREN] = ACTIONS(3392), + [sym__special_characters] = ACTIONS(4618), + [anon_sym_DQUOTE] = ACTIONS(3392), + [anon_sym_DOLLAR] = ACTIONS(4618), + [sym_raw_string] = ACTIONS(3392), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3392), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3392), + [anon_sym_BQUOTE] = ACTIONS(3392), + [anon_sym_LT_LPAREN] = ACTIONS(3392), + [anon_sym_GT_LPAREN] = ACTIONS(3392), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4556), + [sym_word] = ACTIONS(4618), }, [2582] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6445), + [sym_regex_without_right_brace] = ACTIONS(6513), }, [2583] = { [sym_concatenation] = STATE(451), @@ -68640,44 +68934,44 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [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), + [anon_sym_RBRACE] = ACTIONS(6515), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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__concat] = ACTIONS(3400), + [anon_sym_RPAREN] = ACTIONS(3400), + [sym__special_characters] = ACTIONS(4624), + [anon_sym_DQUOTE] = ACTIONS(3400), + [anon_sym_DOLLAR] = ACTIONS(4624), + [sym_raw_string] = ACTIONS(3400), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3400), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3400), + [anon_sym_BQUOTE] = ACTIONS(3400), + [anon_sym_LT_LPAREN] = ACTIONS(3400), + [anon_sym_GT_LPAREN] = ACTIONS(3400), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4562), + [sym_word] = ACTIONS(4624), }, [2585] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6449), + [sym_regex_without_right_brace] = ACTIONS(6517), }, [2586] = { [sym_concatenation] = STATE(451), @@ -68688,29 +68982,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6451), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6519), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2587] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6453), + [sym_regex_without_right_brace] = ACTIONS(6521), }, [2588] = { [sym_concatenation] = STATE(451), @@ -68721,25 +69015,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [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), + [anon_sym_RBRACE] = ACTIONS(6503), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2589] = { [sym_concatenation] = STATE(451), @@ -68750,40 +69044,40 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3196), - [anon_sym_RBRACE] = ACTIONS(6455), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6523), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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__concat] = ACTIONS(3412), + [anon_sym_RPAREN] = ACTIONS(3412), + [sym__special_characters] = ACTIONS(4634), + [anon_sym_DQUOTE] = ACTIONS(3412), + [anon_sym_DOLLAR] = ACTIONS(4634), + [sym_raw_string] = ACTIONS(3412), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3412), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3412), + [anon_sym_BQUOTE] = ACTIONS(3412), + [anon_sym_LT_LPAREN] = ACTIONS(3412), + [anon_sym_GT_LPAREN] = ACTIONS(3412), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4572), + [sym_word] = ACTIONS(4634), }, [2591] = { [sym_concatenation] = STATE(451), @@ -68794,118 +69088,118 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3198), - [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), + [anon_sym_RBRACE] = ACTIONS(6525), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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_file_descriptor] = ACTIONS(4790), + [sym__concat] = ACTIONS(4790), + [sym_variable_name] = ACTIONS(4790), + [anon_sym_PIPE] = ACTIONS(4792), + [anon_sym_SEMI_SEMI] = ACTIONS(4792), + [anon_sym_PIPE_AMP] = ACTIONS(4792), + [anon_sym_AMP_AMP] = ACTIONS(4792), + [anon_sym_PIPE_PIPE] = ACTIONS(4792), + [anon_sym_LT] = ACTIONS(4792), + [anon_sym_GT] = ACTIONS(4792), + [anon_sym_GT_GT] = ACTIONS(4792), + [anon_sym_AMP_GT] = ACTIONS(4792), + [anon_sym_AMP_GT_GT] = ACTIONS(4792), + [anon_sym_LT_AMP] = ACTIONS(4792), + [anon_sym_GT_AMP] = ACTIONS(4792), + [sym__special_characters] = ACTIONS(4792), + [anon_sym_DQUOTE] = ACTIONS(4792), + [anon_sym_DOLLAR] = ACTIONS(4792), + [sym_raw_string] = ACTIONS(4792), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4792), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4792), + [anon_sym_BQUOTE] = ACTIONS(4792), + [anon_sym_LT_LPAREN] = ACTIONS(4792), + [anon_sym_GT_LPAREN] = ACTIONS(4792), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4730), - [anon_sym_SEMI] = ACTIONS(4730), - [anon_sym_LF] = ACTIONS(4730), - [anon_sym_AMP] = ACTIONS(4730), + [sym_word] = ACTIONS(4792), + [anon_sym_SEMI] = ACTIONS(4792), + [anon_sym_LF] = ACTIONS(4792), + [anon_sym_AMP] = ACTIONS(4792), }, [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_file_descriptor] = ACTIONS(4796), + [sym__concat] = ACTIONS(4796), + [sym_variable_name] = ACTIONS(4796), + [anon_sym_PIPE] = ACTIONS(4798), + [anon_sym_SEMI_SEMI] = ACTIONS(4798), + [anon_sym_PIPE_AMP] = ACTIONS(4798), + [anon_sym_AMP_AMP] = ACTIONS(4798), + [anon_sym_PIPE_PIPE] = ACTIONS(4798), + [anon_sym_LT] = ACTIONS(4798), + [anon_sym_GT] = ACTIONS(4798), + [anon_sym_GT_GT] = ACTIONS(4798), + [anon_sym_AMP_GT] = ACTIONS(4798), + [anon_sym_AMP_GT_GT] = ACTIONS(4798), + [anon_sym_LT_AMP] = ACTIONS(4798), + [anon_sym_GT_AMP] = ACTIONS(4798), + [sym__special_characters] = ACTIONS(4798), + [anon_sym_DQUOTE] = ACTIONS(4798), + [anon_sym_DOLLAR] = ACTIONS(4798), + [sym_raw_string] = ACTIONS(4798), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4798), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4798), + [anon_sym_BQUOTE] = ACTIONS(4798), + [anon_sym_LT_LPAREN] = ACTIONS(4798), + [anon_sym_GT_LPAREN] = ACTIONS(4798), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4736), - [anon_sym_SEMI] = ACTIONS(4736), - [anon_sym_LF] = ACTIONS(4736), - [anon_sym_AMP] = ACTIONS(4736), + [sym_word] = ACTIONS(4798), + [anon_sym_SEMI] = ACTIONS(4798), + [anon_sym_LF] = ACTIONS(4798), + [anon_sym_AMP] = ACTIONS(4798), }, [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_file_descriptor] = ACTIONS(4859), + [sym__concat] = ACTIONS(4859), + [sym_variable_name] = ACTIONS(4859), + [anon_sym_PIPE] = ACTIONS(4861), + [anon_sym_SEMI_SEMI] = ACTIONS(4861), + [anon_sym_PIPE_AMP] = ACTIONS(4861), + [anon_sym_AMP_AMP] = ACTIONS(4861), + [anon_sym_PIPE_PIPE] = ACTIONS(4861), + [anon_sym_LT] = ACTIONS(4861), + [anon_sym_GT] = ACTIONS(4861), + [anon_sym_GT_GT] = ACTIONS(4861), + [anon_sym_AMP_GT] = ACTIONS(4861), + [anon_sym_AMP_GT_GT] = ACTIONS(4861), + [anon_sym_LT_AMP] = ACTIONS(4861), + [anon_sym_GT_AMP] = ACTIONS(4861), + [sym__special_characters] = ACTIONS(4861), + [anon_sym_DQUOTE] = ACTIONS(4861), + [anon_sym_DOLLAR] = ACTIONS(4861), + [sym_raw_string] = ACTIONS(4861), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4861), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4861), + [anon_sym_BQUOTE] = ACTIONS(4861), + [anon_sym_LT_LPAREN] = ACTIONS(4861), + [anon_sym_GT_LPAREN] = ACTIONS(4861), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4799), - [anon_sym_SEMI] = ACTIONS(4799), - [anon_sym_LF] = ACTIONS(4799), - [anon_sym_AMP] = ACTIONS(4799), + [sym_word] = ACTIONS(4861), + [anon_sym_SEMI] = ACTIONS(4861), + [anon_sym_LF] = ACTIONS(4861), + [anon_sym_AMP] = ACTIONS(4861), }, [2595] = { [sym_concatenation] = STATE(451), @@ -68916,40 +69210,40 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6459), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6527), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2596] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(6461), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(6529), [sym_comment] = ACTIONS(56), }, [2597] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(6463), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(6531), [sym_comment] = ACTIONS(56), }, [2598] = { - [anon_sym_RBRACE] = ACTIONS(6463), + [anon_sym_RBRACE] = ACTIONS(6531), [sym_comment] = ACTIONS(56), }, [2599] = { @@ -68961,56 +69255,56 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3203), - [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), + [anon_sym_RBRACE] = ACTIONS(6533), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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_file_descriptor] = ACTIONS(4871), + [sym__concat] = ACTIONS(4871), + [sym_variable_name] = ACTIONS(4871), + [anon_sym_PIPE] = ACTIONS(4873), + [anon_sym_SEMI_SEMI] = ACTIONS(4873), + [anon_sym_PIPE_AMP] = ACTIONS(4873), + [anon_sym_AMP_AMP] = ACTIONS(4873), + [anon_sym_PIPE_PIPE] = ACTIONS(4873), + [anon_sym_LT] = ACTIONS(4873), + [anon_sym_GT] = ACTIONS(4873), + [anon_sym_GT_GT] = ACTIONS(4873), + [anon_sym_AMP_GT] = ACTIONS(4873), + [anon_sym_AMP_GT_GT] = ACTIONS(4873), + [anon_sym_LT_AMP] = ACTIONS(4873), + [anon_sym_GT_AMP] = ACTIONS(4873), + [sym__special_characters] = ACTIONS(4873), + [anon_sym_DQUOTE] = ACTIONS(4873), + [anon_sym_DOLLAR] = ACTIONS(4873), + [sym_raw_string] = ACTIONS(4873), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4873), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4873), + [anon_sym_BQUOTE] = ACTIONS(4873), + [anon_sym_LT_LPAREN] = ACTIONS(4873), + [anon_sym_GT_LPAREN] = ACTIONS(4873), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4811), - [anon_sym_SEMI] = ACTIONS(4811), - [anon_sym_LF] = ACTIONS(4811), - [anon_sym_AMP] = ACTIONS(4811), + [sym_word] = ACTIONS(4873), + [anon_sym_SEMI] = ACTIONS(4873), + [anon_sym_LF] = ACTIONS(4873), + [anon_sym_AMP] = ACTIONS(4873), }, [2601] = { [sym_concatenation] = STATE(451), @@ -69021,56 +69315,56 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3205), - [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), + [anon_sym_RBRACE] = ACTIONS(6535), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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_file_descriptor] = ACTIONS(4877), + [sym__concat] = ACTIONS(4877), + [sym_variable_name] = ACTIONS(4877), + [anon_sym_PIPE] = ACTIONS(4879), + [anon_sym_SEMI_SEMI] = ACTIONS(4879), + [anon_sym_PIPE_AMP] = ACTIONS(4879), + [anon_sym_AMP_AMP] = ACTIONS(4879), + [anon_sym_PIPE_PIPE] = ACTIONS(4879), + [anon_sym_LT] = ACTIONS(4879), + [anon_sym_GT] = ACTIONS(4879), + [anon_sym_GT_GT] = ACTIONS(4879), + [anon_sym_AMP_GT] = ACTIONS(4879), + [anon_sym_AMP_GT_GT] = ACTIONS(4879), + [anon_sym_LT_AMP] = ACTIONS(4879), + [anon_sym_GT_AMP] = ACTIONS(4879), + [sym__special_characters] = ACTIONS(4879), + [anon_sym_DQUOTE] = ACTIONS(4879), + [anon_sym_DOLLAR] = ACTIONS(4879), + [sym_raw_string] = ACTIONS(4879), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4879), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4879), + [anon_sym_BQUOTE] = ACTIONS(4879), + [anon_sym_LT_LPAREN] = ACTIONS(4879), + [anon_sym_GT_LPAREN] = ACTIONS(4879), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4817), - [anon_sym_SEMI] = ACTIONS(4817), - [anon_sym_LF] = ACTIONS(4817), - [anon_sym_AMP] = ACTIONS(4817), + [sym_word] = ACTIONS(4879), + [anon_sym_SEMI] = ACTIONS(4879), + [anon_sym_LF] = ACTIONS(4879), + [anon_sym_AMP] = ACTIONS(4879), }, [2603] = { [sym_concatenation] = STATE(451), @@ -69081,56 +69375,56 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3207), - [anon_sym_RBRACE] = ACTIONS(6469), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6537), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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_file_descriptor] = ACTIONS(4883), + [sym__concat] = ACTIONS(4883), + [sym_variable_name] = ACTIONS(4883), + [anon_sym_PIPE] = ACTIONS(4885), + [anon_sym_SEMI_SEMI] = ACTIONS(4885), + [anon_sym_PIPE_AMP] = ACTIONS(4885), + [anon_sym_AMP_AMP] = ACTIONS(4885), + [anon_sym_PIPE_PIPE] = ACTIONS(4885), + [anon_sym_LT] = ACTIONS(4885), + [anon_sym_GT] = ACTIONS(4885), + [anon_sym_GT_GT] = ACTIONS(4885), + [anon_sym_AMP_GT] = ACTIONS(4885), + [anon_sym_AMP_GT_GT] = ACTIONS(4885), + [anon_sym_LT_AMP] = ACTIONS(4885), + [anon_sym_GT_AMP] = ACTIONS(4885), + [sym__special_characters] = ACTIONS(4885), + [anon_sym_DQUOTE] = ACTIONS(4885), + [anon_sym_DOLLAR] = ACTIONS(4885), + [sym_raw_string] = ACTIONS(4885), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4885), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4885), + [anon_sym_BQUOTE] = ACTIONS(4885), + [anon_sym_LT_LPAREN] = ACTIONS(4885), + [anon_sym_GT_LPAREN] = ACTIONS(4885), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4823), - [anon_sym_SEMI] = ACTIONS(4823), - [anon_sym_LF] = ACTIONS(4823), - [anon_sym_AMP] = ACTIONS(4823), + [sym_word] = ACTIONS(4885), + [anon_sym_SEMI] = ACTIONS(4885), + [anon_sym_LF] = ACTIONS(4885), + [anon_sym_AMP] = ACTIONS(4885), }, [2605] = { [sym_concatenation] = STATE(451), @@ -69141,56 +69435,56 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6471), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6539), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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_file_descriptor] = ACTIONS(4889), + [sym__concat] = ACTIONS(4889), + [sym_variable_name] = ACTIONS(4889), + [anon_sym_PIPE] = ACTIONS(4891), + [anon_sym_SEMI_SEMI] = ACTIONS(4891), + [anon_sym_PIPE_AMP] = ACTIONS(4891), + [anon_sym_AMP_AMP] = ACTIONS(4891), + [anon_sym_PIPE_PIPE] = ACTIONS(4891), + [anon_sym_LT] = ACTIONS(4891), + [anon_sym_GT] = ACTIONS(4891), + [anon_sym_GT_GT] = ACTIONS(4891), + [anon_sym_AMP_GT] = ACTIONS(4891), + [anon_sym_AMP_GT_GT] = ACTIONS(4891), + [anon_sym_LT_AMP] = ACTIONS(4891), + [anon_sym_GT_AMP] = ACTIONS(4891), + [sym__special_characters] = ACTIONS(4891), + [anon_sym_DQUOTE] = ACTIONS(4891), + [anon_sym_DOLLAR] = ACTIONS(4891), + [sym_raw_string] = ACTIONS(4891), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4891), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4891), + [anon_sym_BQUOTE] = ACTIONS(4891), + [anon_sym_LT_LPAREN] = ACTIONS(4891), + [anon_sym_GT_LPAREN] = ACTIONS(4891), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4829), - [anon_sym_SEMI] = ACTIONS(4829), - [anon_sym_LF] = ACTIONS(4829), - [anon_sym_AMP] = ACTIONS(4829), + [sym_word] = ACTIONS(4891), + [anon_sym_SEMI] = ACTIONS(4891), + [anon_sym_LF] = ACTIONS(4891), + [anon_sym_AMP] = ACTIONS(4891), }, [2607] = { [sym_concatenation] = STATE(451), @@ -69201,58 +69495,58 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6473), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6541), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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__concat] = ACTIONS(3283), + [anon_sym_SEMI_SEMI] = ACTIONS(3285), + [sym__special_characters] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3285), + [anon_sym_DOLLAR] = ACTIONS(3285), + [sym_raw_string] = ACTIONS(3285), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3285), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3285), + [anon_sym_BQUOTE] = ACTIONS(3285), + [anon_sym_LT_LPAREN] = ACTIONS(3285), + [anon_sym_GT_LPAREN] = ACTIONS(3285), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3237), - [anon_sym_SEMI] = ACTIONS(3237), - [anon_sym_LF] = ACTIONS(3237), - [anon_sym_AMP] = ACTIONS(3237), + [sym_word] = ACTIONS(3285), + [anon_sym_SEMI] = ACTIONS(3285), + [anon_sym_LF] = ACTIONS(3285), + [anon_sym_AMP] = ACTIONS(3285), }, [2609] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(6475), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(6543), [sym_comment] = ACTIONS(56), }, [2610] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(6477), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(6545), [sym_comment] = ACTIONS(56), }, [2611] = { - [anon_sym_RBRACE] = ACTIONS(6477), + [anon_sym_RBRACE] = ACTIONS(6545), [sym_comment] = ACTIONS(56), }, [2612] = { @@ -69264,43 +69558,43 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3213), - [anon_sym_RBRACE] = ACTIONS(6479), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6547), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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__concat] = ACTIONS(3347), + [anon_sym_SEMI_SEMI] = ACTIONS(3349), + [sym__special_characters] = ACTIONS(3349), + [anon_sym_DQUOTE] = ACTIONS(3349), + [anon_sym_DOLLAR] = ACTIONS(3349), + [sym_raw_string] = ACTIONS(3349), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3349), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3349), + [anon_sym_BQUOTE] = ACTIONS(3349), + [anon_sym_LT_LPAREN] = ACTIONS(3349), + [anon_sym_GT_LPAREN] = ACTIONS(3349), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3299), - [anon_sym_SEMI] = ACTIONS(3299), - [anon_sym_LF] = ACTIONS(3299), - [anon_sym_AMP] = ACTIONS(3299), + [sym_word] = ACTIONS(3349), + [anon_sym_SEMI] = ACTIONS(3349), + [anon_sym_LF] = ACTIONS(3349), + [anon_sym_AMP] = ACTIONS(3349), }, [2614] = { [sym_concatenation] = STATE(3216), @@ -69310,40 +69604,40 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(3215), [sym_command_substitution] = STATE(3215), [sym_process_substitution] = STATE(3215), - [anon_sym_RBRACE] = ACTIONS(6477), - [sym__special_characters] = ACTIONS(6481), - [anon_sym_DQUOTE] = ACTIONS(1924), - [anon_sym_DOLLAR] = ACTIONS(1926), - [sym_raw_string] = ACTIONS(6483), - [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), + [anon_sym_RBRACE] = ACTIONS(6545), + [sym__special_characters] = ACTIONS(6549), + [anon_sym_DQUOTE] = ACTIONS(1952), + [anon_sym_DOLLAR] = ACTIONS(1954), + [sym_raw_string] = ACTIONS(6551), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), + [anon_sym_BQUOTE] = ACTIONS(1962), + [anon_sym_LT_LPAREN] = ACTIONS(1964), + [anon_sym_GT_LPAREN] = ACTIONS(1964), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6485), + [sym_word] = ACTIONS(6553), }, [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__concat] = ACTIONS(3392), + [anon_sym_SEMI_SEMI] = ACTIONS(3394), + [sym__special_characters] = ACTIONS(3394), + [anon_sym_DQUOTE] = ACTIONS(3394), + [anon_sym_DOLLAR] = ACTIONS(3394), + [sym_raw_string] = ACTIONS(3394), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3394), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3394), + [anon_sym_BQUOTE] = ACTIONS(3394), + [anon_sym_LT_LPAREN] = ACTIONS(3394), + [anon_sym_GT_LPAREN] = ACTIONS(3394), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(3344), - [anon_sym_LF] = ACTIONS(3344), - [anon_sym_AMP] = ACTIONS(3344), + [sym_word] = ACTIONS(3394), + [anon_sym_SEMI] = ACTIONS(3394), + [anon_sym_LF] = ACTIONS(3394), + [anon_sym_AMP] = ACTIONS(3394), }, [2616] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6487), + [sym_regex_without_right_brace] = ACTIONS(6555), }, [2617] = { [sym_concatenation] = STATE(451), @@ -69354,47 +69648,47 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6489), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6557), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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__concat] = ACTIONS(3400), + [anon_sym_SEMI_SEMI] = ACTIONS(3402), + [sym__special_characters] = ACTIONS(3402), + [anon_sym_DQUOTE] = ACTIONS(3402), + [anon_sym_DOLLAR] = ACTIONS(3402), + [sym_raw_string] = ACTIONS(3402), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3402), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3402), + [anon_sym_BQUOTE] = ACTIONS(3402), + [anon_sym_LT_LPAREN] = ACTIONS(3402), + [anon_sym_GT_LPAREN] = ACTIONS(3402), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3352), - [anon_sym_SEMI] = ACTIONS(3352), - [anon_sym_LF] = ACTIONS(3352), - [anon_sym_AMP] = ACTIONS(3352), + [sym_word] = ACTIONS(3402), + [anon_sym_SEMI] = ACTIONS(3402), + [anon_sym_LF] = ACTIONS(3402), + [anon_sym_AMP] = ACTIONS(3402), }, [2619] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6491), + [sym_regex_without_right_brace] = ACTIONS(6559), }, [2620] = { [sym_concatenation] = STATE(451), @@ -69405,29 +69699,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6493), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6561), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2621] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6495), + [sym_regex_without_right_brace] = ACTIONS(6563), }, [2622] = { [sym_concatenation] = STATE(451), @@ -69438,25 +69732,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6477), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6545), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2623] = { [sym_concatenation] = STATE(451), @@ -69467,43 +69761,43 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3223), - [anon_sym_RBRACE] = ACTIONS(6497), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6565), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [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__concat] = ACTIONS(3412), + [anon_sym_SEMI_SEMI] = ACTIONS(3414), + [sym__special_characters] = ACTIONS(3414), + [anon_sym_DQUOTE] = ACTIONS(3414), + [anon_sym_DOLLAR] = ACTIONS(3414), + [sym_raw_string] = ACTIONS(3414), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3414), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3414), + [anon_sym_BQUOTE] = ACTIONS(3414), + [anon_sym_LT_LPAREN] = ACTIONS(3414), + [anon_sym_GT_LPAREN] = ACTIONS(3414), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3364), - [anon_sym_SEMI] = ACTIONS(3364), - [anon_sym_LF] = ACTIONS(3364), - [anon_sym_AMP] = ACTIONS(3364), + [sym_word] = ACTIONS(3414), + [anon_sym_SEMI] = ACTIONS(3414), + [anon_sym_LF] = ACTIONS(3414), + [anon_sym_AMP] = ACTIONS(3414), }, [2625] = { [sym_concatenation] = STATE(451), @@ -69514,38 +69808,38 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3225), - [anon_sym_RBRACE] = ACTIONS(6499), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6567), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2626] = { - [anon_sym_esac] = ACTIONS(2627), - [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_esac] = ACTIONS(2671), + [anon_sym_PIPE] = ACTIONS(2671), + [anon_sym_RPAREN] = ACTIONS(2671), + [anon_sym_SEMI_SEMI] = ACTIONS(2671), + [anon_sym_PIPE_AMP] = ACTIONS(2671), + [anon_sym_AMP_AMP] = ACTIONS(2671), + [anon_sym_PIPE_PIPE] = ACTIONS(2671), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2627), - [anon_sym_LF] = ACTIONS(2627), - [anon_sym_AMP] = ACTIONS(2627), + [anon_sym_SEMI] = ACTIONS(2671), + [anon_sym_LF] = ACTIONS(2671), + [anon_sym_AMP] = ACTIONS(2671), }, [2627] = { [sym__terminated_statement] = STATE(691), @@ -69578,7 +69872,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(12), [anon_sym_for] = ACTIONS(16), [anon_sym_while] = ACTIONS(18), - [anon_sym_done] = ACTIONS(6501), + [anon_sym_done] = ACTIONS(6569), [anon_sym_if] = ACTIONS(20), [anon_sym_case] = ACTIONS(22), [anon_sym_function] = ACTIONS(24), @@ -69643,9 +69937,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(16), [anon_sym_while] = ACTIONS(18), [anon_sym_if] = ACTIONS(20), - [anon_sym_fi] = ACTIONS(6503), - [anon_sym_elif] = ACTIONS(6503), - [anon_sym_else] = ACTIONS(6503), + [anon_sym_fi] = ACTIONS(6571), + [anon_sym_elif] = ACTIONS(6571), + [anon_sym_else] = ACTIONS(6571), [anon_sym_case] = ACTIONS(22), [anon_sym_function] = ACTIONS(24), [anon_sym_LPAREN] = ACTIONS(26), @@ -69678,48 +69972,48 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(58), }, [2629] = { - [anon_sym_esac] = ACTIONS(6505), - [anon_sym_PIPE] = ACTIONS(6505), - [anon_sym_RPAREN] = ACTIONS(6505), - [anon_sym_SEMI_SEMI] = ACTIONS(6505), - [anon_sym_PIPE_AMP] = ACTIONS(6505), - [anon_sym_AMP_AMP] = ACTIONS(6505), - [anon_sym_PIPE_PIPE] = ACTIONS(6505), + [anon_sym_esac] = ACTIONS(6573), + [anon_sym_PIPE] = ACTIONS(6573), + [anon_sym_RPAREN] = ACTIONS(6573), + [anon_sym_SEMI_SEMI] = ACTIONS(6573), + [anon_sym_PIPE_AMP] = ACTIONS(6573), + [anon_sym_AMP_AMP] = ACTIONS(6573), + [anon_sym_PIPE_PIPE] = ACTIONS(6573), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6505), - [anon_sym_LF] = ACTIONS(6505), - [anon_sym_AMP] = ACTIONS(6505), + [anon_sym_SEMI] = ACTIONS(6573), + [anon_sym_LF] = ACTIONS(6573), + [anon_sym_AMP] = ACTIONS(6573), }, [2630] = { - [sym__concat] = ACTIONS(1858), - [anon_sym_PIPE] = ACTIONS(1858), - [anon_sym_RPAREN] = ACTIONS(1858), + [sym__concat] = ACTIONS(1886), + [anon_sym_PIPE] = ACTIONS(1886), + [anon_sym_RPAREN] = ACTIONS(1886), [sym_comment] = ACTIONS(56), }, [2631] = { [aux_sym_concatenation_repeat1] = STATE(1990), - [sym__concat] = ACTIONS(4260), - [anon_sym_PIPE] = ACTIONS(6507), - [anon_sym_RPAREN] = ACTIONS(6507), + [sym__concat] = ACTIONS(4318), + [anon_sym_PIPE] = ACTIONS(6575), + [anon_sym_RPAREN] = ACTIONS(6575), [sym_comment] = ACTIONS(56), }, [2632] = { [aux_sym_concatenation_repeat1] = STATE(1990), - [sym__concat] = ACTIONS(4260), - [anon_sym_PIPE] = ACTIONS(6509), - [anon_sym_RPAREN] = ACTIONS(6509), + [sym__concat] = ACTIONS(4318), + [anon_sym_PIPE] = ACTIONS(6577), + [anon_sym_RPAREN] = ACTIONS(6577), [sym_comment] = ACTIONS(56), }, [2633] = { - [anon_sym_PIPE] = ACTIONS(6509), - [anon_sym_RPAREN] = ACTIONS(6509), + [anon_sym_PIPE] = ACTIONS(6577), + [anon_sym_RPAREN] = ACTIONS(6577), [sym_comment] = ACTIONS(56), }, [2634] = { [sym__assignment] = STATE(3228), [anon_sym_LBRACK] = ACTIONS(64), - [anon_sym_EQ] = ACTIONS(6511), - [anon_sym_PLUS_EQ] = ACTIONS(6511), + [anon_sym_EQ] = ACTIONS(6579), + [anon_sym_PLUS_EQ] = ACTIONS(6579), [sym_comment] = ACTIONS(56), }, [2635] = { @@ -69785,22 +70079,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(58), }, [2636] = { - [anon_sym_esac] = ACTIONS(6513), - [sym__special_characters] = ACTIONS(6515), - [anon_sym_DQUOTE] = ACTIONS(6517), - [anon_sym_DOLLAR] = ACTIONS(6515), - [sym_raw_string] = ACTIONS(6517), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6517), - [anon_sym_BQUOTE] = ACTIONS(6517), - [anon_sym_LT_LPAREN] = ACTIONS(6517), - [anon_sym_GT_LPAREN] = ACTIONS(6517), + [anon_sym_esac] = ACTIONS(6581), + [sym__special_characters] = ACTIONS(6583), + [anon_sym_DQUOTE] = ACTIONS(6585), + [anon_sym_DOLLAR] = ACTIONS(6583), + [sym_raw_string] = ACTIONS(6585), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6585), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6585), + [anon_sym_BQUOTE] = ACTIONS(6585), + [anon_sym_LT_LPAREN] = ACTIONS(6585), + [anon_sym_GT_LPAREN] = ACTIONS(6585), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6519), + [sym_word] = ACTIONS(6587), }, [2637] = { [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6521), + [sym_word] = ACTIONS(6589), }, [2638] = { [sym_concatenation] = STATE(84), @@ -69812,6 +70106,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_process_substitution] = STATE(79), [aux_sym_command_repeat2] = STATE(3231), [anon_sym_EQ_TILDE] = ACTIONS(122), + [anon_sym_EQ_EQ] = ACTIONS(122), [sym__special_characters] = ACTIONS(124), [anon_sym_DQUOTE] = ACTIONS(126), [anon_sym_DOLLAR] = ACTIONS(128), @@ -69834,6 +70129,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_process_substitution] = STATE(90), [aux_sym_command_repeat2] = STATE(3232), [anon_sym_EQ_TILDE] = ACTIONS(142), + [anon_sym_EQ_EQ] = ACTIONS(142), [sym__special_characters] = ACTIONS(144), [anon_sym_DQUOTE] = ACTIONS(146), [anon_sym_DOLLAR] = ACTIONS(148), @@ -69857,25 +70153,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(3237), [sym_process_substitution] = STATE(3237), [aux_sym_declaration_command_repeat1] = STATE(3245), - [sym_variable_name] = ACTIONS(6523), + [sym_variable_name] = ACTIONS(6591), [anon_sym_esac] = ACTIONS(164), [anon_sym_PIPE] = ACTIONS(164), [anon_sym_SEMI_SEMI] = ACTIONS(164), [anon_sym_PIPE_AMP] = ACTIONS(164), [anon_sym_AMP_AMP] = ACTIONS(164), [anon_sym_PIPE_PIPE] = ACTIONS(164), - [sym__special_characters] = ACTIONS(6525), - [anon_sym_DQUOTE] = ACTIONS(6527), - [anon_sym_DOLLAR] = ACTIONS(6529), - [sym_raw_string] = ACTIONS(6531), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6533), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6535), - [anon_sym_BQUOTE] = ACTIONS(6537), - [anon_sym_LT_LPAREN] = ACTIONS(6539), - [anon_sym_GT_LPAREN] = ACTIONS(6539), + [sym__special_characters] = ACTIONS(6593), + [anon_sym_DQUOTE] = ACTIONS(6595), + [anon_sym_DOLLAR] = ACTIONS(6597), + [sym_raw_string] = ACTIONS(6599), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6601), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6603), + [anon_sym_BQUOTE] = ACTIONS(6605), + [anon_sym_LT_LPAREN] = ACTIONS(6607), + [anon_sym_GT_LPAREN] = ACTIONS(6607), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6541), - [sym_word] = ACTIONS(6531), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6609), + [sym_word] = ACTIONS(6599), [anon_sym_SEMI] = ACTIONS(164), [anon_sym_LF] = ACTIONS(164), [anon_sym_AMP] = ACTIONS(164), @@ -69895,18 +70191,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_AMP] = ACTIONS(186), [anon_sym_AMP_AMP] = ACTIONS(186), [anon_sym_PIPE_PIPE] = ACTIONS(186), - [sym__special_characters] = ACTIONS(6543), - [anon_sym_DQUOTE] = ACTIONS(6545), - [anon_sym_DOLLAR] = ACTIONS(6547), - [sym_raw_string] = ACTIONS(6549), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6551), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6553), - [anon_sym_BQUOTE] = ACTIONS(6555), - [anon_sym_LT_LPAREN] = ACTIONS(6557), - [anon_sym_GT_LPAREN] = ACTIONS(6557), + [sym__special_characters] = ACTIONS(6611), + [anon_sym_DQUOTE] = ACTIONS(6613), + [anon_sym_DOLLAR] = ACTIONS(6615), + [sym_raw_string] = ACTIONS(6617), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6619), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6621), + [anon_sym_BQUOTE] = ACTIONS(6623), + [anon_sym_LT_LPAREN] = ACTIONS(6625), + [anon_sym_GT_LPAREN] = ACTIONS(6625), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6559), - [sym_word] = ACTIONS(6549), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6627), + [sym_word] = ACTIONS(6617), [anon_sym_SEMI] = ACTIONS(186), [anon_sym_LF] = ACTIONS(186), [anon_sym_AMP] = ACTIONS(186), @@ -69914,7 +70210,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [2642] = { [aux_sym_concatenation_repeat1] = STATE(3258), [sym_file_descriptor] = ACTIONS(224), - [sym__concat] = ACTIONS(6561), + [sym__concat] = ACTIONS(6629), [anon_sym_esac] = ACTIONS(228), [anon_sym_PIPE] = ACTIONS(228), [anon_sym_SEMI_SEMI] = ACTIONS(228), @@ -69922,6 +70218,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(228), [anon_sym_PIPE_PIPE] = ACTIONS(228), [anon_sym_EQ_TILDE] = ACTIONS(228), + [anon_sym_EQ_EQ] = ACTIONS(228), [anon_sym_LT] = ACTIONS(228), [anon_sym_GT] = ACTIONS(228), [anon_sym_GT_GT] = ACTIONS(228), @@ -69952,7 +70249,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(134), [sym_command_substitution] = STATE(134), [aux_sym_string_repeat1] = STATE(3260), - [anon_sym_DQUOTE] = ACTIONS(6563), + [anon_sym_DQUOTE] = ACTIONS(6631), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -69961,68 +70258,70 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(182), }, [2644] = { - [sym_string] = STATE(3263), - [anon_sym_DQUOTE] = ACTIONS(5479), - [anon_sym_DOLLAR] = ACTIONS(6565), - [anon_sym_POUND] = ACTIONS(6565), - [anon_sym_DASH] = ACTIONS(6565), + [sym_string] = STATE(3262), + [anon_sym_DQUOTE] = ACTIONS(5541), + [anon_sym_DOLLAR] = ACTIONS(6633), + [sym_raw_string] = ACTIONS(6635), + [anon_sym_POUND] = ACTIONS(6633), + [anon_sym_DASH] = ACTIONS(6633), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6567), - [anon_sym_STAR] = ACTIONS(6565), - [anon_sym_AT] = ACTIONS(6565), - [anon_sym_QMARK] = ACTIONS(6565), - [anon_sym_0] = ACTIONS(6569), - [anon_sym__] = ACTIONS(6569), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6637), + [anon_sym_STAR] = ACTIONS(6633), + [anon_sym_AT] = ACTIONS(6633), + [anon_sym_QMARK] = ACTIONS(6633), + [anon_sym_0] = ACTIONS(6639), + [anon_sym__] = ACTIONS(6639), }, [2645] = { [aux_sym_concatenation_repeat1] = STATE(3258), - [sym_file_descriptor] = ACTIONS(248), - [sym__concat] = ACTIONS(6561), - [anon_sym_esac] = ACTIONS(250), - [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_file_descriptor] = ACTIONS(250), + [sym__concat] = ACTIONS(6629), + [anon_sym_esac] = ACTIONS(252), + [anon_sym_PIPE] = ACTIONS(252), + [anon_sym_SEMI_SEMI] = ACTIONS(252), + [anon_sym_PIPE_AMP] = ACTIONS(252), + [anon_sym_AMP_AMP] = ACTIONS(252), + [anon_sym_PIPE_PIPE] = ACTIONS(252), + [anon_sym_EQ_TILDE] = ACTIONS(252), + [anon_sym_EQ_EQ] = ACTIONS(252), + [anon_sym_LT] = ACTIONS(252), + [anon_sym_GT] = ACTIONS(252), + [anon_sym_GT_GT] = ACTIONS(252), + [anon_sym_AMP_GT] = ACTIONS(252), + [anon_sym_AMP_GT_GT] = ACTIONS(252), + [anon_sym_LT_AMP] = ACTIONS(252), + [anon_sym_GT_AMP] = ACTIONS(252), + [anon_sym_LT_LT] = ACTIONS(252), + [anon_sym_LT_LT_DASH] = ACTIONS(252), + [anon_sym_LT_LT_LT] = ACTIONS(252), + [sym__special_characters] = ACTIONS(252), + [anon_sym_DQUOTE] = ACTIONS(252), + [anon_sym_DOLLAR] = ACTIONS(252), + [sym_raw_string] = ACTIONS(252), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(252), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(252), + [anon_sym_BQUOTE] = ACTIONS(252), + [anon_sym_LT_LPAREN] = ACTIONS(252), + [anon_sym_GT_LPAREN] = ACTIONS(252), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(250), - [anon_sym_SEMI] = ACTIONS(250), - [anon_sym_LF] = ACTIONS(250), - [anon_sym_AMP] = ACTIONS(250), + [sym_word] = ACTIONS(252), + [anon_sym_SEMI] = ACTIONS(252), + [anon_sym_LF] = ACTIONS(252), + [anon_sym_AMP] = ACTIONS(252), }, [2646] = { [sym_subscript] = STATE(3268), - [sym_variable_name] = ACTIONS(6571), - [anon_sym_DOLLAR] = ACTIONS(6573), - [anon_sym_POUND] = ACTIONS(6575), - [anon_sym_DASH] = ACTIONS(6573), + [sym_variable_name] = ACTIONS(6641), + [anon_sym_DOLLAR] = ACTIONS(6643), + [anon_sym_POUND] = ACTIONS(6645), + [anon_sym_DASH] = ACTIONS(6643), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6577), - [anon_sym_STAR] = ACTIONS(6573), - [anon_sym_AT] = ACTIONS(6573), - [anon_sym_QMARK] = ACTIONS(6573), - [anon_sym_0] = ACTIONS(6579), - [anon_sym__] = ACTIONS(6579), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6647), + [anon_sym_STAR] = ACTIONS(6643), + [anon_sym_AT] = ACTIONS(6643), + [anon_sym_QMARK] = ACTIONS(6643), + [anon_sym_0] = ACTIONS(6649), + [anon_sym__] = ACTIONS(6649), }, [2647] = { [sym_for_statement] = STATE(3269), @@ -70050,22 +70349,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(264), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(268), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -70073,17 +70372,17 @@ 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(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__special_characters] = ACTIONS(286), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(300), + [sym_word] = ACTIONS(302), }, [2648] = { [sym_for_statement] = STATE(3271), @@ -70111,22 +70410,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(304), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(306), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(308), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_LBRACK_LBRACK] = ACTIONS(312), + [anon_sym_declare] = ACTIONS(314), + [anon_sym_typeset] = ACTIONS(314), + [anon_sym_export] = ACTIONS(314), + [anon_sym_readonly] = ACTIONS(314), + [anon_sym_local] = ACTIONS(314), + [anon_sym_unset] = ACTIONS(316), + [anon_sym_unsetenv] = ACTIONS(316), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -70134,17 +70433,17 @@ 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(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__special_characters] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [anon_sym_DOLLAR] = ACTIONS(322), + [sym_raw_string] = ACTIONS(324), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), + [anon_sym_BQUOTE] = ACTIONS(330), + [anon_sym_LT_LPAREN] = ACTIONS(332), + [anon_sym_GT_LPAREN] = ACTIONS(332), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(332), + [sym_word] = ACTIONS(334), }, [2649] = { [sym_for_statement] = STATE(3273), @@ -70172,22 +70471,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(264), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(268), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -70195,105 +70494,106 @@ 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(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__special_characters] = ACTIONS(286), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(300), + [sym_word] = ACTIONS(302), }, [2650] = { [aux_sym_concatenation_repeat1] = STATE(3258), - [sym_file_descriptor] = ACTIONS(248), - [sym__concat] = ACTIONS(6561), - [anon_sym_esac] = ACTIONS(250), - [anon_sym_PIPE] = ACTIONS(250), - [anon_sym_SEMI_SEMI] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(6581), - [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_file_descriptor] = ACTIONS(250), + [sym__concat] = ACTIONS(6629), + [anon_sym_esac] = ACTIONS(252), + [anon_sym_PIPE] = ACTIONS(252), + [anon_sym_SEMI_SEMI] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(6651), + [anon_sym_PIPE_AMP] = ACTIONS(252), + [anon_sym_AMP_AMP] = ACTIONS(252), + [anon_sym_PIPE_PIPE] = ACTIONS(252), + [anon_sym_EQ_TILDE] = ACTIONS(252), + [anon_sym_EQ_EQ] = ACTIONS(252), + [anon_sym_LT] = ACTIONS(252), + [anon_sym_GT] = ACTIONS(252), + [anon_sym_GT_GT] = ACTIONS(252), + [anon_sym_AMP_GT] = ACTIONS(252), + [anon_sym_AMP_GT_GT] = ACTIONS(252), + [anon_sym_LT_AMP] = ACTIONS(252), + [anon_sym_GT_AMP] = ACTIONS(252), + [anon_sym_LT_LT] = ACTIONS(252), + [anon_sym_LT_LT_DASH] = ACTIONS(252), + [anon_sym_LT_LT_LT] = ACTIONS(252), + [sym__special_characters] = ACTIONS(252), + [anon_sym_DQUOTE] = ACTIONS(252), + [anon_sym_DOLLAR] = ACTIONS(252), + [sym_raw_string] = ACTIONS(252), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(252), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(252), + [anon_sym_BQUOTE] = ACTIONS(252), + [anon_sym_LT_LPAREN] = ACTIONS(252), + [anon_sym_GT_LPAREN] = ACTIONS(252), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(250), - [anon_sym_SEMI] = ACTIONS(250), - [anon_sym_LF] = ACTIONS(250), - [anon_sym_AMP] = ACTIONS(250), + [sym_word] = ACTIONS(252), + [anon_sym_SEMI] = ACTIONS(252), + [anon_sym_LF] = ACTIONS(252), + [anon_sym_AMP] = ACTIONS(252), }, [2651] = { - [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_file_descriptor] = ACTIONS(340), + [sym_variable_name] = ACTIONS(340), + [anon_sym_for] = ACTIONS(342), + [anon_sym_while] = ACTIONS(342), + [anon_sym_if] = ACTIONS(342), + [anon_sym_case] = ACTIONS(342), + [anon_sym_esac] = ACTIONS(342), + [anon_sym_SEMI_SEMI] = ACTIONS(340), + [anon_sym_function] = ACTIONS(342), + [anon_sym_LPAREN] = ACTIONS(340), + [anon_sym_LBRACK] = ACTIONS(342), + [anon_sym_LBRACK_LBRACK] = ACTIONS(340), + [anon_sym_declare] = ACTIONS(342), + [anon_sym_typeset] = ACTIONS(342), + [anon_sym_export] = ACTIONS(342), + [anon_sym_readonly] = ACTIONS(342), + [anon_sym_local] = ACTIONS(342), + [anon_sym_unset] = ACTIONS(342), + [anon_sym_unsetenv] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(342), + [anon_sym_GT] = ACTIONS(342), + [anon_sym_GT_GT] = ACTIONS(340), + [anon_sym_AMP_GT] = ACTIONS(342), + [anon_sym_AMP_GT_GT] = ACTIONS(340), + [anon_sym_LT_AMP] = ACTIONS(340), + [anon_sym_GT_AMP] = ACTIONS(340), + [sym__special_characters] = ACTIONS(344), + [anon_sym_DQUOTE] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(342), + [sym_raw_string] = ACTIONS(340), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(340), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(340), + [anon_sym_BQUOTE] = ACTIONS(340), + [anon_sym_LT_LPAREN] = ACTIONS(340), + [anon_sym_GT_LPAREN] = ACTIONS(340), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(342), + [sym_word] = ACTIONS(344), }, [2652] = { - [anon_sym_esac] = ACTIONS(6583), - [anon_sym_PIPE] = ACTIONS(6585), - [anon_sym_SEMI_SEMI] = ACTIONS(6587), - [anon_sym_PIPE_AMP] = ACTIONS(6585), - [anon_sym_AMP_AMP] = ACTIONS(6589), - [anon_sym_PIPE_PIPE] = ACTIONS(6589), + [anon_sym_esac] = ACTIONS(6653), + [anon_sym_PIPE] = ACTIONS(6655), + [anon_sym_SEMI_SEMI] = ACTIONS(6657), + [anon_sym_PIPE_AMP] = ACTIONS(6655), + [anon_sym_AMP_AMP] = ACTIONS(6659), + [anon_sym_PIPE_PIPE] = ACTIONS(6659), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6591), - [anon_sym_LF] = ACTIONS(6591), - [anon_sym_AMP] = ACTIONS(6591), + [anon_sym_SEMI] = ACTIONS(6661), + [anon_sym_LF] = ACTIONS(6661), + [anon_sym_AMP] = ACTIONS(6661), }, [2653] = { [sym_file_redirect] = STATE(207), @@ -70308,109 +70608,111 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_process_substitution] = STATE(3285), [aux_sym_while_statement_repeat1] = STATE(3287), [aux_sym_command_repeat2] = STATE(3288), - [sym_file_descriptor] = ACTIONS(6593), - [anon_sym_esac] = ACTIONS(352), - [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(6595), - [anon_sym_LT] = ACTIONS(6597), - [anon_sym_GT] = ACTIONS(6597), - [anon_sym_GT_GT] = ACTIONS(6597), - [anon_sym_AMP_GT] = ACTIONS(6597), - [anon_sym_AMP_GT_GT] = ACTIONS(6597), - [anon_sym_LT_AMP] = ACTIONS(6597), - [anon_sym_GT_AMP] = ACTIONS(6597), - [anon_sym_LT_LT] = ACTIONS(358), - [anon_sym_LT_LT_DASH] = ACTIONS(358), - [anon_sym_LT_LT_LT] = ACTIONS(6599), - [sym__special_characters] = ACTIONS(6601), - [anon_sym_DQUOTE] = ACTIONS(6603), - [anon_sym_DOLLAR] = ACTIONS(6605), - [sym_raw_string] = ACTIONS(6607), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6609), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6611), - [anon_sym_BQUOTE] = ACTIONS(6613), - [anon_sym_LT_LPAREN] = ACTIONS(6615), - [anon_sym_GT_LPAREN] = ACTIONS(6615), + [sym_file_descriptor] = ACTIONS(6663), + [anon_sym_esac] = ACTIONS(354), + [anon_sym_PIPE] = ACTIONS(354), + [anon_sym_SEMI_SEMI] = ACTIONS(354), + [anon_sym_PIPE_AMP] = ACTIONS(354), + [anon_sym_AMP_AMP] = ACTIONS(354), + [anon_sym_PIPE_PIPE] = ACTIONS(354), + [anon_sym_EQ_TILDE] = ACTIONS(6665), + [anon_sym_EQ_EQ] = ACTIONS(6665), + [anon_sym_LT] = ACTIONS(6667), + [anon_sym_GT] = ACTIONS(6667), + [anon_sym_GT_GT] = ACTIONS(6667), + [anon_sym_AMP_GT] = ACTIONS(6667), + [anon_sym_AMP_GT_GT] = ACTIONS(6667), + [anon_sym_LT_AMP] = ACTIONS(6667), + [anon_sym_GT_AMP] = ACTIONS(6667), + [anon_sym_LT_LT] = ACTIONS(360), + [anon_sym_LT_LT_DASH] = ACTIONS(360), + [anon_sym_LT_LT_LT] = ACTIONS(6669), + [sym__special_characters] = ACTIONS(6671), + [anon_sym_DQUOTE] = ACTIONS(6673), + [anon_sym_DOLLAR] = ACTIONS(6675), + [sym_raw_string] = ACTIONS(6677), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6679), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6681), + [anon_sym_BQUOTE] = ACTIONS(6683), + [anon_sym_LT_LPAREN] = ACTIONS(6685), + [anon_sym_GT_LPAREN] = ACTIONS(6685), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6607), - [anon_sym_SEMI] = ACTIONS(352), - [anon_sym_LF] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(352), + [sym_word] = ACTIONS(6677), + [anon_sym_SEMI] = ACTIONS(354), + [anon_sym_LF] = ACTIONS(354), + [anon_sym_AMP] = ACTIONS(354), }, [2654] = { - [sym_file_descriptor] = ACTIONS(378), - [sym_variable_name] = ACTIONS(378), - [anon_sym_esac] = ACTIONS(6583), - [anon_sym_PIPE] = ACTIONS(6585), - [anon_sym_SEMI_SEMI] = ACTIONS(6587), - [anon_sym_PIPE_AMP] = ACTIONS(6585), - [anon_sym_AMP_AMP] = ACTIONS(6589), - [anon_sym_PIPE_PIPE] = ACTIONS(6589), - [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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_esac] = ACTIONS(6653), + [anon_sym_PIPE] = ACTIONS(6655), + [anon_sym_SEMI_SEMI] = ACTIONS(6657), + [anon_sym_PIPE_AMP] = ACTIONS(6655), + [anon_sym_AMP_AMP] = ACTIONS(6659), + [anon_sym_PIPE_PIPE] = ACTIONS(6659), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(382), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(382), + [anon_sym_LT_AMP] = ACTIONS(382), + [anon_sym_GT_AMP] = ACTIONS(382), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(382), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(382), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(382), + [anon_sym_BQUOTE] = ACTIONS(382), + [anon_sym_LT_LPAREN] = ACTIONS(382), + [anon_sym_GT_LPAREN] = ACTIONS(382), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(380), - [anon_sym_SEMI] = ACTIONS(6591), - [anon_sym_LF] = ACTIONS(6591), - [anon_sym_AMP] = ACTIONS(6591), + [sym_word] = ACTIONS(382), + [anon_sym_SEMI] = ACTIONS(6661), + [anon_sym_LF] = ACTIONS(6661), + [anon_sym_AMP] = ACTIONS(6661), }, [2655] = { [sym__assignment] = STATE(3228), - [anon_sym_EQ] = ACTIONS(6511), - [anon_sym_PLUS_EQ] = ACTIONS(6511), + [anon_sym_EQ] = ACTIONS(6579), + [anon_sym_PLUS_EQ] = ACTIONS(6579), [sym_comment] = ACTIONS(56), }, [2656] = { - [sym_file_descriptor] = ACTIONS(248), - [anon_sym_esac] = ACTIONS(250), - [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_file_descriptor] = ACTIONS(250), + [anon_sym_esac] = ACTIONS(252), + [anon_sym_PIPE] = ACTIONS(252), + [anon_sym_SEMI_SEMI] = ACTIONS(252), + [anon_sym_PIPE_AMP] = ACTIONS(252), + [anon_sym_AMP_AMP] = ACTIONS(252), + [anon_sym_PIPE_PIPE] = ACTIONS(252), + [anon_sym_EQ_TILDE] = ACTIONS(252), + [anon_sym_EQ_EQ] = ACTIONS(252), + [anon_sym_LT] = ACTIONS(252), + [anon_sym_GT] = ACTIONS(252), + [anon_sym_GT_GT] = ACTIONS(252), + [anon_sym_AMP_GT] = ACTIONS(252), + [anon_sym_AMP_GT_GT] = ACTIONS(252), + [anon_sym_LT_AMP] = ACTIONS(252), + [anon_sym_GT_AMP] = ACTIONS(252), + [anon_sym_LT_LT] = ACTIONS(252), + [anon_sym_LT_LT_DASH] = ACTIONS(252), + [anon_sym_LT_LT_LT] = ACTIONS(252), + [sym__special_characters] = ACTIONS(252), + [anon_sym_DQUOTE] = ACTIONS(252), + [anon_sym_DOLLAR] = ACTIONS(252), + [sym_raw_string] = ACTIONS(252), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(252), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(252), + [anon_sym_BQUOTE] = ACTIONS(252), + [anon_sym_LT_LPAREN] = ACTIONS(252), + [anon_sym_GT_LPAREN] = ACTIONS(252), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(250), - [anon_sym_SEMI] = ACTIONS(250), - [anon_sym_LF] = ACTIONS(250), - [anon_sym_AMP] = ACTIONS(250), + [sym_word] = ACTIONS(252), + [anon_sym_SEMI] = ACTIONS(252), + [anon_sym_LF] = ACTIONS(252), + [anon_sym_AMP] = ACTIONS(252), }, [2657] = { [sym__terminated_statement] = STATE(2651), @@ -70440,24 +70742,24 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_program_repeat1] = STATE(3292), [aux_sym_command_repeat1] = STATE(2658), [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(5459), + [sym_variable_name] = ACTIONS(5521), [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(5461), + [anon_sym_while] = ACTIONS(5523), [anon_sym_if] = ACTIONS(20), [anon_sym_case] = ACTIONS(22), - [anon_sym_esac] = ACTIONS(6513), - [anon_sym_SEMI_SEMI] = ACTIONS(6617), - [anon_sym_function] = ACTIONS(5467), + [anon_sym_esac] = ACTIONS(6581), + [anon_sym_SEMI_SEMI] = ACTIONS(6687), + [anon_sym_function] = ACTIONS(5529), [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(5469), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5471), - [anon_sym_declare] = ACTIONS(5473), - [anon_sym_typeset] = ACTIONS(5473), - [anon_sym_export] = ACTIONS(5473), - [anon_sym_readonly] = ACTIONS(5473), - [anon_sym_local] = ACTIONS(5473), - [anon_sym_unset] = ACTIONS(5475), - [anon_sym_unsetenv] = ACTIONS(5475), + [anon_sym_LBRACK] = ACTIONS(5531), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5533), + [anon_sym_declare] = ACTIONS(5535), + [anon_sym_typeset] = ACTIONS(5535), + [anon_sym_export] = ACTIONS(5535), + [anon_sym_readonly] = ACTIONS(5535), + [anon_sym_local] = ACTIONS(5535), + [anon_sym_unset] = ACTIONS(5537), + [anon_sym_unsetenv] = ACTIONS(5537), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -70465,17 +70767,17 @@ 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(5477), - [anon_sym_DQUOTE] = ACTIONS(5479), - [anon_sym_DOLLAR] = ACTIONS(5481), - [sym_raw_string] = ACTIONS(5483), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5485), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5487), - [anon_sym_BQUOTE] = ACTIONS(5489), - [anon_sym_LT_LPAREN] = ACTIONS(5491), - [anon_sym_GT_LPAREN] = ACTIONS(5491), + [sym__special_characters] = ACTIONS(5539), + [anon_sym_DQUOTE] = ACTIONS(5541), + [anon_sym_DOLLAR] = ACTIONS(5543), + [sym_raw_string] = ACTIONS(5545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5547), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5549), + [anon_sym_BQUOTE] = ACTIONS(5551), + [anon_sym_LT_LPAREN] = ACTIONS(5553), + [anon_sym_GT_LPAREN] = ACTIONS(5553), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5493), + [sym_word] = ACTIONS(5555), }, [2658] = { [sym_command_name] = STATE(3293), @@ -70491,7 +70793,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_process_substitution] = STATE(2645), [aux_sym_command_repeat1] = STATE(215), [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(386), + [sym_variable_name] = ACTIONS(388), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -70499,17 +70801,17 @@ 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(6619), - [anon_sym_DQUOTE] = ACTIONS(5479), - [anon_sym_DOLLAR] = ACTIONS(5481), - [sym_raw_string] = ACTIONS(5483), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5485), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5487), - [anon_sym_BQUOTE] = ACTIONS(5489), - [anon_sym_LT_LPAREN] = ACTIONS(5491), - [anon_sym_GT_LPAREN] = ACTIONS(5491), + [sym__special_characters] = ACTIONS(6689), + [anon_sym_DQUOTE] = ACTIONS(5541), + [anon_sym_DOLLAR] = ACTIONS(5543), + [sym_raw_string] = ACTIONS(5545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5547), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5549), + [anon_sym_BQUOTE] = ACTIONS(5551), + [anon_sym_LT_LPAREN] = ACTIONS(5553), + [anon_sym_GT_LPAREN] = ACTIONS(5553), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6621), + [sym_word] = ACTIONS(6691), }, [2659] = { [sym__terminated_statement] = STATE(2651), @@ -70539,24 +70841,24 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_program_repeat1] = STATE(3294), [aux_sym_command_repeat1] = STATE(2658), [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(5459), + [sym_variable_name] = ACTIONS(5521), [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(5461), + [anon_sym_while] = ACTIONS(5523), [anon_sym_if] = ACTIONS(20), [anon_sym_case] = ACTIONS(22), - [anon_sym_esac] = ACTIONS(6513), - [anon_sym_SEMI_SEMI] = ACTIONS(6617), - [anon_sym_function] = ACTIONS(5467), + [anon_sym_esac] = ACTIONS(6581), + [anon_sym_SEMI_SEMI] = ACTIONS(6687), + [anon_sym_function] = ACTIONS(5529), [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(5469), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5471), - [anon_sym_declare] = ACTIONS(5473), - [anon_sym_typeset] = ACTIONS(5473), - [anon_sym_export] = ACTIONS(5473), - [anon_sym_readonly] = ACTIONS(5473), - [anon_sym_local] = ACTIONS(5473), - [anon_sym_unset] = ACTIONS(5475), - [anon_sym_unsetenv] = ACTIONS(5475), + [anon_sym_LBRACK] = ACTIONS(5531), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5533), + [anon_sym_declare] = ACTIONS(5535), + [anon_sym_typeset] = ACTIONS(5535), + [anon_sym_export] = ACTIONS(5535), + [anon_sym_readonly] = ACTIONS(5535), + [anon_sym_local] = ACTIONS(5535), + [anon_sym_unset] = ACTIONS(5537), + [anon_sym_unsetenv] = ACTIONS(5537), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -70564,93 +70866,93 @@ 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(5477), - [anon_sym_DQUOTE] = ACTIONS(5479), - [anon_sym_DOLLAR] = ACTIONS(5481), - [sym_raw_string] = ACTIONS(5483), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5485), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5487), - [anon_sym_BQUOTE] = ACTIONS(5489), - [anon_sym_LT_LPAREN] = ACTIONS(5491), - [anon_sym_GT_LPAREN] = ACTIONS(5491), + [sym__special_characters] = ACTIONS(5539), + [anon_sym_DQUOTE] = ACTIONS(5541), + [anon_sym_DOLLAR] = ACTIONS(5543), + [sym_raw_string] = ACTIONS(5545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5547), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5549), + [anon_sym_BQUOTE] = ACTIONS(5551), + [anon_sym_LT_LPAREN] = ACTIONS(5553), + [anon_sym_GT_LPAREN] = ACTIONS(5553), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5493), + [sym_word] = ACTIONS(5555), }, [2660] = { [aux_sym_case_item_repeat1] = STATE(2660), - [anon_sym_PIPE] = ACTIONS(6623), - [anon_sym_RPAREN] = ACTIONS(6509), + [anon_sym_PIPE] = ACTIONS(6693), + [anon_sym_RPAREN] = ACTIONS(6577), [sym_comment] = ACTIONS(56), }, [2661] = { [aux_sym_concatenation_repeat1] = STATE(2661), - [sym__concat] = ACTIONS(6626), - [anon_sym_PIPE] = ACTIONS(1858), - [anon_sym_RPAREN] = ACTIONS(1858), + [sym__concat] = ACTIONS(6696), + [anon_sym_PIPE] = ACTIONS(1886), + [anon_sym_RPAREN] = ACTIONS(1886), [sym_comment] = ACTIONS(56), }, [2662] = { - [sym__concat] = ACTIONS(1895), - [anon_sym_PIPE] = ACTIONS(1895), - [anon_sym_RPAREN] = ACTIONS(1895), + [sym__concat] = ACTIONS(1923), + [anon_sym_PIPE] = ACTIONS(1923), + [anon_sym_RPAREN] = ACTIONS(1923), [sym_comment] = ACTIONS(56), }, [2663] = { - [anon_sym_esac] = ACTIONS(6629), - [sym__special_characters] = ACTIONS(6631), - [anon_sym_DQUOTE] = ACTIONS(6633), - [anon_sym_DOLLAR] = ACTIONS(6631), - [sym_raw_string] = ACTIONS(6633), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6633), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6633), - [anon_sym_BQUOTE] = ACTIONS(6633), - [anon_sym_LT_LPAREN] = ACTIONS(6633), - [anon_sym_GT_LPAREN] = ACTIONS(6633), + [anon_sym_esac] = ACTIONS(6699), + [sym__special_characters] = ACTIONS(6701), + [anon_sym_DQUOTE] = ACTIONS(6703), + [anon_sym_DOLLAR] = ACTIONS(6701), + [sym_raw_string] = ACTIONS(6703), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6703), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6703), + [anon_sym_BQUOTE] = ACTIONS(6703), + [anon_sym_LT_LPAREN] = ACTIONS(6703), + [anon_sym_GT_LPAREN] = ACTIONS(6703), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6635), + [sym_word] = ACTIONS(6705), }, [2664] = { - [anon_sym_esac] = ACTIONS(6637), - [anon_sym_PIPE] = ACTIONS(6585), - [anon_sym_SEMI_SEMI] = ACTIONS(6639), - [anon_sym_PIPE_AMP] = ACTIONS(6585), - [anon_sym_AMP_AMP] = ACTIONS(6589), - [anon_sym_PIPE_PIPE] = ACTIONS(6589), + [anon_sym_esac] = ACTIONS(6707), + [anon_sym_PIPE] = ACTIONS(6655), + [anon_sym_SEMI_SEMI] = ACTIONS(6709), + [anon_sym_PIPE_AMP] = ACTIONS(6655), + [anon_sym_AMP_AMP] = ACTIONS(6659), + [anon_sym_PIPE_PIPE] = ACTIONS(6659), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6591), - [anon_sym_LF] = ACTIONS(6591), - [anon_sym_AMP] = ACTIONS(6591), + [anon_sym_SEMI] = ACTIONS(6661), + [anon_sym_LF] = ACTIONS(6661), + [anon_sym_AMP] = ACTIONS(6661), }, [2665] = { - [sym_file_descriptor] = ACTIONS(378), - [sym_variable_name] = ACTIONS(378), - [anon_sym_esac] = ACTIONS(6637), - [anon_sym_PIPE] = ACTIONS(6585), - [anon_sym_SEMI_SEMI] = ACTIONS(6639), - [anon_sym_PIPE_AMP] = ACTIONS(6585), - [anon_sym_AMP_AMP] = ACTIONS(6589), - [anon_sym_PIPE_PIPE] = ACTIONS(6589), - [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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_esac] = ACTIONS(6707), + [anon_sym_PIPE] = ACTIONS(6655), + [anon_sym_SEMI_SEMI] = ACTIONS(6709), + [anon_sym_PIPE_AMP] = ACTIONS(6655), + [anon_sym_AMP_AMP] = ACTIONS(6659), + [anon_sym_PIPE_PIPE] = ACTIONS(6659), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(382), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(382), + [anon_sym_LT_AMP] = ACTIONS(382), + [anon_sym_GT_AMP] = ACTIONS(382), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(382), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(382), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(382), + [anon_sym_BQUOTE] = ACTIONS(382), + [anon_sym_LT_LPAREN] = ACTIONS(382), + [anon_sym_GT_LPAREN] = ACTIONS(382), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(380), - [anon_sym_SEMI] = ACTIONS(6591), - [anon_sym_LF] = ACTIONS(6591), - [anon_sym_AMP] = ACTIONS(6591), + [sym_word] = ACTIONS(382), + [anon_sym_SEMI] = ACTIONS(6661), + [anon_sym_LF] = ACTIONS(6661), + [anon_sym_AMP] = ACTIONS(6661), }, [2666] = { [sym__terminated_statement] = STATE(2651), @@ -70680,24 +70982,24 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_program_repeat1] = STATE(3292), [aux_sym_command_repeat1] = STATE(2658), [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(5459), + [sym_variable_name] = ACTIONS(5521), [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(5461), + [anon_sym_while] = ACTIONS(5523), [anon_sym_if] = ACTIONS(20), [anon_sym_case] = ACTIONS(22), - [anon_sym_esac] = ACTIONS(6629), - [anon_sym_SEMI_SEMI] = ACTIONS(6641), - [anon_sym_function] = ACTIONS(5467), + [anon_sym_esac] = ACTIONS(6699), + [anon_sym_SEMI_SEMI] = ACTIONS(6711), + [anon_sym_function] = ACTIONS(5529), [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(5469), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5471), - [anon_sym_declare] = ACTIONS(5473), - [anon_sym_typeset] = ACTIONS(5473), - [anon_sym_export] = ACTIONS(5473), - [anon_sym_readonly] = ACTIONS(5473), - [anon_sym_local] = ACTIONS(5473), - [anon_sym_unset] = ACTIONS(5475), - [anon_sym_unsetenv] = ACTIONS(5475), + [anon_sym_LBRACK] = ACTIONS(5531), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5533), + [anon_sym_declare] = ACTIONS(5535), + [anon_sym_typeset] = ACTIONS(5535), + [anon_sym_export] = ACTIONS(5535), + [anon_sym_readonly] = ACTIONS(5535), + [anon_sym_local] = ACTIONS(5535), + [anon_sym_unset] = ACTIONS(5537), + [anon_sym_unsetenv] = ACTIONS(5537), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -70705,17 +71007,17 @@ 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(5477), - [anon_sym_DQUOTE] = ACTIONS(5479), - [anon_sym_DOLLAR] = ACTIONS(5481), - [sym_raw_string] = ACTIONS(5483), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5485), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5487), - [anon_sym_BQUOTE] = ACTIONS(5489), - [anon_sym_LT_LPAREN] = ACTIONS(5491), - [anon_sym_GT_LPAREN] = ACTIONS(5491), + [sym__special_characters] = ACTIONS(5539), + [anon_sym_DQUOTE] = ACTIONS(5541), + [anon_sym_DOLLAR] = ACTIONS(5543), + [sym_raw_string] = ACTIONS(5545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5547), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5549), + [anon_sym_BQUOTE] = ACTIONS(5551), + [anon_sym_LT_LPAREN] = ACTIONS(5553), + [anon_sym_GT_LPAREN] = ACTIONS(5553), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5493), + [sym_word] = ACTIONS(5555), }, [2667] = { [sym__terminated_statement] = STATE(2651), @@ -70745,24 +71047,24 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_program_repeat1] = STATE(3299), [aux_sym_command_repeat1] = STATE(2658), [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(5459), + [sym_variable_name] = ACTIONS(5521), [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(5461), + [anon_sym_while] = ACTIONS(5523), [anon_sym_if] = ACTIONS(20), [anon_sym_case] = ACTIONS(22), - [anon_sym_esac] = ACTIONS(6629), - [anon_sym_SEMI_SEMI] = ACTIONS(6641), - [anon_sym_function] = ACTIONS(5467), + [anon_sym_esac] = ACTIONS(6699), + [anon_sym_SEMI_SEMI] = ACTIONS(6711), + [anon_sym_function] = ACTIONS(5529), [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(5469), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5471), - [anon_sym_declare] = ACTIONS(5473), - [anon_sym_typeset] = ACTIONS(5473), - [anon_sym_export] = ACTIONS(5473), - [anon_sym_readonly] = ACTIONS(5473), - [anon_sym_local] = ACTIONS(5473), - [anon_sym_unset] = ACTIONS(5475), - [anon_sym_unsetenv] = ACTIONS(5475), + [anon_sym_LBRACK] = ACTIONS(5531), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5533), + [anon_sym_declare] = ACTIONS(5535), + [anon_sym_typeset] = ACTIONS(5535), + [anon_sym_export] = ACTIONS(5535), + [anon_sym_readonly] = ACTIONS(5535), + [anon_sym_local] = ACTIONS(5535), + [anon_sym_unset] = ACTIONS(5537), + [anon_sym_unsetenv] = ACTIONS(5537), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -70770,17 +71072,17 @@ 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(5477), - [anon_sym_DQUOTE] = ACTIONS(5479), - [anon_sym_DOLLAR] = ACTIONS(5481), - [sym_raw_string] = ACTIONS(5483), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5485), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5487), - [anon_sym_BQUOTE] = ACTIONS(5489), - [anon_sym_LT_LPAREN] = ACTIONS(5491), - [anon_sym_GT_LPAREN] = ACTIONS(5491), + [sym__special_characters] = ACTIONS(5539), + [anon_sym_DQUOTE] = ACTIONS(5541), + [anon_sym_DOLLAR] = ACTIONS(5543), + [sym_raw_string] = ACTIONS(5545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5547), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5549), + [anon_sym_BQUOTE] = ACTIONS(5551), + [anon_sym_LT_LPAREN] = ACTIONS(5553), + [anon_sym_GT_LPAREN] = ACTIONS(5553), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5493), + [sym_word] = ACTIONS(5555), }, [2668] = { [sym_concatenation] = STATE(3303), @@ -70790,28 +71092,28 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(3302), [sym_command_substitution] = STATE(3302), [sym_process_substitution] = STATE(3302), - [anon_sym_RBRACE] = ACTIONS(6643), - [sym__special_characters] = ACTIONS(6645), - [anon_sym_DQUOTE] = ACTIONS(1924), - [anon_sym_DOLLAR] = ACTIONS(1926), - [sym_raw_string] = ACTIONS(6647), - [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), + [anon_sym_RBRACE] = ACTIONS(6713), + [sym__special_characters] = ACTIONS(6715), + [anon_sym_DQUOTE] = ACTIONS(1952), + [anon_sym_DOLLAR] = ACTIONS(1954), + [sym_raw_string] = ACTIONS(6717), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), + [anon_sym_BQUOTE] = ACTIONS(1962), + [anon_sym_LT_LPAREN] = ACTIONS(1964), + [anon_sym_GT_LPAREN] = ACTIONS(1964), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6649), + [sym_word] = ACTIONS(6719), }, [2669] = { - [sym__concat] = ACTIONS(1940), - [anon_sym_PIPE] = ACTIONS(1940), - [anon_sym_RPAREN] = ACTIONS(1940), + [sym__concat] = ACTIONS(1968), + [anon_sym_PIPE] = ACTIONS(1968), + [anon_sym_RPAREN] = ACTIONS(1968), [sym_comment] = ACTIONS(56), }, [2670] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6651), + [sym_regex_without_right_brace] = ACTIONS(6721), }, [2671] = { [sym_concatenation] = STATE(451), @@ -70822,29 +71124,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6653), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6723), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2672] = { - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(6655), + [anon_sym_LBRACK] = ACTIONS(836), + [anon_sym_EQ] = ACTIONS(6725), [sym_comment] = ACTIONS(56), }, [2673] = { @@ -70856,26 +71158,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3309), - [anon_sym_RBRACE] = ACTIONS(6657), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_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(6659), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6727), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(6729), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2674] = { [sym_concatenation] = STATE(451), @@ -70886,26 +71188,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3312), - [anon_sym_RBRACE] = ACTIONS(6661), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_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(6663), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6731), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(6733), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2675] = { [sym_concatenation] = STATE(451), @@ -70916,36 +71218,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3314), - [anon_sym_RBRACE] = ACTIONS(6643), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_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(6665), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6713), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(6735), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2676] = { - [sym__concat] = ACTIONS(1992), - [anon_sym_PIPE] = ACTIONS(1992), - [anon_sym_RPAREN] = ACTIONS(1992), + [sym__concat] = ACTIONS(2022), + [anon_sym_PIPE] = ACTIONS(2022), + [anon_sym_RPAREN] = ACTIONS(2022), [sym_comment] = ACTIONS(56), }, [2677] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6667), + [sym_regex_without_right_brace] = ACTIONS(6737), }, [2678] = { [sym_concatenation] = STATE(451), @@ -70956,35 +71258,35 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6669), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6739), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2679] = { - [sym__concat] = ACTIONS(2000), - [anon_sym_PIPE] = ACTIONS(2000), - [anon_sym_RPAREN] = ACTIONS(2000), + [sym__concat] = ACTIONS(2030), + [anon_sym_PIPE] = ACTIONS(2030), + [anon_sym_RPAREN] = ACTIONS(2030), [sym_comment] = ACTIONS(56), }, [2680] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6671), + [sym_regex_without_right_brace] = ACTIONS(6741), }, [2681] = { [sym_concatenation] = STATE(451), @@ -70995,129 +71297,129 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6643), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6713), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2682] = { - [sym__concat] = ACTIONS(2156), - [anon_sym_PIPE] = ACTIONS(2156), - [anon_sym_RPAREN] = ACTIONS(2156), + [sym__concat] = ACTIONS(2190), + [anon_sym_PIPE] = ACTIONS(2190), + [anon_sym_RPAREN] = ACTIONS(2190), [sym_comment] = ACTIONS(56), }, [2683] = { - [sym__concat] = ACTIONS(2358), - [anon_sym_PIPE] = ACTIONS(2358), - [anon_sym_RPAREN] = ACTIONS(2358), + [sym__concat] = ACTIONS(2396), + [anon_sym_PIPE] = ACTIONS(2396), + [anon_sym_RPAREN] = ACTIONS(2396), [sym_comment] = ACTIONS(56), }, [2684] = { - [anon_sym_esac] = ACTIONS(6673), - [anon_sym_PIPE] = ACTIONS(6673), - [anon_sym_RPAREN] = ACTIONS(6673), - [anon_sym_SEMI_SEMI] = ACTIONS(6673), - [anon_sym_PIPE_AMP] = ACTIONS(6673), - [anon_sym_AMP_AMP] = ACTIONS(6673), - [anon_sym_PIPE_PIPE] = ACTIONS(6673), + [anon_sym_esac] = ACTIONS(6743), + [anon_sym_PIPE] = ACTIONS(6743), + [anon_sym_RPAREN] = ACTIONS(6743), + [anon_sym_SEMI_SEMI] = ACTIONS(6743), + [anon_sym_PIPE_AMP] = ACTIONS(6743), + [anon_sym_AMP_AMP] = ACTIONS(6743), + [anon_sym_PIPE_PIPE] = ACTIONS(6743), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6673), - [anon_sym_LF] = ACTIONS(6673), - [anon_sym_AMP] = ACTIONS(6673), + [anon_sym_SEMI] = ACTIONS(6743), + [anon_sym_LF] = ACTIONS(6743), + [anon_sym_AMP] = ACTIONS(6743), }, [2685] = { [aux_sym_case_item_repeat1] = STATE(3319), [aux_sym_concatenation_repeat1] = STATE(1990), - [sym__concat] = ACTIONS(4260), - [anon_sym_PIPE] = ACTIONS(4262), - [anon_sym_RPAREN] = ACTIONS(6675), + [sym__concat] = ACTIONS(4318), + [anon_sym_PIPE] = ACTIONS(4320), + [anon_sym_RPAREN] = ACTIONS(6745), [sym_comment] = ACTIONS(56), }, [2686] = { [aux_sym_case_item_repeat1] = STATE(3321), [aux_sym_concatenation_repeat1] = STATE(1990), - [sym__concat] = ACTIONS(4260), - [anon_sym_PIPE] = ACTIONS(4262), - [anon_sym_RPAREN] = ACTIONS(6677), + [sym__concat] = ACTIONS(4318), + [anon_sym_PIPE] = ACTIONS(4320), + [anon_sym_RPAREN] = ACTIONS(6747), [sym_comment] = ACTIONS(56), }, [2687] = { [aux_sym_case_item_repeat1] = STATE(3321), - [anon_sym_PIPE] = ACTIONS(4262), - [anon_sym_RPAREN] = ACTIONS(6677), + [anon_sym_PIPE] = ACTIONS(4320), + [anon_sym_RPAREN] = ACTIONS(6747), [sym_comment] = ACTIONS(56), }, [2688] = { - [anon_sym_esac] = ACTIONS(6679), + [anon_sym_esac] = ACTIONS(6749), [sym_comment] = ACTIONS(56), }, [2689] = { - [anon_sym_esac] = ACTIONS(6681), - [anon_sym_PIPE] = ACTIONS(6681), - [anon_sym_RPAREN] = ACTIONS(6681), - [anon_sym_SEMI_SEMI] = ACTIONS(6681), - [anon_sym_PIPE_AMP] = ACTIONS(6681), - [anon_sym_AMP_AMP] = ACTIONS(6681), - [anon_sym_PIPE_PIPE] = ACTIONS(6681), + [anon_sym_esac] = ACTIONS(6751), + [anon_sym_PIPE] = ACTIONS(6751), + [anon_sym_RPAREN] = ACTIONS(6751), + [anon_sym_SEMI_SEMI] = ACTIONS(6751), + [anon_sym_PIPE_AMP] = ACTIONS(6751), + [anon_sym_AMP_AMP] = ACTIONS(6751), + [anon_sym_PIPE_PIPE] = ACTIONS(6751), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6681), - [anon_sym_LF] = ACTIONS(6681), - [anon_sym_AMP] = ACTIONS(6681), + [anon_sym_SEMI] = ACTIONS(6751), + [anon_sym_LF] = ACTIONS(6751), + [anon_sym_AMP] = ACTIONS(6751), }, [2690] = { - [anon_sym_esac] = ACTIONS(6683), + [anon_sym_esac] = ACTIONS(6753), [sym_comment] = ACTIONS(56), }, [2691] = { - [sym__concat] = ACTIONS(5961), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_SEMI_SEMI] = ACTIONS(5963), + [sym__concat] = ACTIONS(6025), + [anon_sym_in] = ACTIONS(6027), + [anon_sym_SEMI_SEMI] = ACTIONS(6027), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(5963), - [anon_sym_LF] = ACTIONS(5963), - [anon_sym_AMP] = ACTIONS(5963), + [anon_sym_SEMI] = ACTIONS(6027), + [anon_sym_LF] = ACTIONS(6027), + [anon_sym_AMP] = ACTIONS(6027), }, [2692] = { - [sym__concat] = ACTIONS(5965), - [anon_sym_in] = ACTIONS(5967), - [anon_sym_SEMI_SEMI] = ACTIONS(5967), + [sym__concat] = ACTIONS(6029), + [anon_sym_in] = ACTIONS(6031), + [anon_sym_SEMI_SEMI] = ACTIONS(6031), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(5967), - [anon_sym_LF] = ACTIONS(5967), - [anon_sym_AMP] = ACTIONS(5967), + [anon_sym_SEMI] = ACTIONS(6031), + [anon_sym_LF] = ACTIONS(6031), + [anon_sym_AMP] = ACTIONS(6031), }, [2693] = { - [sym__concat] = ACTIONS(5969), - [anon_sym_in] = ACTIONS(5971), - [anon_sym_SEMI_SEMI] = ACTIONS(5971), + [sym__concat] = ACTIONS(6033), + [anon_sym_in] = ACTIONS(6035), + [anon_sym_SEMI_SEMI] = ACTIONS(6035), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(5971), - [anon_sym_LF] = ACTIONS(5971), - [anon_sym_AMP] = ACTIONS(5971), + [anon_sym_SEMI] = ACTIONS(6035), + [anon_sym_LF] = ACTIONS(6035), + [anon_sym_AMP] = ACTIONS(6035), }, [2694] = { - [sym__concat] = ACTIONS(5973), - [anon_sym_in] = ACTIONS(5975), - [anon_sym_SEMI_SEMI] = ACTIONS(5975), + [sym__concat] = ACTIONS(6037), + [anon_sym_in] = ACTIONS(6039), + [anon_sym_SEMI_SEMI] = ACTIONS(6039), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(5975), - [anon_sym_LF] = ACTIONS(5975), - [anon_sym_AMP] = ACTIONS(5975), + [anon_sym_SEMI] = ACTIONS(6039), + [anon_sym_LF] = ACTIONS(6039), + [anon_sym_AMP] = ACTIONS(6039), }, [2695] = { [sym_concatenation] = STATE(451), @@ -71128,34 +71430,34 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6685), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6755), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2696] = { - [sym__concat] = ACTIONS(5979), - [anon_sym_in] = ACTIONS(5981), - [anon_sym_SEMI_SEMI] = ACTIONS(5981), + [sym__concat] = ACTIONS(6043), + [anon_sym_in] = ACTIONS(6045), + [anon_sym_SEMI_SEMI] = ACTIONS(6045), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(5981), - [anon_sym_LF] = ACTIONS(5981), - [anon_sym_AMP] = ACTIONS(5981), + [anon_sym_SEMI] = ACTIONS(6045), + [anon_sym_LF] = ACTIONS(6045), + [anon_sym_AMP] = ACTIONS(6045), }, [2697] = { [sym_concatenation] = STATE(451), @@ -71166,34 +71468,34 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6687), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6757), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2698] = { - [sym__concat] = ACTIONS(5985), - [anon_sym_in] = ACTIONS(5987), - [anon_sym_SEMI_SEMI] = ACTIONS(5987), + [sym__concat] = ACTIONS(6049), + [anon_sym_in] = ACTIONS(6051), + [anon_sym_SEMI_SEMI] = ACTIONS(6051), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(5987), - [anon_sym_LF] = ACTIONS(5987), - [anon_sym_AMP] = ACTIONS(5987), + [anon_sym_SEMI] = ACTIONS(6051), + [anon_sym_LF] = ACTIONS(6051), + [anon_sym_AMP] = ACTIONS(6051), }, [2699] = { [sym_concatenation] = STATE(451), @@ -71204,80 +71506,80 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6689), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6759), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2700] = { - [sym__concat] = ACTIONS(5991), - [anon_sym_in] = ACTIONS(5993), - [anon_sym_SEMI_SEMI] = ACTIONS(5993), + [sym__concat] = ACTIONS(6055), + [anon_sym_in] = ACTIONS(6057), + [anon_sym_SEMI_SEMI] = ACTIONS(6057), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(5993), - [anon_sym_LF] = ACTIONS(5993), - [anon_sym_AMP] = ACTIONS(5993), + [anon_sym_SEMI] = ACTIONS(6057), + [anon_sym_LF] = ACTIONS(6057), + [anon_sym_AMP] = ACTIONS(6057), }, [2701] = { - [sym__concat] = ACTIONS(5995), - [anon_sym_in] = ACTIONS(5997), - [anon_sym_SEMI_SEMI] = ACTIONS(5997), + [sym__concat] = ACTIONS(6059), + [anon_sym_in] = ACTIONS(6061), + [anon_sym_SEMI_SEMI] = ACTIONS(6061), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(5997), - [anon_sym_LF] = ACTIONS(5997), - [anon_sym_AMP] = ACTIONS(5997), + [anon_sym_SEMI] = ACTIONS(6061), + [anon_sym_LF] = ACTIONS(6061), + [anon_sym_AMP] = ACTIONS(6061), }, [2702] = { - [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__concat] = ACTIONS(1886), + [anon_sym_PIPE] = ACTIONS(1888), + [anon_sym_SEMI_SEMI] = ACTIONS(1888), + [anon_sym_PIPE_AMP] = ACTIONS(1888), + [anon_sym_AMP_AMP] = ACTIONS(1888), + [anon_sym_PIPE_PIPE] = ACTIONS(1888), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1860), - [anon_sym_LF] = ACTIONS(1860), - [anon_sym_AMP] = ACTIONS(1860), + [anon_sym_SEMI] = ACTIONS(1888), + [anon_sym_LF] = ACTIONS(1888), + [anon_sym_AMP] = ACTIONS(1888), }, [2703] = { [aux_sym_concatenation_repeat1] = STATE(2703), - [sym__concat] = ACTIONS(6691), - [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__concat] = ACTIONS(6761), + [anon_sym_PIPE] = ACTIONS(1888), + [anon_sym_SEMI_SEMI] = ACTIONS(1888), + [anon_sym_PIPE_AMP] = ACTIONS(1888), + [anon_sym_AMP_AMP] = ACTIONS(1888), + [anon_sym_PIPE_PIPE] = ACTIONS(1888), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1860), - [anon_sym_LF] = ACTIONS(1860), - [anon_sym_AMP] = ACTIONS(1860), + [anon_sym_SEMI] = ACTIONS(1888), + [anon_sym_LF] = ACTIONS(1888), + [anon_sym_AMP] = ACTIONS(1888), }, [2704] = { - [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__concat] = ACTIONS(1923), + [anon_sym_PIPE] = ACTIONS(1925), + [anon_sym_SEMI_SEMI] = ACTIONS(1925), + [anon_sym_PIPE_AMP] = ACTIONS(1925), + [anon_sym_AMP_AMP] = ACTIONS(1925), + [anon_sym_PIPE_PIPE] = ACTIONS(1925), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1897), - [anon_sym_LF] = ACTIONS(1897), - [anon_sym_AMP] = ACTIONS(1897), + [anon_sym_SEMI] = ACTIONS(1925), + [anon_sym_LF] = ACTIONS(1925), + [anon_sym_AMP] = ACTIONS(1925), }, [2705] = { [sym_concatenation] = STATE(3330), @@ -71287,34 +71589,34 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(3329), [sym_command_substitution] = STATE(3329), [sym_process_substitution] = STATE(3329), - [anon_sym_RBRACE] = ACTIONS(6694), - [sym__special_characters] = ACTIONS(6696), - [anon_sym_DQUOTE] = ACTIONS(1924), - [anon_sym_DOLLAR] = ACTIONS(1926), - [sym_raw_string] = ACTIONS(6698), - [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), + [anon_sym_RBRACE] = ACTIONS(6764), + [sym__special_characters] = ACTIONS(6766), + [anon_sym_DQUOTE] = ACTIONS(1952), + [anon_sym_DOLLAR] = ACTIONS(1954), + [sym_raw_string] = ACTIONS(6768), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), + [anon_sym_BQUOTE] = ACTIONS(1962), + [anon_sym_LT_LPAREN] = ACTIONS(1964), + [anon_sym_GT_LPAREN] = ACTIONS(1964), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6700), + [sym_word] = ACTIONS(6770), }, [2706] = { - [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__concat] = ACTIONS(1968), + [anon_sym_PIPE] = ACTIONS(1970), + [anon_sym_SEMI_SEMI] = ACTIONS(1970), + [anon_sym_PIPE_AMP] = ACTIONS(1970), + [anon_sym_AMP_AMP] = ACTIONS(1970), + [anon_sym_PIPE_PIPE] = ACTIONS(1970), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1942), - [anon_sym_LF] = ACTIONS(1942), - [anon_sym_AMP] = ACTIONS(1942), + [anon_sym_SEMI] = ACTIONS(1970), + [anon_sym_LF] = ACTIONS(1970), + [anon_sym_AMP] = ACTIONS(1970), }, [2707] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6702), + [sym_regex_without_right_brace] = ACTIONS(6772), }, [2708] = { [sym_concatenation] = STATE(451), @@ -71325,29 +71627,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6704), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6774), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2709] = { - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(6706), + [anon_sym_LBRACK] = ACTIONS(836), + [anon_sym_EQ] = ACTIONS(6776), [sym_comment] = ACTIONS(56), }, [2710] = { @@ -71359,26 +71661,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3336), - [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), - [aux_sym_SLASH] = ACTIONS(6710), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6778), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(6780), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2711] = { [sym_concatenation] = STATE(451), @@ -71389,26 +71691,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3339), - [anon_sym_RBRACE] = ACTIONS(6712), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_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(6714), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6782), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(6784), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2712] = { [sym_concatenation] = STATE(451), @@ -71419,42 +71721,42 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3341), - [anon_sym_RBRACE] = ACTIONS(6694), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_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(6716), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6764), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(6786), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2713] = { - [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__concat] = ACTIONS(2022), + [anon_sym_PIPE] = ACTIONS(2024), + [anon_sym_SEMI_SEMI] = ACTIONS(2024), + [anon_sym_PIPE_AMP] = ACTIONS(2024), + [anon_sym_AMP_AMP] = ACTIONS(2024), + [anon_sym_PIPE_PIPE] = ACTIONS(2024), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1994), - [anon_sym_LF] = ACTIONS(1994), - [anon_sym_AMP] = ACTIONS(1994), + [anon_sym_SEMI] = ACTIONS(2024), + [anon_sym_LF] = ACTIONS(2024), + [anon_sym_AMP] = ACTIONS(2024), }, [2714] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6718), + [sym_regex_without_right_brace] = ACTIONS(6788), }, [2715] = { [sym_concatenation] = STATE(451), @@ -71465,41 +71767,41 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6720), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6790), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2716] = { - [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__concat] = ACTIONS(2030), + [anon_sym_PIPE] = ACTIONS(2032), + [anon_sym_SEMI_SEMI] = ACTIONS(2032), + [anon_sym_PIPE_AMP] = ACTIONS(2032), + [anon_sym_AMP_AMP] = ACTIONS(2032), + [anon_sym_PIPE_PIPE] = ACTIONS(2032), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2002), - [anon_sym_LF] = ACTIONS(2002), - [anon_sym_AMP] = ACTIONS(2002), + [anon_sym_SEMI] = ACTIONS(2032), + [anon_sym_LF] = ACTIONS(2032), + [anon_sym_AMP] = ACTIONS(2032), }, [2717] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6722), + [sym_regex_without_right_brace] = ACTIONS(6792), }, [2718] = { [sym_concatenation] = STATE(451), @@ -71510,96 +71812,96 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6694), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6764), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2719] = { - [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__concat] = ACTIONS(2190), + [anon_sym_PIPE] = ACTIONS(2192), + [anon_sym_SEMI_SEMI] = ACTIONS(2192), + [anon_sym_PIPE_AMP] = ACTIONS(2192), + [anon_sym_AMP_AMP] = ACTIONS(2192), + [anon_sym_PIPE_PIPE] = ACTIONS(2192), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2158), - [anon_sym_LF] = ACTIONS(2158), - [anon_sym_AMP] = ACTIONS(2158), + [anon_sym_SEMI] = ACTIONS(2192), + [anon_sym_LF] = ACTIONS(2192), + [anon_sym_AMP] = ACTIONS(2192), }, [2720] = { - [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__concat] = ACTIONS(2396), + [anon_sym_PIPE] = ACTIONS(2398), + [anon_sym_SEMI_SEMI] = ACTIONS(2398), + [anon_sym_PIPE_AMP] = ACTIONS(2398), + [anon_sym_AMP_AMP] = ACTIONS(2398), + [anon_sym_PIPE_PIPE] = ACTIONS(2398), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2360), - [anon_sym_LF] = ACTIONS(2360), - [anon_sym_AMP] = ACTIONS(2360), + [anon_sym_SEMI] = ACTIONS(2398), + [anon_sym_LF] = ACTIONS(2398), + [anon_sym_AMP] = ACTIONS(2398), }, [2721] = { - [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_file_descriptor] = ACTIONS(3283), + [sym__concat] = ACTIONS(3283), + [sym_variable_name] = ACTIONS(3283), + [anon_sym_PIPE] = ACTIONS(3285), + [anon_sym_RPAREN] = ACTIONS(3285), + [anon_sym_SEMI_SEMI] = ACTIONS(3285), + [anon_sym_PIPE_AMP] = ACTIONS(3285), + [anon_sym_AMP_AMP] = ACTIONS(3285), + [anon_sym_PIPE_PIPE] = ACTIONS(3285), + [anon_sym_LT] = ACTIONS(3285), + [anon_sym_GT] = ACTIONS(3285), + [anon_sym_GT_GT] = ACTIONS(3285), + [anon_sym_AMP_GT] = ACTIONS(3285), + [anon_sym_AMP_GT_GT] = ACTIONS(3285), + [anon_sym_LT_AMP] = ACTIONS(3285), + [anon_sym_GT_AMP] = ACTIONS(3285), + [sym__special_characters] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3285), + [anon_sym_DOLLAR] = ACTIONS(3285), + [sym_raw_string] = ACTIONS(3285), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3285), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3285), + [anon_sym_BQUOTE] = ACTIONS(3285), + [anon_sym_LT_LPAREN] = ACTIONS(3285), + [anon_sym_GT_LPAREN] = ACTIONS(3285), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3237), - [anon_sym_SEMI] = ACTIONS(3237), - [anon_sym_LF] = ACTIONS(3237), - [anon_sym_AMP] = ACTIONS(3237), + [sym_word] = ACTIONS(3285), + [anon_sym_SEMI] = ACTIONS(3285), + [anon_sym_LF] = ACTIONS(3285), + [anon_sym_AMP] = ACTIONS(3285), }, [2722] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(6724), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(6794), [sym_comment] = ACTIONS(56), }, [2723] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(6726), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(6796), [sym_comment] = ACTIONS(56), }, [2724] = { - [anon_sym_RBRACE] = ACTIONS(6726), + [anon_sym_RBRACE] = ACTIONS(6796), [sym_comment] = ACTIONS(56), }, [2725] = { @@ -71611,57 +71913,57 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3348), - [anon_sym_RBRACE] = ACTIONS(6728), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6798), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2726] = { - [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_file_descriptor] = ACTIONS(3347), + [sym__concat] = ACTIONS(3347), + [sym_variable_name] = ACTIONS(3347), + [anon_sym_PIPE] = ACTIONS(3349), + [anon_sym_RPAREN] = ACTIONS(3349), + [anon_sym_SEMI_SEMI] = ACTIONS(3349), + [anon_sym_PIPE_AMP] = ACTIONS(3349), + [anon_sym_AMP_AMP] = ACTIONS(3349), + [anon_sym_PIPE_PIPE] = ACTIONS(3349), + [anon_sym_LT] = ACTIONS(3349), + [anon_sym_GT] = ACTIONS(3349), + [anon_sym_GT_GT] = ACTIONS(3349), + [anon_sym_AMP_GT] = ACTIONS(3349), + [anon_sym_AMP_GT_GT] = ACTIONS(3349), + [anon_sym_LT_AMP] = ACTIONS(3349), + [anon_sym_GT_AMP] = ACTIONS(3349), + [sym__special_characters] = ACTIONS(3349), + [anon_sym_DQUOTE] = ACTIONS(3349), + [anon_sym_DOLLAR] = ACTIONS(3349), + [sym_raw_string] = ACTIONS(3349), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3349), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3349), + [anon_sym_BQUOTE] = ACTIONS(3349), + [anon_sym_LT_LPAREN] = ACTIONS(3349), + [anon_sym_GT_LPAREN] = ACTIONS(3349), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3299), - [anon_sym_SEMI] = ACTIONS(3299), - [anon_sym_LF] = ACTIONS(3299), - [anon_sym_AMP] = ACTIONS(3299), + [sym_word] = ACTIONS(3349), + [anon_sym_SEMI] = ACTIONS(3349), + [anon_sym_LF] = ACTIONS(3349), + [anon_sym_AMP] = ACTIONS(3349), }, [2727] = { [sym_concatenation] = STATE(3351), @@ -71671,54 +71973,54 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(3350), [sym_command_substitution] = STATE(3350), [sym_process_substitution] = STATE(3350), - [anon_sym_RBRACE] = ACTIONS(6726), - [sym__special_characters] = ACTIONS(6730), - [anon_sym_DQUOTE] = ACTIONS(1924), - [anon_sym_DOLLAR] = ACTIONS(1926), - [sym_raw_string] = ACTIONS(6732), - [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), + [anon_sym_RBRACE] = ACTIONS(6796), + [sym__special_characters] = ACTIONS(6800), + [anon_sym_DQUOTE] = ACTIONS(1952), + [anon_sym_DOLLAR] = ACTIONS(1954), + [sym_raw_string] = ACTIONS(6802), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), + [anon_sym_BQUOTE] = ACTIONS(1962), + [anon_sym_LT_LPAREN] = ACTIONS(1964), + [anon_sym_GT_LPAREN] = ACTIONS(1964), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6734), + [sym_word] = ACTIONS(6804), }, [2728] = { - [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_file_descriptor] = ACTIONS(3392), + [sym__concat] = ACTIONS(3392), + [sym_variable_name] = ACTIONS(3392), + [anon_sym_PIPE] = ACTIONS(3394), + [anon_sym_RPAREN] = ACTIONS(3394), + [anon_sym_SEMI_SEMI] = ACTIONS(3394), + [anon_sym_PIPE_AMP] = ACTIONS(3394), + [anon_sym_AMP_AMP] = ACTIONS(3394), + [anon_sym_PIPE_PIPE] = ACTIONS(3394), + [anon_sym_LT] = ACTIONS(3394), + [anon_sym_GT] = ACTIONS(3394), + [anon_sym_GT_GT] = ACTIONS(3394), + [anon_sym_AMP_GT] = ACTIONS(3394), + [anon_sym_AMP_GT_GT] = ACTIONS(3394), + [anon_sym_LT_AMP] = ACTIONS(3394), + [anon_sym_GT_AMP] = ACTIONS(3394), + [sym__special_characters] = ACTIONS(3394), + [anon_sym_DQUOTE] = ACTIONS(3394), + [anon_sym_DOLLAR] = ACTIONS(3394), + [sym_raw_string] = ACTIONS(3394), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3394), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3394), + [anon_sym_BQUOTE] = ACTIONS(3394), + [anon_sym_LT_LPAREN] = ACTIONS(3394), + [anon_sym_GT_LPAREN] = ACTIONS(3394), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(3344), - [anon_sym_LF] = ACTIONS(3344), - [anon_sym_AMP] = ACTIONS(3344), + [sym_word] = ACTIONS(3394), + [anon_sym_SEMI] = ACTIONS(3394), + [anon_sym_LF] = ACTIONS(3394), + [anon_sym_AMP] = ACTIONS(3394), }, [2729] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6736), + [sym_regex_without_right_brace] = ACTIONS(6806), }, [2730] = { [sym_concatenation] = STATE(451), @@ -71729,61 +72031,61 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(6808), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2731] = { - [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_file_descriptor] = ACTIONS(3400), + [sym__concat] = ACTIONS(3400), + [sym_variable_name] = ACTIONS(3400), + [anon_sym_PIPE] = ACTIONS(3402), + [anon_sym_RPAREN] = ACTIONS(3402), + [anon_sym_SEMI_SEMI] = ACTIONS(3402), + [anon_sym_PIPE_AMP] = ACTIONS(3402), + [anon_sym_AMP_AMP] = ACTIONS(3402), + [anon_sym_PIPE_PIPE] = ACTIONS(3402), + [anon_sym_LT] = ACTIONS(3402), + [anon_sym_GT] = ACTIONS(3402), + [anon_sym_GT_GT] = ACTIONS(3402), + [anon_sym_AMP_GT] = ACTIONS(3402), + [anon_sym_AMP_GT_GT] = ACTIONS(3402), + [anon_sym_LT_AMP] = ACTIONS(3402), + [anon_sym_GT_AMP] = ACTIONS(3402), + [sym__special_characters] = ACTIONS(3402), + [anon_sym_DQUOTE] = ACTIONS(3402), + [anon_sym_DOLLAR] = ACTIONS(3402), + [sym_raw_string] = ACTIONS(3402), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3402), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3402), + [anon_sym_BQUOTE] = ACTIONS(3402), + [anon_sym_LT_LPAREN] = ACTIONS(3402), + [anon_sym_GT_LPAREN] = ACTIONS(3402), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3352), - [anon_sym_SEMI] = ACTIONS(3352), - [anon_sym_LF] = ACTIONS(3352), - [anon_sym_AMP] = ACTIONS(3352), + [sym_word] = ACTIONS(3402), + [anon_sym_SEMI] = ACTIONS(3402), + [anon_sym_LF] = ACTIONS(3402), + [anon_sym_AMP] = ACTIONS(3402), }, [2732] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6740), + [sym_regex_without_right_brace] = ACTIONS(6810), }, [2733] = { [sym_concatenation] = STATE(451), @@ -71794,29 +72096,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(6812), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2734] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6744), + [sym_regex_without_right_brace] = ACTIONS(6814), }, [2735] = { [sym_concatenation] = STATE(451), @@ -71827,25 +72129,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(6796), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2736] = { [sym_concatenation] = STATE(451), @@ -71856,57 +72158,57 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3358), - [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), + [anon_sym_RBRACE] = ACTIONS(6816), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2737] = { - [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_file_descriptor] = ACTIONS(3412), + [sym__concat] = ACTIONS(3412), + [sym_variable_name] = ACTIONS(3412), + [anon_sym_PIPE] = ACTIONS(3414), + [anon_sym_RPAREN] = ACTIONS(3414), + [anon_sym_SEMI_SEMI] = ACTIONS(3414), + [anon_sym_PIPE_AMP] = ACTIONS(3414), + [anon_sym_AMP_AMP] = ACTIONS(3414), + [anon_sym_PIPE_PIPE] = ACTIONS(3414), + [anon_sym_LT] = ACTIONS(3414), + [anon_sym_GT] = ACTIONS(3414), + [anon_sym_GT_GT] = ACTIONS(3414), + [anon_sym_AMP_GT] = ACTIONS(3414), + [anon_sym_AMP_GT_GT] = ACTIONS(3414), + [anon_sym_LT_AMP] = ACTIONS(3414), + [anon_sym_GT_AMP] = ACTIONS(3414), + [sym__special_characters] = ACTIONS(3414), + [anon_sym_DQUOTE] = ACTIONS(3414), + [anon_sym_DOLLAR] = ACTIONS(3414), + [sym_raw_string] = ACTIONS(3414), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3414), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3414), + [anon_sym_BQUOTE] = ACTIONS(3414), + [anon_sym_LT_LPAREN] = ACTIONS(3414), + [anon_sym_GT_LPAREN] = ACTIONS(3414), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3364), - [anon_sym_SEMI] = ACTIONS(3364), - [anon_sym_LF] = ACTIONS(3364), - [anon_sym_AMP] = ACTIONS(3364), + [sym_word] = ACTIONS(3414), + [anon_sym_SEMI] = ACTIONS(3414), + [anon_sym_LF] = ACTIONS(3414), + [anon_sym_AMP] = ACTIONS(3414), }, [2738] = { [sym_concatenation] = STATE(451), @@ -71917,53 +72219,53 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3360), - [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), + [anon_sym_RBRACE] = ACTIONS(6818), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2739] = { [aux_sym_concatenation_repeat1] = STATE(2742), - [sym__concat] = ACTIONS(5659), - [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__concat] = ACTIONS(5721), + [anon_sym_PIPE] = ACTIONS(4032), + [anon_sym_RPAREN] = ACTIONS(4032), + [anon_sym_SEMI_SEMI] = ACTIONS(4032), + [anon_sym_PIPE_AMP] = ACTIONS(4032), + [anon_sym_AMP_AMP] = ACTIONS(4032), + [anon_sym_PIPE_PIPE] = ACTIONS(4032), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3974), - [anon_sym_LF] = ACTIONS(3974), - [anon_sym_AMP] = ACTIONS(3974), + [anon_sym_SEMI] = ACTIONS(4032), + [anon_sym_LF] = ACTIONS(4032), + [anon_sym_AMP] = ACTIONS(4032), }, [2740] = { [aux_sym_concatenation_repeat1] = STATE(2742), - [sym__concat] = ACTIONS(5659), - [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__concat] = ACTIONS(5721), + [anon_sym_PIPE] = ACTIONS(4034), + [anon_sym_RPAREN] = ACTIONS(4034), + [anon_sym_SEMI_SEMI] = ACTIONS(4034), + [anon_sym_PIPE_AMP] = ACTIONS(4034), + [anon_sym_AMP_AMP] = ACTIONS(4034), + [anon_sym_PIPE_PIPE] = ACTIONS(4034), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3976), - [anon_sym_LF] = ACTIONS(3976), - [anon_sym_AMP] = ACTIONS(3976), + [anon_sym_SEMI] = ACTIONS(4034), + [anon_sym_LF] = ACTIONS(4034), + [anon_sym_AMP] = ACTIONS(4034), }, [2741] = { [sym_string] = STATE(3361), @@ -71972,51 +72274,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(3361), [sym_command_substitution] = STATE(3361), [sym_process_substitution] = STATE(3361), - [sym__special_characters] = ACTIONS(6750), - [anon_sym_DQUOTE] = ACTIONS(4398), - [anon_sym_DOLLAR] = ACTIONS(4400), - [sym_raw_string] = ACTIONS(6752), - [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__special_characters] = ACTIONS(6820), + [anon_sym_DQUOTE] = ACTIONS(4460), + [anon_sym_DOLLAR] = ACTIONS(4462), + [sym_raw_string] = ACTIONS(6822), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4466), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4468), + [anon_sym_BQUOTE] = ACTIONS(4470), + [anon_sym_LT_LPAREN] = ACTIONS(4472), + [anon_sym_GT_LPAREN] = ACTIONS(4472), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6750), + [sym_word] = ACTIONS(6820), }, [2742] = { [aux_sym_concatenation_repeat1] = STATE(3362), - [sym__concat] = ACTIONS(5659), - [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__concat] = ACTIONS(5721), + [anon_sym_PIPE] = ACTIONS(790), + [anon_sym_RPAREN] = ACTIONS(790), + [anon_sym_SEMI_SEMI] = ACTIONS(790), + [anon_sym_PIPE_AMP] = ACTIONS(790), + [anon_sym_AMP_AMP] = ACTIONS(790), + [anon_sym_PIPE_PIPE] = ACTIONS(790), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(774), - [anon_sym_LF] = ACTIONS(774), - [anon_sym_AMP] = ACTIONS(774), + [anon_sym_SEMI] = ACTIONS(790), + [anon_sym_LF] = ACTIONS(790), + [anon_sym_AMP] = ACTIONS(790), }, [2743] = { - [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__concat] = ACTIONS(792), + [anon_sym_PIPE] = ACTIONS(794), + [anon_sym_RPAREN] = ACTIONS(794), + [anon_sym_SEMI_SEMI] = ACTIONS(794), + [anon_sym_PIPE_AMP] = ACTIONS(794), + [anon_sym_AMP_AMP] = ACTIONS(794), + [anon_sym_PIPE_PIPE] = ACTIONS(794), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(778), - [anon_sym_LF] = ACTIONS(778), - [anon_sym_AMP] = ACTIONS(778), + [anon_sym_SEMI] = ACTIONS(794), + [anon_sym_LF] = ACTIONS(794), + [anon_sym_AMP] = ACTIONS(794), }, [2744] = { [sym_simple_expansion] = STATE(134), [sym_expansion] = STATE(134), [sym_command_substitution] = STATE(134), [aux_sym_string_repeat1] = STATE(447), - [anon_sym_DQUOTE] = ACTIONS(6754), + [anon_sym_DQUOTE] = ACTIONS(6824), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -72025,47 +72327,47 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(182), }, [2745] = { - [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__concat] = ACTIONS(824), + [anon_sym_PIPE] = ACTIONS(826), + [anon_sym_RPAREN] = ACTIONS(826), + [anon_sym_SEMI_SEMI] = ACTIONS(826), + [anon_sym_PIPE_AMP] = ACTIONS(826), + [anon_sym_AMP_AMP] = ACTIONS(826), + [anon_sym_PIPE_PIPE] = ACTIONS(826), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(810), - [anon_sym_LF] = ACTIONS(810), - [anon_sym_AMP] = ACTIONS(810), + [anon_sym_SEMI] = ACTIONS(826), + [anon_sym_LF] = ACTIONS(826), + [anon_sym_AMP] = ACTIONS(826), }, [2746] = { - [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__concat] = ACTIONS(828), + [anon_sym_PIPE] = ACTIONS(830), + [anon_sym_RPAREN] = ACTIONS(830), + [anon_sym_SEMI_SEMI] = ACTIONS(830), + [anon_sym_PIPE_AMP] = ACTIONS(830), + [anon_sym_AMP_AMP] = ACTIONS(830), + [anon_sym_PIPE_PIPE] = ACTIONS(830), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(814), - [anon_sym_LF] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(814), + [anon_sym_SEMI] = ACTIONS(830), + [anon_sym_LF] = ACTIONS(830), + [anon_sym_AMP] = ACTIONS(830), }, [2747] = { - [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__concat] = ACTIONS(832), + [anon_sym_PIPE] = ACTIONS(834), + [anon_sym_RPAREN] = ACTIONS(834), + [anon_sym_SEMI_SEMI] = ACTIONS(834), + [anon_sym_PIPE_AMP] = ACTIONS(834), + [anon_sym_AMP_AMP] = ACTIONS(834), + [anon_sym_PIPE_PIPE] = ACTIONS(834), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(818), - [anon_sym_LF] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(818), + [anon_sym_SEMI] = ACTIONS(834), + [anon_sym_LF] = ACTIONS(834), + [anon_sym_AMP] = ACTIONS(834), }, [2748] = { - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(6756), + [anon_sym_LBRACK] = ACTIONS(836), + [anon_sym_EQ] = ACTIONS(6826), [sym_comment] = ACTIONS(56), }, [2749] = { @@ -72077,39 +72379,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3367), - [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), - [aux_sym_SLASH] = ACTIONS(6760), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6828), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(6830), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2750] = { [sym_subscript] = STATE(3371), - [sym_variable_name] = ACTIONS(6762), - [anon_sym_DOLLAR] = ACTIONS(6764), - [anon_sym_DASH] = ACTIONS(6764), + [sym_variable_name] = ACTIONS(6832), + [anon_sym_DOLLAR] = ACTIONS(6834), + [anon_sym_DASH] = ACTIONS(6834), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6766), - [anon_sym_STAR] = ACTIONS(6764), - [anon_sym_AT] = ACTIONS(6764), - [anon_sym_QMARK] = ACTIONS(6764), - [anon_sym_0] = ACTIONS(6768), - [anon_sym__] = ACTIONS(6768), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6836), + [anon_sym_STAR] = ACTIONS(6834), + [anon_sym_AT] = ACTIONS(6834), + [anon_sym_QMARK] = ACTIONS(6834), + [anon_sym_0] = ACTIONS(6838), + [anon_sym__] = ACTIONS(6838), }, [2751] = { [sym_concatenation] = STATE(451), @@ -72120,26 +72422,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3374), - [anon_sym_RBRACE] = ACTIONS(6770), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_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(6772), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6840), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(6842), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2752] = { [sym_concatenation] = STATE(451), @@ -72150,205 +72452,205 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3377), - [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), - [aux_sym_SLASH] = ACTIONS(6776), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6844), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(6846), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2753] = { - [anon_sym_PIPE] = ACTIONS(954), - [anon_sym_RPAREN] = ACTIONS(6778), - [anon_sym_PIPE_AMP] = ACTIONS(958), - [anon_sym_AMP_AMP] = ACTIONS(960), - [anon_sym_PIPE_PIPE] = ACTIONS(960), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(6848), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), [sym_comment] = ACTIONS(56), }, [2754] = { - [sym_file_descriptor] = ACTIONS(378), - [sym_variable_name] = ACTIONS(378), - [anon_sym_PIPE] = ACTIONS(954), - [anon_sym_RPAREN] = ACTIONS(6778), - [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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(6848), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [2755] = { - [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(6778), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_PIPE_AMP] = ACTIONS(1072), + [anon_sym_AMP_AMP] = ACTIONS(1074), + [anon_sym_PIPE_PIPE] = ACTIONS(1074), + [anon_sym_BQUOTE] = ACTIONS(6848), [sym_comment] = ACTIONS(56), }, [2756] = { - [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(6778), - [anon_sym_LT_LPAREN] = ACTIONS(378), - [anon_sym_GT_LPAREN] = ACTIONS(378), + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_PIPE_AMP] = ACTIONS(1072), + [anon_sym_AMP_AMP] = ACTIONS(1074), + [anon_sym_PIPE_PIPE] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(6848), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [2757] = { - [anon_sym_PIPE] = ACTIONS(954), - [anon_sym_RPAREN] = ACTIONS(6780), - [anon_sym_PIPE_AMP] = ACTIONS(958), - [anon_sym_AMP_AMP] = ACTIONS(960), - [anon_sym_PIPE_PIPE] = ACTIONS(960), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(6850), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), [sym_comment] = ACTIONS(56), }, [2758] = { - [sym_file_descriptor] = ACTIONS(378), - [sym_variable_name] = ACTIONS(378), - [anon_sym_PIPE] = ACTIONS(954), - [anon_sym_RPAREN] = ACTIONS(6780), - [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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(6850), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [2759] = { - [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__concat] = ACTIONS(4790), + [sym_variable_name] = ACTIONS(4790), + [anon_sym_PIPE] = ACTIONS(4792), + [anon_sym_RPAREN] = ACTIONS(4792), + [anon_sym_SEMI_SEMI] = ACTIONS(4792), + [anon_sym_PIPE_AMP] = ACTIONS(4792), + [anon_sym_AMP_AMP] = ACTIONS(4792), + [anon_sym_PIPE_PIPE] = ACTIONS(4792), + [sym__special_characters] = ACTIONS(4792), + [anon_sym_DQUOTE] = ACTIONS(4792), + [anon_sym_DOLLAR] = ACTIONS(4792), + [sym_raw_string] = ACTIONS(4792), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4792), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4792), + [anon_sym_BQUOTE] = ACTIONS(4792), + [anon_sym_LT_LPAREN] = ACTIONS(4792), + [anon_sym_GT_LPAREN] = ACTIONS(4792), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4730), - [sym_word] = ACTIONS(4730), - [anon_sym_SEMI] = ACTIONS(4730), - [anon_sym_LF] = ACTIONS(4730), - [anon_sym_AMP] = ACTIONS(4730), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4792), + [sym_word] = ACTIONS(4792), + [anon_sym_SEMI] = ACTIONS(4792), + [anon_sym_LF] = ACTIONS(4792), + [anon_sym_AMP] = ACTIONS(4792), }, [2760] = { - [sym__concat] = ACTIONS(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__concat] = ACTIONS(4796), + [sym_variable_name] = ACTIONS(4796), + [anon_sym_PIPE] = ACTIONS(4798), + [anon_sym_RPAREN] = ACTIONS(4798), + [anon_sym_SEMI_SEMI] = ACTIONS(4798), + [anon_sym_PIPE_AMP] = ACTIONS(4798), + [anon_sym_AMP_AMP] = ACTIONS(4798), + [anon_sym_PIPE_PIPE] = ACTIONS(4798), + [sym__special_characters] = ACTIONS(4798), + [anon_sym_DQUOTE] = ACTIONS(4798), + [anon_sym_DOLLAR] = ACTIONS(4798), + [sym_raw_string] = ACTIONS(4798), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4798), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4798), + [anon_sym_BQUOTE] = ACTIONS(4798), + [anon_sym_LT_LPAREN] = ACTIONS(4798), + [anon_sym_GT_LPAREN] = ACTIONS(4798), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4736), - [sym_word] = ACTIONS(4736), - [anon_sym_SEMI] = ACTIONS(4736), - [anon_sym_LF] = ACTIONS(4736), - [anon_sym_AMP] = ACTIONS(4736), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4798), + [sym_word] = ACTIONS(4798), + [anon_sym_SEMI] = ACTIONS(4798), + [anon_sym_LF] = ACTIONS(4798), + [anon_sym_AMP] = ACTIONS(4798), }, [2761] = { - [sym__concat] = ACTIONS(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__concat] = ACTIONS(4859), + [sym_variable_name] = ACTIONS(4859), + [anon_sym_PIPE] = ACTIONS(4861), + [anon_sym_RPAREN] = ACTIONS(4861), + [anon_sym_SEMI_SEMI] = ACTIONS(4861), + [anon_sym_PIPE_AMP] = ACTIONS(4861), + [anon_sym_AMP_AMP] = ACTIONS(4861), + [anon_sym_PIPE_PIPE] = ACTIONS(4861), + [sym__special_characters] = ACTIONS(4861), + [anon_sym_DQUOTE] = ACTIONS(4861), + [anon_sym_DOLLAR] = ACTIONS(4861), + [sym_raw_string] = ACTIONS(4861), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4861), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4861), + [anon_sym_BQUOTE] = ACTIONS(4861), + [anon_sym_LT_LPAREN] = ACTIONS(4861), + [anon_sym_GT_LPAREN] = ACTIONS(4861), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4799), - [sym_word] = ACTIONS(4799), - [anon_sym_SEMI] = ACTIONS(4799), - [anon_sym_LF] = ACTIONS(4799), - [anon_sym_AMP] = ACTIONS(4799), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4861), + [sym_word] = ACTIONS(4861), + [anon_sym_SEMI] = ACTIONS(4861), + [anon_sym_LF] = ACTIONS(4861), + [anon_sym_AMP] = ACTIONS(4861), }, [2762] = { [sym_concatenation] = STATE(451), @@ -72359,40 +72661,40 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6782), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6852), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2763] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(6784), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(6854), [sym_comment] = ACTIONS(56), }, [2764] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(6786), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(6856), [sym_comment] = ACTIONS(56), }, [2765] = { - [anon_sym_RBRACE] = ACTIONS(6786), + [anon_sym_RBRACE] = ACTIONS(6856), [sym_comment] = ACTIONS(56), }, [2766] = { @@ -72404,50 +72706,50 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3384), - [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), + [anon_sym_RBRACE] = ACTIONS(6858), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2767] = { - [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__concat] = ACTIONS(4871), + [sym_variable_name] = ACTIONS(4871), + [anon_sym_PIPE] = ACTIONS(4873), + [anon_sym_RPAREN] = ACTIONS(4873), + [anon_sym_SEMI_SEMI] = ACTIONS(4873), + [anon_sym_PIPE_AMP] = ACTIONS(4873), + [anon_sym_AMP_AMP] = ACTIONS(4873), + [anon_sym_PIPE_PIPE] = ACTIONS(4873), + [sym__special_characters] = ACTIONS(4873), + [anon_sym_DQUOTE] = ACTIONS(4873), + [anon_sym_DOLLAR] = ACTIONS(4873), + [sym_raw_string] = ACTIONS(4873), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4873), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4873), + [anon_sym_BQUOTE] = ACTIONS(4873), + [anon_sym_LT_LPAREN] = ACTIONS(4873), + [anon_sym_GT_LPAREN] = ACTIONS(4873), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4811), - [sym_word] = ACTIONS(4811), - [anon_sym_SEMI] = ACTIONS(4811), - [anon_sym_LF] = ACTIONS(4811), - [anon_sym_AMP] = ACTIONS(4811), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4873), + [sym_word] = ACTIONS(4873), + [anon_sym_SEMI] = ACTIONS(4873), + [anon_sym_LF] = ACTIONS(4873), + [anon_sym_AMP] = ACTIONS(4873), }, [2768] = { [sym_concatenation] = STATE(451), @@ -72458,50 +72760,50 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3386), - [anon_sym_RBRACE] = ACTIONS(6790), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6860), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2769] = { - [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__concat] = ACTIONS(4877), + [sym_variable_name] = ACTIONS(4877), + [anon_sym_PIPE] = ACTIONS(4879), + [anon_sym_RPAREN] = ACTIONS(4879), + [anon_sym_SEMI_SEMI] = ACTIONS(4879), + [anon_sym_PIPE_AMP] = ACTIONS(4879), + [anon_sym_AMP_AMP] = ACTIONS(4879), + [anon_sym_PIPE_PIPE] = ACTIONS(4879), + [sym__special_characters] = ACTIONS(4879), + [anon_sym_DQUOTE] = ACTIONS(4879), + [anon_sym_DOLLAR] = ACTIONS(4879), + [sym_raw_string] = ACTIONS(4879), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4879), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4879), + [anon_sym_BQUOTE] = ACTIONS(4879), + [anon_sym_LT_LPAREN] = ACTIONS(4879), + [anon_sym_GT_LPAREN] = ACTIONS(4879), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4817), - [sym_word] = ACTIONS(4817), - [anon_sym_SEMI] = ACTIONS(4817), - [anon_sym_LF] = ACTIONS(4817), - [anon_sym_AMP] = ACTIONS(4817), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4879), + [sym_word] = ACTIONS(4879), + [anon_sym_SEMI] = ACTIONS(4879), + [anon_sym_LF] = ACTIONS(4879), + [anon_sym_AMP] = ACTIONS(4879), }, [2770] = { [sym_concatenation] = STATE(451), @@ -72512,50 +72814,50 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3388), - [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), + [anon_sym_RBRACE] = ACTIONS(6862), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2771] = { - [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__concat] = ACTIONS(4883), + [sym_variable_name] = ACTIONS(4883), + [anon_sym_PIPE] = ACTIONS(4885), + [anon_sym_RPAREN] = ACTIONS(4885), + [anon_sym_SEMI_SEMI] = ACTIONS(4885), + [anon_sym_PIPE_AMP] = ACTIONS(4885), + [anon_sym_AMP_AMP] = ACTIONS(4885), + [anon_sym_PIPE_PIPE] = ACTIONS(4885), + [sym__special_characters] = ACTIONS(4885), + [anon_sym_DQUOTE] = ACTIONS(4885), + [anon_sym_DOLLAR] = ACTIONS(4885), + [sym_raw_string] = ACTIONS(4885), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4885), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4885), + [anon_sym_BQUOTE] = ACTIONS(4885), + [anon_sym_LT_LPAREN] = ACTIONS(4885), + [anon_sym_GT_LPAREN] = ACTIONS(4885), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4823), - [sym_word] = ACTIONS(4823), - [anon_sym_SEMI] = ACTIONS(4823), - [anon_sym_LF] = ACTIONS(4823), - [anon_sym_AMP] = ACTIONS(4823), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4885), + [sym_word] = ACTIONS(4885), + [anon_sym_SEMI] = ACTIONS(4885), + [anon_sym_LF] = ACTIONS(4885), + [anon_sym_AMP] = ACTIONS(4885), }, [2772] = { [sym_concatenation] = STATE(451), @@ -72566,50 +72868,50 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [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), + [anon_sym_RBRACE] = ACTIONS(6864), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2773] = { - [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__concat] = ACTIONS(4889), + [sym_variable_name] = ACTIONS(4889), + [anon_sym_PIPE] = ACTIONS(4891), + [anon_sym_RPAREN] = ACTIONS(4891), + [anon_sym_SEMI_SEMI] = ACTIONS(4891), + [anon_sym_PIPE_AMP] = ACTIONS(4891), + [anon_sym_AMP_AMP] = ACTIONS(4891), + [anon_sym_PIPE_PIPE] = ACTIONS(4891), + [sym__special_characters] = ACTIONS(4891), + [anon_sym_DQUOTE] = ACTIONS(4891), + [anon_sym_DOLLAR] = ACTIONS(4891), + [sym_raw_string] = ACTIONS(4891), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4891), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4891), + [anon_sym_BQUOTE] = ACTIONS(4891), + [anon_sym_LT_LPAREN] = ACTIONS(4891), + [anon_sym_GT_LPAREN] = ACTIONS(4891), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4829), - [sym_word] = ACTIONS(4829), - [anon_sym_SEMI] = ACTIONS(4829), - [anon_sym_LF] = ACTIONS(4829), - [anon_sym_AMP] = ACTIONS(4829), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4891), + [sym_word] = ACTIONS(4891), + [anon_sym_SEMI] = ACTIONS(4891), + [anon_sym_LF] = ACTIONS(4891), + [anon_sym_AMP] = ACTIONS(4891), }, [2774] = { [sym_concatenation] = STATE(451), @@ -72620,97 +72922,97 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(6866), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2775] = { - [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__concat] = ACTIONS(4790), + [anon_sym_PIPE] = ACTIONS(4792), + [anon_sym_RPAREN] = ACTIONS(4792), + [anon_sym_SEMI_SEMI] = ACTIONS(4792), + [anon_sym_PIPE_AMP] = ACTIONS(4792), + [anon_sym_AMP_AMP] = ACTIONS(4792), + [anon_sym_PIPE_PIPE] = ACTIONS(4792), + [sym__special_characters] = ACTIONS(4792), + [anon_sym_DQUOTE] = ACTIONS(4792), + [anon_sym_DOLLAR] = ACTIONS(4792), + [sym_raw_string] = ACTIONS(4792), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4792), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4792), + [anon_sym_BQUOTE] = ACTIONS(4792), + [anon_sym_LT_LPAREN] = ACTIONS(4792), + [anon_sym_GT_LPAREN] = ACTIONS(4792), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4730), - [sym_word] = ACTIONS(4730), - [anon_sym_SEMI] = ACTIONS(4730), - [anon_sym_LF] = ACTIONS(4730), - [anon_sym_AMP] = ACTIONS(4730), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4792), + [sym_word] = ACTIONS(4792), + [anon_sym_SEMI] = ACTIONS(4792), + [anon_sym_LF] = ACTIONS(4792), + [anon_sym_AMP] = ACTIONS(4792), }, [2776] = { - [sym__concat] = ACTIONS(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__concat] = ACTIONS(4796), + [anon_sym_PIPE] = ACTIONS(4798), + [anon_sym_RPAREN] = ACTIONS(4798), + [anon_sym_SEMI_SEMI] = ACTIONS(4798), + [anon_sym_PIPE_AMP] = ACTIONS(4798), + [anon_sym_AMP_AMP] = ACTIONS(4798), + [anon_sym_PIPE_PIPE] = ACTIONS(4798), + [sym__special_characters] = ACTIONS(4798), + [anon_sym_DQUOTE] = ACTIONS(4798), + [anon_sym_DOLLAR] = ACTIONS(4798), + [sym_raw_string] = ACTIONS(4798), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4798), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4798), + [anon_sym_BQUOTE] = ACTIONS(4798), + [anon_sym_LT_LPAREN] = ACTIONS(4798), + [anon_sym_GT_LPAREN] = ACTIONS(4798), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4736), - [sym_word] = ACTIONS(4736), - [anon_sym_SEMI] = ACTIONS(4736), - [anon_sym_LF] = ACTIONS(4736), - [anon_sym_AMP] = ACTIONS(4736), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4798), + [sym_word] = ACTIONS(4798), + [anon_sym_SEMI] = ACTIONS(4798), + [anon_sym_LF] = ACTIONS(4798), + [anon_sym_AMP] = ACTIONS(4798), }, [2777] = { - [sym__concat] = ACTIONS(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__concat] = ACTIONS(4859), + [anon_sym_PIPE] = ACTIONS(4861), + [anon_sym_RPAREN] = ACTIONS(4861), + [anon_sym_SEMI_SEMI] = ACTIONS(4861), + [anon_sym_PIPE_AMP] = ACTIONS(4861), + [anon_sym_AMP_AMP] = ACTIONS(4861), + [anon_sym_PIPE_PIPE] = ACTIONS(4861), + [sym__special_characters] = ACTIONS(4861), + [anon_sym_DQUOTE] = ACTIONS(4861), + [anon_sym_DOLLAR] = ACTIONS(4861), + [sym_raw_string] = ACTIONS(4861), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4861), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4861), + [anon_sym_BQUOTE] = ACTIONS(4861), + [anon_sym_LT_LPAREN] = ACTIONS(4861), + [anon_sym_GT_LPAREN] = ACTIONS(4861), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4799), - [sym_word] = ACTIONS(4799), - [anon_sym_SEMI] = ACTIONS(4799), - [anon_sym_LF] = ACTIONS(4799), - [anon_sym_AMP] = ACTIONS(4799), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4861), + [sym_word] = ACTIONS(4861), + [anon_sym_SEMI] = ACTIONS(4861), + [anon_sym_LF] = ACTIONS(4861), + [anon_sym_AMP] = ACTIONS(4861), }, [2778] = { [sym_concatenation] = STATE(451), @@ -72721,40 +73023,40 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6798), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6868), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2779] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(6800), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(6870), [sym_comment] = ACTIONS(56), }, [2780] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(6802), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(6872), [sym_comment] = ACTIONS(56), }, [2781] = { - [anon_sym_RBRACE] = ACTIONS(6802), + [anon_sym_RBRACE] = ACTIONS(6872), [sym_comment] = ACTIONS(56), }, [2782] = { @@ -72766,49 +73068,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3395), - [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), + [anon_sym_RBRACE] = ACTIONS(6874), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2783] = { - [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__concat] = ACTIONS(4871), + [anon_sym_PIPE] = ACTIONS(4873), + [anon_sym_RPAREN] = ACTIONS(4873), + [anon_sym_SEMI_SEMI] = ACTIONS(4873), + [anon_sym_PIPE_AMP] = ACTIONS(4873), + [anon_sym_AMP_AMP] = ACTIONS(4873), + [anon_sym_PIPE_PIPE] = ACTIONS(4873), + [sym__special_characters] = ACTIONS(4873), + [anon_sym_DQUOTE] = ACTIONS(4873), + [anon_sym_DOLLAR] = ACTIONS(4873), + [sym_raw_string] = ACTIONS(4873), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4873), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4873), + [anon_sym_BQUOTE] = ACTIONS(4873), + [anon_sym_LT_LPAREN] = ACTIONS(4873), + [anon_sym_GT_LPAREN] = ACTIONS(4873), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4811), - [sym_word] = ACTIONS(4811), - [anon_sym_SEMI] = ACTIONS(4811), - [anon_sym_LF] = ACTIONS(4811), - [anon_sym_AMP] = ACTIONS(4811), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4873), + [sym_word] = ACTIONS(4873), + [anon_sym_SEMI] = ACTIONS(4873), + [anon_sym_LF] = ACTIONS(4873), + [anon_sym_AMP] = ACTIONS(4873), }, [2784] = { [sym_concatenation] = STATE(451), @@ -72819,49 +73121,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3397), - [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), + [anon_sym_RBRACE] = ACTIONS(6876), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2785] = { - [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__concat] = ACTIONS(4877), + [anon_sym_PIPE] = ACTIONS(4879), + [anon_sym_RPAREN] = ACTIONS(4879), + [anon_sym_SEMI_SEMI] = ACTIONS(4879), + [anon_sym_PIPE_AMP] = ACTIONS(4879), + [anon_sym_AMP_AMP] = ACTIONS(4879), + [anon_sym_PIPE_PIPE] = ACTIONS(4879), + [sym__special_characters] = ACTIONS(4879), + [anon_sym_DQUOTE] = ACTIONS(4879), + [anon_sym_DOLLAR] = ACTIONS(4879), + [sym_raw_string] = ACTIONS(4879), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4879), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4879), + [anon_sym_BQUOTE] = ACTIONS(4879), + [anon_sym_LT_LPAREN] = ACTIONS(4879), + [anon_sym_GT_LPAREN] = ACTIONS(4879), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4817), - [sym_word] = ACTIONS(4817), - [anon_sym_SEMI] = ACTIONS(4817), - [anon_sym_LF] = ACTIONS(4817), - [anon_sym_AMP] = ACTIONS(4817), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4879), + [sym_word] = ACTIONS(4879), + [anon_sym_SEMI] = ACTIONS(4879), + [anon_sym_LF] = ACTIONS(4879), + [anon_sym_AMP] = ACTIONS(4879), }, [2786] = { [sym_concatenation] = STATE(451), @@ -72872,49 +73174,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3399), - [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), + [anon_sym_RBRACE] = ACTIONS(6878), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2787] = { - [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__concat] = ACTIONS(4883), + [anon_sym_PIPE] = ACTIONS(4885), + [anon_sym_RPAREN] = ACTIONS(4885), + [anon_sym_SEMI_SEMI] = ACTIONS(4885), + [anon_sym_PIPE_AMP] = ACTIONS(4885), + [anon_sym_AMP_AMP] = ACTIONS(4885), + [anon_sym_PIPE_PIPE] = ACTIONS(4885), + [sym__special_characters] = ACTIONS(4885), + [anon_sym_DQUOTE] = ACTIONS(4885), + [anon_sym_DOLLAR] = ACTIONS(4885), + [sym_raw_string] = ACTIONS(4885), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4885), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4885), + [anon_sym_BQUOTE] = ACTIONS(4885), + [anon_sym_LT_LPAREN] = ACTIONS(4885), + [anon_sym_GT_LPAREN] = ACTIONS(4885), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4823), - [sym_word] = ACTIONS(4823), - [anon_sym_SEMI] = ACTIONS(4823), - [anon_sym_LF] = ACTIONS(4823), - [anon_sym_AMP] = ACTIONS(4823), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4885), + [sym_word] = ACTIONS(4885), + [anon_sym_SEMI] = ACTIONS(4885), + [anon_sym_LF] = ACTIONS(4885), + [anon_sym_AMP] = ACTIONS(4885), }, [2788] = { [sym_concatenation] = STATE(451), @@ -72925,49 +73227,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(6880), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2789] = { - [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__concat] = ACTIONS(4889), + [anon_sym_PIPE] = ACTIONS(4891), + [anon_sym_RPAREN] = ACTIONS(4891), + [anon_sym_SEMI_SEMI] = ACTIONS(4891), + [anon_sym_PIPE_AMP] = ACTIONS(4891), + [anon_sym_AMP_AMP] = ACTIONS(4891), + [anon_sym_PIPE_PIPE] = ACTIONS(4891), + [sym__special_characters] = ACTIONS(4891), + [anon_sym_DQUOTE] = ACTIONS(4891), + [anon_sym_DOLLAR] = ACTIONS(4891), + [sym_raw_string] = ACTIONS(4891), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4891), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4891), + [anon_sym_BQUOTE] = ACTIONS(4891), + [anon_sym_LT_LPAREN] = ACTIONS(4891), + [anon_sym_GT_LPAREN] = ACTIONS(4891), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4829), - [sym_word] = ACTIONS(4829), - [anon_sym_SEMI] = ACTIONS(4829), - [anon_sym_LF] = ACTIONS(4829), - [anon_sym_AMP] = ACTIONS(4829), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4891), + [sym_word] = ACTIONS(4891), + [anon_sym_SEMI] = ACTIONS(4891), + [anon_sym_LF] = ACTIONS(4891), + [anon_sym_AMP] = ACTIONS(4891), }, [2790] = { [sym_concatenation] = STATE(451), @@ -72978,165 +73280,169 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6812), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6882), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2791] = { - [sym_file_descriptor] = ACTIONS(5961), - [sym__concat] = ACTIONS(5961), - [anon_sym_PIPE] = ACTIONS(5963), - [anon_sym_RPAREN] = ACTIONS(5963), - [anon_sym_SEMI_SEMI] = 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(5963), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_GT] = ACTIONS(5963), - [anon_sym_GT_GT] = ACTIONS(5963), - [anon_sym_AMP_GT] = ACTIONS(5963), - [anon_sym_AMP_GT_GT] = ACTIONS(5963), - [anon_sym_LT_AMP] = ACTIONS(5963), - [anon_sym_GT_AMP] = ACTIONS(5963), - [anon_sym_LT_LT] = ACTIONS(5963), - [anon_sym_LT_LT_DASH] = ACTIONS(5963), - [anon_sym_LT_LT_LT] = ACTIONS(5963), - [sym__special_characters] = ACTIONS(5963), - [anon_sym_DQUOTE] = ACTIONS(5963), - [anon_sym_DOLLAR] = ACTIONS(5963), - [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_file_descriptor] = ACTIONS(6025), + [sym__concat] = ACTIONS(6025), + [anon_sym_PIPE] = ACTIONS(6027), + [anon_sym_RPAREN] = ACTIONS(6027), + [anon_sym_SEMI_SEMI] = ACTIONS(6027), + [anon_sym_PIPE_AMP] = ACTIONS(6027), + [anon_sym_AMP_AMP] = ACTIONS(6027), + [anon_sym_PIPE_PIPE] = ACTIONS(6027), + [anon_sym_EQ_TILDE] = ACTIONS(6027), + [anon_sym_EQ_EQ] = ACTIONS(6027), + [anon_sym_LT] = ACTIONS(6027), + [anon_sym_GT] = ACTIONS(6027), + [anon_sym_GT_GT] = ACTIONS(6027), + [anon_sym_AMP_GT] = ACTIONS(6027), + [anon_sym_AMP_GT_GT] = ACTIONS(6027), + [anon_sym_LT_AMP] = ACTIONS(6027), + [anon_sym_GT_AMP] = ACTIONS(6027), + [anon_sym_LT_LT] = ACTIONS(6027), + [anon_sym_LT_LT_DASH] = ACTIONS(6027), + [anon_sym_LT_LT_LT] = ACTIONS(6027), + [sym__special_characters] = ACTIONS(6027), + [anon_sym_DQUOTE] = ACTIONS(6027), + [anon_sym_DOLLAR] = ACTIONS(6027), + [sym_raw_string] = ACTIONS(6027), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6027), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6027), + [anon_sym_BQUOTE] = ACTIONS(6027), + [anon_sym_LT_LPAREN] = ACTIONS(6027), + [anon_sym_GT_LPAREN] = ACTIONS(6027), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(5963), - [anon_sym_SEMI] = ACTIONS(5963), - [anon_sym_LF] = ACTIONS(5963), - [anon_sym_AMP] = ACTIONS(5963), + [sym_word] = ACTIONS(6027), + [anon_sym_SEMI] = ACTIONS(6027), + [anon_sym_LF] = ACTIONS(6027), + [anon_sym_AMP] = ACTIONS(6027), }, [2792] = { - [sym_file_descriptor] = ACTIONS(5965), - [sym__concat] = ACTIONS(5965), - [anon_sym_PIPE] = ACTIONS(5967), - [anon_sym_RPAREN] = ACTIONS(5967), - [anon_sym_SEMI_SEMI] = ACTIONS(5967), - [anon_sym_PIPE_AMP] = ACTIONS(5967), - [anon_sym_AMP_AMP] = ACTIONS(5967), - [anon_sym_PIPE_PIPE] = ACTIONS(5967), - [anon_sym_EQ_TILDE] = ACTIONS(5967), - [anon_sym_LT] = ACTIONS(5967), - [anon_sym_GT] = ACTIONS(5967), - [anon_sym_GT_GT] = ACTIONS(5967), - [anon_sym_AMP_GT] = ACTIONS(5967), - [anon_sym_AMP_GT_GT] = ACTIONS(5967), - [anon_sym_LT_AMP] = ACTIONS(5967), - [anon_sym_GT_AMP] = ACTIONS(5967), - [anon_sym_LT_LT] = ACTIONS(5967), - [anon_sym_LT_LT_DASH] = ACTIONS(5967), - [anon_sym_LT_LT_LT] = ACTIONS(5967), - [sym__special_characters] = ACTIONS(5967), - [anon_sym_DQUOTE] = ACTIONS(5967), - [anon_sym_DOLLAR] = ACTIONS(5967), - [sym_raw_string] = ACTIONS(5967), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5967), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5967), - [anon_sym_BQUOTE] = ACTIONS(5967), - [anon_sym_LT_LPAREN] = ACTIONS(5967), - [anon_sym_GT_LPAREN] = ACTIONS(5967), + [sym_file_descriptor] = ACTIONS(6029), + [sym__concat] = ACTIONS(6029), + [anon_sym_PIPE] = ACTIONS(6031), + [anon_sym_RPAREN] = ACTIONS(6031), + [anon_sym_SEMI_SEMI] = ACTIONS(6031), + [anon_sym_PIPE_AMP] = ACTIONS(6031), + [anon_sym_AMP_AMP] = ACTIONS(6031), + [anon_sym_PIPE_PIPE] = ACTIONS(6031), + [anon_sym_EQ_TILDE] = ACTIONS(6031), + [anon_sym_EQ_EQ] = ACTIONS(6031), + [anon_sym_LT] = ACTIONS(6031), + [anon_sym_GT] = ACTIONS(6031), + [anon_sym_GT_GT] = ACTIONS(6031), + [anon_sym_AMP_GT] = ACTIONS(6031), + [anon_sym_AMP_GT_GT] = ACTIONS(6031), + [anon_sym_LT_AMP] = ACTIONS(6031), + [anon_sym_GT_AMP] = ACTIONS(6031), + [anon_sym_LT_LT] = ACTIONS(6031), + [anon_sym_LT_LT_DASH] = ACTIONS(6031), + [anon_sym_LT_LT_LT] = ACTIONS(6031), + [sym__special_characters] = ACTIONS(6031), + [anon_sym_DQUOTE] = ACTIONS(6031), + [anon_sym_DOLLAR] = ACTIONS(6031), + [sym_raw_string] = ACTIONS(6031), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6031), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6031), + [anon_sym_BQUOTE] = ACTIONS(6031), + [anon_sym_LT_LPAREN] = ACTIONS(6031), + [anon_sym_GT_LPAREN] = ACTIONS(6031), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(5967), - [anon_sym_SEMI] = ACTIONS(5967), - [anon_sym_LF] = ACTIONS(5967), - [anon_sym_AMP] = ACTIONS(5967), + [sym_word] = ACTIONS(6031), + [anon_sym_SEMI] = ACTIONS(6031), + [anon_sym_LF] = ACTIONS(6031), + [anon_sym_AMP] = ACTIONS(6031), }, [2793] = { - [sym_file_descriptor] = ACTIONS(5969), - [sym__concat] = ACTIONS(5969), - [anon_sym_PIPE] = ACTIONS(5971), - [anon_sym_RPAREN] = ACTIONS(5971), - [anon_sym_SEMI_SEMI] = ACTIONS(5971), - [anon_sym_PIPE_AMP] = ACTIONS(5971), - [anon_sym_AMP_AMP] = ACTIONS(5971), - [anon_sym_PIPE_PIPE] = ACTIONS(5971), - [anon_sym_EQ_TILDE] = ACTIONS(5971), - [anon_sym_LT] = ACTIONS(5971), - [anon_sym_GT] = ACTIONS(5971), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_AMP_GT] = ACTIONS(5971), - [anon_sym_AMP_GT_GT] = ACTIONS(5971), - [anon_sym_LT_AMP] = ACTIONS(5971), - [anon_sym_GT_AMP] = ACTIONS(5971), - [anon_sym_LT_LT] = ACTIONS(5971), - [anon_sym_LT_LT_DASH] = ACTIONS(5971), - [anon_sym_LT_LT_LT] = ACTIONS(5971), - [sym__special_characters] = ACTIONS(5971), - [anon_sym_DQUOTE] = ACTIONS(5971), - [anon_sym_DOLLAR] = ACTIONS(5971), - [sym_raw_string] = ACTIONS(5971), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5971), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5971), - [anon_sym_BQUOTE] = ACTIONS(5971), - [anon_sym_LT_LPAREN] = ACTIONS(5971), - [anon_sym_GT_LPAREN] = ACTIONS(5971), + [sym_file_descriptor] = ACTIONS(6033), + [sym__concat] = ACTIONS(6033), + [anon_sym_PIPE] = ACTIONS(6035), + [anon_sym_RPAREN] = ACTIONS(6035), + [anon_sym_SEMI_SEMI] = ACTIONS(6035), + [anon_sym_PIPE_AMP] = ACTIONS(6035), + [anon_sym_AMP_AMP] = ACTIONS(6035), + [anon_sym_PIPE_PIPE] = ACTIONS(6035), + [anon_sym_EQ_TILDE] = ACTIONS(6035), + [anon_sym_EQ_EQ] = ACTIONS(6035), + [anon_sym_LT] = ACTIONS(6035), + [anon_sym_GT] = ACTIONS(6035), + [anon_sym_GT_GT] = ACTIONS(6035), + [anon_sym_AMP_GT] = ACTIONS(6035), + [anon_sym_AMP_GT_GT] = ACTIONS(6035), + [anon_sym_LT_AMP] = ACTIONS(6035), + [anon_sym_GT_AMP] = ACTIONS(6035), + [anon_sym_LT_LT] = ACTIONS(6035), + [anon_sym_LT_LT_DASH] = ACTIONS(6035), + [anon_sym_LT_LT_LT] = ACTIONS(6035), + [sym__special_characters] = ACTIONS(6035), + [anon_sym_DQUOTE] = ACTIONS(6035), + [anon_sym_DOLLAR] = ACTIONS(6035), + [sym_raw_string] = ACTIONS(6035), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6035), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6035), + [anon_sym_BQUOTE] = ACTIONS(6035), + [anon_sym_LT_LPAREN] = ACTIONS(6035), + [anon_sym_GT_LPAREN] = ACTIONS(6035), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(5971), - [anon_sym_SEMI] = ACTIONS(5971), - [anon_sym_LF] = ACTIONS(5971), - [anon_sym_AMP] = ACTIONS(5971), + [sym_word] = ACTIONS(6035), + [anon_sym_SEMI] = ACTIONS(6035), + [anon_sym_LF] = ACTIONS(6035), + [anon_sym_AMP] = ACTIONS(6035), }, [2794] = { - [sym_file_descriptor] = ACTIONS(5973), - [sym__concat] = ACTIONS(5973), - [anon_sym_PIPE] = ACTIONS(5975), - [anon_sym_RPAREN] = ACTIONS(5975), - [anon_sym_SEMI_SEMI] = ACTIONS(5975), - [anon_sym_PIPE_AMP] = ACTIONS(5975), - [anon_sym_AMP_AMP] = ACTIONS(5975), - [anon_sym_PIPE_PIPE] = ACTIONS(5975), - [anon_sym_EQ_TILDE] = ACTIONS(5975), - [anon_sym_LT] = ACTIONS(5975), - [anon_sym_GT] = ACTIONS(5975), - [anon_sym_GT_GT] = ACTIONS(5975), - [anon_sym_AMP_GT] = ACTIONS(5975), - [anon_sym_AMP_GT_GT] = ACTIONS(5975), - [anon_sym_LT_AMP] = ACTIONS(5975), - [anon_sym_GT_AMP] = ACTIONS(5975), - [anon_sym_LT_LT] = ACTIONS(5975), - [anon_sym_LT_LT_DASH] = ACTIONS(5975), - [anon_sym_LT_LT_LT] = ACTIONS(5975), - [sym__special_characters] = ACTIONS(5975), - [anon_sym_DQUOTE] = ACTIONS(5975), - [anon_sym_DOLLAR] = ACTIONS(5975), - [sym_raw_string] = ACTIONS(5975), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5975), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5975), - [anon_sym_BQUOTE] = ACTIONS(5975), - [anon_sym_LT_LPAREN] = ACTIONS(5975), - [anon_sym_GT_LPAREN] = ACTIONS(5975), + [sym_file_descriptor] = ACTIONS(6037), + [sym__concat] = ACTIONS(6037), + [anon_sym_PIPE] = ACTIONS(6039), + [anon_sym_RPAREN] = ACTIONS(6039), + [anon_sym_SEMI_SEMI] = ACTIONS(6039), + [anon_sym_PIPE_AMP] = ACTIONS(6039), + [anon_sym_AMP_AMP] = ACTIONS(6039), + [anon_sym_PIPE_PIPE] = ACTIONS(6039), + [anon_sym_EQ_TILDE] = ACTIONS(6039), + [anon_sym_EQ_EQ] = ACTIONS(6039), + [anon_sym_LT] = ACTIONS(6039), + [anon_sym_GT] = ACTIONS(6039), + [anon_sym_GT_GT] = ACTIONS(6039), + [anon_sym_AMP_GT] = ACTIONS(6039), + [anon_sym_AMP_GT_GT] = ACTIONS(6039), + [anon_sym_LT_AMP] = ACTIONS(6039), + [anon_sym_GT_AMP] = ACTIONS(6039), + [anon_sym_LT_LT] = ACTIONS(6039), + [anon_sym_LT_LT_DASH] = ACTIONS(6039), + [anon_sym_LT_LT_LT] = ACTIONS(6039), + [sym__special_characters] = ACTIONS(6039), + [anon_sym_DQUOTE] = ACTIONS(6039), + [anon_sym_DOLLAR] = ACTIONS(6039), + [sym_raw_string] = ACTIONS(6039), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6039), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6039), + [anon_sym_BQUOTE] = ACTIONS(6039), + [anon_sym_LT_LPAREN] = ACTIONS(6039), + [anon_sym_GT_LPAREN] = ACTIONS(6039), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(5975), - [anon_sym_SEMI] = ACTIONS(5975), - [anon_sym_LF] = ACTIONS(5975), - [anon_sym_AMP] = ACTIONS(5975), + [sym_word] = ACTIONS(6039), + [anon_sym_SEMI] = ACTIONS(6039), + [anon_sym_LF] = ACTIONS(6039), + [anon_sym_AMP] = ACTIONS(6039), }, [2795] = { [sym_concatenation] = STATE(451), @@ -73147,60 +73453,61 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6814), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6884), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2796] = { - [sym_file_descriptor] = ACTIONS(5979), - [sym__concat] = ACTIONS(5979), - [anon_sym_PIPE] = ACTIONS(5981), - [anon_sym_RPAREN] = ACTIONS(5981), - [anon_sym_SEMI_SEMI] = ACTIONS(5981), - [anon_sym_PIPE_AMP] = ACTIONS(5981), - [anon_sym_AMP_AMP] = ACTIONS(5981), - [anon_sym_PIPE_PIPE] = ACTIONS(5981), - [anon_sym_EQ_TILDE] = ACTIONS(5981), - [anon_sym_LT] = ACTIONS(5981), - [anon_sym_GT] = ACTIONS(5981), - [anon_sym_GT_GT] = ACTIONS(5981), - [anon_sym_AMP_GT] = ACTIONS(5981), - [anon_sym_AMP_GT_GT] = ACTIONS(5981), - [anon_sym_LT_AMP] = ACTIONS(5981), - [anon_sym_GT_AMP] = ACTIONS(5981), - [anon_sym_LT_LT] = ACTIONS(5981), - [anon_sym_LT_LT_DASH] = ACTIONS(5981), - [anon_sym_LT_LT_LT] = ACTIONS(5981), - [sym__special_characters] = ACTIONS(5981), - [anon_sym_DQUOTE] = ACTIONS(5981), - [anon_sym_DOLLAR] = ACTIONS(5981), - [sym_raw_string] = ACTIONS(5981), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5981), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5981), - [anon_sym_BQUOTE] = ACTIONS(5981), - [anon_sym_LT_LPAREN] = ACTIONS(5981), - [anon_sym_GT_LPAREN] = ACTIONS(5981), + [sym_file_descriptor] = ACTIONS(6043), + [sym__concat] = ACTIONS(6043), + [anon_sym_PIPE] = ACTIONS(6045), + [anon_sym_RPAREN] = ACTIONS(6045), + [anon_sym_SEMI_SEMI] = ACTIONS(6045), + [anon_sym_PIPE_AMP] = ACTIONS(6045), + [anon_sym_AMP_AMP] = ACTIONS(6045), + [anon_sym_PIPE_PIPE] = ACTIONS(6045), + [anon_sym_EQ_TILDE] = ACTIONS(6045), + [anon_sym_EQ_EQ] = ACTIONS(6045), + [anon_sym_LT] = ACTIONS(6045), + [anon_sym_GT] = ACTIONS(6045), + [anon_sym_GT_GT] = ACTIONS(6045), + [anon_sym_AMP_GT] = ACTIONS(6045), + [anon_sym_AMP_GT_GT] = ACTIONS(6045), + [anon_sym_LT_AMP] = ACTIONS(6045), + [anon_sym_GT_AMP] = ACTIONS(6045), + [anon_sym_LT_LT] = ACTIONS(6045), + [anon_sym_LT_LT_DASH] = ACTIONS(6045), + [anon_sym_LT_LT_LT] = ACTIONS(6045), + [sym__special_characters] = ACTIONS(6045), + [anon_sym_DQUOTE] = ACTIONS(6045), + [anon_sym_DOLLAR] = ACTIONS(6045), + [sym_raw_string] = ACTIONS(6045), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6045), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6045), + [anon_sym_BQUOTE] = ACTIONS(6045), + [anon_sym_LT_LPAREN] = ACTIONS(6045), + [anon_sym_GT_LPAREN] = ACTIONS(6045), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(5981), - [anon_sym_SEMI] = ACTIONS(5981), - [anon_sym_LF] = ACTIONS(5981), - [anon_sym_AMP] = ACTIONS(5981), + [sym_word] = ACTIONS(6045), + [anon_sym_SEMI] = ACTIONS(6045), + [anon_sym_LF] = ACTIONS(6045), + [anon_sym_AMP] = ACTIONS(6045), }, [2797] = { [sym_concatenation] = STATE(451), @@ -73211,60 +73518,61 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6816), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6886), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2798] = { - [sym_file_descriptor] = ACTIONS(5985), - [sym__concat] = ACTIONS(5985), - [anon_sym_PIPE] = ACTIONS(5987), - [anon_sym_RPAREN] = ACTIONS(5987), - [anon_sym_SEMI_SEMI] = ACTIONS(5987), - [anon_sym_PIPE_AMP] = ACTIONS(5987), - [anon_sym_AMP_AMP] = ACTIONS(5987), - [anon_sym_PIPE_PIPE] = ACTIONS(5987), - [anon_sym_EQ_TILDE] = ACTIONS(5987), - [anon_sym_LT] = ACTIONS(5987), - [anon_sym_GT] = ACTIONS(5987), - [anon_sym_GT_GT] = ACTIONS(5987), - [anon_sym_AMP_GT] = ACTIONS(5987), - [anon_sym_AMP_GT_GT] = ACTIONS(5987), - [anon_sym_LT_AMP] = ACTIONS(5987), - [anon_sym_GT_AMP] = ACTIONS(5987), - [anon_sym_LT_LT] = ACTIONS(5987), - [anon_sym_LT_LT_DASH] = ACTIONS(5987), - [anon_sym_LT_LT_LT] = ACTIONS(5987), - [sym__special_characters] = ACTIONS(5987), - [anon_sym_DQUOTE] = ACTIONS(5987), - [anon_sym_DOLLAR] = ACTIONS(5987), - [sym_raw_string] = ACTIONS(5987), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5987), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5987), - [anon_sym_BQUOTE] = ACTIONS(5987), - [anon_sym_LT_LPAREN] = ACTIONS(5987), - [anon_sym_GT_LPAREN] = ACTIONS(5987), + [sym_file_descriptor] = ACTIONS(6049), + [sym__concat] = ACTIONS(6049), + [anon_sym_PIPE] = ACTIONS(6051), + [anon_sym_RPAREN] = ACTIONS(6051), + [anon_sym_SEMI_SEMI] = ACTIONS(6051), + [anon_sym_PIPE_AMP] = ACTIONS(6051), + [anon_sym_AMP_AMP] = ACTIONS(6051), + [anon_sym_PIPE_PIPE] = ACTIONS(6051), + [anon_sym_EQ_TILDE] = ACTIONS(6051), + [anon_sym_EQ_EQ] = ACTIONS(6051), + [anon_sym_LT] = ACTIONS(6051), + [anon_sym_GT] = ACTIONS(6051), + [anon_sym_GT_GT] = ACTIONS(6051), + [anon_sym_AMP_GT] = ACTIONS(6051), + [anon_sym_AMP_GT_GT] = ACTIONS(6051), + [anon_sym_LT_AMP] = ACTIONS(6051), + [anon_sym_GT_AMP] = ACTIONS(6051), + [anon_sym_LT_LT] = ACTIONS(6051), + [anon_sym_LT_LT_DASH] = ACTIONS(6051), + [anon_sym_LT_LT_LT] = ACTIONS(6051), + [sym__special_characters] = ACTIONS(6051), + [anon_sym_DQUOTE] = ACTIONS(6051), + [anon_sym_DOLLAR] = ACTIONS(6051), + [sym_raw_string] = ACTIONS(6051), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6051), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6051), + [anon_sym_BQUOTE] = ACTIONS(6051), + [anon_sym_LT_LPAREN] = ACTIONS(6051), + [anon_sym_GT_LPAREN] = ACTIONS(6051), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(5987), - [anon_sym_SEMI] = ACTIONS(5987), - [anon_sym_LF] = ACTIONS(5987), - [anon_sym_AMP] = ACTIONS(5987), + [sym_word] = ACTIONS(6051), + [anon_sym_SEMI] = ACTIONS(6051), + [anon_sym_LF] = ACTIONS(6051), + [anon_sym_AMP] = ACTIONS(6051), }, [2799] = { [sym_concatenation] = STATE(451), @@ -73275,134 +73583,136 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6818), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6888), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2800] = { - [sym_file_descriptor] = ACTIONS(5991), - [sym__concat] = ACTIONS(5991), - [anon_sym_PIPE] = ACTIONS(5993), - [anon_sym_RPAREN] = ACTIONS(5993), - [anon_sym_SEMI_SEMI] = ACTIONS(5993), - [anon_sym_PIPE_AMP] = ACTIONS(5993), - [anon_sym_AMP_AMP] = ACTIONS(5993), - [anon_sym_PIPE_PIPE] = ACTIONS(5993), - [anon_sym_EQ_TILDE] = ACTIONS(5993), - [anon_sym_LT] = ACTIONS(5993), - [anon_sym_GT] = ACTIONS(5993), - [anon_sym_GT_GT] = ACTIONS(5993), - [anon_sym_AMP_GT] = ACTIONS(5993), - [anon_sym_AMP_GT_GT] = ACTIONS(5993), - [anon_sym_LT_AMP] = ACTIONS(5993), - [anon_sym_GT_AMP] = ACTIONS(5993), - [anon_sym_LT_LT] = ACTIONS(5993), - [anon_sym_LT_LT_DASH] = ACTIONS(5993), - [anon_sym_LT_LT_LT] = ACTIONS(5993), - [sym__special_characters] = ACTIONS(5993), - [anon_sym_DQUOTE] = ACTIONS(5993), - [anon_sym_DOLLAR] = ACTIONS(5993), - [sym_raw_string] = ACTIONS(5993), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5993), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5993), - [anon_sym_BQUOTE] = ACTIONS(5993), - [anon_sym_LT_LPAREN] = ACTIONS(5993), - [anon_sym_GT_LPAREN] = ACTIONS(5993), + [sym_file_descriptor] = ACTIONS(6055), + [sym__concat] = ACTIONS(6055), + [anon_sym_PIPE] = ACTIONS(6057), + [anon_sym_RPAREN] = ACTIONS(6057), + [anon_sym_SEMI_SEMI] = ACTIONS(6057), + [anon_sym_PIPE_AMP] = ACTIONS(6057), + [anon_sym_AMP_AMP] = ACTIONS(6057), + [anon_sym_PIPE_PIPE] = ACTIONS(6057), + [anon_sym_EQ_TILDE] = ACTIONS(6057), + [anon_sym_EQ_EQ] = ACTIONS(6057), + [anon_sym_LT] = ACTIONS(6057), + [anon_sym_GT] = ACTIONS(6057), + [anon_sym_GT_GT] = ACTIONS(6057), + [anon_sym_AMP_GT] = ACTIONS(6057), + [anon_sym_AMP_GT_GT] = ACTIONS(6057), + [anon_sym_LT_AMP] = ACTIONS(6057), + [anon_sym_GT_AMP] = ACTIONS(6057), + [anon_sym_LT_LT] = ACTIONS(6057), + [anon_sym_LT_LT_DASH] = ACTIONS(6057), + [anon_sym_LT_LT_LT] = ACTIONS(6057), + [sym__special_characters] = ACTIONS(6057), + [anon_sym_DQUOTE] = ACTIONS(6057), + [anon_sym_DOLLAR] = ACTIONS(6057), + [sym_raw_string] = ACTIONS(6057), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6057), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6057), + [anon_sym_BQUOTE] = ACTIONS(6057), + [anon_sym_LT_LPAREN] = ACTIONS(6057), + [anon_sym_GT_LPAREN] = ACTIONS(6057), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(5993), - [anon_sym_SEMI] = ACTIONS(5993), - [anon_sym_LF] = ACTIONS(5993), - [anon_sym_AMP] = ACTIONS(5993), + [sym_word] = ACTIONS(6057), + [anon_sym_SEMI] = ACTIONS(6057), + [anon_sym_LF] = ACTIONS(6057), + [anon_sym_AMP] = ACTIONS(6057), }, [2801] = { - [sym_file_descriptor] = ACTIONS(5995), - [sym__concat] = ACTIONS(5995), - [anon_sym_PIPE] = ACTIONS(5997), - [anon_sym_RPAREN] = ACTIONS(5997), - [anon_sym_SEMI_SEMI] = ACTIONS(5997), - [anon_sym_PIPE_AMP] = ACTIONS(5997), - [anon_sym_AMP_AMP] = ACTIONS(5997), - [anon_sym_PIPE_PIPE] = ACTIONS(5997), - [anon_sym_EQ_TILDE] = ACTIONS(5997), - [anon_sym_LT] = ACTIONS(5997), - [anon_sym_GT] = ACTIONS(5997), - [anon_sym_GT_GT] = ACTIONS(5997), - [anon_sym_AMP_GT] = ACTIONS(5997), - [anon_sym_AMP_GT_GT] = ACTIONS(5997), - [anon_sym_LT_AMP] = ACTIONS(5997), - [anon_sym_GT_AMP] = ACTIONS(5997), - [anon_sym_LT_LT] = ACTIONS(5997), - [anon_sym_LT_LT_DASH] = ACTIONS(5997), - [anon_sym_LT_LT_LT] = ACTIONS(5997), - [sym__special_characters] = ACTIONS(5997), - [anon_sym_DQUOTE] = ACTIONS(5997), - [anon_sym_DOLLAR] = ACTIONS(5997), - [sym_raw_string] = ACTIONS(5997), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5997), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5997), - [anon_sym_BQUOTE] = ACTIONS(5997), - [anon_sym_LT_LPAREN] = ACTIONS(5997), - [anon_sym_GT_LPAREN] = ACTIONS(5997), + [sym_file_descriptor] = ACTIONS(6059), + [sym__concat] = ACTIONS(6059), + [anon_sym_PIPE] = ACTIONS(6061), + [anon_sym_RPAREN] = ACTIONS(6061), + [anon_sym_SEMI_SEMI] = ACTIONS(6061), + [anon_sym_PIPE_AMP] = ACTIONS(6061), + [anon_sym_AMP_AMP] = ACTIONS(6061), + [anon_sym_PIPE_PIPE] = ACTIONS(6061), + [anon_sym_EQ_TILDE] = ACTIONS(6061), + [anon_sym_EQ_EQ] = ACTIONS(6061), + [anon_sym_LT] = ACTIONS(6061), + [anon_sym_GT] = ACTIONS(6061), + [anon_sym_GT_GT] = ACTIONS(6061), + [anon_sym_AMP_GT] = ACTIONS(6061), + [anon_sym_AMP_GT_GT] = ACTIONS(6061), + [anon_sym_LT_AMP] = ACTIONS(6061), + [anon_sym_GT_AMP] = ACTIONS(6061), + [anon_sym_LT_LT] = ACTIONS(6061), + [anon_sym_LT_LT_DASH] = ACTIONS(6061), + [anon_sym_LT_LT_LT] = ACTIONS(6061), + [sym__special_characters] = ACTIONS(6061), + [anon_sym_DQUOTE] = ACTIONS(6061), + [anon_sym_DOLLAR] = ACTIONS(6061), + [sym_raw_string] = ACTIONS(6061), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6061), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6061), + [anon_sym_BQUOTE] = ACTIONS(6061), + [anon_sym_LT_LPAREN] = ACTIONS(6061), + [anon_sym_GT_LPAREN] = ACTIONS(6061), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(5997), - [anon_sym_SEMI] = ACTIONS(5997), - [anon_sym_LF] = ACTIONS(5997), - [anon_sym_AMP] = ACTIONS(5997), + [sym_word] = ACTIONS(6061), + [anon_sym_SEMI] = ACTIONS(6061), + [anon_sym_LF] = ACTIONS(6061), + [anon_sym_AMP] = ACTIONS(6061), }, [2802] = { - [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_file_descriptor] = ACTIONS(3283), + [sym__concat] = ACTIONS(3283), + [anon_sym_PIPE] = ACTIONS(3285), + [anon_sym_RPAREN] = ACTIONS(3285), + [anon_sym_SEMI_SEMI] = ACTIONS(3285), + [anon_sym_PIPE_AMP] = ACTIONS(3285), + [anon_sym_AMP_AMP] = ACTIONS(3285), + [anon_sym_PIPE_PIPE] = ACTIONS(3285), + [anon_sym_LT] = ACTIONS(3285), + [anon_sym_GT] = ACTIONS(3285), + [anon_sym_GT_GT] = ACTIONS(3285), + [anon_sym_AMP_GT] = ACTIONS(3285), + [anon_sym_AMP_GT_GT] = ACTIONS(3285), + [anon_sym_LT_AMP] = ACTIONS(3285), + [anon_sym_GT_AMP] = ACTIONS(3285), + [anon_sym_LT_LT] = ACTIONS(3285), + [anon_sym_LT_LT_DASH] = ACTIONS(3285), + [anon_sym_LT_LT_LT] = ACTIONS(3285), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3237), - [anon_sym_LF] = ACTIONS(3237), - [anon_sym_AMP] = ACTIONS(3237), + [anon_sym_SEMI] = ACTIONS(3285), + [anon_sym_LF] = ACTIONS(3285), + [anon_sym_AMP] = ACTIONS(3285), }, [2803] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(6820), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(6890), [sym_comment] = ACTIONS(56), }, [2804] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(6822), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(6892), [sym_comment] = ACTIONS(56), }, [2805] = { - [anon_sym_RBRACE] = ACTIONS(6822), + [anon_sym_RBRACE] = ACTIONS(6892), [sym_comment] = ACTIONS(56), }, [2806] = { @@ -73414,49 +73724,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3408), - [anon_sym_RBRACE] = ACTIONS(6824), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6894), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2807] = { - [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_file_descriptor] = ACTIONS(3347), + [sym__concat] = ACTIONS(3347), + [anon_sym_PIPE] = ACTIONS(3349), + [anon_sym_RPAREN] = ACTIONS(3349), + [anon_sym_SEMI_SEMI] = ACTIONS(3349), + [anon_sym_PIPE_AMP] = ACTIONS(3349), + [anon_sym_AMP_AMP] = ACTIONS(3349), + [anon_sym_PIPE_PIPE] = ACTIONS(3349), + [anon_sym_LT] = ACTIONS(3349), + [anon_sym_GT] = ACTIONS(3349), + [anon_sym_GT_GT] = ACTIONS(3349), + [anon_sym_AMP_GT] = ACTIONS(3349), + [anon_sym_AMP_GT_GT] = ACTIONS(3349), + [anon_sym_LT_AMP] = ACTIONS(3349), + [anon_sym_GT_AMP] = ACTIONS(3349), + [anon_sym_LT_LT] = ACTIONS(3349), + [anon_sym_LT_LT_DASH] = ACTIONS(3349), + [anon_sym_LT_LT_LT] = ACTIONS(3349), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3299), - [anon_sym_LF] = ACTIONS(3299), - [anon_sym_AMP] = ACTIONS(3299), + [anon_sym_SEMI] = ACTIONS(3349), + [anon_sym_LF] = ACTIONS(3349), + [anon_sym_AMP] = ACTIONS(3349), }, [2808] = { [sym_concatenation] = STATE(3411), @@ -73466,46 +73776,46 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(3410), [sym_command_substitution] = STATE(3410), [sym_process_substitution] = STATE(3410), - [anon_sym_RBRACE] = ACTIONS(6822), - [sym__special_characters] = ACTIONS(6826), - [anon_sym_DQUOTE] = ACTIONS(1924), - [anon_sym_DOLLAR] = ACTIONS(1926), - [sym_raw_string] = ACTIONS(6828), - [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), + [anon_sym_RBRACE] = ACTIONS(6892), + [sym__special_characters] = ACTIONS(6896), + [anon_sym_DQUOTE] = ACTIONS(1952), + [anon_sym_DOLLAR] = ACTIONS(1954), + [sym_raw_string] = ACTIONS(6898), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), + [anon_sym_BQUOTE] = ACTIONS(1962), + [anon_sym_LT_LPAREN] = ACTIONS(1964), + [anon_sym_GT_LPAREN] = ACTIONS(1964), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6830), + [sym_word] = ACTIONS(6900), }, [2809] = { - [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_file_descriptor] = ACTIONS(3392), + [sym__concat] = ACTIONS(3392), + [anon_sym_PIPE] = ACTIONS(3394), + [anon_sym_RPAREN] = ACTIONS(3394), + [anon_sym_SEMI_SEMI] = ACTIONS(3394), + [anon_sym_PIPE_AMP] = ACTIONS(3394), + [anon_sym_AMP_AMP] = ACTIONS(3394), + [anon_sym_PIPE_PIPE] = ACTIONS(3394), + [anon_sym_LT] = ACTIONS(3394), + [anon_sym_GT] = ACTIONS(3394), + [anon_sym_GT_GT] = ACTIONS(3394), + [anon_sym_AMP_GT] = ACTIONS(3394), + [anon_sym_AMP_GT_GT] = ACTIONS(3394), + [anon_sym_LT_AMP] = ACTIONS(3394), + [anon_sym_GT_AMP] = ACTIONS(3394), + [anon_sym_LT_LT] = ACTIONS(3394), + [anon_sym_LT_LT_DASH] = ACTIONS(3394), + [anon_sym_LT_LT_LT] = ACTIONS(3394), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3344), - [anon_sym_LF] = ACTIONS(3344), - [anon_sym_AMP] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(3394), + [anon_sym_LF] = ACTIONS(3394), + [anon_sym_AMP] = ACTIONS(3394), }, [2810] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6832), + [sym_regex_without_right_brace] = ACTIONS(6902), }, [2811] = { [sym_concatenation] = STATE(451), @@ -73516,53 +73826,53 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6834), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6904), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2812] = { - [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_file_descriptor] = ACTIONS(3400), + [sym__concat] = ACTIONS(3400), + [anon_sym_PIPE] = ACTIONS(3402), + [anon_sym_RPAREN] = ACTIONS(3402), + [anon_sym_SEMI_SEMI] = ACTIONS(3402), + [anon_sym_PIPE_AMP] = ACTIONS(3402), + [anon_sym_AMP_AMP] = ACTIONS(3402), + [anon_sym_PIPE_PIPE] = ACTIONS(3402), + [anon_sym_LT] = ACTIONS(3402), + [anon_sym_GT] = ACTIONS(3402), + [anon_sym_GT_GT] = ACTIONS(3402), + [anon_sym_AMP_GT] = ACTIONS(3402), + [anon_sym_AMP_GT_GT] = ACTIONS(3402), + [anon_sym_LT_AMP] = ACTIONS(3402), + [anon_sym_GT_AMP] = ACTIONS(3402), + [anon_sym_LT_LT] = ACTIONS(3402), + [anon_sym_LT_LT_DASH] = ACTIONS(3402), + [anon_sym_LT_LT_LT] = ACTIONS(3402), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3352), - [anon_sym_LF] = ACTIONS(3352), - [anon_sym_AMP] = ACTIONS(3352), + [anon_sym_SEMI] = ACTIONS(3402), + [anon_sym_LF] = ACTIONS(3402), + [anon_sym_AMP] = ACTIONS(3402), }, [2813] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6836), + [sym_regex_without_right_brace] = ACTIONS(6906), }, [2814] = { [sym_concatenation] = STATE(451), @@ -73573,29 +73883,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(6908), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2815] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6840), + [sym_regex_without_right_brace] = ACTIONS(6910), }, [2816] = { [sym_concatenation] = STATE(451), @@ -73606,25 +73916,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6822), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6892), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2817] = { [sym_concatenation] = STATE(451), @@ -73635,49 +73945,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3418), - [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), + [anon_sym_RBRACE] = ACTIONS(6912), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2818] = { - [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_file_descriptor] = ACTIONS(3412), + [sym__concat] = ACTIONS(3412), + [anon_sym_PIPE] = ACTIONS(3414), + [anon_sym_RPAREN] = ACTIONS(3414), + [anon_sym_SEMI_SEMI] = ACTIONS(3414), + [anon_sym_PIPE_AMP] = ACTIONS(3414), + [anon_sym_AMP_AMP] = ACTIONS(3414), + [anon_sym_PIPE_PIPE] = ACTIONS(3414), + [anon_sym_LT] = ACTIONS(3414), + [anon_sym_GT] = ACTIONS(3414), + [anon_sym_GT_GT] = ACTIONS(3414), + [anon_sym_AMP_GT] = ACTIONS(3414), + [anon_sym_AMP_GT_GT] = ACTIONS(3414), + [anon_sym_LT_AMP] = ACTIONS(3414), + [anon_sym_GT_AMP] = ACTIONS(3414), + [anon_sym_LT_LT] = ACTIONS(3414), + [anon_sym_LT_LT_DASH] = ACTIONS(3414), + [anon_sym_LT_LT_LT] = ACTIONS(3414), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3364), - [anon_sym_LF] = ACTIONS(3364), - [anon_sym_AMP] = ACTIONS(3364), + [anon_sym_SEMI] = ACTIONS(3414), + [anon_sym_LF] = ACTIONS(3414), + [anon_sym_AMP] = ACTIONS(3414), }, [2819] = { [sym_concatenation] = STATE(451), @@ -73688,89 +73998,93 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3420), - [anon_sym_RBRACE] = ACTIONS(6844), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6914), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2820] = { - [sym__concat] = ACTIONS(5961), - [anon_sym_EQ_TILDE] = ACTIONS(6846), - [anon_sym_RBRACK] = ACTIONS(5961), - [sym__special_characters] = ACTIONS(5963), - [anon_sym_DQUOTE] = ACTIONS(5961), - [anon_sym_DOLLAR] = ACTIONS(6846), - [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__concat] = ACTIONS(6025), + [anon_sym_EQ_TILDE] = ACTIONS(6916), + [anon_sym_EQ_EQ] = ACTIONS(6916), + [anon_sym_RBRACK] = ACTIONS(6025), + [sym__special_characters] = ACTIONS(6027), + [anon_sym_DQUOTE] = ACTIONS(6025), + [anon_sym_DOLLAR] = ACTIONS(6916), + [sym_raw_string] = ACTIONS(6025), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6025), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6025), + [anon_sym_BQUOTE] = ACTIONS(6025), + [anon_sym_LT_LPAREN] = ACTIONS(6025), + [anon_sym_GT_LPAREN] = ACTIONS(6025), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5963), + [sym_word] = ACTIONS(6027), }, [2821] = { - [sym__concat] = ACTIONS(5965), - [anon_sym_EQ_TILDE] = ACTIONS(6848), - [anon_sym_RBRACK] = ACTIONS(5965), - [sym__special_characters] = ACTIONS(5967), - [anon_sym_DQUOTE] = ACTIONS(5965), - [anon_sym_DOLLAR] = ACTIONS(6848), - [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__concat] = ACTIONS(6029), + [anon_sym_EQ_TILDE] = ACTIONS(6918), + [anon_sym_EQ_EQ] = ACTIONS(6918), + [anon_sym_RBRACK] = ACTIONS(6029), + [sym__special_characters] = ACTIONS(6031), + [anon_sym_DQUOTE] = ACTIONS(6029), + [anon_sym_DOLLAR] = ACTIONS(6918), + [sym_raw_string] = ACTIONS(6029), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6029), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6029), + [anon_sym_BQUOTE] = ACTIONS(6029), + [anon_sym_LT_LPAREN] = ACTIONS(6029), + [anon_sym_GT_LPAREN] = ACTIONS(6029), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5967), + [sym_word] = ACTIONS(6031), }, [2822] = { - [sym__concat] = ACTIONS(5969), - [anon_sym_EQ_TILDE] = ACTIONS(6850), - [anon_sym_RBRACK] = ACTIONS(5969), - [sym__special_characters] = ACTIONS(5971), - [anon_sym_DQUOTE] = ACTIONS(5969), - [anon_sym_DOLLAR] = ACTIONS(6850), - [sym_raw_string] = ACTIONS(5969), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5969), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5969), - [anon_sym_BQUOTE] = ACTIONS(5969), - [anon_sym_LT_LPAREN] = ACTIONS(5969), - [anon_sym_GT_LPAREN] = ACTIONS(5969), + [sym__concat] = ACTIONS(6033), + [anon_sym_EQ_TILDE] = ACTIONS(6920), + [anon_sym_EQ_EQ] = ACTIONS(6920), + [anon_sym_RBRACK] = ACTIONS(6033), + [sym__special_characters] = ACTIONS(6035), + [anon_sym_DQUOTE] = ACTIONS(6033), + [anon_sym_DOLLAR] = ACTIONS(6920), + [sym_raw_string] = ACTIONS(6033), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6033), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6033), + [anon_sym_BQUOTE] = ACTIONS(6033), + [anon_sym_LT_LPAREN] = ACTIONS(6033), + [anon_sym_GT_LPAREN] = ACTIONS(6033), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5971), + [sym_word] = ACTIONS(6035), }, [2823] = { - [sym__concat] = ACTIONS(5973), - [anon_sym_EQ_TILDE] = ACTIONS(6852), - [anon_sym_RBRACK] = ACTIONS(5973), - [sym__special_characters] = ACTIONS(5975), - [anon_sym_DQUOTE] = ACTIONS(5973), - [anon_sym_DOLLAR] = ACTIONS(6852), - [sym_raw_string] = ACTIONS(5973), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5973), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5973), - [anon_sym_BQUOTE] = ACTIONS(5973), - [anon_sym_LT_LPAREN] = ACTIONS(5973), - [anon_sym_GT_LPAREN] = ACTIONS(5973), + [sym__concat] = ACTIONS(6037), + [anon_sym_EQ_TILDE] = ACTIONS(6922), + [anon_sym_EQ_EQ] = ACTIONS(6922), + [anon_sym_RBRACK] = ACTIONS(6037), + [sym__special_characters] = ACTIONS(6039), + [anon_sym_DQUOTE] = ACTIONS(6037), + [anon_sym_DOLLAR] = ACTIONS(6922), + [sym_raw_string] = ACTIONS(6037), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6037), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6037), + [anon_sym_BQUOTE] = ACTIONS(6037), + [anon_sym_LT_LPAREN] = ACTIONS(6037), + [anon_sym_GT_LPAREN] = ACTIONS(6037), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5975), + [sym_word] = ACTIONS(6039), }, [2824] = { [sym_concatenation] = STATE(451), @@ -73781,41 +74095,42 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6854), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6924), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2825] = { - [sym__concat] = ACTIONS(5979), - [anon_sym_EQ_TILDE] = ACTIONS(6856), - [anon_sym_RBRACK] = ACTIONS(5979), - [sym__special_characters] = ACTIONS(5981), - [anon_sym_DQUOTE] = ACTIONS(5979), - [anon_sym_DOLLAR] = ACTIONS(6856), - [sym_raw_string] = ACTIONS(5979), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5979), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5979), - [anon_sym_BQUOTE] = ACTIONS(5979), - [anon_sym_LT_LPAREN] = ACTIONS(5979), - [anon_sym_GT_LPAREN] = ACTIONS(5979), + [sym__concat] = ACTIONS(6043), + [anon_sym_EQ_TILDE] = ACTIONS(6926), + [anon_sym_EQ_EQ] = ACTIONS(6926), + [anon_sym_RBRACK] = ACTIONS(6043), + [sym__special_characters] = ACTIONS(6045), + [anon_sym_DQUOTE] = ACTIONS(6043), + [anon_sym_DOLLAR] = ACTIONS(6926), + [sym_raw_string] = ACTIONS(6043), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6043), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6043), + [anon_sym_BQUOTE] = ACTIONS(6043), + [anon_sym_LT_LPAREN] = ACTIONS(6043), + [anon_sym_GT_LPAREN] = ACTIONS(6043), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5981), + [sym_word] = ACTIONS(6045), }, [2826] = { [sym_concatenation] = STATE(451), @@ -73826,41 +74141,42 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6858), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6928), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2827] = { - [sym__concat] = ACTIONS(5985), - [anon_sym_EQ_TILDE] = ACTIONS(6860), - [anon_sym_RBRACK] = ACTIONS(5985), - [sym__special_characters] = ACTIONS(5987), - [anon_sym_DQUOTE] = ACTIONS(5985), - [anon_sym_DOLLAR] = ACTIONS(6860), - [sym_raw_string] = ACTIONS(5985), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5985), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5985), - [anon_sym_BQUOTE] = ACTIONS(5985), - [anon_sym_LT_LPAREN] = ACTIONS(5985), - [anon_sym_GT_LPAREN] = ACTIONS(5985), + [sym__concat] = ACTIONS(6049), + [anon_sym_EQ_TILDE] = ACTIONS(6930), + [anon_sym_EQ_EQ] = ACTIONS(6930), + [anon_sym_RBRACK] = ACTIONS(6049), + [sym__special_characters] = ACTIONS(6051), + [anon_sym_DQUOTE] = ACTIONS(6049), + [anon_sym_DOLLAR] = ACTIONS(6930), + [sym_raw_string] = ACTIONS(6049), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6049), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6049), + [anon_sym_BQUOTE] = ACTIONS(6049), + [anon_sym_LT_LPAREN] = ACTIONS(6049), + [anon_sym_GT_LPAREN] = ACTIONS(6049), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5987), + [sym_word] = ACTIONS(6051), }, [2828] = { [sym_concatenation] = STATE(451), @@ -73871,121 +74187,127 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6862), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6932), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2829] = { - [sym__concat] = ACTIONS(5991), - [anon_sym_EQ_TILDE] = ACTIONS(6864), - [anon_sym_RBRACK] = ACTIONS(5991), - [sym__special_characters] = ACTIONS(5993), - [anon_sym_DQUOTE] = ACTIONS(5991), - [anon_sym_DOLLAR] = ACTIONS(6864), - [sym_raw_string] = ACTIONS(5991), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5991), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5991), - [anon_sym_BQUOTE] = ACTIONS(5991), - [anon_sym_LT_LPAREN] = ACTIONS(5991), - [anon_sym_GT_LPAREN] = ACTIONS(5991), + [sym__concat] = ACTIONS(6055), + [anon_sym_EQ_TILDE] = ACTIONS(6934), + [anon_sym_EQ_EQ] = ACTIONS(6934), + [anon_sym_RBRACK] = ACTIONS(6055), + [sym__special_characters] = ACTIONS(6057), + [anon_sym_DQUOTE] = ACTIONS(6055), + [anon_sym_DOLLAR] = ACTIONS(6934), + [sym_raw_string] = ACTIONS(6055), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6055), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6055), + [anon_sym_BQUOTE] = ACTIONS(6055), + [anon_sym_LT_LPAREN] = ACTIONS(6055), + [anon_sym_GT_LPAREN] = ACTIONS(6055), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5993), + [sym_word] = ACTIONS(6057), }, [2830] = { - [sym__concat] = ACTIONS(5995), - [anon_sym_EQ_TILDE] = ACTIONS(6866), - [anon_sym_RBRACK] = ACTIONS(5995), - [sym__special_characters] = ACTIONS(5997), - [anon_sym_DQUOTE] = ACTIONS(5995), - [anon_sym_DOLLAR] = ACTIONS(6866), - [sym_raw_string] = ACTIONS(5995), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5995), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5995), - [anon_sym_BQUOTE] = ACTIONS(5995), - [anon_sym_LT_LPAREN] = ACTIONS(5995), - [anon_sym_GT_LPAREN] = ACTIONS(5995), + [sym__concat] = ACTIONS(6059), + [anon_sym_EQ_TILDE] = ACTIONS(6936), + [anon_sym_EQ_EQ] = ACTIONS(6936), + [anon_sym_RBRACK] = ACTIONS(6059), + [sym__special_characters] = ACTIONS(6061), + [anon_sym_DQUOTE] = ACTIONS(6059), + [anon_sym_DOLLAR] = ACTIONS(6936), + [sym_raw_string] = ACTIONS(6059), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6059), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6059), + [anon_sym_BQUOTE] = ACTIONS(6059), + [anon_sym_LT_LPAREN] = ACTIONS(6059), + [anon_sym_GT_LPAREN] = ACTIONS(6059), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5997), + [sym_word] = ACTIONS(6061), }, [2831] = { - [sym__concat] = ACTIONS(5961), - [anon_sym_EQ_TILDE] = ACTIONS(6846), - [anon_sym_RBRACK_RBRACK] = ACTIONS(5961), - [sym__special_characters] = ACTIONS(5963), - [anon_sym_DQUOTE] = ACTIONS(5961), - [anon_sym_DOLLAR] = ACTIONS(6846), - [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__concat] = ACTIONS(6025), + [anon_sym_EQ_TILDE] = ACTIONS(6916), + [anon_sym_EQ_EQ] = ACTIONS(6916), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6025), + [sym__special_characters] = ACTIONS(6027), + [anon_sym_DQUOTE] = ACTIONS(6025), + [anon_sym_DOLLAR] = ACTIONS(6916), + [sym_raw_string] = ACTIONS(6025), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6025), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6025), + [anon_sym_BQUOTE] = ACTIONS(6025), + [anon_sym_LT_LPAREN] = ACTIONS(6025), + [anon_sym_GT_LPAREN] = ACTIONS(6025), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5963), + [sym_word] = ACTIONS(6027), }, [2832] = { - [sym__concat] = ACTIONS(5965), - [anon_sym_EQ_TILDE] = ACTIONS(6848), - [anon_sym_RBRACK_RBRACK] = ACTIONS(5965), - [sym__special_characters] = ACTIONS(5967), - [anon_sym_DQUOTE] = ACTIONS(5965), - [anon_sym_DOLLAR] = ACTIONS(6848), - [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__concat] = ACTIONS(6029), + [anon_sym_EQ_TILDE] = ACTIONS(6918), + [anon_sym_EQ_EQ] = ACTIONS(6918), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6029), + [sym__special_characters] = ACTIONS(6031), + [anon_sym_DQUOTE] = ACTIONS(6029), + [anon_sym_DOLLAR] = ACTIONS(6918), + [sym_raw_string] = ACTIONS(6029), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6029), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6029), + [anon_sym_BQUOTE] = ACTIONS(6029), + [anon_sym_LT_LPAREN] = ACTIONS(6029), + [anon_sym_GT_LPAREN] = ACTIONS(6029), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5967), + [sym_word] = ACTIONS(6031), }, [2833] = { - [sym__concat] = ACTIONS(5969), - [anon_sym_EQ_TILDE] = ACTIONS(6850), - [anon_sym_RBRACK_RBRACK] = ACTIONS(5969), - [sym__special_characters] = ACTIONS(5971), - [anon_sym_DQUOTE] = ACTIONS(5969), - [anon_sym_DOLLAR] = ACTIONS(6850), - [sym_raw_string] = ACTIONS(5969), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5969), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5969), - [anon_sym_BQUOTE] = ACTIONS(5969), - [anon_sym_LT_LPAREN] = ACTIONS(5969), - [anon_sym_GT_LPAREN] = ACTIONS(5969), + [sym__concat] = ACTIONS(6033), + [anon_sym_EQ_TILDE] = ACTIONS(6920), + [anon_sym_EQ_EQ] = ACTIONS(6920), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6033), + [sym__special_characters] = ACTIONS(6035), + [anon_sym_DQUOTE] = ACTIONS(6033), + [anon_sym_DOLLAR] = ACTIONS(6920), + [sym_raw_string] = ACTIONS(6033), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6033), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6033), + [anon_sym_BQUOTE] = ACTIONS(6033), + [anon_sym_LT_LPAREN] = ACTIONS(6033), + [anon_sym_GT_LPAREN] = ACTIONS(6033), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5971), + [sym_word] = ACTIONS(6035), }, [2834] = { - [sym__concat] = ACTIONS(5973), - [anon_sym_EQ_TILDE] = ACTIONS(6852), - [anon_sym_RBRACK_RBRACK] = ACTIONS(5973), - [sym__special_characters] = ACTIONS(5975), - [anon_sym_DQUOTE] = ACTIONS(5973), - [anon_sym_DOLLAR] = ACTIONS(6852), - [sym_raw_string] = ACTIONS(5973), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5973), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5973), - [anon_sym_BQUOTE] = ACTIONS(5973), - [anon_sym_LT_LPAREN] = ACTIONS(5973), - [anon_sym_GT_LPAREN] = ACTIONS(5973), + [sym__concat] = ACTIONS(6037), + [anon_sym_EQ_TILDE] = ACTIONS(6922), + [anon_sym_EQ_EQ] = ACTIONS(6922), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6037), + [sym__special_characters] = ACTIONS(6039), + [anon_sym_DQUOTE] = ACTIONS(6037), + [anon_sym_DOLLAR] = ACTIONS(6922), + [sym_raw_string] = ACTIONS(6037), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6037), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6037), + [anon_sym_BQUOTE] = ACTIONS(6037), + [anon_sym_LT_LPAREN] = ACTIONS(6037), + [anon_sym_GT_LPAREN] = ACTIONS(6037), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5975), + [sym_word] = ACTIONS(6039), }, [2835] = { [sym_concatenation] = STATE(451), @@ -73996,41 +74318,42 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6868), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6938), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2836] = { - [sym__concat] = ACTIONS(5979), - [anon_sym_EQ_TILDE] = ACTIONS(6856), - [anon_sym_RBRACK_RBRACK] = ACTIONS(5979), - [sym__special_characters] = ACTIONS(5981), - [anon_sym_DQUOTE] = ACTIONS(5979), - [anon_sym_DOLLAR] = ACTIONS(6856), - [sym_raw_string] = ACTIONS(5979), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5979), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5979), - [anon_sym_BQUOTE] = ACTIONS(5979), - [anon_sym_LT_LPAREN] = ACTIONS(5979), - [anon_sym_GT_LPAREN] = ACTIONS(5979), + [sym__concat] = ACTIONS(6043), + [anon_sym_EQ_TILDE] = ACTIONS(6926), + [anon_sym_EQ_EQ] = ACTIONS(6926), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6043), + [sym__special_characters] = ACTIONS(6045), + [anon_sym_DQUOTE] = ACTIONS(6043), + [anon_sym_DOLLAR] = ACTIONS(6926), + [sym_raw_string] = ACTIONS(6043), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6043), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6043), + [anon_sym_BQUOTE] = ACTIONS(6043), + [anon_sym_LT_LPAREN] = ACTIONS(6043), + [anon_sym_GT_LPAREN] = ACTIONS(6043), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5981), + [sym_word] = ACTIONS(6045), }, [2837] = { [sym_concatenation] = STATE(451), @@ -74041,41 +74364,42 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6870), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6940), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2838] = { - [sym__concat] = ACTIONS(5985), - [anon_sym_EQ_TILDE] = ACTIONS(6860), - [anon_sym_RBRACK_RBRACK] = ACTIONS(5985), - [sym__special_characters] = ACTIONS(5987), - [anon_sym_DQUOTE] = ACTIONS(5985), - [anon_sym_DOLLAR] = ACTIONS(6860), - [sym_raw_string] = ACTIONS(5985), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5985), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5985), - [anon_sym_BQUOTE] = ACTIONS(5985), - [anon_sym_LT_LPAREN] = ACTIONS(5985), - [anon_sym_GT_LPAREN] = ACTIONS(5985), + [sym__concat] = ACTIONS(6049), + [anon_sym_EQ_TILDE] = ACTIONS(6930), + [anon_sym_EQ_EQ] = ACTIONS(6930), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6049), + [sym__special_characters] = ACTIONS(6051), + [anon_sym_DQUOTE] = ACTIONS(6049), + [anon_sym_DOLLAR] = ACTIONS(6930), + [sym_raw_string] = ACTIONS(6049), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6049), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6049), + [anon_sym_BQUOTE] = ACTIONS(6049), + [anon_sym_LT_LPAREN] = ACTIONS(6049), + [anon_sym_GT_LPAREN] = ACTIONS(6049), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5987), + [sym_word] = ACTIONS(6051), }, [2839] = { [sym_concatenation] = STATE(451), @@ -74086,153 +74410,155 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6872), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6942), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2840] = { - [sym__concat] = ACTIONS(5991), - [anon_sym_EQ_TILDE] = ACTIONS(6864), - [anon_sym_RBRACK_RBRACK] = ACTIONS(5991), - [sym__special_characters] = ACTIONS(5993), - [anon_sym_DQUOTE] = ACTIONS(5991), - [anon_sym_DOLLAR] = ACTIONS(6864), - [sym_raw_string] = ACTIONS(5991), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5991), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5991), - [anon_sym_BQUOTE] = ACTIONS(5991), - [anon_sym_LT_LPAREN] = ACTIONS(5991), - [anon_sym_GT_LPAREN] = ACTIONS(5991), + [sym__concat] = ACTIONS(6055), + [anon_sym_EQ_TILDE] = ACTIONS(6934), + [anon_sym_EQ_EQ] = ACTIONS(6934), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6055), + [sym__special_characters] = ACTIONS(6057), + [anon_sym_DQUOTE] = ACTIONS(6055), + [anon_sym_DOLLAR] = ACTIONS(6934), + [sym_raw_string] = ACTIONS(6055), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6055), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6055), + [anon_sym_BQUOTE] = ACTIONS(6055), + [anon_sym_LT_LPAREN] = ACTIONS(6055), + [anon_sym_GT_LPAREN] = ACTIONS(6055), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5993), + [sym_word] = ACTIONS(6057), }, [2841] = { - [sym__concat] = ACTIONS(5995), - [anon_sym_EQ_TILDE] = ACTIONS(6866), - [anon_sym_RBRACK_RBRACK] = ACTIONS(5995), - [sym__special_characters] = ACTIONS(5997), - [anon_sym_DQUOTE] = ACTIONS(5995), - [anon_sym_DOLLAR] = ACTIONS(6866), - [sym_raw_string] = ACTIONS(5995), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5995), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5995), - [anon_sym_BQUOTE] = ACTIONS(5995), - [anon_sym_LT_LPAREN] = ACTIONS(5995), - [anon_sym_GT_LPAREN] = ACTIONS(5995), + [sym__concat] = ACTIONS(6059), + [anon_sym_EQ_TILDE] = ACTIONS(6936), + [anon_sym_EQ_EQ] = ACTIONS(6936), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6059), + [sym__special_characters] = ACTIONS(6061), + [anon_sym_DQUOTE] = ACTIONS(6059), + [anon_sym_DOLLAR] = ACTIONS(6936), + [sym_raw_string] = ACTIONS(6059), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6059), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6059), + [anon_sym_BQUOTE] = ACTIONS(6059), + [anon_sym_LT_LPAREN] = ACTIONS(6059), + [anon_sym_GT_LPAREN] = ACTIONS(6059), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5997), + [sym_word] = ACTIONS(6061), }, [2842] = { - [sym__concat] = ACTIONS(5961), - [sym_variable_name] = ACTIONS(5961), - [anon_sym_PIPE] = ACTIONS(5963), - [anon_sym_SEMI_SEMI] = ACTIONS(5963), - [anon_sym_PIPE_AMP] = ACTIONS(5963), - [anon_sym_AMP_AMP] = ACTIONS(5963), - [anon_sym_PIPE_PIPE] = ACTIONS(5963), - [sym__special_characters] = ACTIONS(5963), - [anon_sym_DQUOTE] = ACTIONS(5963), - [anon_sym_DOLLAR] = ACTIONS(5963), - [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__concat] = ACTIONS(6025), + [sym_variable_name] = ACTIONS(6025), + [anon_sym_PIPE] = ACTIONS(6027), + [anon_sym_SEMI_SEMI] = ACTIONS(6027), + [anon_sym_PIPE_AMP] = ACTIONS(6027), + [anon_sym_AMP_AMP] = ACTIONS(6027), + [anon_sym_PIPE_PIPE] = ACTIONS(6027), + [sym__special_characters] = ACTIONS(6027), + [anon_sym_DQUOTE] = ACTIONS(6027), + [anon_sym_DOLLAR] = ACTIONS(6027), + [sym_raw_string] = ACTIONS(6027), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6027), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6027), + [anon_sym_BQUOTE] = ACTIONS(6027), + [anon_sym_LT_LPAREN] = ACTIONS(6027), + [anon_sym_GT_LPAREN] = ACTIONS(6027), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5963), - [sym_word] = ACTIONS(5963), - [anon_sym_SEMI] = ACTIONS(5963), - [anon_sym_LF] = ACTIONS(5963), - [anon_sym_AMP] = ACTIONS(5963), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6027), + [sym_word] = ACTIONS(6027), + [anon_sym_SEMI] = ACTIONS(6027), + [anon_sym_LF] = ACTIONS(6027), + [anon_sym_AMP] = ACTIONS(6027), }, [2843] = { - [sym__concat] = ACTIONS(5965), - [sym_variable_name] = ACTIONS(5965), - [anon_sym_PIPE] = ACTIONS(5967), - [anon_sym_SEMI_SEMI] = ACTIONS(5967), - [anon_sym_PIPE_AMP] = ACTIONS(5967), - [anon_sym_AMP_AMP] = ACTIONS(5967), - [anon_sym_PIPE_PIPE] = ACTIONS(5967), - [sym__special_characters] = ACTIONS(5967), - [anon_sym_DQUOTE] = ACTIONS(5967), - [anon_sym_DOLLAR] = ACTIONS(5967), - [sym_raw_string] = ACTIONS(5967), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5967), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5967), - [anon_sym_BQUOTE] = ACTIONS(5967), - [anon_sym_LT_LPAREN] = ACTIONS(5967), - [anon_sym_GT_LPAREN] = ACTIONS(5967), + [sym__concat] = ACTIONS(6029), + [sym_variable_name] = ACTIONS(6029), + [anon_sym_PIPE] = ACTIONS(6031), + [anon_sym_SEMI_SEMI] = ACTIONS(6031), + [anon_sym_PIPE_AMP] = ACTIONS(6031), + [anon_sym_AMP_AMP] = ACTIONS(6031), + [anon_sym_PIPE_PIPE] = ACTIONS(6031), + [sym__special_characters] = ACTIONS(6031), + [anon_sym_DQUOTE] = ACTIONS(6031), + [anon_sym_DOLLAR] = ACTIONS(6031), + [sym_raw_string] = ACTIONS(6031), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6031), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6031), + [anon_sym_BQUOTE] = ACTIONS(6031), + [anon_sym_LT_LPAREN] = ACTIONS(6031), + [anon_sym_GT_LPAREN] = ACTIONS(6031), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5967), - [sym_word] = ACTIONS(5967), - [anon_sym_SEMI] = ACTIONS(5967), - [anon_sym_LF] = ACTIONS(5967), - [anon_sym_AMP] = ACTIONS(5967), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6031), + [sym_word] = ACTIONS(6031), + [anon_sym_SEMI] = ACTIONS(6031), + [anon_sym_LF] = ACTIONS(6031), + [anon_sym_AMP] = ACTIONS(6031), }, [2844] = { - [sym__concat] = ACTIONS(5969), - [sym_variable_name] = ACTIONS(5969), - [anon_sym_PIPE] = ACTIONS(5971), - [anon_sym_SEMI_SEMI] = ACTIONS(5971), - [anon_sym_PIPE_AMP] = ACTIONS(5971), - [anon_sym_AMP_AMP] = ACTIONS(5971), - [anon_sym_PIPE_PIPE] = ACTIONS(5971), - [sym__special_characters] = ACTIONS(5971), - [anon_sym_DQUOTE] = ACTIONS(5971), - [anon_sym_DOLLAR] = ACTIONS(5971), - [sym_raw_string] = ACTIONS(5971), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5971), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5971), - [anon_sym_BQUOTE] = ACTIONS(5971), - [anon_sym_LT_LPAREN] = ACTIONS(5971), - [anon_sym_GT_LPAREN] = ACTIONS(5971), + [sym__concat] = ACTIONS(6033), + [sym_variable_name] = ACTIONS(6033), + [anon_sym_PIPE] = ACTIONS(6035), + [anon_sym_SEMI_SEMI] = ACTIONS(6035), + [anon_sym_PIPE_AMP] = ACTIONS(6035), + [anon_sym_AMP_AMP] = ACTIONS(6035), + [anon_sym_PIPE_PIPE] = ACTIONS(6035), + [sym__special_characters] = ACTIONS(6035), + [anon_sym_DQUOTE] = ACTIONS(6035), + [anon_sym_DOLLAR] = ACTIONS(6035), + [sym_raw_string] = ACTIONS(6035), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6035), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6035), + [anon_sym_BQUOTE] = ACTIONS(6035), + [anon_sym_LT_LPAREN] = ACTIONS(6035), + [anon_sym_GT_LPAREN] = ACTIONS(6035), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5971), - [sym_word] = ACTIONS(5971), - [anon_sym_SEMI] = ACTIONS(5971), - [anon_sym_LF] = ACTIONS(5971), - [anon_sym_AMP] = ACTIONS(5971), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6035), + [sym_word] = ACTIONS(6035), + [anon_sym_SEMI] = ACTIONS(6035), + [anon_sym_LF] = ACTIONS(6035), + [anon_sym_AMP] = ACTIONS(6035), }, [2845] = { - [sym__concat] = ACTIONS(5973), - [sym_variable_name] = ACTIONS(5973), - [anon_sym_PIPE] = ACTIONS(5975), - [anon_sym_SEMI_SEMI] = ACTIONS(5975), - [anon_sym_PIPE_AMP] = ACTIONS(5975), - [anon_sym_AMP_AMP] = ACTIONS(5975), - [anon_sym_PIPE_PIPE] = ACTIONS(5975), - [sym__special_characters] = ACTIONS(5975), - [anon_sym_DQUOTE] = ACTIONS(5975), - [anon_sym_DOLLAR] = ACTIONS(5975), - [sym_raw_string] = ACTIONS(5975), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5975), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5975), - [anon_sym_BQUOTE] = ACTIONS(5975), - [anon_sym_LT_LPAREN] = ACTIONS(5975), - [anon_sym_GT_LPAREN] = ACTIONS(5975), + [sym__concat] = ACTIONS(6037), + [sym_variable_name] = ACTIONS(6037), + [anon_sym_PIPE] = ACTIONS(6039), + [anon_sym_SEMI_SEMI] = ACTIONS(6039), + [anon_sym_PIPE_AMP] = ACTIONS(6039), + [anon_sym_AMP_AMP] = ACTIONS(6039), + [anon_sym_PIPE_PIPE] = ACTIONS(6039), + [sym__special_characters] = ACTIONS(6039), + [anon_sym_DQUOTE] = ACTIONS(6039), + [anon_sym_DOLLAR] = ACTIONS(6039), + [sym_raw_string] = ACTIONS(6039), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6039), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6039), + [anon_sym_BQUOTE] = ACTIONS(6039), + [anon_sym_LT_LPAREN] = ACTIONS(6039), + [anon_sym_GT_LPAREN] = ACTIONS(6039), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5975), - [sym_word] = ACTIONS(5975), - [anon_sym_SEMI] = ACTIONS(5975), - [anon_sym_LF] = ACTIONS(5975), - [anon_sym_AMP] = ACTIONS(5975), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6039), + [sym_word] = ACTIONS(6039), + [anon_sym_SEMI] = ACTIONS(6039), + [anon_sym_LF] = ACTIONS(6039), + [anon_sym_AMP] = ACTIONS(6039), }, [2846] = { [sym_concatenation] = STATE(451), @@ -74243,49 +74569,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6874), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6944), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2847] = { - [sym__concat] = ACTIONS(5979), - [sym_variable_name] = ACTIONS(5979), - [anon_sym_PIPE] = ACTIONS(5981), - [anon_sym_SEMI_SEMI] = ACTIONS(5981), - [anon_sym_PIPE_AMP] = ACTIONS(5981), - [anon_sym_AMP_AMP] = ACTIONS(5981), - [anon_sym_PIPE_PIPE] = ACTIONS(5981), - [sym__special_characters] = ACTIONS(5981), - [anon_sym_DQUOTE] = ACTIONS(5981), - [anon_sym_DOLLAR] = ACTIONS(5981), - [sym_raw_string] = ACTIONS(5981), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5981), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5981), - [anon_sym_BQUOTE] = ACTIONS(5981), - [anon_sym_LT_LPAREN] = ACTIONS(5981), - [anon_sym_GT_LPAREN] = ACTIONS(5981), + [sym__concat] = ACTIONS(6043), + [sym_variable_name] = ACTIONS(6043), + [anon_sym_PIPE] = ACTIONS(6045), + [anon_sym_SEMI_SEMI] = ACTIONS(6045), + [anon_sym_PIPE_AMP] = ACTIONS(6045), + [anon_sym_AMP_AMP] = ACTIONS(6045), + [anon_sym_PIPE_PIPE] = ACTIONS(6045), + [sym__special_characters] = ACTIONS(6045), + [anon_sym_DQUOTE] = ACTIONS(6045), + [anon_sym_DOLLAR] = ACTIONS(6045), + [sym_raw_string] = ACTIONS(6045), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6045), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6045), + [anon_sym_BQUOTE] = ACTIONS(6045), + [anon_sym_LT_LPAREN] = ACTIONS(6045), + [anon_sym_GT_LPAREN] = ACTIONS(6045), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5981), - [sym_word] = ACTIONS(5981), - [anon_sym_SEMI] = ACTIONS(5981), - [anon_sym_LF] = ACTIONS(5981), - [anon_sym_AMP] = ACTIONS(5981), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6045), + [sym_word] = ACTIONS(6045), + [anon_sym_SEMI] = ACTIONS(6045), + [anon_sym_LF] = ACTIONS(6045), + [anon_sym_AMP] = ACTIONS(6045), }, [2848] = { [sym_concatenation] = STATE(451), @@ -74296,49 +74622,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6876), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6946), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2849] = { - [sym__concat] = ACTIONS(5985), - [sym_variable_name] = ACTIONS(5985), - [anon_sym_PIPE] = ACTIONS(5987), - [anon_sym_SEMI_SEMI] = ACTIONS(5987), - [anon_sym_PIPE_AMP] = ACTIONS(5987), - [anon_sym_AMP_AMP] = ACTIONS(5987), - [anon_sym_PIPE_PIPE] = ACTIONS(5987), - [sym__special_characters] = ACTIONS(5987), - [anon_sym_DQUOTE] = ACTIONS(5987), - [anon_sym_DOLLAR] = ACTIONS(5987), - [sym_raw_string] = ACTIONS(5987), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5987), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5987), - [anon_sym_BQUOTE] = ACTIONS(5987), - [anon_sym_LT_LPAREN] = ACTIONS(5987), - [anon_sym_GT_LPAREN] = ACTIONS(5987), + [sym__concat] = ACTIONS(6049), + [sym_variable_name] = ACTIONS(6049), + [anon_sym_PIPE] = ACTIONS(6051), + [anon_sym_SEMI_SEMI] = ACTIONS(6051), + [anon_sym_PIPE_AMP] = ACTIONS(6051), + [anon_sym_AMP_AMP] = ACTIONS(6051), + [anon_sym_PIPE_PIPE] = ACTIONS(6051), + [sym__special_characters] = ACTIONS(6051), + [anon_sym_DQUOTE] = ACTIONS(6051), + [anon_sym_DOLLAR] = ACTIONS(6051), + [sym_raw_string] = ACTIONS(6051), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6051), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6051), + [anon_sym_BQUOTE] = ACTIONS(6051), + [anon_sym_LT_LPAREN] = ACTIONS(6051), + [anon_sym_GT_LPAREN] = ACTIONS(6051), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5987), - [sym_word] = ACTIONS(5987), - [anon_sym_SEMI] = ACTIONS(5987), - [anon_sym_LF] = ACTIONS(5987), - [anon_sym_AMP] = ACTIONS(5987), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6051), + [sym_word] = ACTIONS(6051), + [anon_sym_SEMI] = ACTIONS(6051), + [anon_sym_LF] = ACTIONS(6051), + [anon_sym_AMP] = ACTIONS(6051), }, [2850] = { [sym_concatenation] = STATE(451), @@ -74349,165 +74675,165 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6878), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6948), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2851] = { - [sym__concat] = ACTIONS(5991), - [sym_variable_name] = ACTIONS(5991), - [anon_sym_PIPE] = ACTIONS(5993), - [anon_sym_SEMI_SEMI] = ACTIONS(5993), - [anon_sym_PIPE_AMP] = ACTIONS(5993), - [anon_sym_AMP_AMP] = ACTIONS(5993), - [anon_sym_PIPE_PIPE] = ACTIONS(5993), - [sym__special_characters] = ACTIONS(5993), - [anon_sym_DQUOTE] = ACTIONS(5993), - [anon_sym_DOLLAR] = ACTIONS(5993), - [sym_raw_string] = ACTIONS(5993), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5993), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5993), - [anon_sym_BQUOTE] = ACTIONS(5993), - [anon_sym_LT_LPAREN] = ACTIONS(5993), - [anon_sym_GT_LPAREN] = ACTIONS(5993), + [sym__concat] = ACTIONS(6055), + [sym_variable_name] = ACTIONS(6055), + [anon_sym_PIPE] = ACTIONS(6057), + [anon_sym_SEMI_SEMI] = ACTIONS(6057), + [anon_sym_PIPE_AMP] = ACTIONS(6057), + [anon_sym_AMP_AMP] = ACTIONS(6057), + [anon_sym_PIPE_PIPE] = ACTIONS(6057), + [sym__special_characters] = ACTIONS(6057), + [anon_sym_DQUOTE] = ACTIONS(6057), + [anon_sym_DOLLAR] = ACTIONS(6057), + [sym_raw_string] = ACTIONS(6057), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6057), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6057), + [anon_sym_BQUOTE] = ACTIONS(6057), + [anon_sym_LT_LPAREN] = ACTIONS(6057), + [anon_sym_GT_LPAREN] = ACTIONS(6057), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5993), - [sym_word] = ACTIONS(5993), - [anon_sym_SEMI] = ACTIONS(5993), - [anon_sym_LF] = ACTIONS(5993), - [anon_sym_AMP] = ACTIONS(5993), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6057), + [sym_word] = ACTIONS(6057), + [anon_sym_SEMI] = ACTIONS(6057), + [anon_sym_LF] = ACTIONS(6057), + [anon_sym_AMP] = ACTIONS(6057), }, [2852] = { - [sym__concat] = ACTIONS(5995), - [sym_variable_name] = ACTIONS(5995), - [anon_sym_PIPE] = ACTIONS(5997), - [anon_sym_SEMI_SEMI] = ACTIONS(5997), - [anon_sym_PIPE_AMP] = ACTIONS(5997), - [anon_sym_AMP_AMP] = ACTIONS(5997), - [anon_sym_PIPE_PIPE] = ACTIONS(5997), - [sym__special_characters] = ACTIONS(5997), - [anon_sym_DQUOTE] = ACTIONS(5997), - [anon_sym_DOLLAR] = ACTIONS(5997), - [sym_raw_string] = ACTIONS(5997), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5997), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5997), - [anon_sym_BQUOTE] = ACTIONS(5997), - [anon_sym_LT_LPAREN] = ACTIONS(5997), - [anon_sym_GT_LPAREN] = ACTIONS(5997), + [sym__concat] = ACTIONS(6059), + [sym_variable_name] = ACTIONS(6059), + [anon_sym_PIPE] = ACTIONS(6061), + [anon_sym_SEMI_SEMI] = ACTIONS(6061), + [anon_sym_PIPE_AMP] = ACTIONS(6061), + [anon_sym_AMP_AMP] = ACTIONS(6061), + [anon_sym_PIPE_PIPE] = ACTIONS(6061), + [sym__special_characters] = ACTIONS(6061), + [anon_sym_DQUOTE] = ACTIONS(6061), + [anon_sym_DOLLAR] = ACTIONS(6061), + [sym_raw_string] = ACTIONS(6061), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6061), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6061), + [anon_sym_BQUOTE] = ACTIONS(6061), + [anon_sym_LT_LPAREN] = ACTIONS(6061), + [anon_sym_GT_LPAREN] = ACTIONS(6061), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5997), - [sym_word] = ACTIONS(5997), - [anon_sym_SEMI] = ACTIONS(5997), - [anon_sym_LF] = ACTIONS(5997), - [anon_sym_AMP] = ACTIONS(5997), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6061), + [sym_word] = ACTIONS(6061), + [anon_sym_SEMI] = ACTIONS(6061), + [anon_sym_LF] = ACTIONS(6061), + [anon_sym_AMP] = ACTIONS(6061), }, [2853] = { - [sym__concat] = ACTIONS(5961), - [anon_sym_PIPE] = ACTIONS(5963), - [anon_sym_SEMI_SEMI] = ACTIONS(5963), - [anon_sym_PIPE_AMP] = ACTIONS(5963), - [anon_sym_AMP_AMP] = ACTIONS(5963), - [anon_sym_PIPE_PIPE] = ACTIONS(5963), - [sym__special_characters] = ACTIONS(5963), - [anon_sym_DQUOTE] = ACTIONS(5963), - [anon_sym_DOLLAR] = ACTIONS(5963), - [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__concat] = ACTIONS(6025), + [anon_sym_PIPE] = ACTIONS(6027), + [anon_sym_SEMI_SEMI] = ACTIONS(6027), + [anon_sym_PIPE_AMP] = ACTIONS(6027), + [anon_sym_AMP_AMP] = ACTIONS(6027), + [anon_sym_PIPE_PIPE] = ACTIONS(6027), + [sym__special_characters] = ACTIONS(6027), + [anon_sym_DQUOTE] = ACTIONS(6027), + [anon_sym_DOLLAR] = ACTIONS(6027), + [sym_raw_string] = ACTIONS(6027), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6027), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6027), + [anon_sym_BQUOTE] = ACTIONS(6027), + [anon_sym_LT_LPAREN] = ACTIONS(6027), + [anon_sym_GT_LPAREN] = ACTIONS(6027), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5963), - [sym_word] = ACTIONS(5963), - [anon_sym_SEMI] = ACTIONS(5963), - [anon_sym_LF] = ACTIONS(5963), - [anon_sym_AMP] = ACTIONS(5963), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6027), + [sym_word] = ACTIONS(6027), + [anon_sym_SEMI] = ACTIONS(6027), + [anon_sym_LF] = ACTIONS(6027), + [anon_sym_AMP] = ACTIONS(6027), }, [2854] = { - [sym__concat] = ACTIONS(5965), - [anon_sym_PIPE] = ACTIONS(5967), - [anon_sym_SEMI_SEMI] = ACTIONS(5967), - [anon_sym_PIPE_AMP] = ACTIONS(5967), - [anon_sym_AMP_AMP] = ACTIONS(5967), - [anon_sym_PIPE_PIPE] = ACTIONS(5967), - [sym__special_characters] = ACTIONS(5967), - [anon_sym_DQUOTE] = ACTIONS(5967), - [anon_sym_DOLLAR] = ACTIONS(5967), - [sym_raw_string] = ACTIONS(5967), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5967), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5967), - [anon_sym_BQUOTE] = ACTIONS(5967), - [anon_sym_LT_LPAREN] = ACTIONS(5967), - [anon_sym_GT_LPAREN] = ACTIONS(5967), + [sym__concat] = ACTIONS(6029), + [anon_sym_PIPE] = ACTIONS(6031), + [anon_sym_SEMI_SEMI] = ACTIONS(6031), + [anon_sym_PIPE_AMP] = ACTIONS(6031), + [anon_sym_AMP_AMP] = ACTIONS(6031), + [anon_sym_PIPE_PIPE] = ACTIONS(6031), + [sym__special_characters] = ACTIONS(6031), + [anon_sym_DQUOTE] = ACTIONS(6031), + [anon_sym_DOLLAR] = ACTIONS(6031), + [sym_raw_string] = ACTIONS(6031), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6031), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6031), + [anon_sym_BQUOTE] = ACTIONS(6031), + [anon_sym_LT_LPAREN] = ACTIONS(6031), + [anon_sym_GT_LPAREN] = ACTIONS(6031), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5967), - [sym_word] = ACTIONS(5967), - [anon_sym_SEMI] = ACTIONS(5967), - [anon_sym_LF] = ACTIONS(5967), - [anon_sym_AMP] = ACTIONS(5967), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6031), + [sym_word] = ACTIONS(6031), + [anon_sym_SEMI] = ACTIONS(6031), + [anon_sym_LF] = ACTIONS(6031), + [anon_sym_AMP] = ACTIONS(6031), }, [2855] = { - [sym__concat] = ACTIONS(5969), - [anon_sym_PIPE] = ACTIONS(5971), - [anon_sym_SEMI_SEMI] = ACTIONS(5971), - [anon_sym_PIPE_AMP] = ACTIONS(5971), - [anon_sym_AMP_AMP] = ACTIONS(5971), - [anon_sym_PIPE_PIPE] = ACTIONS(5971), - [sym__special_characters] = ACTIONS(5971), - [anon_sym_DQUOTE] = ACTIONS(5971), - [anon_sym_DOLLAR] = ACTIONS(5971), - [sym_raw_string] = ACTIONS(5971), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5971), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5971), - [anon_sym_BQUOTE] = ACTIONS(5971), - [anon_sym_LT_LPAREN] = ACTIONS(5971), - [anon_sym_GT_LPAREN] = ACTIONS(5971), + [sym__concat] = ACTIONS(6033), + [anon_sym_PIPE] = ACTIONS(6035), + [anon_sym_SEMI_SEMI] = ACTIONS(6035), + [anon_sym_PIPE_AMP] = ACTIONS(6035), + [anon_sym_AMP_AMP] = ACTIONS(6035), + [anon_sym_PIPE_PIPE] = ACTIONS(6035), + [sym__special_characters] = ACTIONS(6035), + [anon_sym_DQUOTE] = ACTIONS(6035), + [anon_sym_DOLLAR] = ACTIONS(6035), + [sym_raw_string] = ACTIONS(6035), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6035), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6035), + [anon_sym_BQUOTE] = ACTIONS(6035), + [anon_sym_LT_LPAREN] = ACTIONS(6035), + [anon_sym_GT_LPAREN] = ACTIONS(6035), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5971), - [sym_word] = ACTIONS(5971), - [anon_sym_SEMI] = ACTIONS(5971), - [anon_sym_LF] = ACTIONS(5971), - [anon_sym_AMP] = ACTIONS(5971), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6035), + [sym_word] = ACTIONS(6035), + [anon_sym_SEMI] = ACTIONS(6035), + [anon_sym_LF] = ACTIONS(6035), + [anon_sym_AMP] = ACTIONS(6035), }, [2856] = { - [sym__concat] = ACTIONS(5973), - [anon_sym_PIPE] = ACTIONS(5975), - [anon_sym_SEMI_SEMI] = ACTIONS(5975), - [anon_sym_PIPE_AMP] = ACTIONS(5975), - [anon_sym_AMP_AMP] = ACTIONS(5975), - [anon_sym_PIPE_PIPE] = ACTIONS(5975), - [sym__special_characters] = ACTIONS(5975), - [anon_sym_DQUOTE] = ACTIONS(5975), - [anon_sym_DOLLAR] = ACTIONS(5975), - [sym_raw_string] = ACTIONS(5975), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5975), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5975), - [anon_sym_BQUOTE] = ACTIONS(5975), - [anon_sym_LT_LPAREN] = ACTIONS(5975), - [anon_sym_GT_LPAREN] = ACTIONS(5975), + [sym__concat] = ACTIONS(6037), + [anon_sym_PIPE] = ACTIONS(6039), + [anon_sym_SEMI_SEMI] = ACTIONS(6039), + [anon_sym_PIPE_AMP] = ACTIONS(6039), + [anon_sym_AMP_AMP] = ACTIONS(6039), + [anon_sym_PIPE_PIPE] = ACTIONS(6039), + [sym__special_characters] = ACTIONS(6039), + [anon_sym_DQUOTE] = ACTIONS(6039), + [anon_sym_DOLLAR] = ACTIONS(6039), + [sym_raw_string] = ACTIONS(6039), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6039), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6039), + [anon_sym_BQUOTE] = ACTIONS(6039), + [anon_sym_LT_LPAREN] = ACTIONS(6039), + [anon_sym_GT_LPAREN] = ACTIONS(6039), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5975), - [sym_word] = ACTIONS(5975), - [anon_sym_SEMI] = ACTIONS(5975), - [anon_sym_LF] = ACTIONS(5975), - [anon_sym_AMP] = ACTIONS(5975), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6039), + [sym_word] = ACTIONS(6039), + [anon_sym_SEMI] = ACTIONS(6039), + [anon_sym_LF] = ACTIONS(6039), + [anon_sym_AMP] = ACTIONS(6039), }, [2857] = { [sym_concatenation] = STATE(451), @@ -74518,48 +74844,48 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6880), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6950), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2858] = { - [sym__concat] = ACTIONS(5979), - [anon_sym_PIPE] = ACTIONS(5981), - [anon_sym_SEMI_SEMI] = ACTIONS(5981), - [anon_sym_PIPE_AMP] = ACTIONS(5981), - [anon_sym_AMP_AMP] = ACTIONS(5981), - [anon_sym_PIPE_PIPE] = ACTIONS(5981), - [sym__special_characters] = ACTIONS(5981), - [anon_sym_DQUOTE] = ACTIONS(5981), - [anon_sym_DOLLAR] = ACTIONS(5981), - [sym_raw_string] = ACTIONS(5981), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5981), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5981), - [anon_sym_BQUOTE] = ACTIONS(5981), - [anon_sym_LT_LPAREN] = ACTIONS(5981), - [anon_sym_GT_LPAREN] = ACTIONS(5981), + [sym__concat] = ACTIONS(6043), + [anon_sym_PIPE] = ACTIONS(6045), + [anon_sym_SEMI_SEMI] = ACTIONS(6045), + [anon_sym_PIPE_AMP] = ACTIONS(6045), + [anon_sym_AMP_AMP] = ACTIONS(6045), + [anon_sym_PIPE_PIPE] = ACTIONS(6045), + [sym__special_characters] = ACTIONS(6045), + [anon_sym_DQUOTE] = ACTIONS(6045), + [anon_sym_DOLLAR] = ACTIONS(6045), + [sym_raw_string] = ACTIONS(6045), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6045), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6045), + [anon_sym_BQUOTE] = ACTIONS(6045), + [anon_sym_LT_LPAREN] = ACTIONS(6045), + [anon_sym_GT_LPAREN] = ACTIONS(6045), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5981), - [sym_word] = ACTIONS(5981), - [anon_sym_SEMI] = ACTIONS(5981), - [anon_sym_LF] = ACTIONS(5981), - [anon_sym_AMP] = ACTIONS(5981), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6045), + [sym_word] = ACTIONS(6045), + [anon_sym_SEMI] = ACTIONS(6045), + [anon_sym_LF] = ACTIONS(6045), + [anon_sym_AMP] = ACTIONS(6045), }, [2859] = { [sym_concatenation] = STATE(451), @@ -74570,48 +74896,48 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6882), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6952), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2860] = { - [sym__concat] = ACTIONS(5985), - [anon_sym_PIPE] = ACTIONS(5987), - [anon_sym_SEMI_SEMI] = ACTIONS(5987), - [anon_sym_PIPE_AMP] = ACTIONS(5987), - [anon_sym_AMP_AMP] = ACTIONS(5987), - [anon_sym_PIPE_PIPE] = ACTIONS(5987), - [sym__special_characters] = ACTIONS(5987), - [anon_sym_DQUOTE] = ACTIONS(5987), - [anon_sym_DOLLAR] = ACTIONS(5987), - [sym_raw_string] = ACTIONS(5987), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5987), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5987), - [anon_sym_BQUOTE] = ACTIONS(5987), - [anon_sym_LT_LPAREN] = ACTIONS(5987), - [anon_sym_GT_LPAREN] = ACTIONS(5987), + [sym__concat] = ACTIONS(6049), + [anon_sym_PIPE] = ACTIONS(6051), + [anon_sym_SEMI_SEMI] = ACTIONS(6051), + [anon_sym_PIPE_AMP] = ACTIONS(6051), + [anon_sym_AMP_AMP] = ACTIONS(6051), + [anon_sym_PIPE_PIPE] = ACTIONS(6051), + [sym__special_characters] = ACTIONS(6051), + [anon_sym_DQUOTE] = ACTIONS(6051), + [anon_sym_DOLLAR] = ACTIONS(6051), + [sym_raw_string] = ACTIONS(6051), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6051), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6051), + [anon_sym_BQUOTE] = ACTIONS(6051), + [anon_sym_LT_LPAREN] = ACTIONS(6051), + [anon_sym_GT_LPAREN] = ACTIONS(6051), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5987), - [sym_word] = ACTIONS(5987), - [anon_sym_SEMI] = ACTIONS(5987), - [anon_sym_LF] = ACTIONS(5987), - [anon_sym_AMP] = ACTIONS(5987), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6051), + [sym_word] = ACTIONS(6051), + [anon_sym_SEMI] = ACTIONS(6051), + [anon_sym_LF] = ACTIONS(6051), + [anon_sym_AMP] = ACTIONS(6051), }, [2861] = { [sym_concatenation] = STATE(451), @@ -74622,163 +74948,163 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6884), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6954), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2862] = { - [sym__concat] = ACTIONS(5991), - [anon_sym_PIPE] = ACTIONS(5993), - [anon_sym_SEMI_SEMI] = ACTIONS(5993), - [anon_sym_PIPE_AMP] = ACTIONS(5993), - [anon_sym_AMP_AMP] = ACTIONS(5993), - [anon_sym_PIPE_PIPE] = ACTIONS(5993), - [sym__special_characters] = ACTIONS(5993), - [anon_sym_DQUOTE] = ACTIONS(5993), - [anon_sym_DOLLAR] = ACTIONS(5993), - [sym_raw_string] = ACTIONS(5993), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5993), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5993), - [anon_sym_BQUOTE] = ACTIONS(5993), - [anon_sym_LT_LPAREN] = ACTIONS(5993), - [anon_sym_GT_LPAREN] = ACTIONS(5993), + [sym__concat] = ACTIONS(6055), + [anon_sym_PIPE] = ACTIONS(6057), + [anon_sym_SEMI_SEMI] = ACTIONS(6057), + [anon_sym_PIPE_AMP] = ACTIONS(6057), + [anon_sym_AMP_AMP] = ACTIONS(6057), + [anon_sym_PIPE_PIPE] = ACTIONS(6057), + [sym__special_characters] = ACTIONS(6057), + [anon_sym_DQUOTE] = ACTIONS(6057), + [anon_sym_DOLLAR] = ACTIONS(6057), + [sym_raw_string] = ACTIONS(6057), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6057), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6057), + [anon_sym_BQUOTE] = ACTIONS(6057), + [anon_sym_LT_LPAREN] = ACTIONS(6057), + [anon_sym_GT_LPAREN] = ACTIONS(6057), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5993), - [sym_word] = ACTIONS(5993), - [anon_sym_SEMI] = ACTIONS(5993), - [anon_sym_LF] = ACTIONS(5993), - [anon_sym_AMP] = ACTIONS(5993), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6057), + [sym_word] = ACTIONS(6057), + [anon_sym_SEMI] = ACTIONS(6057), + [anon_sym_LF] = ACTIONS(6057), + [anon_sym_AMP] = ACTIONS(6057), }, [2863] = { - [sym__concat] = ACTIONS(5995), - [anon_sym_PIPE] = ACTIONS(5997), - [anon_sym_SEMI_SEMI] = ACTIONS(5997), - [anon_sym_PIPE_AMP] = ACTIONS(5997), - [anon_sym_AMP_AMP] = ACTIONS(5997), - [anon_sym_PIPE_PIPE] = ACTIONS(5997), - [sym__special_characters] = ACTIONS(5997), - [anon_sym_DQUOTE] = ACTIONS(5997), - [anon_sym_DOLLAR] = ACTIONS(5997), - [sym_raw_string] = ACTIONS(5997), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5997), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5997), - [anon_sym_BQUOTE] = ACTIONS(5997), - [anon_sym_LT_LPAREN] = ACTIONS(5997), - [anon_sym_GT_LPAREN] = ACTIONS(5997), + [sym__concat] = ACTIONS(6059), + [anon_sym_PIPE] = ACTIONS(6061), + [anon_sym_SEMI_SEMI] = ACTIONS(6061), + [anon_sym_PIPE_AMP] = ACTIONS(6061), + [anon_sym_AMP_AMP] = ACTIONS(6061), + [anon_sym_PIPE_PIPE] = ACTIONS(6061), + [sym__special_characters] = ACTIONS(6061), + [anon_sym_DQUOTE] = ACTIONS(6061), + [anon_sym_DOLLAR] = ACTIONS(6061), + [sym_raw_string] = ACTIONS(6061), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6061), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6061), + [anon_sym_BQUOTE] = ACTIONS(6061), + [anon_sym_LT_LPAREN] = ACTIONS(6061), + [anon_sym_GT_LPAREN] = ACTIONS(6061), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5997), - [sym_word] = ACTIONS(5997), - [anon_sym_SEMI] = ACTIONS(5997), - [anon_sym_LF] = ACTIONS(5997), - [anon_sym_AMP] = ACTIONS(5997), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6061), + [sym_word] = ACTIONS(6061), + [anon_sym_SEMI] = ACTIONS(6061), + [anon_sym_LF] = ACTIONS(6061), + [anon_sym_AMP] = ACTIONS(6061), }, [2864] = { - [sym_file_descriptor] = ACTIONS(5961), - [sym__concat] = ACTIONS(5961), - [sym_variable_name] = ACTIONS(5961), - [anon_sym_LT] = ACTIONS(6846), - [anon_sym_GT] = ACTIONS(6846), - [anon_sym_GT_GT] = ACTIONS(5961), - [anon_sym_AMP_GT] = ACTIONS(6846), - [anon_sym_AMP_GT_GT] = ACTIONS(5961), - [anon_sym_LT_AMP] = ACTIONS(5961), - [anon_sym_GT_AMP] = ACTIONS(5961), - [sym__special_characters] = ACTIONS(6846), - [anon_sym_DQUOTE] = ACTIONS(5961), - [anon_sym_DOLLAR] = ACTIONS(6846), - [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_file_descriptor] = ACTIONS(6025), + [sym__concat] = ACTIONS(6025), + [sym_variable_name] = ACTIONS(6025), + [anon_sym_LT] = ACTIONS(6916), + [anon_sym_GT] = ACTIONS(6916), + [anon_sym_GT_GT] = ACTIONS(6025), + [anon_sym_AMP_GT] = ACTIONS(6916), + [anon_sym_AMP_GT_GT] = ACTIONS(6025), + [anon_sym_LT_AMP] = ACTIONS(6025), + [anon_sym_GT_AMP] = ACTIONS(6025), + [sym__special_characters] = ACTIONS(6916), + [anon_sym_DQUOTE] = ACTIONS(6025), + [anon_sym_DOLLAR] = ACTIONS(6916), + [sym_raw_string] = ACTIONS(6025), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6025), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6025), + [anon_sym_BQUOTE] = ACTIONS(6025), + [anon_sym_LT_LPAREN] = ACTIONS(6025), + [anon_sym_GT_LPAREN] = ACTIONS(6025), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6846), + [sym_word] = ACTIONS(6916), }, [2865] = { - [sym_file_descriptor] = ACTIONS(5965), - [sym__concat] = ACTIONS(5965), - [sym_variable_name] = ACTIONS(5965), - [anon_sym_LT] = ACTIONS(6848), - [anon_sym_GT] = ACTIONS(6848), - [anon_sym_GT_GT] = ACTIONS(5965), - [anon_sym_AMP_GT] = ACTIONS(6848), - [anon_sym_AMP_GT_GT] = ACTIONS(5965), - [anon_sym_LT_AMP] = ACTIONS(5965), - [anon_sym_GT_AMP] = ACTIONS(5965), - [sym__special_characters] = ACTIONS(6848), - [anon_sym_DQUOTE] = ACTIONS(5965), - [anon_sym_DOLLAR] = ACTIONS(6848), - [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_file_descriptor] = ACTIONS(6029), + [sym__concat] = ACTIONS(6029), + [sym_variable_name] = ACTIONS(6029), + [anon_sym_LT] = ACTIONS(6918), + [anon_sym_GT] = ACTIONS(6918), + [anon_sym_GT_GT] = ACTIONS(6029), + [anon_sym_AMP_GT] = ACTIONS(6918), + [anon_sym_AMP_GT_GT] = ACTIONS(6029), + [anon_sym_LT_AMP] = ACTIONS(6029), + [anon_sym_GT_AMP] = ACTIONS(6029), + [sym__special_characters] = ACTIONS(6918), + [anon_sym_DQUOTE] = ACTIONS(6029), + [anon_sym_DOLLAR] = ACTIONS(6918), + [sym_raw_string] = ACTIONS(6029), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6029), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6029), + [anon_sym_BQUOTE] = ACTIONS(6029), + [anon_sym_LT_LPAREN] = ACTIONS(6029), + [anon_sym_GT_LPAREN] = ACTIONS(6029), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6848), + [sym_word] = ACTIONS(6918), }, [2866] = { - [sym_file_descriptor] = ACTIONS(5969), - [sym__concat] = ACTIONS(5969), - [sym_variable_name] = ACTIONS(5969), - [anon_sym_LT] = ACTIONS(6850), - [anon_sym_GT] = ACTIONS(6850), - [anon_sym_GT_GT] = ACTIONS(5969), - [anon_sym_AMP_GT] = ACTIONS(6850), - [anon_sym_AMP_GT_GT] = ACTIONS(5969), - [anon_sym_LT_AMP] = ACTIONS(5969), - [anon_sym_GT_AMP] = ACTIONS(5969), - [sym__special_characters] = ACTIONS(6850), - [anon_sym_DQUOTE] = ACTIONS(5969), - [anon_sym_DOLLAR] = ACTIONS(6850), - [sym_raw_string] = ACTIONS(5969), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5969), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5969), - [anon_sym_BQUOTE] = ACTIONS(5969), - [anon_sym_LT_LPAREN] = ACTIONS(5969), - [anon_sym_GT_LPAREN] = ACTIONS(5969), + [sym_file_descriptor] = ACTIONS(6033), + [sym__concat] = ACTIONS(6033), + [sym_variable_name] = ACTIONS(6033), + [anon_sym_LT] = ACTIONS(6920), + [anon_sym_GT] = ACTIONS(6920), + [anon_sym_GT_GT] = ACTIONS(6033), + [anon_sym_AMP_GT] = ACTIONS(6920), + [anon_sym_AMP_GT_GT] = ACTIONS(6033), + [anon_sym_LT_AMP] = ACTIONS(6033), + [anon_sym_GT_AMP] = ACTIONS(6033), + [sym__special_characters] = ACTIONS(6920), + [anon_sym_DQUOTE] = ACTIONS(6033), + [anon_sym_DOLLAR] = ACTIONS(6920), + [sym_raw_string] = ACTIONS(6033), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6033), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6033), + [anon_sym_BQUOTE] = ACTIONS(6033), + [anon_sym_LT_LPAREN] = ACTIONS(6033), + [anon_sym_GT_LPAREN] = ACTIONS(6033), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6850), + [sym_word] = ACTIONS(6920), }, [2867] = { - [sym_file_descriptor] = ACTIONS(5973), - [sym__concat] = ACTIONS(5973), - [sym_variable_name] = ACTIONS(5973), - [anon_sym_LT] = ACTIONS(6852), - [anon_sym_GT] = ACTIONS(6852), - [anon_sym_GT_GT] = ACTIONS(5973), - [anon_sym_AMP_GT] = ACTIONS(6852), - [anon_sym_AMP_GT_GT] = ACTIONS(5973), - [anon_sym_LT_AMP] = ACTIONS(5973), - [anon_sym_GT_AMP] = ACTIONS(5973), - [sym__special_characters] = ACTIONS(6852), - [anon_sym_DQUOTE] = ACTIONS(5973), - [anon_sym_DOLLAR] = ACTIONS(6852), - [sym_raw_string] = ACTIONS(5973), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5973), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5973), - [anon_sym_BQUOTE] = ACTIONS(5973), - [anon_sym_LT_LPAREN] = ACTIONS(5973), - [anon_sym_GT_LPAREN] = ACTIONS(5973), + [sym_file_descriptor] = ACTIONS(6037), + [sym__concat] = ACTIONS(6037), + [sym_variable_name] = ACTIONS(6037), + [anon_sym_LT] = ACTIONS(6922), + [anon_sym_GT] = ACTIONS(6922), + [anon_sym_GT_GT] = ACTIONS(6037), + [anon_sym_AMP_GT] = ACTIONS(6922), + [anon_sym_AMP_GT_GT] = ACTIONS(6037), + [anon_sym_LT_AMP] = ACTIONS(6037), + [anon_sym_GT_AMP] = ACTIONS(6037), + [sym__special_characters] = ACTIONS(6922), + [anon_sym_DQUOTE] = ACTIONS(6037), + [anon_sym_DOLLAR] = ACTIONS(6922), + [sym_raw_string] = ACTIONS(6037), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6037), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6037), + [anon_sym_BQUOTE] = ACTIONS(6037), + [anon_sym_LT_LPAREN] = ACTIONS(6037), + [anon_sym_GT_LPAREN] = ACTIONS(6037), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6852), + [sym_word] = ACTIONS(6922), }, [2868] = { [sym_concatenation] = STATE(451), @@ -74789,48 +75115,48 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6886), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6956), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2869] = { - [sym_file_descriptor] = ACTIONS(5979), - [sym__concat] = ACTIONS(5979), - [sym_variable_name] = ACTIONS(5979), - [anon_sym_LT] = ACTIONS(6856), - [anon_sym_GT] = ACTIONS(6856), - [anon_sym_GT_GT] = ACTIONS(5979), - [anon_sym_AMP_GT] = ACTIONS(6856), - [anon_sym_AMP_GT_GT] = ACTIONS(5979), - [anon_sym_LT_AMP] = ACTIONS(5979), - [anon_sym_GT_AMP] = ACTIONS(5979), - [sym__special_characters] = ACTIONS(6856), - [anon_sym_DQUOTE] = ACTIONS(5979), - [anon_sym_DOLLAR] = ACTIONS(6856), - [sym_raw_string] = ACTIONS(5979), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5979), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5979), - [anon_sym_BQUOTE] = ACTIONS(5979), - [anon_sym_LT_LPAREN] = ACTIONS(5979), - [anon_sym_GT_LPAREN] = ACTIONS(5979), + [sym_file_descriptor] = ACTIONS(6043), + [sym__concat] = ACTIONS(6043), + [sym_variable_name] = ACTIONS(6043), + [anon_sym_LT] = ACTIONS(6926), + [anon_sym_GT] = ACTIONS(6926), + [anon_sym_GT_GT] = ACTIONS(6043), + [anon_sym_AMP_GT] = ACTIONS(6926), + [anon_sym_AMP_GT_GT] = ACTIONS(6043), + [anon_sym_LT_AMP] = ACTIONS(6043), + [anon_sym_GT_AMP] = ACTIONS(6043), + [sym__special_characters] = ACTIONS(6926), + [anon_sym_DQUOTE] = ACTIONS(6043), + [anon_sym_DOLLAR] = ACTIONS(6926), + [sym_raw_string] = ACTIONS(6043), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6043), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6043), + [anon_sym_BQUOTE] = ACTIONS(6043), + [anon_sym_LT_LPAREN] = ACTIONS(6043), + [anon_sym_GT_LPAREN] = ACTIONS(6043), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6856), + [sym_word] = ACTIONS(6926), }, [2870] = { [sym_concatenation] = STATE(451), @@ -74841,48 +75167,48 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6888), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6958), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2871] = { - [sym_file_descriptor] = ACTIONS(5985), - [sym__concat] = ACTIONS(5985), - [sym_variable_name] = ACTIONS(5985), - [anon_sym_LT] = ACTIONS(6860), - [anon_sym_GT] = ACTIONS(6860), - [anon_sym_GT_GT] = ACTIONS(5985), - [anon_sym_AMP_GT] = ACTIONS(6860), - [anon_sym_AMP_GT_GT] = ACTIONS(5985), - [anon_sym_LT_AMP] = ACTIONS(5985), - [anon_sym_GT_AMP] = ACTIONS(5985), - [sym__special_characters] = ACTIONS(6860), - [anon_sym_DQUOTE] = ACTIONS(5985), - [anon_sym_DOLLAR] = ACTIONS(6860), - [sym_raw_string] = ACTIONS(5985), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5985), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5985), - [anon_sym_BQUOTE] = ACTIONS(5985), - [anon_sym_LT_LPAREN] = ACTIONS(5985), - [anon_sym_GT_LPAREN] = ACTIONS(5985), + [sym_file_descriptor] = ACTIONS(6049), + [sym__concat] = ACTIONS(6049), + [sym_variable_name] = ACTIONS(6049), + [anon_sym_LT] = ACTIONS(6930), + [anon_sym_GT] = ACTIONS(6930), + [anon_sym_GT_GT] = ACTIONS(6049), + [anon_sym_AMP_GT] = ACTIONS(6930), + [anon_sym_AMP_GT_GT] = ACTIONS(6049), + [anon_sym_LT_AMP] = ACTIONS(6049), + [anon_sym_GT_AMP] = ACTIONS(6049), + [sym__special_characters] = ACTIONS(6930), + [anon_sym_DQUOTE] = ACTIONS(6049), + [anon_sym_DOLLAR] = ACTIONS(6930), + [sym_raw_string] = ACTIONS(6049), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6049), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6049), + [anon_sym_BQUOTE] = ACTIONS(6049), + [anon_sym_LT_LPAREN] = ACTIONS(6049), + [anon_sym_GT_LPAREN] = ACTIONS(6049), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6860), + [sym_word] = ACTIONS(6930), }, [2872] = { [sym_concatenation] = STATE(451), @@ -74893,110 +75219,110 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6890), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6960), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2873] = { - [sym_file_descriptor] = ACTIONS(5991), - [sym__concat] = ACTIONS(5991), - [sym_variable_name] = ACTIONS(5991), - [anon_sym_LT] = ACTIONS(6864), - [anon_sym_GT] = ACTIONS(6864), - [anon_sym_GT_GT] = ACTIONS(5991), - [anon_sym_AMP_GT] = ACTIONS(6864), - [anon_sym_AMP_GT_GT] = ACTIONS(5991), - [anon_sym_LT_AMP] = ACTIONS(5991), - [anon_sym_GT_AMP] = ACTIONS(5991), - [sym__special_characters] = ACTIONS(6864), - [anon_sym_DQUOTE] = ACTIONS(5991), - [anon_sym_DOLLAR] = ACTIONS(6864), - [sym_raw_string] = ACTIONS(5991), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5991), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5991), - [anon_sym_BQUOTE] = ACTIONS(5991), - [anon_sym_LT_LPAREN] = ACTIONS(5991), - [anon_sym_GT_LPAREN] = ACTIONS(5991), + [sym_file_descriptor] = ACTIONS(6055), + [sym__concat] = ACTIONS(6055), + [sym_variable_name] = ACTIONS(6055), + [anon_sym_LT] = ACTIONS(6934), + [anon_sym_GT] = ACTIONS(6934), + [anon_sym_GT_GT] = ACTIONS(6055), + [anon_sym_AMP_GT] = ACTIONS(6934), + [anon_sym_AMP_GT_GT] = ACTIONS(6055), + [anon_sym_LT_AMP] = ACTIONS(6055), + [anon_sym_GT_AMP] = ACTIONS(6055), + [sym__special_characters] = ACTIONS(6934), + [anon_sym_DQUOTE] = ACTIONS(6055), + [anon_sym_DOLLAR] = ACTIONS(6934), + [sym_raw_string] = ACTIONS(6055), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6055), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6055), + [anon_sym_BQUOTE] = ACTIONS(6055), + [anon_sym_LT_LPAREN] = ACTIONS(6055), + [anon_sym_GT_LPAREN] = ACTIONS(6055), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6864), + [sym_word] = ACTIONS(6934), }, [2874] = { - [sym_file_descriptor] = ACTIONS(5995), - [sym__concat] = ACTIONS(5995), - [sym_variable_name] = ACTIONS(5995), - [anon_sym_LT] = ACTIONS(6866), - [anon_sym_GT] = ACTIONS(6866), - [anon_sym_GT_GT] = ACTIONS(5995), - [anon_sym_AMP_GT] = ACTIONS(6866), - [anon_sym_AMP_GT_GT] = ACTIONS(5995), - [anon_sym_LT_AMP] = ACTIONS(5995), - [anon_sym_GT_AMP] = ACTIONS(5995), - [sym__special_characters] = ACTIONS(6866), - [anon_sym_DQUOTE] = ACTIONS(5995), - [anon_sym_DOLLAR] = ACTIONS(6866), - [sym_raw_string] = ACTIONS(5995), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5995), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5995), - [anon_sym_BQUOTE] = ACTIONS(5995), - [anon_sym_LT_LPAREN] = ACTIONS(5995), - [anon_sym_GT_LPAREN] = ACTIONS(5995), + [sym_file_descriptor] = ACTIONS(6059), + [sym__concat] = ACTIONS(6059), + [sym_variable_name] = ACTIONS(6059), + [anon_sym_LT] = ACTIONS(6936), + [anon_sym_GT] = ACTIONS(6936), + [anon_sym_GT_GT] = ACTIONS(6059), + [anon_sym_AMP_GT] = ACTIONS(6936), + [anon_sym_AMP_GT_GT] = ACTIONS(6059), + [anon_sym_LT_AMP] = ACTIONS(6059), + [anon_sym_GT_AMP] = ACTIONS(6059), + [sym__special_characters] = ACTIONS(6936), + [anon_sym_DQUOTE] = ACTIONS(6059), + [anon_sym_DOLLAR] = ACTIONS(6936), + [sym_raw_string] = ACTIONS(6059), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6059), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6059), + [anon_sym_BQUOTE] = ACTIONS(6059), + [anon_sym_LT_LPAREN] = ACTIONS(6059), + [anon_sym_GT_LPAREN] = ACTIONS(6059), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6866), + [sym_word] = ACTIONS(6936), }, [2875] = { - [sym__concat] = ACTIONS(5961), - [anon_sym_DQUOTE] = ACTIONS(5963), - [anon_sym_DOLLAR] = ACTIONS(5963), - [sym__string_content] = ACTIONS(6846), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5963), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5963), - [anon_sym_BQUOTE] = ACTIONS(5963), + [sym__concat] = ACTIONS(6025), + [anon_sym_DQUOTE] = ACTIONS(6027), + [anon_sym_DOLLAR] = ACTIONS(6027), + [sym__string_content] = ACTIONS(6916), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6027), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6027), + [anon_sym_BQUOTE] = ACTIONS(6027), [sym_comment] = ACTIONS(182), }, [2876] = { - [sym__concat] = ACTIONS(5965), - [anon_sym_DQUOTE] = ACTIONS(5967), - [anon_sym_DOLLAR] = ACTIONS(5967), - [sym__string_content] = ACTIONS(6848), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5967), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5967), - [anon_sym_BQUOTE] = ACTIONS(5967), + [sym__concat] = ACTIONS(6029), + [anon_sym_DQUOTE] = ACTIONS(6031), + [anon_sym_DOLLAR] = ACTIONS(6031), + [sym__string_content] = ACTIONS(6918), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6031), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6031), + [anon_sym_BQUOTE] = ACTIONS(6031), [sym_comment] = ACTIONS(182), }, [2877] = { - [sym__concat] = ACTIONS(5969), - [anon_sym_DQUOTE] = ACTIONS(5971), - [anon_sym_DOLLAR] = ACTIONS(5971), - [sym__string_content] = ACTIONS(6850), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5971), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5971), - [anon_sym_BQUOTE] = ACTIONS(5971), + [sym__concat] = ACTIONS(6033), + [anon_sym_DQUOTE] = ACTIONS(6035), + [anon_sym_DOLLAR] = ACTIONS(6035), + [sym__string_content] = ACTIONS(6920), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6035), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6035), + [anon_sym_BQUOTE] = ACTIONS(6035), [sym_comment] = ACTIONS(182), }, [2878] = { - [sym__concat] = ACTIONS(5973), - [anon_sym_DQUOTE] = ACTIONS(5975), - [anon_sym_DOLLAR] = ACTIONS(5975), - [sym__string_content] = ACTIONS(6852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5975), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5975), - [anon_sym_BQUOTE] = ACTIONS(5975), + [sym__concat] = ACTIONS(6037), + [anon_sym_DQUOTE] = ACTIONS(6039), + [anon_sym_DOLLAR] = ACTIONS(6039), + [sym__string_content] = ACTIONS(6922), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6039), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6039), + [anon_sym_BQUOTE] = ACTIONS(6039), [sym_comment] = ACTIONS(182), }, [2879] = { @@ -75008,34 +75334,34 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6892), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6962), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2880] = { - [sym__concat] = ACTIONS(5979), - [anon_sym_DQUOTE] = ACTIONS(5981), - [anon_sym_DOLLAR] = ACTIONS(5981), - [sym__string_content] = ACTIONS(6856), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5981), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5981), - [anon_sym_BQUOTE] = ACTIONS(5981), + [sym__concat] = ACTIONS(6043), + [anon_sym_DQUOTE] = ACTIONS(6045), + [anon_sym_DOLLAR] = ACTIONS(6045), + [sym__string_content] = ACTIONS(6926), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6045), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6045), + [anon_sym_BQUOTE] = ACTIONS(6045), [sym_comment] = ACTIONS(182), }, [2881] = { @@ -75047,34 +75373,34 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [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), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6964), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2882] = { - [sym__concat] = ACTIONS(5985), - [anon_sym_DQUOTE] = ACTIONS(5987), - [anon_sym_DOLLAR] = ACTIONS(5987), - [sym__string_content] = ACTIONS(6860), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5987), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5987), - [anon_sym_BQUOTE] = ACTIONS(5987), + [sym__concat] = ACTIONS(6049), + [anon_sym_DQUOTE] = ACTIONS(6051), + [anon_sym_DOLLAR] = ACTIONS(6051), + [sym__string_content] = ACTIONS(6930), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6051), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6051), + [anon_sym_BQUOTE] = ACTIONS(6051), [sym_comment] = ACTIONS(182), }, [2883] = { @@ -75086,109 +75412,109 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6896), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6966), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2884] = { - [sym__concat] = ACTIONS(5991), - [anon_sym_DQUOTE] = ACTIONS(5993), - [anon_sym_DOLLAR] = ACTIONS(5993), - [sym__string_content] = ACTIONS(6864), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5993), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5993), - [anon_sym_BQUOTE] = ACTIONS(5993), + [sym__concat] = ACTIONS(6055), + [anon_sym_DQUOTE] = ACTIONS(6057), + [anon_sym_DOLLAR] = ACTIONS(6057), + [sym__string_content] = ACTIONS(6934), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6057), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6057), + [anon_sym_BQUOTE] = ACTIONS(6057), [sym_comment] = ACTIONS(182), }, [2885] = { - [sym__concat] = ACTIONS(5995), - [anon_sym_DQUOTE] = ACTIONS(5997), - [anon_sym_DOLLAR] = ACTIONS(5997), - [sym__string_content] = ACTIONS(6866), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5997), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5997), - [anon_sym_BQUOTE] = ACTIONS(5997), + [sym__concat] = ACTIONS(6059), + [anon_sym_DQUOTE] = ACTIONS(6061), + [anon_sym_DOLLAR] = ACTIONS(6061), + [sym__string_content] = ACTIONS(6936), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6061), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6061), + [anon_sym_BQUOTE] = ACTIONS(6061), [sym_comment] = ACTIONS(182), }, [2886] = { - [anon_sym_RBRACE] = ACTIONS(5317), - [anon_sym_EQ] = ACTIONS(6898), - [sym__special_characters] = ACTIONS(6900), - [anon_sym_DQUOTE] = ACTIONS(5317), - [anon_sym_DOLLAR] = ACTIONS(6898), - [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(6898), - [anon_sym_COLON_QMARK] = ACTIONS(6898), - [anon_sym_COLON_DASH] = ACTIONS(6898), - [anon_sym_PERCENT] = ACTIONS(6898), - [anon_sym_DASH] = ACTIONS(6898), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5317), - [anon_sym_BQUOTE] = ACTIONS(5317), - [anon_sym_LT_LPAREN] = ACTIONS(5317), - [anon_sym_GT_LPAREN] = ACTIONS(5317), + [anon_sym_RBRACE] = ACTIONS(5379), + [anon_sym_EQ] = ACTIONS(6968), + [sym__special_characters] = ACTIONS(6970), + [anon_sym_DQUOTE] = ACTIONS(5379), + [anon_sym_DOLLAR] = ACTIONS(6968), + [sym_raw_string] = ACTIONS(5379), + [anon_sym_POUND] = ACTIONS(5379), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5379), + [aux_sym_SLASH] = ACTIONS(5379), + [anon_sym_COLON] = ACTIONS(6968), + [anon_sym_COLON_QMARK] = ACTIONS(6968), + [anon_sym_COLON_DASH] = ACTIONS(6968), + [anon_sym_PERCENT] = ACTIONS(6968), + [anon_sym_DASH] = ACTIONS(6968), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5379), + [anon_sym_BQUOTE] = ACTIONS(5379), + [anon_sym_LT_LPAREN] = ACTIONS(5379), + [anon_sym_GT_LPAREN] = ACTIONS(5379), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6900), + [sym_word] = ACTIONS(6970), }, [2887] = { - [anon_sym_RBRACE] = ACTIONS(5319), - [anon_sym_EQ] = ACTIONS(6902), - [sym__special_characters] = ACTIONS(6904), - [anon_sym_DQUOTE] = ACTIONS(5319), - [anon_sym_DOLLAR] = ACTIONS(6902), - [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(6902), - [anon_sym_COLON_QMARK] = ACTIONS(6902), - [anon_sym_COLON_DASH] = ACTIONS(6902), - [anon_sym_PERCENT] = ACTIONS(6902), - [anon_sym_DASH] = ACTIONS(6902), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5319), - [anon_sym_BQUOTE] = ACTIONS(5319), - [anon_sym_LT_LPAREN] = ACTIONS(5319), - [anon_sym_GT_LPAREN] = ACTIONS(5319), + [anon_sym_RBRACE] = ACTIONS(5381), + [anon_sym_EQ] = ACTIONS(6972), + [sym__special_characters] = ACTIONS(6974), + [anon_sym_DQUOTE] = ACTIONS(5381), + [anon_sym_DOLLAR] = ACTIONS(6972), + [sym_raw_string] = ACTIONS(5381), + [anon_sym_POUND] = ACTIONS(5381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5381), + [aux_sym_SLASH] = ACTIONS(5381), + [anon_sym_COLON] = ACTIONS(6972), + [anon_sym_COLON_QMARK] = ACTIONS(6972), + [anon_sym_COLON_DASH] = ACTIONS(6972), + [anon_sym_PERCENT] = ACTIONS(6972), + [anon_sym_DASH] = ACTIONS(6972), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5381), + [anon_sym_BQUOTE] = ACTIONS(5381), + [anon_sym_LT_LPAREN] = ACTIONS(5381), + [anon_sym_GT_LPAREN] = ACTIONS(5381), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6904), + [sym_word] = ACTIONS(6974), }, [2888] = { - [sym__concat] = ACTIONS(3235), - [anon_sym_RBRACE] = ACTIONS(3235), + [sym__concat] = ACTIONS(3283), + [anon_sym_RBRACE] = ACTIONS(3283), [sym_comment] = ACTIONS(56), }, [2889] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(6906), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(6976), [sym_comment] = ACTIONS(56), }, [2890] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(6908), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(6978), [sym_comment] = ACTIONS(56), }, [2891] = { - [anon_sym_RBRACE] = ACTIONS(6908), + [anon_sym_RBRACE] = ACTIONS(6978), [sym_comment] = ACTIONS(56), }, [2892] = { @@ -75200,29 +75526,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3442), - [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), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6980), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2893] = { - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(3297), + [sym__concat] = ACTIONS(3347), + [anon_sym_RBRACE] = ACTIONS(3347), [sym_comment] = ACTIONS(56), }, [2894] = { @@ -75233,27 +75559,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(3444), [sym_command_substitution] = STATE(3444), [sym_process_substitution] = STATE(3444), - [anon_sym_RBRACE] = ACTIONS(6908), - [sym__special_characters] = ACTIONS(6912), - [anon_sym_DQUOTE] = ACTIONS(1924), - [anon_sym_DOLLAR] = ACTIONS(1926), - [sym_raw_string] = ACTIONS(6914), - [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), + [anon_sym_RBRACE] = ACTIONS(6978), + [sym__special_characters] = ACTIONS(6982), + [anon_sym_DQUOTE] = ACTIONS(1952), + [anon_sym_DOLLAR] = ACTIONS(1954), + [sym_raw_string] = ACTIONS(6984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), + [anon_sym_BQUOTE] = ACTIONS(1962), + [anon_sym_LT_LPAREN] = ACTIONS(1964), + [anon_sym_GT_LPAREN] = ACTIONS(1964), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6916), + [sym_word] = ACTIONS(6986), }, [2895] = { - [sym__concat] = ACTIONS(3342), - [anon_sym_RBRACE] = ACTIONS(3342), + [sym__concat] = ACTIONS(3392), + [anon_sym_RBRACE] = ACTIONS(3392), [sym_comment] = ACTIONS(56), }, [2896] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6918), + [sym_regex_without_right_brace] = ACTIONS(6988), }, [2897] = { [sym_concatenation] = STATE(451), @@ -75264,34 +75590,34 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6920), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6990), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2898] = { - [sym__concat] = ACTIONS(3350), - [anon_sym_RBRACE] = ACTIONS(3350), + [sym__concat] = ACTIONS(3400), + [anon_sym_RBRACE] = ACTIONS(3400), [sym_comment] = ACTIONS(56), }, [2899] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6922), + [sym_regex_without_right_brace] = ACTIONS(6992), }, [2900] = { [sym_concatenation] = STATE(451), @@ -75302,29 +75628,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6924), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6994), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2901] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6926), + [sym_regex_without_right_brace] = ACTIONS(6996), }, [2902] = { [sym_concatenation] = STATE(451), @@ -75335,25 +75661,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6908), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(6978), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2903] = { [sym_concatenation] = STATE(451), @@ -75364,29 +75690,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3452), - [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), + [anon_sym_RBRACE] = ACTIONS(6998), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2904] = { - [sym__concat] = ACTIONS(3362), - [anon_sym_RBRACE] = ACTIONS(3362), + [sym__concat] = ACTIONS(3412), + [anon_sym_RBRACE] = ACTIONS(3412), [sym_comment] = ACTIONS(56), }, [2905] = { @@ -75398,91 +75724,91 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3454), - [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), + [anon_sym_RBRACE] = ACTIONS(7000), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2906] = { - [sym__concat] = ACTIONS(4728), - [anon_sym_RBRACE] = ACTIONS(4728), - [anon_sym_EQ] = ACTIONS(5780), - [sym__special_characters] = ACTIONS(4730), - [anon_sym_DQUOTE] = ACTIONS(4728), - [anon_sym_DOLLAR] = ACTIONS(5780), - [sym_raw_string] = ACTIONS(4728), - [anon_sym_POUND] = ACTIONS(4728), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4728), - [anon_sym_COLON] = ACTIONS(5780), - [anon_sym_COLON_QMARK] = ACTIONS(5780), - [anon_sym_COLON_DASH] = ACTIONS(5780), - [anon_sym_PERCENT] = ACTIONS(5780), - [anon_sym_DASH] = ACTIONS(5780), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4728), - [anon_sym_BQUOTE] = ACTIONS(4728), - [anon_sym_LT_LPAREN] = ACTIONS(4728), - [anon_sym_GT_LPAREN] = ACTIONS(4728), + [sym__concat] = ACTIONS(4790), + [anon_sym_RBRACE] = ACTIONS(4790), + [anon_sym_EQ] = ACTIONS(5844), + [sym__special_characters] = ACTIONS(4792), + [anon_sym_DQUOTE] = ACTIONS(4790), + [anon_sym_DOLLAR] = ACTIONS(5844), + [sym_raw_string] = ACTIONS(4790), + [anon_sym_POUND] = ACTIONS(4790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4790), + [anon_sym_COLON] = ACTIONS(5844), + [anon_sym_COLON_QMARK] = ACTIONS(5844), + [anon_sym_COLON_DASH] = ACTIONS(5844), + [anon_sym_PERCENT] = ACTIONS(5844), + [anon_sym_DASH] = ACTIONS(5844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4790), + [anon_sym_BQUOTE] = ACTIONS(4790), + [anon_sym_LT_LPAREN] = ACTIONS(4790), + [anon_sym_GT_LPAREN] = ACTIONS(4790), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4730), + [sym_word] = ACTIONS(4792), }, [2907] = { - [sym__concat] = ACTIONS(4734), - [anon_sym_RBRACE] = ACTIONS(4734), - [anon_sym_EQ] = ACTIONS(5782), - [sym__special_characters] = ACTIONS(4736), - [anon_sym_DQUOTE] = ACTIONS(4734), - [anon_sym_DOLLAR] = ACTIONS(5782), - [sym_raw_string] = ACTIONS(4734), - [anon_sym_POUND] = ACTIONS(4734), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4734), - [anon_sym_COLON] = ACTIONS(5782), - [anon_sym_COLON_QMARK] = ACTIONS(5782), - [anon_sym_COLON_DASH] = ACTIONS(5782), - [anon_sym_PERCENT] = ACTIONS(5782), - [anon_sym_DASH] = ACTIONS(5782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4734), - [anon_sym_BQUOTE] = ACTIONS(4734), - [anon_sym_LT_LPAREN] = ACTIONS(4734), - [anon_sym_GT_LPAREN] = ACTIONS(4734), + [sym__concat] = ACTIONS(4796), + [anon_sym_RBRACE] = ACTIONS(4796), + [anon_sym_EQ] = ACTIONS(5846), + [sym__special_characters] = ACTIONS(4798), + [anon_sym_DQUOTE] = ACTIONS(4796), + [anon_sym_DOLLAR] = ACTIONS(5846), + [sym_raw_string] = ACTIONS(4796), + [anon_sym_POUND] = ACTIONS(4796), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4796), + [anon_sym_COLON] = ACTIONS(5846), + [anon_sym_COLON_QMARK] = ACTIONS(5846), + [anon_sym_COLON_DASH] = ACTIONS(5846), + [anon_sym_PERCENT] = ACTIONS(5846), + [anon_sym_DASH] = ACTIONS(5846), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4796), + [anon_sym_BQUOTE] = ACTIONS(4796), + [anon_sym_LT_LPAREN] = ACTIONS(4796), + [anon_sym_GT_LPAREN] = ACTIONS(4796), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4736), + [sym_word] = ACTIONS(4798), }, [2908] = { - [sym__concat] = ACTIONS(4797), - [anon_sym_RBRACE] = ACTIONS(4797), - [anon_sym_EQ] = ACTIONS(5784), - [sym__special_characters] = ACTIONS(4799), - [anon_sym_DQUOTE] = ACTIONS(4797), - [anon_sym_DOLLAR] = ACTIONS(5784), - [sym_raw_string] = ACTIONS(4797), - [anon_sym_POUND] = ACTIONS(4797), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4797), - [anon_sym_COLON] = ACTIONS(5784), - [anon_sym_COLON_QMARK] = ACTIONS(5784), - [anon_sym_COLON_DASH] = ACTIONS(5784), - [anon_sym_PERCENT] = ACTIONS(5784), - [anon_sym_DASH] = ACTIONS(5784), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4797), - [anon_sym_BQUOTE] = ACTIONS(4797), - [anon_sym_LT_LPAREN] = ACTIONS(4797), - [anon_sym_GT_LPAREN] = ACTIONS(4797), + [sym__concat] = ACTIONS(4859), + [anon_sym_RBRACE] = ACTIONS(4859), + [anon_sym_EQ] = ACTIONS(5848), + [sym__special_characters] = ACTIONS(4861), + [anon_sym_DQUOTE] = ACTIONS(4859), + [anon_sym_DOLLAR] = ACTIONS(5848), + [sym_raw_string] = ACTIONS(4859), + [anon_sym_POUND] = ACTIONS(4859), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4859), + [anon_sym_COLON] = ACTIONS(5848), + [anon_sym_COLON_QMARK] = ACTIONS(5848), + [anon_sym_COLON_DASH] = ACTIONS(5848), + [anon_sym_PERCENT] = ACTIONS(5848), + [anon_sym_DASH] = ACTIONS(5848), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4859), + [anon_sym_BQUOTE] = ACTIONS(4859), + [anon_sym_LT_LPAREN] = ACTIONS(4859), + [anon_sym_GT_LPAREN] = ACTIONS(4859), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4799), + [sym_word] = ACTIONS(4861), }, [2909] = { [sym_concatenation] = STATE(451), @@ -75493,40 +75819,40 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(7002), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2910] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(6934), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(7004), [sym_comment] = ACTIONS(56), }, [2911] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(6936), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(7006), [sym_comment] = ACTIONS(56), }, [2912] = { - [anon_sym_RBRACE] = ACTIONS(6936), + [anon_sym_RBRACE] = ACTIONS(7006), [sym_comment] = ACTIONS(56), }, [2913] = { @@ -75538,47 +75864,47 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3459), - [anon_sym_RBRACE] = ACTIONS(6938), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7008), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2914] = { - [sym__concat] = ACTIONS(4809), - [anon_sym_RBRACE] = ACTIONS(4809), - [anon_sym_EQ] = ACTIONS(5794), - [sym__special_characters] = ACTIONS(4811), - [anon_sym_DQUOTE] = ACTIONS(4809), - [anon_sym_DOLLAR] = ACTIONS(5794), - [sym_raw_string] = ACTIONS(4809), - [anon_sym_POUND] = ACTIONS(4809), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4809), - [anon_sym_COLON] = ACTIONS(5794), - [anon_sym_COLON_QMARK] = ACTIONS(5794), - [anon_sym_COLON_DASH] = ACTIONS(5794), - [anon_sym_PERCENT] = ACTIONS(5794), - [anon_sym_DASH] = ACTIONS(5794), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4809), - [anon_sym_BQUOTE] = ACTIONS(4809), - [anon_sym_LT_LPAREN] = ACTIONS(4809), - [anon_sym_GT_LPAREN] = ACTIONS(4809), + [sym__concat] = ACTIONS(4871), + [anon_sym_RBRACE] = ACTIONS(4871), + [anon_sym_EQ] = ACTIONS(5858), + [sym__special_characters] = ACTIONS(4873), + [anon_sym_DQUOTE] = ACTIONS(4871), + [anon_sym_DOLLAR] = ACTIONS(5858), + [sym_raw_string] = ACTIONS(4871), + [anon_sym_POUND] = ACTIONS(4871), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4871), + [anon_sym_COLON] = ACTIONS(5858), + [anon_sym_COLON_QMARK] = ACTIONS(5858), + [anon_sym_COLON_DASH] = ACTIONS(5858), + [anon_sym_PERCENT] = ACTIONS(5858), + [anon_sym_DASH] = ACTIONS(5858), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4871), + [anon_sym_BQUOTE] = ACTIONS(4871), + [anon_sym_LT_LPAREN] = ACTIONS(4871), + [anon_sym_GT_LPAREN] = ACTIONS(4871), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4811), + [sym_word] = ACTIONS(4873), }, [2915] = { [sym_concatenation] = STATE(451), @@ -75589,47 +75915,47 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3461), - [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), + [anon_sym_RBRACE] = ACTIONS(7010), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2916] = { - [sym__concat] = ACTIONS(4815), - [anon_sym_RBRACE] = ACTIONS(4815), - [anon_sym_EQ] = ACTIONS(5798), - [sym__special_characters] = ACTIONS(4817), - [anon_sym_DQUOTE] = ACTIONS(4815), - [anon_sym_DOLLAR] = ACTIONS(5798), - [sym_raw_string] = ACTIONS(4815), - [anon_sym_POUND] = ACTIONS(4815), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4815), - [anon_sym_COLON] = ACTIONS(5798), - [anon_sym_COLON_QMARK] = ACTIONS(5798), - [anon_sym_COLON_DASH] = ACTIONS(5798), - [anon_sym_PERCENT] = ACTIONS(5798), - [anon_sym_DASH] = ACTIONS(5798), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4815), - [anon_sym_BQUOTE] = ACTIONS(4815), - [anon_sym_LT_LPAREN] = ACTIONS(4815), - [anon_sym_GT_LPAREN] = ACTIONS(4815), + [sym__concat] = ACTIONS(4877), + [anon_sym_RBRACE] = ACTIONS(4877), + [anon_sym_EQ] = ACTIONS(5862), + [sym__special_characters] = ACTIONS(4879), + [anon_sym_DQUOTE] = ACTIONS(4877), + [anon_sym_DOLLAR] = ACTIONS(5862), + [sym_raw_string] = ACTIONS(4877), + [anon_sym_POUND] = ACTIONS(4877), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4877), + [anon_sym_COLON] = ACTIONS(5862), + [anon_sym_COLON_QMARK] = ACTIONS(5862), + [anon_sym_COLON_DASH] = ACTIONS(5862), + [anon_sym_PERCENT] = ACTIONS(5862), + [anon_sym_DASH] = ACTIONS(5862), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4877), + [anon_sym_BQUOTE] = ACTIONS(4877), + [anon_sym_LT_LPAREN] = ACTIONS(4877), + [anon_sym_GT_LPAREN] = ACTIONS(4877), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4817), + [sym_word] = ACTIONS(4879), }, [2917] = { [sym_concatenation] = STATE(451), @@ -75640,47 +75966,47 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3463), - [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), + [anon_sym_RBRACE] = ACTIONS(7012), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2918] = { - [sym__concat] = ACTIONS(4821), - [anon_sym_RBRACE] = ACTIONS(4821), - [anon_sym_EQ] = ACTIONS(5802), - [sym__special_characters] = ACTIONS(4823), - [anon_sym_DQUOTE] = ACTIONS(4821), - [anon_sym_DOLLAR] = ACTIONS(5802), - [sym_raw_string] = ACTIONS(4821), - [anon_sym_POUND] = ACTIONS(4821), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4821), - [anon_sym_COLON] = ACTIONS(5802), - [anon_sym_COLON_QMARK] = ACTIONS(5802), - [anon_sym_COLON_DASH] = ACTIONS(5802), - [anon_sym_PERCENT] = ACTIONS(5802), - [anon_sym_DASH] = ACTIONS(5802), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4821), - [anon_sym_BQUOTE] = ACTIONS(4821), - [anon_sym_LT_LPAREN] = ACTIONS(4821), - [anon_sym_GT_LPAREN] = ACTIONS(4821), + [sym__concat] = ACTIONS(4883), + [anon_sym_RBRACE] = ACTIONS(4883), + [anon_sym_EQ] = ACTIONS(5866), + [sym__special_characters] = ACTIONS(4885), + [anon_sym_DQUOTE] = ACTIONS(4883), + [anon_sym_DOLLAR] = ACTIONS(5866), + [sym_raw_string] = ACTIONS(4883), + [anon_sym_POUND] = ACTIONS(4883), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4883), + [anon_sym_COLON] = ACTIONS(5866), + [anon_sym_COLON_QMARK] = ACTIONS(5866), + [anon_sym_COLON_DASH] = ACTIONS(5866), + [anon_sym_PERCENT] = ACTIONS(5866), + [anon_sym_DASH] = ACTIONS(5866), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4883), + [anon_sym_BQUOTE] = ACTIONS(4883), + [anon_sym_LT_LPAREN] = ACTIONS(4883), + [anon_sym_GT_LPAREN] = ACTIONS(4883), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4823), + [sym_word] = ACTIONS(4885), }, [2919] = { [sym_concatenation] = STATE(451), @@ -75691,47 +76017,47 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6944), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7014), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2920] = { - [sym__concat] = ACTIONS(4827), - [anon_sym_RBRACE] = ACTIONS(4827), - [anon_sym_EQ] = ACTIONS(5806), - [sym__special_characters] = ACTIONS(4829), - [anon_sym_DQUOTE] = ACTIONS(4827), - [anon_sym_DOLLAR] = ACTIONS(5806), - [sym_raw_string] = ACTIONS(4827), - [anon_sym_POUND] = ACTIONS(4827), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4827), - [anon_sym_COLON] = ACTIONS(5806), - [anon_sym_COLON_QMARK] = ACTIONS(5806), - [anon_sym_COLON_DASH] = ACTIONS(5806), - [anon_sym_PERCENT] = ACTIONS(5806), - [anon_sym_DASH] = ACTIONS(5806), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4827), - [anon_sym_BQUOTE] = ACTIONS(4827), - [anon_sym_LT_LPAREN] = ACTIONS(4827), - [anon_sym_GT_LPAREN] = ACTIONS(4827), + [sym__concat] = ACTIONS(4889), + [anon_sym_RBRACE] = ACTIONS(4889), + [anon_sym_EQ] = ACTIONS(5870), + [sym__special_characters] = ACTIONS(4891), + [anon_sym_DQUOTE] = ACTIONS(4889), + [anon_sym_DOLLAR] = ACTIONS(5870), + [sym_raw_string] = ACTIONS(4889), + [anon_sym_POUND] = ACTIONS(4889), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4889), + [anon_sym_COLON] = ACTIONS(5870), + [anon_sym_COLON_QMARK] = ACTIONS(5870), + [anon_sym_COLON_DASH] = ACTIONS(5870), + [anon_sym_PERCENT] = ACTIONS(5870), + [anon_sym_DASH] = ACTIONS(5870), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4889), + [anon_sym_BQUOTE] = ACTIONS(4889), + [anon_sym_LT_LPAREN] = ACTIONS(4889), + [anon_sym_GT_LPAREN] = ACTIONS(4889), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4829), + [sym_word] = ACTIONS(4891), }, [2921] = { [sym_concatenation] = STATE(451), @@ -75742,170 +76068,173 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(7016), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2922] = { - [sym_file_descriptor] = ACTIONS(6948), - [sym__concat] = ACTIONS(6948), - [anon_sym_PIPE] = ACTIONS(6950), - [anon_sym_SEMI_SEMI] = ACTIONS(6950), - [anon_sym_PIPE_AMP] = ACTIONS(6950), - [anon_sym_AMP_AMP] = ACTIONS(6950), - [anon_sym_PIPE_PIPE] = ACTIONS(6950), - [anon_sym_EQ_TILDE] = ACTIONS(6950), - [anon_sym_LT] = ACTIONS(6950), - [anon_sym_GT] = ACTIONS(6950), - [anon_sym_GT_GT] = ACTIONS(6950), - [anon_sym_AMP_GT] = ACTIONS(6950), - [anon_sym_AMP_GT_GT] = ACTIONS(6950), - [anon_sym_LT_AMP] = ACTIONS(6950), - [anon_sym_GT_AMP] = ACTIONS(6950), - [anon_sym_LT_LT] = ACTIONS(6950), - [anon_sym_LT_LT_DASH] = ACTIONS(6950), - [anon_sym_LT_LT_LT] = ACTIONS(6950), - [sym__special_characters] = ACTIONS(6950), - [anon_sym_DQUOTE] = ACTIONS(6950), - [anon_sym_DOLLAR] = ACTIONS(6950), - [sym_raw_string] = ACTIONS(6950), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6950), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6950), - [anon_sym_BQUOTE] = ACTIONS(6950), - [anon_sym_LT_LPAREN] = ACTIONS(6950), - [anon_sym_GT_LPAREN] = ACTIONS(6950), + [sym_file_descriptor] = ACTIONS(7018), + [sym__concat] = ACTIONS(7018), + [anon_sym_PIPE] = ACTIONS(7020), + [anon_sym_SEMI_SEMI] = ACTIONS(7020), + [anon_sym_PIPE_AMP] = ACTIONS(7020), + [anon_sym_AMP_AMP] = ACTIONS(7020), + [anon_sym_PIPE_PIPE] = ACTIONS(7020), + [anon_sym_EQ_TILDE] = ACTIONS(7020), + [anon_sym_EQ_EQ] = ACTIONS(7020), + [anon_sym_LT] = ACTIONS(7020), + [anon_sym_GT] = ACTIONS(7020), + [anon_sym_GT_GT] = ACTIONS(7020), + [anon_sym_AMP_GT] = ACTIONS(7020), + [anon_sym_AMP_GT_GT] = ACTIONS(7020), + [anon_sym_LT_AMP] = ACTIONS(7020), + [anon_sym_GT_AMP] = ACTIONS(7020), + [anon_sym_LT_LT] = ACTIONS(7020), + [anon_sym_LT_LT_DASH] = ACTIONS(7020), + [anon_sym_LT_LT_LT] = ACTIONS(7020), + [sym__special_characters] = ACTIONS(7020), + [anon_sym_DQUOTE] = ACTIONS(7020), + [anon_sym_DOLLAR] = ACTIONS(7020), + [sym_raw_string] = ACTIONS(7020), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7020), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7020), + [anon_sym_BQUOTE] = ACTIONS(7020), + [anon_sym_LT_LPAREN] = ACTIONS(7020), + [anon_sym_GT_LPAREN] = ACTIONS(7020), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6950), - [anon_sym_SEMI] = ACTIONS(6950), - [anon_sym_LF] = ACTIONS(6950), - [anon_sym_AMP] = ACTIONS(6950), + [sym_word] = ACTIONS(7020), + [anon_sym_SEMI] = ACTIONS(7020), + [anon_sym_LF] = ACTIONS(7020), + [anon_sym_AMP] = ACTIONS(7020), }, [2923] = { - [sym_file_descriptor] = ACTIONS(6952), - [sym__concat] = ACTIONS(6952), - [anon_sym_PIPE] = ACTIONS(6954), - [anon_sym_SEMI_SEMI] = ACTIONS(6954), - [anon_sym_PIPE_AMP] = ACTIONS(6954), - [anon_sym_AMP_AMP] = ACTIONS(6954), - [anon_sym_PIPE_PIPE] = ACTIONS(6954), - [anon_sym_EQ_TILDE] = ACTIONS(6954), - [anon_sym_LT] = ACTIONS(6954), - [anon_sym_GT] = ACTIONS(6954), - [anon_sym_GT_GT] = ACTIONS(6954), - [anon_sym_AMP_GT] = ACTIONS(6954), - [anon_sym_AMP_GT_GT] = ACTIONS(6954), - [anon_sym_LT_AMP] = ACTIONS(6954), - [anon_sym_GT_AMP] = ACTIONS(6954), - [anon_sym_LT_LT] = ACTIONS(6954), - [anon_sym_LT_LT_DASH] = ACTIONS(6954), - [anon_sym_LT_LT_LT] = ACTIONS(6954), - [sym__special_characters] = ACTIONS(6954), - [anon_sym_DQUOTE] = ACTIONS(6954), - [anon_sym_DOLLAR] = ACTIONS(6954), - [sym_raw_string] = ACTIONS(6954), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6954), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6954), - [anon_sym_BQUOTE] = ACTIONS(6954), - [anon_sym_LT_LPAREN] = ACTIONS(6954), - [anon_sym_GT_LPAREN] = ACTIONS(6954), + [sym_file_descriptor] = ACTIONS(7022), + [sym__concat] = ACTIONS(7022), + [anon_sym_PIPE] = ACTIONS(7024), + [anon_sym_SEMI_SEMI] = ACTIONS(7024), + [anon_sym_PIPE_AMP] = ACTIONS(7024), + [anon_sym_AMP_AMP] = ACTIONS(7024), + [anon_sym_PIPE_PIPE] = ACTIONS(7024), + [anon_sym_EQ_TILDE] = ACTIONS(7024), + [anon_sym_EQ_EQ] = ACTIONS(7024), + [anon_sym_LT] = ACTIONS(7024), + [anon_sym_GT] = ACTIONS(7024), + [anon_sym_GT_GT] = ACTIONS(7024), + [anon_sym_AMP_GT] = ACTIONS(7024), + [anon_sym_AMP_GT_GT] = ACTIONS(7024), + [anon_sym_LT_AMP] = ACTIONS(7024), + [anon_sym_GT_AMP] = ACTIONS(7024), + [anon_sym_LT_LT] = ACTIONS(7024), + [anon_sym_LT_LT_DASH] = ACTIONS(7024), + [anon_sym_LT_LT_LT] = ACTIONS(7024), + [sym__special_characters] = ACTIONS(7024), + [anon_sym_DQUOTE] = ACTIONS(7024), + [anon_sym_DOLLAR] = ACTIONS(7024), + [sym_raw_string] = ACTIONS(7024), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7024), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7024), + [anon_sym_BQUOTE] = ACTIONS(7024), + [anon_sym_LT_LPAREN] = ACTIONS(7024), + [anon_sym_GT_LPAREN] = ACTIONS(7024), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6954), - [anon_sym_SEMI] = ACTIONS(6954), - [anon_sym_LF] = ACTIONS(6954), - [anon_sym_AMP] = ACTIONS(6954), + [sym_word] = ACTIONS(7024), + [anon_sym_SEMI] = ACTIONS(7024), + [anon_sym_LF] = ACTIONS(7024), + [anon_sym_AMP] = ACTIONS(7024), }, [2924] = { - [sym_file_descriptor] = ACTIONS(6956), - [sym__concat] = ACTIONS(6956), - [anon_sym_PIPE] = ACTIONS(6958), - [anon_sym_SEMI_SEMI] = ACTIONS(6958), - [anon_sym_PIPE_AMP] = ACTIONS(6958), - [anon_sym_AMP_AMP] = ACTIONS(6958), - [anon_sym_PIPE_PIPE] = ACTIONS(6958), - [anon_sym_EQ_TILDE] = ACTIONS(6958), - [anon_sym_LT] = ACTIONS(6958), - [anon_sym_GT] = ACTIONS(6958), - [anon_sym_GT_GT] = ACTIONS(6958), - [anon_sym_AMP_GT] = ACTIONS(6958), - [anon_sym_AMP_GT_GT] = ACTIONS(6958), - [anon_sym_LT_AMP] = ACTIONS(6958), - [anon_sym_GT_AMP] = ACTIONS(6958), - [anon_sym_LT_LT] = ACTIONS(6958), - [anon_sym_LT_LT_DASH] = ACTIONS(6958), - [anon_sym_LT_LT_LT] = ACTIONS(6958), - [sym__special_characters] = ACTIONS(6958), - [anon_sym_DQUOTE] = ACTIONS(6958), - [anon_sym_DOLLAR] = ACTIONS(6958), - [sym_raw_string] = ACTIONS(6958), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6958), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6958), - [anon_sym_BQUOTE] = ACTIONS(6958), - [anon_sym_LT_LPAREN] = ACTIONS(6958), - [anon_sym_GT_LPAREN] = ACTIONS(6958), + [sym_file_descriptor] = ACTIONS(7026), + [sym__concat] = ACTIONS(7026), + [anon_sym_PIPE] = ACTIONS(7028), + [anon_sym_SEMI_SEMI] = ACTIONS(7028), + [anon_sym_PIPE_AMP] = ACTIONS(7028), + [anon_sym_AMP_AMP] = ACTIONS(7028), + [anon_sym_PIPE_PIPE] = ACTIONS(7028), + [anon_sym_EQ_TILDE] = ACTIONS(7028), + [anon_sym_EQ_EQ] = ACTIONS(7028), + [anon_sym_LT] = ACTIONS(7028), + [anon_sym_GT] = ACTIONS(7028), + [anon_sym_GT_GT] = ACTIONS(7028), + [anon_sym_AMP_GT] = ACTIONS(7028), + [anon_sym_AMP_GT_GT] = ACTIONS(7028), + [anon_sym_LT_AMP] = ACTIONS(7028), + [anon_sym_GT_AMP] = ACTIONS(7028), + [anon_sym_LT_LT] = ACTIONS(7028), + [anon_sym_LT_LT_DASH] = ACTIONS(7028), + [anon_sym_LT_LT_LT] = ACTIONS(7028), + [sym__special_characters] = ACTIONS(7028), + [anon_sym_DQUOTE] = ACTIONS(7028), + [anon_sym_DOLLAR] = ACTIONS(7028), + [sym_raw_string] = ACTIONS(7028), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7028), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7028), + [anon_sym_BQUOTE] = ACTIONS(7028), + [anon_sym_LT_LPAREN] = ACTIONS(7028), + [anon_sym_GT_LPAREN] = ACTIONS(7028), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6958), - [anon_sym_SEMI] = ACTIONS(6958), - [anon_sym_LF] = ACTIONS(6958), - [anon_sym_AMP] = ACTIONS(6958), + [sym_word] = ACTIONS(7028), + [anon_sym_SEMI] = ACTIONS(7028), + [anon_sym_LF] = ACTIONS(7028), + [anon_sym_AMP] = ACTIONS(7028), }, [2925] = { - [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_file_descriptor] = ACTIONS(3283), + [sym__concat] = ACTIONS(3283), + [sym_variable_name] = ACTIONS(3283), + [anon_sym_PIPE] = ACTIONS(4602), + [anon_sym_RPAREN] = ACTIONS(3283), + [anon_sym_PIPE_AMP] = ACTIONS(3283), + [anon_sym_AMP_AMP] = ACTIONS(3283), + [anon_sym_PIPE_PIPE] = ACTIONS(3283), + [anon_sym_LT] = ACTIONS(4602), + [anon_sym_GT] = ACTIONS(4602), + [anon_sym_GT_GT] = ACTIONS(3283), + [anon_sym_AMP_GT] = ACTIONS(4602), + [anon_sym_AMP_GT_GT] = ACTIONS(3283), + [anon_sym_LT_AMP] = ACTIONS(3283), + [anon_sym_GT_AMP] = ACTIONS(3283), + [sym__special_characters] = ACTIONS(4602), + [anon_sym_DQUOTE] = ACTIONS(3283), + [anon_sym_DOLLAR] = ACTIONS(4602), + [sym_raw_string] = ACTIONS(3283), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3283), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3283), + [anon_sym_BQUOTE] = ACTIONS(3283), + [anon_sym_LT_LPAREN] = ACTIONS(3283), + [anon_sym_GT_LPAREN] = ACTIONS(3283), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4540), + [sym_word] = ACTIONS(4602), }, [2926] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(6960), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(7030), [sym_comment] = ACTIONS(56), }, [2927] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(6962), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(7032), [sym_comment] = ACTIONS(56), }, [2928] = { - [anon_sym_RBRACE] = ACTIONS(6962), + [anon_sym_RBRACE] = ACTIONS(7032), [sym_comment] = ACTIONS(56), }, [2929] = { @@ -75917,53 +76246,53 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3469), - [anon_sym_RBRACE] = ACTIONS(6964), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7034), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2930] = { - [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_file_descriptor] = ACTIONS(3347), + [sym__concat] = ACTIONS(3347), + [sym_variable_name] = ACTIONS(3347), + [anon_sym_PIPE] = ACTIONS(4610), + [anon_sym_RPAREN] = ACTIONS(3347), + [anon_sym_PIPE_AMP] = ACTIONS(3347), + [anon_sym_AMP_AMP] = ACTIONS(3347), + [anon_sym_PIPE_PIPE] = ACTIONS(3347), + [anon_sym_LT] = ACTIONS(4610), + [anon_sym_GT] = ACTIONS(4610), + [anon_sym_GT_GT] = ACTIONS(3347), + [anon_sym_AMP_GT] = ACTIONS(4610), + [anon_sym_AMP_GT_GT] = ACTIONS(3347), + [anon_sym_LT_AMP] = ACTIONS(3347), + [anon_sym_GT_AMP] = ACTIONS(3347), + [sym__special_characters] = ACTIONS(4610), + [anon_sym_DQUOTE] = ACTIONS(3347), + [anon_sym_DOLLAR] = ACTIONS(4610), + [sym_raw_string] = ACTIONS(3347), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3347), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3347), + [anon_sym_BQUOTE] = ACTIONS(3347), + [anon_sym_LT_LPAREN] = ACTIONS(3347), + [anon_sym_GT_LPAREN] = ACTIONS(3347), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4548), + [sym_word] = ACTIONS(4610), }, [2931] = { [sym_concatenation] = STATE(3472), @@ -75973,50 +76302,50 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(3471), [sym_command_substitution] = STATE(3471), [sym_process_substitution] = STATE(3471), - [anon_sym_RBRACE] = ACTIONS(6962), - [sym__special_characters] = ACTIONS(6966), - [anon_sym_DQUOTE] = ACTIONS(1924), - [anon_sym_DOLLAR] = ACTIONS(1926), - [sym_raw_string] = ACTIONS(6968), - [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), + [anon_sym_RBRACE] = ACTIONS(7032), + [sym__special_characters] = ACTIONS(7036), + [anon_sym_DQUOTE] = ACTIONS(1952), + [anon_sym_DOLLAR] = ACTIONS(1954), + [sym_raw_string] = ACTIONS(7038), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), + [anon_sym_BQUOTE] = ACTIONS(1962), + [anon_sym_LT_LPAREN] = ACTIONS(1964), + [anon_sym_GT_LPAREN] = ACTIONS(1964), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6970), + [sym_word] = ACTIONS(7040), }, [2932] = { - [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_file_descriptor] = ACTIONS(3392), + [sym__concat] = ACTIONS(3392), + [sym_variable_name] = ACTIONS(3392), + [anon_sym_PIPE] = ACTIONS(4618), + [anon_sym_RPAREN] = ACTIONS(3392), + [anon_sym_PIPE_AMP] = ACTIONS(3392), + [anon_sym_AMP_AMP] = ACTIONS(3392), + [anon_sym_PIPE_PIPE] = ACTIONS(3392), + [anon_sym_LT] = ACTIONS(4618), + [anon_sym_GT] = ACTIONS(4618), + [anon_sym_GT_GT] = ACTIONS(3392), + [anon_sym_AMP_GT] = ACTIONS(4618), + [anon_sym_AMP_GT_GT] = ACTIONS(3392), + [anon_sym_LT_AMP] = ACTIONS(3392), + [anon_sym_GT_AMP] = ACTIONS(3392), + [sym__special_characters] = ACTIONS(4618), + [anon_sym_DQUOTE] = ACTIONS(3392), + [anon_sym_DOLLAR] = ACTIONS(4618), + [sym_raw_string] = ACTIONS(3392), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3392), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3392), + [anon_sym_BQUOTE] = ACTIONS(3392), + [anon_sym_LT_LPAREN] = ACTIONS(3392), + [anon_sym_GT_LPAREN] = ACTIONS(3392), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4556), + [sym_word] = ACTIONS(4618), }, [2933] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6972), + [sym_regex_without_right_brace] = ACTIONS(7042), }, [2934] = { [sym_concatenation] = STATE(451), @@ -76027,57 +76356,57 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(7044), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2935] = { - [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_file_descriptor] = ACTIONS(3400), + [sym__concat] = ACTIONS(3400), + [sym_variable_name] = ACTIONS(3400), + [anon_sym_PIPE] = ACTIONS(4624), + [anon_sym_RPAREN] = ACTIONS(3400), + [anon_sym_PIPE_AMP] = ACTIONS(3400), + [anon_sym_AMP_AMP] = ACTIONS(3400), + [anon_sym_PIPE_PIPE] = ACTIONS(3400), + [anon_sym_LT] = ACTIONS(4624), + [anon_sym_GT] = ACTIONS(4624), + [anon_sym_GT_GT] = ACTIONS(3400), + [anon_sym_AMP_GT] = ACTIONS(4624), + [anon_sym_AMP_GT_GT] = ACTIONS(3400), + [anon_sym_LT_AMP] = ACTIONS(3400), + [anon_sym_GT_AMP] = ACTIONS(3400), + [sym__special_characters] = ACTIONS(4624), + [anon_sym_DQUOTE] = ACTIONS(3400), + [anon_sym_DOLLAR] = ACTIONS(4624), + [sym_raw_string] = ACTIONS(3400), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3400), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3400), + [anon_sym_BQUOTE] = ACTIONS(3400), + [anon_sym_LT_LPAREN] = ACTIONS(3400), + [anon_sym_GT_LPAREN] = ACTIONS(3400), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4562), + [sym_word] = ACTIONS(4624), }, [2936] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6976), + [sym_regex_without_right_brace] = ACTIONS(7046), }, [2937] = { [sym_concatenation] = STATE(451), @@ -76088,29 +76417,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6978), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7048), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2938] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6980), + [sym_regex_without_right_brace] = ACTIONS(7050), }, [2939] = { [sym_concatenation] = STATE(451), @@ -76121,25 +76450,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6962), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7032), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2940] = { [sym_concatenation] = STATE(451), @@ -76150,53 +76479,53 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3479), - [anon_sym_RBRACE] = ACTIONS(6982), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7052), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2941] = { - [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_file_descriptor] = ACTIONS(3412), + [sym__concat] = ACTIONS(3412), + [sym_variable_name] = ACTIONS(3412), + [anon_sym_PIPE] = ACTIONS(4634), + [anon_sym_RPAREN] = ACTIONS(3412), + [anon_sym_PIPE_AMP] = ACTIONS(3412), + [anon_sym_AMP_AMP] = ACTIONS(3412), + [anon_sym_PIPE_PIPE] = ACTIONS(3412), + [anon_sym_LT] = ACTIONS(4634), + [anon_sym_GT] = ACTIONS(4634), + [anon_sym_GT_GT] = ACTIONS(3412), + [anon_sym_AMP_GT] = ACTIONS(4634), + [anon_sym_AMP_GT_GT] = ACTIONS(3412), + [anon_sym_LT_AMP] = ACTIONS(3412), + [anon_sym_GT_AMP] = ACTIONS(3412), + [sym__special_characters] = ACTIONS(4634), + [anon_sym_DQUOTE] = ACTIONS(3412), + [anon_sym_DOLLAR] = ACTIONS(4634), + [sym_raw_string] = ACTIONS(3412), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3412), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3412), + [anon_sym_BQUOTE] = ACTIONS(3412), + [anon_sym_LT_LPAREN] = ACTIONS(3412), + [anon_sym_GT_LPAREN] = ACTIONS(3412), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4572), + [sym_word] = ACTIONS(4634), }, [2942] = { [sym_concatenation] = STATE(451), @@ -76207,25 +76536,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3481), - [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), + [anon_sym_RBRACE] = ACTIONS(7054), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2943] = { [sym__terminated_statement] = STATE(691), @@ -76258,7 +76587,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(12), [anon_sym_for] = ACTIONS(16), [anon_sym_while] = ACTIONS(18), - [anon_sym_done] = ACTIONS(6986), + [anon_sym_done] = ACTIONS(7056), [anon_sym_if] = ACTIONS(20), [anon_sym_case] = ACTIONS(22), [anon_sym_function] = ACTIONS(24), @@ -76292,47 +76621,47 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(58), }, [2944] = { - [anon_sym_PIPE] = ACTIONS(6988), - [anon_sym_RPAREN] = ACTIONS(6990), - [anon_sym_PIPE_AMP] = ACTIONS(6990), - [anon_sym_AMP_AMP] = ACTIONS(6990), - [anon_sym_PIPE_PIPE] = ACTIONS(6990), - [anon_sym_BQUOTE] = ACTIONS(6990), + [anon_sym_PIPE] = ACTIONS(7058), + [anon_sym_RPAREN] = ACTIONS(7060), + [anon_sym_PIPE_AMP] = ACTIONS(7060), + [anon_sym_AMP_AMP] = ACTIONS(7060), + [anon_sym_PIPE_PIPE] = ACTIONS(7060), + [anon_sym_BQUOTE] = ACTIONS(7060), [sym_comment] = ACTIONS(56), }, [2945] = { - [anon_sym_PIPE] = ACTIONS(6992), - [anon_sym_RPAREN] = ACTIONS(6994), - [anon_sym_PIPE_AMP] = ACTIONS(6994), - [anon_sym_AMP_AMP] = ACTIONS(6994), - [anon_sym_PIPE_PIPE] = ACTIONS(6994), - [anon_sym_BQUOTE] = ACTIONS(6994), + [anon_sym_PIPE] = ACTIONS(7062), + [anon_sym_RPAREN] = ACTIONS(7064), + [anon_sym_PIPE_AMP] = ACTIONS(7064), + [anon_sym_AMP_AMP] = ACTIONS(7064), + [anon_sym_PIPE_PIPE] = ACTIONS(7064), + [anon_sym_BQUOTE] = ACTIONS(7064), [sym_comment] = ACTIONS(56), }, [2946] = { - [anon_sym_fi] = ACTIONS(6996), + [anon_sym_fi] = ACTIONS(7066), [sym_comment] = ACTIONS(56), }, [2947] = { - [anon_sym_PIPE] = ACTIONS(6998), - [anon_sym_RPAREN] = ACTIONS(7000), - [anon_sym_PIPE_AMP] = ACTIONS(7000), - [anon_sym_AMP_AMP] = ACTIONS(7000), - [anon_sym_PIPE_PIPE] = ACTIONS(7000), - [anon_sym_BQUOTE] = ACTIONS(7000), + [anon_sym_PIPE] = ACTIONS(7068), + [anon_sym_RPAREN] = ACTIONS(7070), + [anon_sym_PIPE_AMP] = ACTIONS(7070), + [anon_sym_AMP_AMP] = ACTIONS(7070), + [anon_sym_PIPE_PIPE] = ACTIONS(7070), + [anon_sym_BQUOTE] = ACTIONS(7070), [sym_comment] = ACTIONS(56), }, [2948] = { - [anon_sym_esac] = ACTIONS(7002), + [anon_sym_esac] = ACTIONS(7072), [sym_comment] = ACTIONS(56), }, [2949] = { - [anon_sym_PIPE] = ACTIONS(7004), - [anon_sym_RPAREN] = ACTIONS(7006), - [anon_sym_PIPE_AMP] = ACTIONS(7006), - [anon_sym_AMP_AMP] = ACTIONS(7006), - [anon_sym_PIPE_PIPE] = ACTIONS(7006), - [anon_sym_BQUOTE] = ACTIONS(7006), + [anon_sym_PIPE] = ACTIONS(7074), + [anon_sym_RPAREN] = ACTIONS(7076), + [anon_sym_PIPE_AMP] = ACTIONS(7076), + [anon_sym_AMP_AMP] = ACTIONS(7076), + [anon_sym_PIPE_PIPE] = ACTIONS(7076), + [anon_sym_BQUOTE] = ACTIONS(7076), [sym_comment] = ACTIONS(56), }, [2950] = { @@ -76346,38 +76675,38 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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__special_characters] = ACTIONS(2697), + [anon_sym_DQUOTE] = ACTIONS(2699), + [anon_sym_DOLLAR] = ACTIONS(2701), + [sym_raw_string] = ACTIONS(2703), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2705), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2707), + [anon_sym_BQUOTE] = ACTIONS(2709), + [anon_sym_LT_LPAREN] = ACTIONS(2711), + [anon_sym_GT_LPAREN] = ACTIONS(2711), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4292), + [sym_word] = ACTIONS(4352), }, [2951] = { - [anon_sym_PIPE] = ACTIONS(7008), - [anon_sym_RPAREN] = ACTIONS(7010), - [anon_sym_PIPE_AMP] = ACTIONS(7010), - [anon_sym_AMP_AMP] = ACTIONS(7010), - [anon_sym_PIPE_PIPE] = ACTIONS(7010), - [anon_sym_BQUOTE] = ACTIONS(7010), + [anon_sym_PIPE] = ACTIONS(7078), + [anon_sym_RPAREN] = ACTIONS(7080), + [anon_sym_PIPE_AMP] = ACTIONS(7080), + [anon_sym_AMP_AMP] = ACTIONS(7080), + [anon_sym_PIPE_PIPE] = ACTIONS(7080), + [anon_sym_BQUOTE] = ACTIONS(7080), [sym_comment] = ACTIONS(56), }, [2952] = { - [anon_sym_esac] = ACTIONS(7012), + [anon_sym_esac] = ACTIONS(7082), [sym_comment] = ACTIONS(56), }, [2953] = { - [anon_sym_PIPE] = ACTIONS(7014), - [anon_sym_RPAREN] = ACTIONS(7016), - [anon_sym_PIPE_AMP] = ACTIONS(7016), - [anon_sym_AMP_AMP] = ACTIONS(7016), - [anon_sym_PIPE_PIPE] = ACTIONS(7016), - [anon_sym_BQUOTE] = ACTIONS(7016), + [anon_sym_PIPE] = ACTIONS(7084), + [anon_sym_RPAREN] = ACTIONS(7086), + [anon_sym_PIPE_AMP] = ACTIONS(7086), + [anon_sym_AMP_AMP] = ACTIONS(7086), + [anon_sym_PIPE_PIPE] = ACTIONS(7086), + [anon_sym_BQUOTE] = ACTIONS(7086), [sym_comment] = ACTIONS(56), }, [2954] = { @@ -76391,54 +76720,54 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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__special_characters] = ACTIONS(2697), + [anon_sym_DQUOTE] = ACTIONS(2699), + [anon_sym_DOLLAR] = ACTIONS(2701), + [sym_raw_string] = ACTIONS(2703), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2705), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2707), + [anon_sym_BQUOTE] = ACTIONS(2709), + [anon_sym_LT_LPAREN] = ACTIONS(2711), + [anon_sym_GT_LPAREN] = ACTIONS(2711), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4292), + [sym_word] = ACTIONS(4352), }, [2955] = { - [anon_sym_PIPE] = ACTIONS(7018), - [anon_sym_RPAREN] = ACTIONS(7020), - [anon_sym_PIPE_AMP] = ACTIONS(7020), - [anon_sym_AMP_AMP] = ACTIONS(7020), - [anon_sym_PIPE_PIPE] = ACTIONS(7020), - [anon_sym_BQUOTE] = ACTIONS(7020), + [anon_sym_PIPE] = ACTIONS(7088), + [anon_sym_RPAREN] = ACTIONS(7090), + [anon_sym_PIPE_AMP] = ACTIONS(7090), + [anon_sym_AMP_AMP] = ACTIONS(7090), + [anon_sym_PIPE_PIPE] = ACTIONS(7090), + [anon_sym_BQUOTE] = ACTIONS(7090), [sym_comment] = ACTIONS(56), }, [2956] = { [aux_sym_concatenation_repeat1] = STATE(2960), - [sym__concat] = ACTIONS(6072), - [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__concat] = ACTIONS(6136), + [anon_sym_PIPE] = ACTIONS(1241), + [anon_sym_RPAREN] = ACTIONS(1239), + [anon_sym_PIPE_AMP] = ACTIONS(1239), + [anon_sym_AMP_AMP] = ACTIONS(1239), + [anon_sym_PIPE_PIPE] = ACTIONS(1239), [sym_comment] = ACTIONS(56), }, [2957] = { [aux_sym_concatenation_repeat1] = STATE(2960), - [sym__concat] = ACTIONS(6072), - [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__concat] = ACTIONS(6136), + [anon_sym_PIPE] = ACTIONS(1245), + [anon_sym_RPAREN] = ACTIONS(1243), + [anon_sym_PIPE_AMP] = ACTIONS(1243), + [anon_sym_AMP_AMP] = ACTIONS(1243), + [anon_sym_PIPE_PIPE] = ACTIONS(1243), [sym_comment] = ACTIONS(56), }, [2958] = { - [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), + [anon_sym_PIPE] = ACTIONS(1245), + [anon_sym_RPAREN] = ACTIONS(1243), + [anon_sym_PIPE_AMP] = ACTIONS(1243), + [anon_sym_AMP_AMP] = ACTIONS(1243), + [anon_sym_PIPE_PIPE] = ACTIONS(1243), + [anon_sym_BQUOTE] = ACTIONS(1243), [sym_comment] = ACTIONS(56), }, [2959] = { @@ -76448,35 +76777,35 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(3489), [sym_command_substitution] = STATE(3489), [sym_process_substitution] = STATE(3489), - [sym__special_characters] = ACTIONS(7022), - [anon_sym_DQUOTE] = ACTIONS(4905), - [anon_sym_DOLLAR] = ACTIONS(4907), - [sym_raw_string] = ACTIONS(7024), - [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__special_characters] = ACTIONS(7092), + [anon_sym_DQUOTE] = ACTIONS(4967), + [anon_sym_DOLLAR] = ACTIONS(4969), + [sym_raw_string] = ACTIONS(7094), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4973), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4975), + [anon_sym_BQUOTE] = ACTIONS(4977), + [anon_sym_LT_LPAREN] = ACTIONS(4979), + [anon_sym_GT_LPAREN] = ACTIONS(4979), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7022), + [sym_word] = ACTIONS(7092), }, [2960] = { [aux_sym_concatenation_repeat1] = STATE(3490), - [sym__concat] = ACTIONS(6072), - [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__concat] = ACTIONS(6136), + [anon_sym_PIPE] = ACTIONS(1567), + [anon_sym_RPAREN] = ACTIONS(788), + [anon_sym_PIPE_AMP] = ACTIONS(788), + [anon_sym_AMP_AMP] = ACTIONS(788), + [anon_sym_PIPE_PIPE] = ACTIONS(788), [sym_comment] = ACTIONS(56), }, [2961] = { - [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__concat] = ACTIONS(792), + [anon_sym_PIPE] = ACTIONS(1569), + [anon_sym_RPAREN] = ACTIONS(792), + [anon_sym_PIPE_AMP] = ACTIONS(792), + [anon_sym_AMP_AMP] = ACTIONS(792), + [anon_sym_PIPE_PIPE] = ACTIONS(792), [sym_comment] = ACTIONS(56), }, [2962] = { @@ -76484,7 +76813,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(134), [sym_command_substitution] = STATE(134), [aux_sym_string_repeat1] = STATE(447), - [anon_sym_DQUOTE] = ACTIONS(7026), + [anon_sym_DQUOTE] = ACTIONS(7096), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -76493,35 +76822,35 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(182), }, [2963] = { - [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__concat] = ACTIONS(824), + [anon_sym_PIPE] = ACTIONS(1573), + [anon_sym_RPAREN] = ACTIONS(824), + [anon_sym_PIPE_AMP] = ACTIONS(824), + [anon_sym_AMP_AMP] = ACTIONS(824), + [anon_sym_PIPE_PIPE] = ACTIONS(824), [sym_comment] = ACTIONS(56), }, [2964] = { - [sym__concat] = ACTIONS(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__concat] = ACTIONS(828), + [anon_sym_PIPE] = ACTIONS(1575), + [anon_sym_RPAREN] = ACTIONS(828), + [anon_sym_PIPE_AMP] = ACTIONS(828), + [anon_sym_AMP_AMP] = ACTIONS(828), + [anon_sym_PIPE_PIPE] = ACTIONS(828), [sym_comment] = ACTIONS(56), }, [2965] = { - [sym__concat] = ACTIONS(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__concat] = ACTIONS(832), + [anon_sym_PIPE] = ACTIONS(1577), + [anon_sym_RPAREN] = ACTIONS(832), + [anon_sym_PIPE_AMP] = ACTIONS(832), + [anon_sym_AMP_AMP] = ACTIONS(832), + [anon_sym_PIPE_PIPE] = ACTIONS(832), [sym_comment] = ACTIONS(56), }, [2966] = { - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(7028), + [anon_sym_LBRACK] = ACTIONS(836), + [anon_sym_EQ] = ACTIONS(7098), [sym_comment] = ACTIONS(56), }, [2967] = { @@ -76533,39 +76862,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3495), - [anon_sym_RBRACE] = ACTIONS(7030), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_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(7032), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7100), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(7102), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2968] = { [sym_subscript] = STATE(3499), - [sym_variable_name] = ACTIONS(7034), - [anon_sym_DOLLAR] = ACTIONS(7036), - [anon_sym_DASH] = ACTIONS(7036), + [sym_variable_name] = ACTIONS(7104), + [anon_sym_DOLLAR] = ACTIONS(7106), + [anon_sym_DASH] = ACTIONS(7106), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7038), - [anon_sym_STAR] = ACTIONS(7036), - [anon_sym_AT] = ACTIONS(7036), - [anon_sym_QMARK] = ACTIONS(7036), - [anon_sym_0] = ACTIONS(7040), - [anon_sym__] = ACTIONS(7040), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7108), + [anon_sym_STAR] = ACTIONS(7106), + [anon_sym_AT] = ACTIONS(7106), + [anon_sym_QMARK] = ACTIONS(7106), + [anon_sym_0] = ACTIONS(7110), + [anon_sym__] = ACTIONS(7110), }, [2969] = { [sym_concatenation] = STATE(451), @@ -76576,26 +76905,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3502), - [anon_sym_RBRACE] = ACTIONS(7042), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_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(7044), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7112), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(7114), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2970] = { [sym_concatenation] = STATE(451), @@ -76606,213 +76935,213 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3505), - [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), - [aux_sym_SLASH] = ACTIONS(7048), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7116), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(7118), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2971] = { - [anon_sym_PIPE] = ACTIONS(954), - [anon_sym_RPAREN] = ACTIONS(7050), - [anon_sym_PIPE_AMP] = ACTIONS(958), - [anon_sym_AMP_AMP] = ACTIONS(960), - [anon_sym_PIPE_PIPE] = ACTIONS(960), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(7120), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), [sym_comment] = ACTIONS(56), }, [2972] = { - [sym_file_descriptor] = ACTIONS(378), - [sym_variable_name] = ACTIONS(378), - [anon_sym_PIPE] = ACTIONS(954), - [anon_sym_RPAREN] = ACTIONS(7050), - [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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(7120), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [2973] = { - [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(7050), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_PIPE_AMP] = ACTIONS(1072), + [anon_sym_AMP_AMP] = ACTIONS(1074), + [anon_sym_PIPE_PIPE] = ACTIONS(1074), + [anon_sym_BQUOTE] = ACTIONS(7120), [sym_comment] = ACTIONS(56), }, [2974] = { - [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(7050), - [anon_sym_LT_LPAREN] = ACTIONS(378), - [anon_sym_GT_LPAREN] = ACTIONS(378), + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_PIPE_AMP] = ACTIONS(1072), + [anon_sym_AMP_AMP] = ACTIONS(1074), + [anon_sym_PIPE_PIPE] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(7120), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [2975] = { - [anon_sym_PIPE] = ACTIONS(954), - [anon_sym_RPAREN] = ACTIONS(7052), - [anon_sym_PIPE_AMP] = ACTIONS(958), - [anon_sym_AMP_AMP] = ACTIONS(960), - [anon_sym_PIPE_PIPE] = ACTIONS(960), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(7122), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), [sym_comment] = ACTIONS(56), }, [2976] = { - [sym_file_descriptor] = ACTIONS(378), - [sym_variable_name] = ACTIONS(378), - [anon_sym_PIPE] = ACTIONS(954), - [anon_sym_RPAREN] = ACTIONS(7052), - [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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(7122), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [2977] = { - [sym_variable_name] = ACTIONS(4111), - [anon_sym_PIPE] = ACTIONS(5999), - [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(5999), - [anon_sym_DQUOTE] = ACTIONS(4111), - [anon_sym_DOLLAR] = ACTIONS(5999), - [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_variable_name] = ACTIONS(4169), + [anon_sym_PIPE] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(4169), + [anon_sym_PIPE_AMP] = ACTIONS(4169), + [anon_sym_AMP_AMP] = ACTIONS(4169), + [anon_sym_PIPE_PIPE] = ACTIONS(4169), + [sym__special_characters] = ACTIONS(6063), + [anon_sym_DQUOTE] = ACTIONS(4169), + [anon_sym_DOLLAR] = ACTIONS(6063), + [sym_raw_string] = ACTIONS(4169), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4169), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4169), + [anon_sym_BQUOTE] = ACTIONS(4169), + [anon_sym_LT_LPAREN] = ACTIONS(4169), + [anon_sym_GT_LPAREN] = ACTIONS(4169), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5999), - [sym_word] = ACTIONS(4113), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6063), + [sym_word] = ACTIONS(4171), }, [2978] = { - [sym__concat] = ACTIONS(4728), - [sym_variable_name] = ACTIONS(4728), - [anon_sym_PIPE] = ACTIONS(5780), - [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(5780), - [anon_sym_DQUOTE] = ACTIONS(4728), - [anon_sym_DOLLAR] = ACTIONS(5780), - [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__concat] = ACTIONS(4790), + [sym_variable_name] = ACTIONS(4790), + [anon_sym_PIPE] = ACTIONS(5844), + [anon_sym_RPAREN] = ACTIONS(4790), + [anon_sym_PIPE_AMP] = ACTIONS(4790), + [anon_sym_AMP_AMP] = ACTIONS(4790), + [anon_sym_PIPE_PIPE] = ACTIONS(4790), + [sym__special_characters] = ACTIONS(5844), + [anon_sym_DQUOTE] = ACTIONS(4790), + [anon_sym_DOLLAR] = ACTIONS(5844), + [sym_raw_string] = ACTIONS(4790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4790), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4790), + [anon_sym_BQUOTE] = ACTIONS(4790), + [anon_sym_LT_LPAREN] = ACTIONS(4790), + [anon_sym_GT_LPAREN] = ACTIONS(4790), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5780), - [sym_word] = ACTIONS(4730), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5844), + [sym_word] = ACTIONS(4792), }, [2979] = { - [sym__concat] = ACTIONS(4734), - [sym_variable_name] = ACTIONS(4734), - [anon_sym_PIPE] = ACTIONS(5782), - [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(5782), - [anon_sym_DQUOTE] = ACTIONS(4734), - [anon_sym_DOLLAR] = ACTIONS(5782), - [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__concat] = ACTIONS(4796), + [sym_variable_name] = ACTIONS(4796), + [anon_sym_PIPE] = ACTIONS(5846), + [anon_sym_RPAREN] = ACTIONS(4796), + [anon_sym_PIPE_AMP] = ACTIONS(4796), + [anon_sym_AMP_AMP] = ACTIONS(4796), + [anon_sym_PIPE_PIPE] = ACTIONS(4796), + [sym__special_characters] = ACTIONS(5846), + [anon_sym_DQUOTE] = ACTIONS(4796), + [anon_sym_DOLLAR] = ACTIONS(5846), + [sym_raw_string] = ACTIONS(4796), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4796), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4796), + [anon_sym_BQUOTE] = ACTIONS(4796), + [anon_sym_LT_LPAREN] = ACTIONS(4796), + [anon_sym_GT_LPAREN] = ACTIONS(4796), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5782), - [sym_word] = ACTIONS(4736), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5846), + [sym_word] = ACTIONS(4798), }, [2980] = { - [sym__concat] = ACTIONS(4797), - [sym_variable_name] = ACTIONS(4797), - [anon_sym_PIPE] = ACTIONS(5784), - [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(5784), - [anon_sym_DQUOTE] = ACTIONS(4797), - [anon_sym_DOLLAR] = ACTIONS(5784), - [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__concat] = ACTIONS(4859), + [sym_variable_name] = ACTIONS(4859), + [anon_sym_PIPE] = ACTIONS(5848), + [anon_sym_RPAREN] = ACTIONS(4859), + [anon_sym_PIPE_AMP] = ACTIONS(4859), + [anon_sym_AMP_AMP] = ACTIONS(4859), + [anon_sym_PIPE_PIPE] = ACTIONS(4859), + [sym__special_characters] = ACTIONS(5848), + [anon_sym_DQUOTE] = ACTIONS(4859), + [anon_sym_DOLLAR] = ACTIONS(5848), + [sym_raw_string] = ACTIONS(4859), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4859), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4859), + [anon_sym_BQUOTE] = ACTIONS(4859), + [anon_sym_LT_LPAREN] = ACTIONS(4859), + [anon_sym_GT_LPAREN] = ACTIONS(4859), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5784), - [sym_word] = ACTIONS(4799), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5848), + [sym_word] = ACTIONS(4861), }, [2981] = { [sym_concatenation] = STATE(451), @@ -76823,40 +77152,40 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(7124), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2982] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(7056), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(7126), [sym_comment] = ACTIONS(56), }, [2983] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(7058), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(7128), [sym_comment] = ACTIONS(56), }, [2984] = { - [anon_sym_RBRACE] = ACTIONS(7058), + [anon_sym_RBRACE] = ACTIONS(7128), [sym_comment] = ACTIONS(56), }, [2985] = { @@ -76868,46 +77197,46 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3512), - [anon_sym_RBRACE] = ACTIONS(7060), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7130), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2986] = { - [sym__concat] = ACTIONS(4809), - [sym_variable_name] = ACTIONS(4809), - [anon_sym_PIPE] = ACTIONS(5794), - [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(5794), - [anon_sym_DQUOTE] = ACTIONS(4809), - [anon_sym_DOLLAR] = ACTIONS(5794), - [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__concat] = ACTIONS(4871), + [sym_variable_name] = ACTIONS(4871), + [anon_sym_PIPE] = ACTIONS(5858), + [anon_sym_RPAREN] = ACTIONS(4871), + [anon_sym_PIPE_AMP] = ACTIONS(4871), + [anon_sym_AMP_AMP] = ACTIONS(4871), + [anon_sym_PIPE_PIPE] = ACTIONS(4871), + [sym__special_characters] = ACTIONS(5858), + [anon_sym_DQUOTE] = ACTIONS(4871), + [anon_sym_DOLLAR] = ACTIONS(5858), + [sym_raw_string] = ACTIONS(4871), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4871), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4871), + [anon_sym_BQUOTE] = ACTIONS(4871), + [anon_sym_LT_LPAREN] = ACTIONS(4871), + [anon_sym_GT_LPAREN] = ACTIONS(4871), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5794), - [sym_word] = ACTIONS(4811), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5858), + [sym_word] = ACTIONS(4873), }, [2987] = { [sym_concatenation] = STATE(451), @@ -76918,46 +77247,46 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3514), - [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), + [anon_sym_RBRACE] = ACTIONS(7132), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2988] = { - [sym__concat] = ACTIONS(4815), - [sym_variable_name] = ACTIONS(4815), - [anon_sym_PIPE] = ACTIONS(5798), - [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(5798), - [anon_sym_DQUOTE] = ACTIONS(4815), - [anon_sym_DOLLAR] = ACTIONS(5798), - [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__concat] = ACTIONS(4877), + [sym_variable_name] = ACTIONS(4877), + [anon_sym_PIPE] = ACTIONS(5862), + [anon_sym_RPAREN] = ACTIONS(4877), + [anon_sym_PIPE_AMP] = ACTIONS(4877), + [anon_sym_AMP_AMP] = ACTIONS(4877), + [anon_sym_PIPE_PIPE] = ACTIONS(4877), + [sym__special_characters] = ACTIONS(5862), + [anon_sym_DQUOTE] = ACTIONS(4877), + [anon_sym_DOLLAR] = ACTIONS(5862), + [sym_raw_string] = ACTIONS(4877), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4877), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4877), + [anon_sym_BQUOTE] = ACTIONS(4877), + [anon_sym_LT_LPAREN] = ACTIONS(4877), + [anon_sym_GT_LPAREN] = ACTIONS(4877), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5798), - [sym_word] = ACTIONS(4817), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5862), + [sym_word] = ACTIONS(4879), }, [2989] = { [sym_concatenation] = STATE(451), @@ -76968,46 +77297,46 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3516), - [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), + [anon_sym_RBRACE] = ACTIONS(7134), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2990] = { - [sym__concat] = ACTIONS(4821), - [sym_variable_name] = ACTIONS(4821), - [anon_sym_PIPE] = ACTIONS(5802), - [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(5802), - [anon_sym_DQUOTE] = ACTIONS(4821), - [anon_sym_DOLLAR] = ACTIONS(5802), - [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__concat] = ACTIONS(4883), + [sym_variable_name] = ACTIONS(4883), + [anon_sym_PIPE] = ACTIONS(5866), + [anon_sym_RPAREN] = ACTIONS(4883), + [anon_sym_PIPE_AMP] = ACTIONS(4883), + [anon_sym_AMP_AMP] = ACTIONS(4883), + [anon_sym_PIPE_PIPE] = ACTIONS(4883), + [sym__special_characters] = ACTIONS(5866), + [anon_sym_DQUOTE] = ACTIONS(4883), + [anon_sym_DOLLAR] = ACTIONS(5866), + [sym_raw_string] = ACTIONS(4883), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4883), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4883), + [anon_sym_BQUOTE] = ACTIONS(4883), + [anon_sym_LT_LPAREN] = ACTIONS(4883), + [anon_sym_GT_LPAREN] = ACTIONS(4883), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5802), - [sym_word] = ACTIONS(4823), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5866), + [sym_word] = ACTIONS(4885), }, [2991] = { [sym_concatenation] = STATE(451), @@ -77018,46 +77347,46 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [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), + [anon_sym_RBRACE] = ACTIONS(7136), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2992] = { - [sym__concat] = ACTIONS(4827), - [sym_variable_name] = ACTIONS(4827), - [anon_sym_PIPE] = ACTIONS(5806), - [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(5806), - [anon_sym_DQUOTE] = ACTIONS(4827), - [anon_sym_DOLLAR] = ACTIONS(5806), - [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__concat] = ACTIONS(4889), + [sym_variable_name] = ACTIONS(4889), + [anon_sym_PIPE] = ACTIONS(5870), + [anon_sym_RPAREN] = ACTIONS(4889), + [anon_sym_PIPE_AMP] = ACTIONS(4889), + [anon_sym_AMP_AMP] = ACTIONS(4889), + [anon_sym_PIPE_PIPE] = ACTIONS(4889), + [sym__special_characters] = ACTIONS(5870), + [anon_sym_DQUOTE] = ACTIONS(4889), + [anon_sym_DOLLAR] = ACTIONS(5870), + [sym_raw_string] = ACTIONS(4889), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4889), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4889), + [anon_sym_BQUOTE] = ACTIONS(4889), + [anon_sym_LT_LPAREN] = ACTIONS(4889), + [anon_sym_GT_LPAREN] = ACTIONS(4889), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5806), - [sym_word] = ACTIONS(4829), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5870), + [sym_word] = ACTIONS(4891), }, [2993] = { [sym_concatenation] = STATE(451), @@ -77068,85 +77397,85 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(7138), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2994] = { - [sym__concat] = ACTIONS(4728), - [anon_sym_PIPE] = ACTIONS(5780), - [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(5780), - [anon_sym_DQUOTE] = ACTIONS(4728), - [anon_sym_DOLLAR] = ACTIONS(5780), - [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__concat] = ACTIONS(4790), + [anon_sym_PIPE] = ACTIONS(5844), + [anon_sym_RPAREN] = ACTIONS(4790), + [anon_sym_PIPE_AMP] = ACTIONS(4790), + [anon_sym_AMP_AMP] = ACTIONS(4790), + [anon_sym_PIPE_PIPE] = ACTIONS(4790), + [sym__special_characters] = ACTIONS(5844), + [anon_sym_DQUOTE] = ACTIONS(4790), + [anon_sym_DOLLAR] = ACTIONS(5844), + [sym_raw_string] = ACTIONS(4790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4790), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4790), + [anon_sym_BQUOTE] = ACTIONS(4790), + [anon_sym_LT_LPAREN] = ACTIONS(4790), + [anon_sym_GT_LPAREN] = ACTIONS(4790), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5780), - [sym_word] = ACTIONS(4730), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5844), + [sym_word] = ACTIONS(4792), }, [2995] = { - [sym__concat] = ACTIONS(4734), - [anon_sym_PIPE] = ACTIONS(5782), - [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(5782), - [anon_sym_DQUOTE] = ACTIONS(4734), - [anon_sym_DOLLAR] = ACTIONS(5782), - [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__concat] = ACTIONS(4796), + [anon_sym_PIPE] = ACTIONS(5846), + [anon_sym_RPAREN] = ACTIONS(4796), + [anon_sym_PIPE_AMP] = ACTIONS(4796), + [anon_sym_AMP_AMP] = ACTIONS(4796), + [anon_sym_PIPE_PIPE] = ACTIONS(4796), + [sym__special_characters] = ACTIONS(5846), + [anon_sym_DQUOTE] = ACTIONS(4796), + [anon_sym_DOLLAR] = ACTIONS(5846), + [sym_raw_string] = ACTIONS(4796), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4796), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4796), + [anon_sym_BQUOTE] = ACTIONS(4796), + [anon_sym_LT_LPAREN] = ACTIONS(4796), + [anon_sym_GT_LPAREN] = ACTIONS(4796), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5782), - [sym_word] = ACTIONS(4736), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5846), + [sym_word] = ACTIONS(4798), }, [2996] = { - [sym__concat] = ACTIONS(4797), - [anon_sym_PIPE] = ACTIONS(5784), - [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(5784), - [anon_sym_DQUOTE] = ACTIONS(4797), - [anon_sym_DOLLAR] = ACTIONS(5784), - [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__concat] = ACTIONS(4859), + [anon_sym_PIPE] = ACTIONS(5848), + [anon_sym_RPAREN] = ACTIONS(4859), + [anon_sym_PIPE_AMP] = ACTIONS(4859), + [anon_sym_AMP_AMP] = ACTIONS(4859), + [anon_sym_PIPE_PIPE] = ACTIONS(4859), + [sym__special_characters] = ACTIONS(5848), + [anon_sym_DQUOTE] = ACTIONS(4859), + [anon_sym_DOLLAR] = ACTIONS(5848), + [sym_raw_string] = ACTIONS(4859), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4859), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4859), + [anon_sym_BQUOTE] = ACTIONS(4859), + [anon_sym_LT_LPAREN] = ACTIONS(4859), + [anon_sym_GT_LPAREN] = ACTIONS(4859), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5784), - [sym_word] = ACTIONS(4799), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5848), + [sym_word] = ACTIONS(4861), }, [2997] = { [sym_concatenation] = STATE(451), @@ -77157,40 +77486,40 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(7140), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [2998] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(7072), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(7142), [sym_comment] = ACTIONS(56), }, [2999] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(7074), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(7144), [sym_comment] = ACTIONS(56), }, [3000] = { - [anon_sym_RBRACE] = ACTIONS(7074), + [anon_sym_RBRACE] = ACTIONS(7144), [sym_comment] = ACTIONS(56), }, [3001] = { @@ -77202,45 +77531,45 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3523), - [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), + [anon_sym_RBRACE] = ACTIONS(7146), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3002] = { - [sym__concat] = ACTIONS(4809), - [anon_sym_PIPE] = ACTIONS(5794), - [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(5794), - [anon_sym_DQUOTE] = ACTIONS(4809), - [anon_sym_DOLLAR] = ACTIONS(5794), - [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__concat] = ACTIONS(4871), + [anon_sym_PIPE] = ACTIONS(5858), + [anon_sym_RPAREN] = ACTIONS(4871), + [anon_sym_PIPE_AMP] = ACTIONS(4871), + [anon_sym_AMP_AMP] = ACTIONS(4871), + [anon_sym_PIPE_PIPE] = ACTIONS(4871), + [sym__special_characters] = ACTIONS(5858), + [anon_sym_DQUOTE] = ACTIONS(4871), + [anon_sym_DOLLAR] = ACTIONS(5858), + [sym_raw_string] = ACTIONS(4871), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4871), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4871), + [anon_sym_BQUOTE] = ACTIONS(4871), + [anon_sym_LT_LPAREN] = ACTIONS(4871), + [anon_sym_GT_LPAREN] = ACTIONS(4871), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5794), - [sym_word] = ACTIONS(4811), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5858), + [sym_word] = ACTIONS(4873), }, [3003] = { [sym_concatenation] = STATE(451), @@ -77251,45 +77580,45 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3525), - [anon_sym_RBRACE] = ACTIONS(7078), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7148), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3004] = { - [sym__concat] = ACTIONS(4815), - [anon_sym_PIPE] = ACTIONS(5798), - [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(5798), - [anon_sym_DQUOTE] = ACTIONS(4815), - [anon_sym_DOLLAR] = ACTIONS(5798), - [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__concat] = ACTIONS(4877), + [anon_sym_PIPE] = ACTIONS(5862), + [anon_sym_RPAREN] = ACTIONS(4877), + [anon_sym_PIPE_AMP] = ACTIONS(4877), + [anon_sym_AMP_AMP] = ACTIONS(4877), + [anon_sym_PIPE_PIPE] = ACTIONS(4877), + [sym__special_characters] = ACTIONS(5862), + [anon_sym_DQUOTE] = ACTIONS(4877), + [anon_sym_DOLLAR] = ACTIONS(5862), + [sym_raw_string] = ACTIONS(4877), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4877), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4877), + [anon_sym_BQUOTE] = ACTIONS(4877), + [anon_sym_LT_LPAREN] = ACTIONS(4877), + [anon_sym_GT_LPAREN] = ACTIONS(4877), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5798), - [sym_word] = ACTIONS(4817), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5862), + [sym_word] = ACTIONS(4879), }, [3005] = { [sym_concatenation] = STATE(451), @@ -77300,45 +77629,45 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3527), - [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), + [anon_sym_RBRACE] = ACTIONS(7150), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3006] = { - [sym__concat] = ACTIONS(4821), - [anon_sym_PIPE] = ACTIONS(5802), - [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(5802), - [anon_sym_DQUOTE] = ACTIONS(4821), - [anon_sym_DOLLAR] = ACTIONS(5802), - [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__concat] = ACTIONS(4883), + [anon_sym_PIPE] = ACTIONS(5866), + [anon_sym_RPAREN] = ACTIONS(4883), + [anon_sym_PIPE_AMP] = ACTIONS(4883), + [anon_sym_AMP_AMP] = ACTIONS(4883), + [anon_sym_PIPE_PIPE] = ACTIONS(4883), + [sym__special_characters] = ACTIONS(5866), + [anon_sym_DQUOTE] = ACTIONS(4883), + [anon_sym_DOLLAR] = ACTIONS(5866), + [sym_raw_string] = ACTIONS(4883), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4883), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4883), + [anon_sym_BQUOTE] = ACTIONS(4883), + [anon_sym_LT_LPAREN] = ACTIONS(4883), + [anon_sym_GT_LPAREN] = ACTIONS(4883), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5802), - [sym_word] = ACTIONS(4823), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5866), + [sym_word] = ACTIONS(4885), }, [3007] = { [sym_concatenation] = STATE(451), @@ -77349,45 +77678,45 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [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), + [anon_sym_RBRACE] = ACTIONS(7152), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3008] = { - [sym__concat] = ACTIONS(4827), - [anon_sym_PIPE] = ACTIONS(5806), - [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(5806), - [anon_sym_DQUOTE] = ACTIONS(4827), - [anon_sym_DOLLAR] = ACTIONS(5806), - [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__concat] = ACTIONS(4889), + [anon_sym_PIPE] = ACTIONS(5870), + [anon_sym_RPAREN] = ACTIONS(4889), + [anon_sym_PIPE_AMP] = ACTIONS(4889), + [anon_sym_AMP_AMP] = ACTIONS(4889), + [anon_sym_PIPE_PIPE] = ACTIONS(4889), + [sym__special_characters] = ACTIONS(5870), + [anon_sym_DQUOTE] = ACTIONS(4889), + [anon_sym_DOLLAR] = ACTIONS(5870), + [sym_raw_string] = ACTIONS(4889), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4889), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4889), + [anon_sym_BQUOTE] = ACTIONS(4889), + [anon_sym_LT_LPAREN] = ACTIONS(4889), + [anon_sym_GT_LPAREN] = ACTIONS(4889), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5806), - [sym_word] = ACTIONS(4829), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5870), + [sym_word] = ACTIONS(4891), }, [3009] = { [sym_concatenation] = STATE(451), @@ -77398,149 +77727,153 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7084), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7154), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3010] = { - [sym_file_descriptor] = ACTIONS(5961), - [sym__concat] = ACTIONS(5961), - [anon_sym_PIPE] = ACTIONS(6846), - [anon_sym_RPAREN] = 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(6846), - [anon_sym_LT] = ACTIONS(6846), - [anon_sym_GT] = ACTIONS(6846), - [anon_sym_GT_GT] = ACTIONS(5961), - [anon_sym_AMP_GT] = ACTIONS(6846), - [anon_sym_AMP_GT_GT] = ACTIONS(5961), - [anon_sym_LT_AMP] = ACTIONS(5961), - [anon_sym_GT_AMP] = ACTIONS(5961), - [anon_sym_LT_LT] = ACTIONS(6846), - [anon_sym_LT_LT_DASH] = ACTIONS(5961), - [anon_sym_LT_LT_LT] = ACTIONS(5961), - [sym__special_characters] = ACTIONS(6846), - [anon_sym_DQUOTE] = ACTIONS(5961), - [anon_sym_DOLLAR] = ACTIONS(6846), - [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_file_descriptor] = ACTIONS(6025), + [sym__concat] = ACTIONS(6025), + [anon_sym_PIPE] = ACTIONS(6916), + [anon_sym_RPAREN] = ACTIONS(6025), + [anon_sym_PIPE_AMP] = ACTIONS(6025), + [anon_sym_AMP_AMP] = ACTIONS(6025), + [anon_sym_PIPE_PIPE] = ACTIONS(6025), + [anon_sym_EQ_TILDE] = ACTIONS(6916), + [anon_sym_EQ_EQ] = ACTIONS(6916), + [anon_sym_LT] = ACTIONS(6916), + [anon_sym_GT] = ACTIONS(6916), + [anon_sym_GT_GT] = ACTIONS(6025), + [anon_sym_AMP_GT] = ACTIONS(6916), + [anon_sym_AMP_GT_GT] = ACTIONS(6025), + [anon_sym_LT_AMP] = ACTIONS(6025), + [anon_sym_GT_AMP] = ACTIONS(6025), + [anon_sym_LT_LT] = ACTIONS(6916), + [anon_sym_LT_LT_DASH] = ACTIONS(6025), + [anon_sym_LT_LT_LT] = ACTIONS(6025), + [sym__special_characters] = ACTIONS(6916), + [anon_sym_DQUOTE] = ACTIONS(6025), + [anon_sym_DOLLAR] = ACTIONS(6916), + [sym_raw_string] = ACTIONS(6025), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6025), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6025), + [anon_sym_BQUOTE] = ACTIONS(6025), + [anon_sym_LT_LPAREN] = ACTIONS(6025), + [anon_sym_GT_LPAREN] = ACTIONS(6025), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5963), + [sym_word] = ACTIONS(6027), }, [3011] = { - [sym_file_descriptor] = ACTIONS(5965), - [sym__concat] = ACTIONS(5965), - [anon_sym_PIPE] = ACTIONS(6848), - [anon_sym_RPAREN] = 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(6848), - [anon_sym_LT] = ACTIONS(6848), - [anon_sym_GT] = ACTIONS(6848), - [anon_sym_GT_GT] = ACTIONS(5965), - [anon_sym_AMP_GT] = ACTIONS(6848), - [anon_sym_AMP_GT_GT] = ACTIONS(5965), - [anon_sym_LT_AMP] = ACTIONS(5965), - [anon_sym_GT_AMP] = ACTIONS(5965), - [anon_sym_LT_LT] = ACTIONS(6848), - [anon_sym_LT_LT_DASH] = ACTIONS(5965), - [anon_sym_LT_LT_LT] = ACTIONS(5965), - [sym__special_characters] = ACTIONS(6848), - [anon_sym_DQUOTE] = ACTIONS(5965), - [anon_sym_DOLLAR] = ACTIONS(6848), - [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_file_descriptor] = ACTIONS(6029), + [sym__concat] = ACTIONS(6029), + [anon_sym_PIPE] = ACTIONS(6918), + [anon_sym_RPAREN] = ACTIONS(6029), + [anon_sym_PIPE_AMP] = ACTIONS(6029), + [anon_sym_AMP_AMP] = ACTIONS(6029), + [anon_sym_PIPE_PIPE] = ACTIONS(6029), + [anon_sym_EQ_TILDE] = ACTIONS(6918), + [anon_sym_EQ_EQ] = ACTIONS(6918), + [anon_sym_LT] = ACTIONS(6918), + [anon_sym_GT] = ACTIONS(6918), + [anon_sym_GT_GT] = ACTIONS(6029), + [anon_sym_AMP_GT] = ACTIONS(6918), + [anon_sym_AMP_GT_GT] = ACTIONS(6029), + [anon_sym_LT_AMP] = ACTIONS(6029), + [anon_sym_GT_AMP] = ACTIONS(6029), + [anon_sym_LT_LT] = ACTIONS(6918), + [anon_sym_LT_LT_DASH] = ACTIONS(6029), + [anon_sym_LT_LT_LT] = ACTIONS(6029), + [sym__special_characters] = ACTIONS(6918), + [anon_sym_DQUOTE] = ACTIONS(6029), + [anon_sym_DOLLAR] = ACTIONS(6918), + [sym_raw_string] = ACTIONS(6029), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6029), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6029), + [anon_sym_BQUOTE] = ACTIONS(6029), + [anon_sym_LT_LPAREN] = ACTIONS(6029), + [anon_sym_GT_LPAREN] = ACTIONS(6029), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5967), + [sym_word] = ACTIONS(6031), }, [3012] = { - [sym_file_descriptor] = ACTIONS(5969), - [sym__concat] = ACTIONS(5969), - [anon_sym_PIPE] = ACTIONS(6850), - [anon_sym_RPAREN] = ACTIONS(5969), - [anon_sym_PIPE_AMP] = ACTIONS(5969), - [anon_sym_AMP_AMP] = ACTIONS(5969), - [anon_sym_PIPE_PIPE] = ACTIONS(5969), - [anon_sym_EQ_TILDE] = ACTIONS(6850), - [anon_sym_LT] = ACTIONS(6850), - [anon_sym_GT] = ACTIONS(6850), - [anon_sym_GT_GT] = ACTIONS(5969), - [anon_sym_AMP_GT] = ACTIONS(6850), - [anon_sym_AMP_GT_GT] = ACTIONS(5969), - [anon_sym_LT_AMP] = ACTIONS(5969), - [anon_sym_GT_AMP] = ACTIONS(5969), - [anon_sym_LT_LT] = ACTIONS(6850), - [anon_sym_LT_LT_DASH] = ACTIONS(5969), - [anon_sym_LT_LT_LT] = ACTIONS(5969), - [sym__special_characters] = ACTIONS(6850), - [anon_sym_DQUOTE] = ACTIONS(5969), - [anon_sym_DOLLAR] = ACTIONS(6850), - [sym_raw_string] = ACTIONS(5969), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5969), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5969), - [anon_sym_BQUOTE] = ACTIONS(5969), - [anon_sym_LT_LPAREN] = ACTIONS(5969), - [anon_sym_GT_LPAREN] = ACTIONS(5969), + [sym_file_descriptor] = ACTIONS(6033), + [sym__concat] = ACTIONS(6033), + [anon_sym_PIPE] = ACTIONS(6920), + [anon_sym_RPAREN] = ACTIONS(6033), + [anon_sym_PIPE_AMP] = ACTIONS(6033), + [anon_sym_AMP_AMP] = ACTIONS(6033), + [anon_sym_PIPE_PIPE] = ACTIONS(6033), + [anon_sym_EQ_TILDE] = ACTIONS(6920), + [anon_sym_EQ_EQ] = ACTIONS(6920), + [anon_sym_LT] = ACTIONS(6920), + [anon_sym_GT] = ACTIONS(6920), + [anon_sym_GT_GT] = ACTIONS(6033), + [anon_sym_AMP_GT] = ACTIONS(6920), + [anon_sym_AMP_GT_GT] = ACTIONS(6033), + [anon_sym_LT_AMP] = ACTIONS(6033), + [anon_sym_GT_AMP] = ACTIONS(6033), + [anon_sym_LT_LT] = ACTIONS(6920), + [anon_sym_LT_LT_DASH] = ACTIONS(6033), + [anon_sym_LT_LT_LT] = ACTIONS(6033), + [sym__special_characters] = ACTIONS(6920), + [anon_sym_DQUOTE] = ACTIONS(6033), + [anon_sym_DOLLAR] = ACTIONS(6920), + [sym_raw_string] = ACTIONS(6033), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6033), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6033), + [anon_sym_BQUOTE] = ACTIONS(6033), + [anon_sym_LT_LPAREN] = ACTIONS(6033), + [anon_sym_GT_LPAREN] = ACTIONS(6033), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5971), + [sym_word] = ACTIONS(6035), }, [3013] = { - [sym_file_descriptor] = ACTIONS(5973), - [sym__concat] = ACTIONS(5973), - [anon_sym_PIPE] = ACTIONS(6852), - [anon_sym_RPAREN] = ACTIONS(5973), - [anon_sym_PIPE_AMP] = ACTIONS(5973), - [anon_sym_AMP_AMP] = ACTIONS(5973), - [anon_sym_PIPE_PIPE] = ACTIONS(5973), - [anon_sym_EQ_TILDE] = ACTIONS(6852), - [anon_sym_LT] = ACTIONS(6852), - [anon_sym_GT] = ACTIONS(6852), - [anon_sym_GT_GT] = ACTIONS(5973), - [anon_sym_AMP_GT] = ACTIONS(6852), - [anon_sym_AMP_GT_GT] = ACTIONS(5973), - [anon_sym_LT_AMP] = ACTIONS(5973), - [anon_sym_GT_AMP] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(6852), - [anon_sym_LT_LT_DASH] = ACTIONS(5973), - [anon_sym_LT_LT_LT] = ACTIONS(5973), - [sym__special_characters] = ACTIONS(6852), - [anon_sym_DQUOTE] = ACTIONS(5973), - [anon_sym_DOLLAR] = ACTIONS(6852), - [sym_raw_string] = ACTIONS(5973), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5973), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5973), - [anon_sym_BQUOTE] = ACTIONS(5973), - [anon_sym_LT_LPAREN] = ACTIONS(5973), - [anon_sym_GT_LPAREN] = ACTIONS(5973), + [sym_file_descriptor] = ACTIONS(6037), + [sym__concat] = ACTIONS(6037), + [anon_sym_PIPE] = ACTIONS(6922), + [anon_sym_RPAREN] = ACTIONS(6037), + [anon_sym_PIPE_AMP] = ACTIONS(6037), + [anon_sym_AMP_AMP] = ACTIONS(6037), + [anon_sym_PIPE_PIPE] = ACTIONS(6037), + [anon_sym_EQ_TILDE] = ACTIONS(6922), + [anon_sym_EQ_EQ] = ACTIONS(6922), + [anon_sym_LT] = ACTIONS(6922), + [anon_sym_GT] = ACTIONS(6922), + [anon_sym_GT_GT] = ACTIONS(6037), + [anon_sym_AMP_GT] = ACTIONS(6922), + [anon_sym_AMP_GT_GT] = ACTIONS(6037), + [anon_sym_LT_AMP] = ACTIONS(6037), + [anon_sym_GT_AMP] = ACTIONS(6037), + [anon_sym_LT_LT] = ACTIONS(6922), + [anon_sym_LT_LT_DASH] = ACTIONS(6037), + [anon_sym_LT_LT_LT] = ACTIONS(6037), + [sym__special_characters] = ACTIONS(6922), + [anon_sym_DQUOTE] = ACTIONS(6037), + [anon_sym_DOLLAR] = ACTIONS(6922), + [sym_raw_string] = ACTIONS(6037), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6037), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6037), + [anon_sym_BQUOTE] = ACTIONS(6037), + [anon_sym_LT_LPAREN] = ACTIONS(6037), + [anon_sym_GT_LPAREN] = ACTIONS(6037), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5975), + [sym_word] = ACTIONS(6039), }, [3014] = { [sym_concatenation] = STATE(451), @@ -77551,56 +77884,57 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7086), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7156), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3015] = { - [sym_file_descriptor] = ACTIONS(5979), - [sym__concat] = ACTIONS(5979), - [anon_sym_PIPE] = ACTIONS(6856), - [anon_sym_RPAREN] = ACTIONS(5979), - [anon_sym_PIPE_AMP] = ACTIONS(5979), - [anon_sym_AMP_AMP] = ACTIONS(5979), - [anon_sym_PIPE_PIPE] = ACTIONS(5979), - [anon_sym_EQ_TILDE] = ACTIONS(6856), - [anon_sym_LT] = ACTIONS(6856), - [anon_sym_GT] = ACTIONS(6856), - [anon_sym_GT_GT] = ACTIONS(5979), - [anon_sym_AMP_GT] = ACTIONS(6856), - [anon_sym_AMP_GT_GT] = ACTIONS(5979), - [anon_sym_LT_AMP] = ACTIONS(5979), - [anon_sym_GT_AMP] = ACTIONS(5979), - [anon_sym_LT_LT] = ACTIONS(6856), - [anon_sym_LT_LT_DASH] = ACTIONS(5979), - [anon_sym_LT_LT_LT] = ACTIONS(5979), - [sym__special_characters] = ACTIONS(6856), - [anon_sym_DQUOTE] = ACTIONS(5979), - [anon_sym_DOLLAR] = ACTIONS(6856), - [sym_raw_string] = ACTIONS(5979), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5979), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5979), - [anon_sym_BQUOTE] = ACTIONS(5979), - [anon_sym_LT_LPAREN] = ACTIONS(5979), - [anon_sym_GT_LPAREN] = ACTIONS(5979), + [sym_file_descriptor] = ACTIONS(6043), + [sym__concat] = ACTIONS(6043), + [anon_sym_PIPE] = ACTIONS(6926), + [anon_sym_RPAREN] = ACTIONS(6043), + [anon_sym_PIPE_AMP] = ACTIONS(6043), + [anon_sym_AMP_AMP] = ACTIONS(6043), + [anon_sym_PIPE_PIPE] = ACTIONS(6043), + [anon_sym_EQ_TILDE] = ACTIONS(6926), + [anon_sym_EQ_EQ] = ACTIONS(6926), + [anon_sym_LT] = ACTIONS(6926), + [anon_sym_GT] = ACTIONS(6926), + [anon_sym_GT_GT] = ACTIONS(6043), + [anon_sym_AMP_GT] = ACTIONS(6926), + [anon_sym_AMP_GT_GT] = ACTIONS(6043), + [anon_sym_LT_AMP] = ACTIONS(6043), + [anon_sym_GT_AMP] = ACTIONS(6043), + [anon_sym_LT_LT] = ACTIONS(6926), + [anon_sym_LT_LT_DASH] = ACTIONS(6043), + [anon_sym_LT_LT_LT] = ACTIONS(6043), + [sym__special_characters] = ACTIONS(6926), + [anon_sym_DQUOTE] = ACTIONS(6043), + [anon_sym_DOLLAR] = ACTIONS(6926), + [sym_raw_string] = ACTIONS(6043), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6043), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6043), + [anon_sym_BQUOTE] = ACTIONS(6043), + [anon_sym_LT_LPAREN] = ACTIONS(6043), + [anon_sym_GT_LPAREN] = ACTIONS(6043), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5981), + [sym_word] = ACTIONS(6045), }, [3016] = { [sym_concatenation] = STATE(451), @@ -77611,56 +77945,57 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7088), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7158), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3017] = { - [sym_file_descriptor] = ACTIONS(5985), - [sym__concat] = ACTIONS(5985), - [anon_sym_PIPE] = ACTIONS(6860), - [anon_sym_RPAREN] = ACTIONS(5985), - [anon_sym_PIPE_AMP] = ACTIONS(5985), - [anon_sym_AMP_AMP] = ACTIONS(5985), - [anon_sym_PIPE_PIPE] = ACTIONS(5985), - [anon_sym_EQ_TILDE] = ACTIONS(6860), - [anon_sym_LT] = ACTIONS(6860), - [anon_sym_GT] = ACTIONS(6860), - [anon_sym_GT_GT] = ACTIONS(5985), - [anon_sym_AMP_GT] = ACTIONS(6860), - [anon_sym_AMP_GT_GT] = ACTIONS(5985), - [anon_sym_LT_AMP] = ACTIONS(5985), - [anon_sym_GT_AMP] = ACTIONS(5985), - [anon_sym_LT_LT] = ACTIONS(6860), - [anon_sym_LT_LT_DASH] = ACTIONS(5985), - [anon_sym_LT_LT_LT] = ACTIONS(5985), - [sym__special_characters] = ACTIONS(6860), - [anon_sym_DQUOTE] = ACTIONS(5985), - [anon_sym_DOLLAR] = ACTIONS(6860), - [sym_raw_string] = ACTIONS(5985), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5985), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5985), - [anon_sym_BQUOTE] = ACTIONS(5985), - [anon_sym_LT_LPAREN] = ACTIONS(5985), - [anon_sym_GT_LPAREN] = ACTIONS(5985), + [sym_file_descriptor] = ACTIONS(6049), + [sym__concat] = ACTIONS(6049), + [anon_sym_PIPE] = ACTIONS(6930), + [anon_sym_RPAREN] = ACTIONS(6049), + [anon_sym_PIPE_AMP] = ACTIONS(6049), + [anon_sym_AMP_AMP] = ACTIONS(6049), + [anon_sym_PIPE_PIPE] = ACTIONS(6049), + [anon_sym_EQ_TILDE] = ACTIONS(6930), + [anon_sym_EQ_EQ] = ACTIONS(6930), + [anon_sym_LT] = ACTIONS(6930), + [anon_sym_GT] = ACTIONS(6930), + [anon_sym_GT_GT] = ACTIONS(6049), + [anon_sym_AMP_GT] = ACTIONS(6930), + [anon_sym_AMP_GT_GT] = ACTIONS(6049), + [anon_sym_LT_AMP] = ACTIONS(6049), + [anon_sym_GT_AMP] = ACTIONS(6049), + [anon_sym_LT_LT] = ACTIONS(6930), + [anon_sym_LT_LT_DASH] = ACTIONS(6049), + [anon_sym_LT_LT_LT] = ACTIONS(6049), + [sym__special_characters] = ACTIONS(6930), + [anon_sym_DQUOTE] = ACTIONS(6049), + [anon_sym_DOLLAR] = ACTIONS(6930), + [sym_raw_string] = ACTIONS(6049), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6049), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6049), + [anon_sym_BQUOTE] = ACTIONS(6049), + [anon_sym_LT_LPAREN] = ACTIONS(6049), + [anon_sym_GT_LPAREN] = ACTIONS(6049), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5987), + [sym_word] = ACTIONS(6051), }, [3018] = { [sym_concatenation] = STATE(451), @@ -77671,122 +78006,124 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7090), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7160), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3019] = { - [sym_file_descriptor] = ACTIONS(5991), - [sym__concat] = ACTIONS(5991), - [anon_sym_PIPE] = ACTIONS(6864), - [anon_sym_RPAREN] = ACTIONS(5991), - [anon_sym_PIPE_AMP] = ACTIONS(5991), - [anon_sym_AMP_AMP] = ACTIONS(5991), - [anon_sym_PIPE_PIPE] = ACTIONS(5991), - [anon_sym_EQ_TILDE] = ACTIONS(6864), - [anon_sym_LT] = ACTIONS(6864), - [anon_sym_GT] = ACTIONS(6864), - [anon_sym_GT_GT] = ACTIONS(5991), - [anon_sym_AMP_GT] = ACTIONS(6864), - [anon_sym_AMP_GT_GT] = ACTIONS(5991), - [anon_sym_LT_AMP] = ACTIONS(5991), - [anon_sym_GT_AMP] = ACTIONS(5991), - [anon_sym_LT_LT] = ACTIONS(6864), - [anon_sym_LT_LT_DASH] = ACTIONS(5991), - [anon_sym_LT_LT_LT] = ACTIONS(5991), - [sym__special_characters] = ACTIONS(6864), - [anon_sym_DQUOTE] = ACTIONS(5991), - [anon_sym_DOLLAR] = ACTIONS(6864), - [sym_raw_string] = ACTIONS(5991), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5991), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5991), - [anon_sym_BQUOTE] = ACTIONS(5991), - [anon_sym_LT_LPAREN] = ACTIONS(5991), - [anon_sym_GT_LPAREN] = ACTIONS(5991), + [sym_file_descriptor] = ACTIONS(6055), + [sym__concat] = ACTIONS(6055), + [anon_sym_PIPE] = ACTIONS(6934), + [anon_sym_RPAREN] = ACTIONS(6055), + [anon_sym_PIPE_AMP] = ACTIONS(6055), + [anon_sym_AMP_AMP] = ACTIONS(6055), + [anon_sym_PIPE_PIPE] = ACTIONS(6055), + [anon_sym_EQ_TILDE] = ACTIONS(6934), + [anon_sym_EQ_EQ] = ACTIONS(6934), + [anon_sym_LT] = ACTIONS(6934), + [anon_sym_GT] = ACTIONS(6934), + [anon_sym_GT_GT] = ACTIONS(6055), + [anon_sym_AMP_GT] = ACTIONS(6934), + [anon_sym_AMP_GT_GT] = ACTIONS(6055), + [anon_sym_LT_AMP] = ACTIONS(6055), + [anon_sym_GT_AMP] = ACTIONS(6055), + [anon_sym_LT_LT] = ACTIONS(6934), + [anon_sym_LT_LT_DASH] = ACTIONS(6055), + [anon_sym_LT_LT_LT] = ACTIONS(6055), + [sym__special_characters] = ACTIONS(6934), + [anon_sym_DQUOTE] = ACTIONS(6055), + [anon_sym_DOLLAR] = ACTIONS(6934), + [sym_raw_string] = ACTIONS(6055), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6055), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6055), + [anon_sym_BQUOTE] = ACTIONS(6055), + [anon_sym_LT_LPAREN] = ACTIONS(6055), + [anon_sym_GT_LPAREN] = ACTIONS(6055), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5993), + [sym_word] = ACTIONS(6057), }, [3020] = { - [sym_file_descriptor] = ACTIONS(5995), - [sym__concat] = ACTIONS(5995), - [anon_sym_PIPE] = ACTIONS(6866), - [anon_sym_RPAREN] = ACTIONS(5995), - [anon_sym_PIPE_AMP] = ACTIONS(5995), - [anon_sym_AMP_AMP] = ACTIONS(5995), - [anon_sym_PIPE_PIPE] = ACTIONS(5995), - [anon_sym_EQ_TILDE] = ACTIONS(6866), - [anon_sym_LT] = ACTIONS(6866), - [anon_sym_GT] = ACTIONS(6866), - [anon_sym_GT_GT] = ACTIONS(5995), - [anon_sym_AMP_GT] = ACTIONS(6866), - [anon_sym_AMP_GT_GT] = ACTIONS(5995), - [anon_sym_LT_AMP] = ACTIONS(5995), - [anon_sym_GT_AMP] = ACTIONS(5995), - [anon_sym_LT_LT] = ACTIONS(6866), - [anon_sym_LT_LT_DASH] = ACTIONS(5995), - [anon_sym_LT_LT_LT] = ACTIONS(5995), - [sym__special_characters] = ACTIONS(6866), - [anon_sym_DQUOTE] = ACTIONS(5995), - [anon_sym_DOLLAR] = ACTIONS(6866), - [sym_raw_string] = ACTIONS(5995), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5995), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5995), - [anon_sym_BQUOTE] = ACTIONS(5995), - [anon_sym_LT_LPAREN] = ACTIONS(5995), - [anon_sym_GT_LPAREN] = ACTIONS(5995), + [sym_file_descriptor] = ACTIONS(6059), + [sym__concat] = ACTIONS(6059), + [anon_sym_PIPE] = ACTIONS(6936), + [anon_sym_RPAREN] = ACTIONS(6059), + [anon_sym_PIPE_AMP] = ACTIONS(6059), + [anon_sym_AMP_AMP] = ACTIONS(6059), + [anon_sym_PIPE_PIPE] = ACTIONS(6059), + [anon_sym_EQ_TILDE] = ACTIONS(6936), + [anon_sym_EQ_EQ] = ACTIONS(6936), + [anon_sym_LT] = ACTIONS(6936), + [anon_sym_GT] = ACTIONS(6936), + [anon_sym_GT_GT] = ACTIONS(6059), + [anon_sym_AMP_GT] = ACTIONS(6936), + [anon_sym_AMP_GT_GT] = ACTIONS(6059), + [anon_sym_LT_AMP] = ACTIONS(6059), + [anon_sym_GT_AMP] = ACTIONS(6059), + [anon_sym_LT_LT] = ACTIONS(6936), + [anon_sym_LT_LT_DASH] = ACTIONS(6059), + [anon_sym_LT_LT_LT] = ACTIONS(6059), + [sym__special_characters] = ACTIONS(6936), + [anon_sym_DQUOTE] = ACTIONS(6059), + [anon_sym_DOLLAR] = ACTIONS(6936), + [sym_raw_string] = ACTIONS(6059), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6059), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6059), + [anon_sym_BQUOTE] = ACTIONS(6059), + [anon_sym_LT_LPAREN] = ACTIONS(6059), + [anon_sym_GT_LPAREN] = ACTIONS(6059), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5997), + [sym_word] = ACTIONS(6061), }, [3021] = { - [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_file_descriptor] = ACTIONS(3283), + [sym__concat] = ACTIONS(3283), + [anon_sym_PIPE] = ACTIONS(4602), + [anon_sym_RPAREN] = ACTIONS(3283), + [anon_sym_PIPE_AMP] = ACTIONS(3283), + [anon_sym_AMP_AMP] = ACTIONS(3283), + [anon_sym_PIPE_PIPE] = ACTIONS(3283), + [anon_sym_LT] = ACTIONS(4602), + [anon_sym_GT] = ACTIONS(4602), + [anon_sym_GT_GT] = ACTIONS(3283), + [anon_sym_AMP_GT] = ACTIONS(4602), + [anon_sym_AMP_GT_GT] = ACTIONS(3283), + [anon_sym_LT_AMP] = ACTIONS(3283), + [anon_sym_GT_AMP] = ACTIONS(3283), + [anon_sym_LT_LT] = ACTIONS(4602), + [anon_sym_LT_LT_DASH] = ACTIONS(3283), + [anon_sym_LT_LT_LT] = ACTIONS(3283), [sym_comment] = ACTIONS(56), }, [3022] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(7092), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(7162), [sym_comment] = ACTIONS(56), }, [3023] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(7094), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(7164), [sym_comment] = ACTIONS(56), }, [3024] = { - [anon_sym_RBRACE] = ACTIONS(7094), + [anon_sym_RBRACE] = ACTIONS(7164), [sym_comment] = ACTIONS(56), }, [3025] = { @@ -77798,44 +78135,44 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3536), - [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), + [anon_sym_RBRACE] = ACTIONS(7166), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3026] = { - [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_file_descriptor] = ACTIONS(3347), + [sym__concat] = ACTIONS(3347), + [anon_sym_PIPE] = ACTIONS(4610), + [anon_sym_RPAREN] = ACTIONS(3347), + [anon_sym_PIPE_AMP] = ACTIONS(3347), + [anon_sym_AMP_AMP] = ACTIONS(3347), + [anon_sym_PIPE_PIPE] = ACTIONS(3347), + [anon_sym_LT] = ACTIONS(4610), + [anon_sym_GT] = ACTIONS(4610), + [anon_sym_GT_GT] = ACTIONS(3347), + [anon_sym_AMP_GT] = ACTIONS(4610), + [anon_sym_AMP_GT_GT] = ACTIONS(3347), + [anon_sym_LT_AMP] = ACTIONS(3347), + [anon_sym_GT_AMP] = ACTIONS(3347), + [anon_sym_LT_LT] = ACTIONS(4610), + [anon_sym_LT_LT_DASH] = ACTIONS(3347), + [anon_sym_LT_LT_LT] = ACTIONS(3347), [sym_comment] = ACTIONS(56), }, [3027] = { @@ -77846,42 +78183,42 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(3538), [sym_command_substitution] = STATE(3538), [sym_process_substitution] = STATE(3538), - [anon_sym_RBRACE] = ACTIONS(7094), - [sym__special_characters] = ACTIONS(7098), - [anon_sym_DQUOTE] = ACTIONS(1924), - [anon_sym_DOLLAR] = ACTIONS(1926), - [sym_raw_string] = ACTIONS(7100), - [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), + [anon_sym_RBRACE] = ACTIONS(7164), + [sym__special_characters] = ACTIONS(7168), + [anon_sym_DQUOTE] = ACTIONS(1952), + [anon_sym_DOLLAR] = ACTIONS(1954), + [sym_raw_string] = ACTIONS(7170), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), + [anon_sym_BQUOTE] = ACTIONS(1962), + [anon_sym_LT_LPAREN] = ACTIONS(1964), + [anon_sym_GT_LPAREN] = ACTIONS(1964), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7102), + [sym_word] = ACTIONS(7172), }, [3028] = { - [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_file_descriptor] = ACTIONS(3392), + [sym__concat] = ACTIONS(3392), + [anon_sym_PIPE] = ACTIONS(4618), + [anon_sym_RPAREN] = ACTIONS(3392), + [anon_sym_PIPE_AMP] = ACTIONS(3392), + [anon_sym_AMP_AMP] = ACTIONS(3392), + [anon_sym_PIPE_PIPE] = ACTIONS(3392), + [anon_sym_LT] = ACTIONS(4618), + [anon_sym_GT] = ACTIONS(4618), + [anon_sym_GT_GT] = ACTIONS(3392), + [anon_sym_AMP_GT] = ACTIONS(4618), + [anon_sym_AMP_GT_GT] = ACTIONS(3392), + [anon_sym_LT_AMP] = ACTIONS(3392), + [anon_sym_GT_AMP] = ACTIONS(3392), + [anon_sym_LT_LT] = ACTIONS(4618), + [anon_sym_LT_LT_DASH] = ACTIONS(3392), + [anon_sym_LT_LT_LT] = ACTIONS(3392), [sym_comment] = ACTIONS(56), }, [3029] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(7104), + [sym_regex_without_right_brace] = ACTIONS(7174), }, [3030] = { [sym_concatenation] = STATE(451), @@ -77892,49 +78229,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7106), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7176), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3031] = { - [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_file_descriptor] = ACTIONS(3400), + [sym__concat] = ACTIONS(3400), + [anon_sym_PIPE] = ACTIONS(4624), + [anon_sym_RPAREN] = ACTIONS(3400), + [anon_sym_PIPE_AMP] = ACTIONS(3400), + [anon_sym_AMP_AMP] = ACTIONS(3400), + [anon_sym_PIPE_PIPE] = ACTIONS(3400), + [anon_sym_LT] = ACTIONS(4624), + [anon_sym_GT] = ACTIONS(4624), + [anon_sym_GT_GT] = ACTIONS(3400), + [anon_sym_AMP_GT] = ACTIONS(4624), + [anon_sym_AMP_GT_GT] = ACTIONS(3400), + [anon_sym_LT_AMP] = ACTIONS(3400), + [anon_sym_GT_AMP] = ACTIONS(3400), + [anon_sym_LT_LT] = ACTIONS(4624), + [anon_sym_LT_LT_DASH] = ACTIONS(3400), + [anon_sym_LT_LT_LT] = ACTIONS(3400), [sym_comment] = ACTIONS(56), }, [3032] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(7108), + [sym_regex_without_right_brace] = ACTIONS(7178), }, [3033] = { [sym_concatenation] = STATE(451), @@ -77945,29 +78282,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [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), + [anon_sym_RBRACE] = ACTIONS(7180), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3034] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(7112), + [sym_regex_without_right_brace] = ACTIONS(7182), }, [3035] = { [sym_concatenation] = STATE(451), @@ -77978,25 +78315,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7094), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7164), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3036] = { [sym_concatenation] = STATE(451), @@ -78007,44 +78344,44 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3546), - [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), + [anon_sym_RBRACE] = ACTIONS(7184), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3037] = { - [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_file_descriptor] = ACTIONS(3412), + [sym__concat] = ACTIONS(3412), + [anon_sym_PIPE] = ACTIONS(4634), + [anon_sym_RPAREN] = ACTIONS(3412), + [anon_sym_PIPE_AMP] = ACTIONS(3412), + [anon_sym_AMP_AMP] = ACTIONS(3412), + [anon_sym_PIPE_PIPE] = ACTIONS(3412), + [anon_sym_LT] = ACTIONS(4634), + [anon_sym_GT] = ACTIONS(4634), + [anon_sym_GT_GT] = ACTIONS(3412), + [anon_sym_AMP_GT] = ACTIONS(4634), + [anon_sym_AMP_GT_GT] = ACTIONS(3412), + [anon_sym_LT_AMP] = ACTIONS(3412), + [anon_sym_GT_AMP] = ACTIONS(3412), + [anon_sym_LT_LT] = ACTIONS(4634), + [anon_sym_LT_LT_DASH] = ACTIONS(3412), + [anon_sym_LT_LT_LT] = ACTIONS(3412), [sym_comment] = ACTIONS(56), }, [3038] = { @@ -78056,67 +78393,67 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3548), - [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), + [anon_sym_RBRACE] = ACTIONS(7186), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3039] = { - [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_file_descriptor] = ACTIONS(3283), + [sym__concat] = ACTIONS(3283), + [sym_variable_name] = ACTIONS(3283), + [anon_sym_PIPE] = ACTIONS(4602), + [anon_sym_PIPE_AMP] = ACTIONS(3283), + [anon_sym_AMP_AMP] = ACTIONS(3283), + [anon_sym_PIPE_PIPE] = ACTIONS(3283), + [anon_sym_LT] = ACTIONS(4602), + [anon_sym_GT] = ACTIONS(4602), + [anon_sym_GT_GT] = ACTIONS(3283), + [anon_sym_AMP_GT] = ACTIONS(4602), + [anon_sym_AMP_GT_GT] = ACTIONS(3283), + [anon_sym_LT_AMP] = ACTIONS(3283), + [anon_sym_GT_AMP] = ACTIONS(3283), + [sym__special_characters] = ACTIONS(4602), + [anon_sym_DQUOTE] = ACTIONS(3283), + [anon_sym_DOLLAR] = ACTIONS(4602), + [sym_raw_string] = ACTIONS(3283), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3283), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3283), + [anon_sym_BQUOTE] = ACTIONS(3283), + [anon_sym_LT_LPAREN] = ACTIONS(3283), + [anon_sym_GT_LPAREN] = ACTIONS(3283), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4540), + [sym_word] = ACTIONS(4602), }, [3040] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(7118), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(7188), [sym_comment] = ACTIONS(56), }, [3041] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(7120), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(7190), [sym_comment] = ACTIONS(56), }, [3042] = { - [anon_sym_RBRACE] = ACTIONS(7120), + [anon_sym_RBRACE] = ACTIONS(7190), [sym_comment] = ACTIONS(56), }, [3043] = { @@ -78128,52 +78465,52 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3552), - [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), + [anon_sym_RBRACE] = ACTIONS(7192), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3044] = { - [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_file_descriptor] = ACTIONS(3347), + [sym__concat] = ACTIONS(3347), + [sym_variable_name] = ACTIONS(3347), + [anon_sym_PIPE] = ACTIONS(4610), + [anon_sym_PIPE_AMP] = ACTIONS(3347), + [anon_sym_AMP_AMP] = ACTIONS(3347), + [anon_sym_PIPE_PIPE] = ACTIONS(3347), + [anon_sym_LT] = ACTIONS(4610), + [anon_sym_GT] = ACTIONS(4610), + [anon_sym_GT_GT] = ACTIONS(3347), + [anon_sym_AMP_GT] = ACTIONS(4610), + [anon_sym_AMP_GT_GT] = ACTIONS(3347), + [anon_sym_LT_AMP] = ACTIONS(3347), + [anon_sym_GT_AMP] = ACTIONS(3347), + [sym__special_characters] = ACTIONS(4610), + [anon_sym_DQUOTE] = ACTIONS(3347), + [anon_sym_DOLLAR] = ACTIONS(4610), + [sym_raw_string] = ACTIONS(3347), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3347), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3347), + [anon_sym_BQUOTE] = ACTIONS(3347), + [anon_sym_LT_LPAREN] = ACTIONS(3347), + [anon_sym_GT_LPAREN] = ACTIONS(3347), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4548), + [sym_word] = ACTIONS(4610), }, [3045] = { [sym_concatenation] = STATE(3555), @@ -78183,49 +78520,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(3554), [sym_command_substitution] = STATE(3554), [sym_process_substitution] = STATE(3554), - [anon_sym_RBRACE] = ACTIONS(7120), - [sym__special_characters] = ACTIONS(7124), - [anon_sym_DQUOTE] = ACTIONS(1924), - [anon_sym_DOLLAR] = ACTIONS(1926), - [sym_raw_string] = ACTIONS(7126), - [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), + [anon_sym_RBRACE] = ACTIONS(7190), + [sym__special_characters] = ACTIONS(7194), + [anon_sym_DQUOTE] = ACTIONS(1952), + [anon_sym_DOLLAR] = ACTIONS(1954), + [sym_raw_string] = ACTIONS(7196), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), + [anon_sym_BQUOTE] = ACTIONS(1962), + [anon_sym_LT_LPAREN] = ACTIONS(1964), + [anon_sym_GT_LPAREN] = ACTIONS(1964), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7128), + [sym_word] = ACTIONS(7198), }, [3046] = { - [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_file_descriptor] = ACTIONS(3392), + [sym__concat] = ACTIONS(3392), + [sym_variable_name] = ACTIONS(3392), + [anon_sym_PIPE] = ACTIONS(4618), + [anon_sym_PIPE_AMP] = ACTIONS(3392), + [anon_sym_AMP_AMP] = ACTIONS(3392), + [anon_sym_PIPE_PIPE] = ACTIONS(3392), + [anon_sym_LT] = ACTIONS(4618), + [anon_sym_GT] = ACTIONS(4618), + [anon_sym_GT_GT] = ACTIONS(3392), + [anon_sym_AMP_GT] = ACTIONS(4618), + [anon_sym_AMP_GT_GT] = ACTIONS(3392), + [anon_sym_LT_AMP] = ACTIONS(3392), + [anon_sym_GT_AMP] = ACTIONS(3392), + [sym__special_characters] = ACTIONS(4618), + [anon_sym_DQUOTE] = ACTIONS(3392), + [anon_sym_DOLLAR] = ACTIONS(4618), + [sym_raw_string] = ACTIONS(3392), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3392), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3392), + [anon_sym_BQUOTE] = ACTIONS(3392), + [anon_sym_LT_LPAREN] = ACTIONS(3392), + [anon_sym_GT_LPAREN] = ACTIONS(3392), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4556), + [sym_word] = ACTIONS(4618), }, [3047] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(7130), + [sym_regex_without_right_brace] = ACTIONS(7200), }, [3048] = { [sym_concatenation] = STATE(451), @@ -78236,56 +78573,56 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7132), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7202), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3049] = { - [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_file_descriptor] = ACTIONS(3400), + [sym__concat] = ACTIONS(3400), + [sym_variable_name] = ACTIONS(3400), + [anon_sym_PIPE] = ACTIONS(4624), + [anon_sym_PIPE_AMP] = ACTIONS(3400), + [anon_sym_AMP_AMP] = ACTIONS(3400), + [anon_sym_PIPE_PIPE] = ACTIONS(3400), + [anon_sym_LT] = ACTIONS(4624), + [anon_sym_GT] = ACTIONS(4624), + [anon_sym_GT_GT] = ACTIONS(3400), + [anon_sym_AMP_GT] = ACTIONS(4624), + [anon_sym_AMP_GT_GT] = ACTIONS(3400), + [anon_sym_LT_AMP] = ACTIONS(3400), + [anon_sym_GT_AMP] = ACTIONS(3400), + [sym__special_characters] = ACTIONS(4624), + [anon_sym_DQUOTE] = ACTIONS(3400), + [anon_sym_DOLLAR] = ACTIONS(4624), + [sym_raw_string] = ACTIONS(3400), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3400), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3400), + [anon_sym_BQUOTE] = ACTIONS(3400), + [anon_sym_LT_LPAREN] = ACTIONS(3400), + [anon_sym_GT_LPAREN] = ACTIONS(3400), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4562), + [sym_word] = ACTIONS(4624), }, [3050] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(7134), + [sym_regex_without_right_brace] = ACTIONS(7204), }, [3051] = { [sym_concatenation] = STATE(451), @@ -78296,29 +78633,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7136), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7206), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3052] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(7138), + [sym_regex_without_right_brace] = ACTIONS(7208), }, [3053] = { [sym_concatenation] = STATE(451), @@ -78329,25 +78666,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7120), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7190), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3054] = { [sym_concatenation] = STATE(451), @@ -78358,52 +78695,52 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3562), - [anon_sym_RBRACE] = ACTIONS(7140), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7210), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3055] = { - [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_file_descriptor] = ACTIONS(3412), + [sym__concat] = ACTIONS(3412), + [sym_variable_name] = ACTIONS(3412), + [anon_sym_PIPE] = ACTIONS(4634), + [anon_sym_PIPE_AMP] = ACTIONS(3412), + [anon_sym_AMP_AMP] = ACTIONS(3412), + [anon_sym_PIPE_PIPE] = ACTIONS(3412), + [anon_sym_LT] = ACTIONS(4634), + [anon_sym_GT] = ACTIONS(4634), + [anon_sym_GT_GT] = ACTIONS(3412), + [anon_sym_AMP_GT] = ACTIONS(4634), + [anon_sym_AMP_GT_GT] = ACTIONS(3412), + [anon_sym_LT_AMP] = ACTIONS(3412), + [anon_sym_GT_AMP] = ACTIONS(3412), + [sym__special_characters] = ACTIONS(4634), + [anon_sym_DQUOTE] = ACTIONS(3412), + [anon_sym_DOLLAR] = ACTIONS(4634), + [sym_raw_string] = ACTIONS(3412), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3412), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3412), + [anon_sym_BQUOTE] = ACTIONS(3412), + [anon_sym_LT_LPAREN] = ACTIONS(3412), + [anon_sym_GT_LPAREN] = ACTIONS(3412), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4572), + [sym_word] = ACTIONS(4634), }, [3056] = { [sym_concatenation] = STATE(451), @@ -78414,44 +78751,44 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3564), - [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), + [anon_sym_RBRACE] = ACTIONS(7212), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3057] = { [aux_sym_concatenation_repeat1] = STATE(3060), - [sym__concat] = ACTIONS(6240), - [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__concat] = ACTIONS(6306), + [anon_sym_PIPE] = ACTIONS(1241), + [anon_sym_PIPE_AMP] = ACTIONS(1239), + [anon_sym_AMP_AMP] = ACTIONS(1239), + [anon_sym_PIPE_PIPE] = ACTIONS(1239), + [anon_sym_BQUOTE] = ACTIONS(1239), [sym_comment] = ACTIONS(56), }, [3058] = { [aux_sym_concatenation_repeat1] = STATE(3060), - [sym__concat] = ACTIONS(6240), - [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__concat] = ACTIONS(6306), + [anon_sym_PIPE] = ACTIONS(1245), + [anon_sym_PIPE_AMP] = ACTIONS(1243), + [anon_sym_AMP_AMP] = ACTIONS(1243), + [anon_sym_PIPE_PIPE] = ACTIONS(1243), + [anon_sym_BQUOTE] = ACTIONS(1243), [sym_comment] = ACTIONS(56), }, [3059] = { @@ -78461,35 +78798,35 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(3565), [sym_command_substitution] = STATE(3565), [sym_process_substitution] = STATE(3565), - [sym__special_characters] = ACTIONS(7144), - [anon_sym_DQUOTE] = ACTIONS(5107), - [anon_sym_DOLLAR] = ACTIONS(5109), - [sym_raw_string] = ACTIONS(7146), - [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__special_characters] = ACTIONS(7214), + [anon_sym_DQUOTE] = ACTIONS(5169), + [anon_sym_DOLLAR] = ACTIONS(5171), + [sym_raw_string] = ACTIONS(7216), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5175), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5177), + [anon_sym_BQUOTE] = ACTIONS(5179), + [anon_sym_LT_LPAREN] = ACTIONS(5181), + [anon_sym_GT_LPAREN] = ACTIONS(5181), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7144), + [sym_word] = ACTIONS(7214), }, [3060] = { [aux_sym_concatenation_repeat1] = STATE(3566), - [sym__concat] = ACTIONS(6240), - [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__concat] = ACTIONS(6306), + [anon_sym_PIPE] = ACTIONS(1567), + [anon_sym_PIPE_AMP] = ACTIONS(788), + [anon_sym_AMP_AMP] = ACTIONS(788), + [anon_sym_PIPE_PIPE] = ACTIONS(788), + [anon_sym_BQUOTE] = ACTIONS(788), [sym_comment] = ACTIONS(56), }, [3061] = { - [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__concat] = ACTIONS(792), + [anon_sym_PIPE] = ACTIONS(1569), + [anon_sym_PIPE_AMP] = ACTIONS(792), + [anon_sym_AMP_AMP] = ACTIONS(792), + [anon_sym_PIPE_PIPE] = ACTIONS(792), + [anon_sym_BQUOTE] = ACTIONS(792), [sym_comment] = ACTIONS(56), }, [3062] = { @@ -78497,7 +78834,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(134), [sym_command_substitution] = STATE(134), [aux_sym_string_repeat1] = STATE(447), - [anon_sym_DQUOTE] = ACTIONS(7148), + [anon_sym_DQUOTE] = ACTIONS(7218), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -78506,35 +78843,35 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(182), }, [3063] = { - [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__concat] = ACTIONS(824), + [anon_sym_PIPE] = ACTIONS(1573), + [anon_sym_PIPE_AMP] = ACTIONS(824), + [anon_sym_AMP_AMP] = ACTIONS(824), + [anon_sym_PIPE_PIPE] = ACTIONS(824), + [anon_sym_BQUOTE] = ACTIONS(824), [sym_comment] = ACTIONS(56), }, [3064] = { - [sym__concat] = ACTIONS(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__concat] = ACTIONS(828), + [anon_sym_PIPE] = ACTIONS(1575), + [anon_sym_PIPE_AMP] = ACTIONS(828), + [anon_sym_AMP_AMP] = ACTIONS(828), + [anon_sym_PIPE_PIPE] = ACTIONS(828), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_comment] = ACTIONS(56), }, [3065] = { - [sym__concat] = ACTIONS(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__concat] = ACTIONS(832), + [anon_sym_PIPE] = ACTIONS(1577), + [anon_sym_PIPE_AMP] = ACTIONS(832), + [anon_sym_AMP_AMP] = ACTIONS(832), + [anon_sym_PIPE_PIPE] = ACTIONS(832), + [anon_sym_BQUOTE] = ACTIONS(832), [sym_comment] = ACTIONS(56), }, [3066] = { - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(7150), + [anon_sym_LBRACK] = ACTIONS(836), + [anon_sym_EQ] = ACTIONS(7220), [sym_comment] = ACTIONS(56), }, [3067] = { @@ -78546,39 +78883,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3571), - [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), - [aux_sym_SLASH] = ACTIONS(7154), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7222), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(7224), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3068] = { [sym_subscript] = STATE(3575), - [sym_variable_name] = ACTIONS(7156), - [anon_sym_DOLLAR] = ACTIONS(7158), - [anon_sym_DASH] = ACTIONS(7158), + [sym_variable_name] = ACTIONS(7226), + [anon_sym_DOLLAR] = ACTIONS(7228), + [anon_sym_DASH] = ACTIONS(7228), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7160), - [anon_sym_STAR] = ACTIONS(7158), - [anon_sym_AT] = ACTIONS(7158), - [anon_sym_QMARK] = ACTIONS(7158), - [anon_sym_0] = ACTIONS(7162), - [anon_sym__] = ACTIONS(7162), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7230), + [anon_sym_STAR] = ACTIONS(7228), + [anon_sym_AT] = ACTIONS(7228), + [anon_sym_QMARK] = ACTIONS(7228), + [anon_sym_0] = ACTIONS(7232), + [anon_sym__] = ACTIONS(7232), }, [3069] = { [sym_concatenation] = STATE(451), @@ -78589,26 +78926,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3578), - [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), - [aux_sym_SLASH] = ACTIONS(7166), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7234), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(7236), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3070] = { [sym_concatenation] = STATE(451), @@ -78619,190 +78956,190 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3581), - [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), - [aux_sym_SLASH] = ACTIONS(7170), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7238), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(7240), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3071] = { - [anon_sym_PIPE] = ACTIONS(954), - [anon_sym_RPAREN] = ACTIONS(7172), - [anon_sym_PIPE_AMP] = ACTIONS(958), - [anon_sym_AMP_AMP] = ACTIONS(960), - [anon_sym_PIPE_PIPE] = ACTIONS(960), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(7242), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), [sym_comment] = ACTIONS(56), }, [3072] = { - [sym_file_descriptor] = ACTIONS(378), - [sym_variable_name] = ACTIONS(378), - [anon_sym_PIPE] = ACTIONS(954), - [anon_sym_RPAREN] = ACTIONS(7172), - [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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(7242), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [3073] = { - [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(7172), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_PIPE_AMP] = ACTIONS(1072), + [anon_sym_AMP_AMP] = ACTIONS(1074), + [anon_sym_PIPE_PIPE] = ACTIONS(1074), + [anon_sym_BQUOTE] = ACTIONS(7242), [sym_comment] = ACTIONS(56), }, [3074] = { - [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(7172), - [anon_sym_LT_LPAREN] = ACTIONS(378), - [anon_sym_GT_LPAREN] = ACTIONS(378), + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_PIPE_AMP] = ACTIONS(1072), + [anon_sym_AMP_AMP] = ACTIONS(1074), + [anon_sym_PIPE_PIPE] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(7242), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [3075] = { - [anon_sym_PIPE] = ACTIONS(954), - [anon_sym_RPAREN] = ACTIONS(7174), - [anon_sym_PIPE_AMP] = ACTIONS(958), - [anon_sym_AMP_AMP] = ACTIONS(960), - [anon_sym_PIPE_PIPE] = ACTIONS(960), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(7244), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), [sym_comment] = ACTIONS(56), }, [3076] = { - [sym_file_descriptor] = ACTIONS(378), - [sym_variable_name] = ACTIONS(378), - [anon_sym_PIPE] = ACTIONS(954), - [anon_sym_RPAREN] = ACTIONS(7174), - [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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(7244), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [3077] = { - [sym__concat] = ACTIONS(4728), - [sym_variable_name] = ACTIONS(4728), - [anon_sym_PIPE] = ACTIONS(5780), - [anon_sym_PIPE_AMP] = ACTIONS(4728), - [anon_sym_AMP_AMP] = ACTIONS(4728), - [anon_sym_PIPE_PIPE] = ACTIONS(4728), - [sym__special_characters] = ACTIONS(5780), - [anon_sym_DQUOTE] = ACTIONS(4728), - [anon_sym_DOLLAR] = ACTIONS(5780), - [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__concat] = ACTIONS(4790), + [sym_variable_name] = ACTIONS(4790), + [anon_sym_PIPE] = ACTIONS(5844), + [anon_sym_PIPE_AMP] = ACTIONS(4790), + [anon_sym_AMP_AMP] = ACTIONS(4790), + [anon_sym_PIPE_PIPE] = ACTIONS(4790), + [sym__special_characters] = ACTIONS(5844), + [anon_sym_DQUOTE] = ACTIONS(4790), + [anon_sym_DOLLAR] = ACTIONS(5844), + [sym_raw_string] = ACTIONS(4790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4790), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4790), + [anon_sym_BQUOTE] = ACTIONS(4790), + [anon_sym_LT_LPAREN] = ACTIONS(4790), + [anon_sym_GT_LPAREN] = ACTIONS(4790), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5780), - [sym_word] = ACTIONS(4730), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5844), + [sym_word] = ACTIONS(4792), }, [3078] = { - [sym__concat] = ACTIONS(4734), - [sym_variable_name] = ACTIONS(4734), - [anon_sym_PIPE] = ACTIONS(5782), - [anon_sym_PIPE_AMP] = ACTIONS(4734), - [anon_sym_AMP_AMP] = ACTIONS(4734), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym__special_characters] = ACTIONS(5782), - [anon_sym_DQUOTE] = ACTIONS(4734), - [anon_sym_DOLLAR] = ACTIONS(5782), - [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__concat] = ACTIONS(4796), + [sym_variable_name] = ACTIONS(4796), + [anon_sym_PIPE] = ACTIONS(5846), + [anon_sym_PIPE_AMP] = ACTIONS(4796), + [anon_sym_AMP_AMP] = ACTIONS(4796), + [anon_sym_PIPE_PIPE] = ACTIONS(4796), + [sym__special_characters] = ACTIONS(5846), + [anon_sym_DQUOTE] = ACTIONS(4796), + [anon_sym_DOLLAR] = ACTIONS(5846), + [sym_raw_string] = ACTIONS(4796), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4796), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4796), + [anon_sym_BQUOTE] = ACTIONS(4796), + [anon_sym_LT_LPAREN] = ACTIONS(4796), + [anon_sym_GT_LPAREN] = ACTIONS(4796), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5782), - [sym_word] = ACTIONS(4736), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5846), + [sym_word] = ACTIONS(4798), }, [3079] = { - [sym__concat] = ACTIONS(4797), - [sym_variable_name] = ACTIONS(4797), - [anon_sym_PIPE] = ACTIONS(5784), - [anon_sym_PIPE_AMP] = ACTIONS(4797), - [anon_sym_AMP_AMP] = ACTIONS(4797), - [anon_sym_PIPE_PIPE] = ACTIONS(4797), - [sym__special_characters] = ACTIONS(5784), - [anon_sym_DQUOTE] = ACTIONS(4797), - [anon_sym_DOLLAR] = ACTIONS(5784), - [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__concat] = ACTIONS(4859), + [sym_variable_name] = ACTIONS(4859), + [anon_sym_PIPE] = ACTIONS(5848), + [anon_sym_PIPE_AMP] = ACTIONS(4859), + [anon_sym_AMP_AMP] = ACTIONS(4859), + [anon_sym_PIPE_PIPE] = ACTIONS(4859), + [sym__special_characters] = ACTIONS(5848), + [anon_sym_DQUOTE] = ACTIONS(4859), + [anon_sym_DOLLAR] = ACTIONS(5848), + [sym_raw_string] = ACTIONS(4859), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4859), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4859), + [anon_sym_BQUOTE] = ACTIONS(4859), + [anon_sym_LT_LPAREN] = ACTIONS(4859), + [anon_sym_GT_LPAREN] = ACTIONS(4859), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5784), - [sym_word] = ACTIONS(4799), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5848), + [sym_word] = ACTIONS(4861), }, [3080] = { [sym_concatenation] = STATE(451), @@ -78813,40 +79150,40 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7176), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7246), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3081] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(7178), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(7248), [sym_comment] = ACTIONS(56), }, [3082] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(7180), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(7250), [sym_comment] = ACTIONS(56), }, [3083] = { - [anon_sym_RBRACE] = ACTIONS(7180), + [anon_sym_RBRACE] = ACTIONS(7250), [sym_comment] = ACTIONS(56), }, [3084] = { @@ -78858,45 +79195,45 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3588), - [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), + [anon_sym_RBRACE] = ACTIONS(7252), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3085] = { - [sym__concat] = ACTIONS(4809), - [sym_variable_name] = ACTIONS(4809), - [anon_sym_PIPE] = ACTIONS(5794), - [anon_sym_PIPE_AMP] = ACTIONS(4809), - [anon_sym_AMP_AMP] = ACTIONS(4809), - [anon_sym_PIPE_PIPE] = ACTIONS(4809), - [sym__special_characters] = ACTIONS(5794), - [anon_sym_DQUOTE] = ACTIONS(4809), - [anon_sym_DOLLAR] = ACTIONS(5794), - [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__concat] = ACTIONS(4871), + [sym_variable_name] = ACTIONS(4871), + [anon_sym_PIPE] = ACTIONS(5858), + [anon_sym_PIPE_AMP] = ACTIONS(4871), + [anon_sym_AMP_AMP] = ACTIONS(4871), + [anon_sym_PIPE_PIPE] = ACTIONS(4871), + [sym__special_characters] = ACTIONS(5858), + [anon_sym_DQUOTE] = ACTIONS(4871), + [anon_sym_DOLLAR] = ACTIONS(5858), + [sym_raw_string] = ACTIONS(4871), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4871), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4871), + [anon_sym_BQUOTE] = ACTIONS(4871), + [anon_sym_LT_LPAREN] = ACTIONS(4871), + [anon_sym_GT_LPAREN] = ACTIONS(4871), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5794), - [sym_word] = ACTIONS(4811), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5858), + [sym_word] = ACTIONS(4873), }, [3086] = { [sym_concatenation] = STATE(451), @@ -78907,45 +79244,45 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3590), - [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), + [anon_sym_RBRACE] = ACTIONS(7254), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3087] = { - [sym__concat] = ACTIONS(4815), - [sym_variable_name] = ACTIONS(4815), - [anon_sym_PIPE] = ACTIONS(5798), - [anon_sym_PIPE_AMP] = ACTIONS(4815), - [anon_sym_AMP_AMP] = ACTIONS(4815), - [anon_sym_PIPE_PIPE] = ACTIONS(4815), - [sym__special_characters] = ACTIONS(5798), - [anon_sym_DQUOTE] = ACTIONS(4815), - [anon_sym_DOLLAR] = ACTIONS(5798), - [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__concat] = ACTIONS(4877), + [sym_variable_name] = ACTIONS(4877), + [anon_sym_PIPE] = ACTIONS(5862), + [anon_sym_PIPE_AMP] = ACTIONS(4877), + [anon_sym_AMP_AMP] = ACTIONS(4877), + [anon_sym_PIPE_PIPE] = ACTIONS(4877), + [sym__special_characters] = ACTIONS(5862), + [anon_sym_DQUOTE] = ACTIONS(4877), + [anon_sym_DOLLAR] = ACTIONS(5862), + [sym_raw_string] = ACTIONS(4877), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4877), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4877), + [anon_sym_BQUOTE] = ACTIONS(4877), + [anon_sym_LT_LPAREN] = ACTIONS(4877), + [anon_sym_GT_LPAREN] = ACTIONS(4877), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5798), - [sym_word] = ACTIONS(4817), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5862), + [sym_word] = ACTIONS(4879), }, [3088] = { [sym_concatenation] = STATE(451), @@ -78956,45 +79293,45 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3592), - [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), + [anon_sym_RBRACE] = ACTIONS(7256), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3089] = { - [sym__concat] = ACTIONS(4821), - [sym_variable_name] = ACTIONS(4821), - [anon_sym_PIPE] = ACTIONS(5802), - [anon_sym_PIPE_AMP] = ACTIONS(4821), - [anon_sym_AMP_AMP] = ACTIONS(4821), - [anon_sym_PIPE_PIPE] = ACTIONS(4821), - [sym__special_characters] = ACTIONS(5802), - [anon_sym_DQUOTE] = ACTIONS(4821), - [anon_sym_DOLLAR] = ACTIONS(5802), - [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__concat] = ACTIONS(4883), + [sym_variable_name] = ACTIONS(4883), + [anon_sym_PIPE] = ACTIONS(5866), + [anon_sym_PIPE_AMP] = ACTIONS(4883), + [anon_sym_AMP_AMP] = ACTIONS(4883), + [anon_sym_PIPE_PIPE] = ACTIONS(4883), + [sym__special_characters] = ACTIONS(5866), + [anon_sym_DQUOTE] = ACTIONS(4883), + [anon_sym_DOLLAR] = ACTIONS(5866), + [sym_raw_string] = ACTIONS(4883), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4883), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4883), + [anon_sym_BQUOTE] = ACTIONS(4883), + [anon_sym_LT_LPAREN] = ACTIONS(4883), + [anon_sym_GT_LPAREN] = ACTIONS(4883), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5802), - [sym_word] = ACTIONS(4823), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5866), + [sym_word] = ACTIONS(4885), }, [3090] = { [sym_concatenation] = STATE(451), @@ -79005,45 +79342,45 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(7258), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3091] = { - [sym__concat] = ACTIONS(4827), - [sym_variable_name] = ACTIONS(4827), - [anon_sym_PIPE] = ACTIONS(5806), - [anon_sym_PIPE_AMP] = ACTIONS(4827), - [anon_sym_AMP_AMP] = ACTIONS(4827), - [anon_sym_PIPE_PIPE] = ACTIONS(4827), - [sym__special_characters] = ACTIONS(5806), - [anon_sym_DQUOTE] = ACTIONS(4827), - [anon_sym_DOLLAR] = ACTIONS(5806), - [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__concat] = ACTIONS(4889), + [sym_variable_name] = ACTIONS(4889), + [anon_sym_PIPE] = ACTIONS(5870), + [anon_sym_PIPE_AMP] = ACTIONS(4889), + [anon_sym_AMP_AMP] = ACTIONS(4889), + [anon_sym_PIPE_PIPE] = ACTIONS(4889), + [sym__special_characters] = ACTIONS(5870), + [anon_sym_DQUOTE] = ACTIONS(4889), + [anon_sym_DOLLAR] = ACTIONS(5870), + [sym_raw_string] = ACTIONS(4889), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4889), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4889), + [anon_sym_BQUOTE] = ACTIONS(4889), + [anon_sym_LT_LPAREN] = ACTIONS(4889), + [anon_sym_GT_LPAREN] = ACTIONS(4889), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5806), - [sym_word] = ACTIONS(4829), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5870), + [sym_word] = ACTIONS(4891), }, [3092] = { [sym_concatenation] = STATE(451), @@ -79054,82 +79391,82 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7190), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7260), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3093] = { - [sym__concat] = ACTIONS(4728), - [anon_sym_PIPE] = ACTIONS(5780), - [anon_sym_PIPE_AMP] = ACTIONS(4728), - [anon_sym_AMP_AMP] = ACTIONS(4728), - [anon_sym_PIPE_PIPE] = ACTIONS(4728), - [sym__special_characters] = ACTIONS(5780), - [anon_sym_DQUOTE] = ACTIONS(4728), - [anon_sym_DOLLAR] = ACTIONS(5780), - [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__concat] = ACTIONS(4790), + [anon_sym_PIPE] = ACTIONS(5844), + [anon_sym_PIPE_AMP] = ACTIONS(4790), + [anon_sym_AMP_AMP] = ACTIONS(4790), + [anon_sym_PIPE_PIPE] = ACTIONS(4790), + [sym__special_characters] = ACTIONS(5844), + [anon_sym_DQUOTE] = ACTIONS(4790), + [anon_sym_DOLLAR] = ACTIONS(5844), + [sym_raw_string] = ACTIONS(4790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4790), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4790), + [anon_sym_BQUOTE] = ACTIONS(4790), + [anon_sym_LT_LPAREN] = ACTIONS(4790), + [anon_sym_GT_LPAREN] = ACTIONS(4790), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5780), - [sym_word] = ACTIONS(4730), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5844), + [sym_word] = ACTIONS(4792), }, [3094] = { - [sym__concat] = ACTIONS(4734), - [anon_sym_PIPE] = ACTIONS(5782), - [anon_sym_PIPE_AMP] = ACTIONS(4734), - [anon_sym_AMP_AMP] = ACTIONS(4734), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym__special_characters] = ACTIONS(5782), - [anon_sym_DQUOTE] = ACTIONS(4734), - [anon_sym_DOLLAR] = ACTIONS(5782), - [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__concat] = ACTIONS(4796), + [anon_sym_PIPE] = ACTIONS(5846), + [anon_sym_PIPE_AMP] = ACTIONS(4796), + [anon_sym_AMP_AMP] = ACTIONS(4796), + [anon_sym_PIPE_PIPE] = ACTIONS(4796), + [sym__special_characters] = ACTIONS(5846), + [anon_sym_DQUOTE] = ACTIONS(4796), + [anon_sym_DOLLAR] = ACTIONS(5846), + [sym_raw_string] = ACTIONS(4796), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4796), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4796), + [anon_sym_BQUOTE] = ACTIONS(4796), + [anon_sym_LT_LPAREN] = ACTIONS(4796), + [anon_sym_GT_LPAREN] = ACTIONS(4796), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5782), - [sym_word] = ACTIONS(4736), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5846), + [sym_word] = ACTIONS(4798), }, [3095] = { - [sym__concat] = ACTIONS(4797), - [anon_sym_PIPE] = ACTIONS(5784), - [anon_sym_PIPE_AMP] = ACTIONS(4797), - [anon_sym_AMP_AMP] = ACTIONS(4797), - [anon_sym_PIPE_PIPE] = ACTIONS(4797), - [sym__special_characters] = ACTIONS(5784), - [anon_sym_DQUOTE] = ACTIONS(4797), - [anon_sym_DOLLAR] = ACTIONS(5784), - [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__concat] = ACTIONS(4859), + [anon_sym_PIPE] = ACTIONS(5848), + [anon_sym_PIPE_AMP] = ACTIONS(4859), + [anon_sym_AMP_AMP] = ACTIONS(4859), + [anon_sym_PIPE_PIPE] = ACTIONS(4859), + [sym__special_characters] = ACTIONS(5848), + [anon_sym_DQUOTE] = ACTIONS(4859), + [anon_sym_DOLLAR] = ACTIONS(5848), + [sym_raw_string] = ACTIONS(4859), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4859), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4859), + [anon_sym_BQUOTE] = ACTIONS(4859), + [anon_sym_LT_LPAREN] = ACTIONS(4859), + [anon_sym_GT_LPAREN] = ACTIONS(4859), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5784), - [sym_word] = ACTIONS(4799), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5848), + [sym_word] = ACTIONS(4861), }, [3096] = { [sym_concatenation] = STATE(451), @@ -79140,40 +79477,40 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7192), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7262), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3097] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(7194), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(7264), [sym_comment] = ACTIONS(56), }, [3098] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(7196), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(7266), [sym_comment] = ACTIONS(56), }, [3099] = { - [anon_sym_RBRACE] = ACTIONS(7196), + [anon_sym_RBRACE] = ACTIONS(7266), [sym_comment] = ACTIONS(56), }, [3100] = { @@ -79185,44 +79522,44 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3599), - [anon_sym_RBRACE] = ACTIONS(7198), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7268), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3101] = { - [sym__concat] = ACTIONS(4809), - [anon_sym_PIPE] = ACTIONS(5794), - [anon_sym_PIPE_AMP] = ACTIONS(4809), - [anon_sym_AMP_AMP] = ACTIONS(4809), - [anon_sym_PIPE_PIPE] = ACTIONS(4809), - [sym__special_characters] = ACTIONS(5794), - [anon_sym_DQUOTE] = ACTIONS(4809), - [anon_sym_DOLLAR] = ACTIONS(5794), - [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__concat] = ACTIONS(4871), + [anon_sym_PIPE] = ACTIONS(5858), + [anon_sym_PIPE_AMP] = ACTIONS(4871), + [anon_sym_AMP_AMP] = ACTIONS(4871), + [anon_sym_PIPE_PIPE] = ACTIONS(4871), + [sym__special_characters] = ACTIONS(5858), + [anon_sym_DQUOTE] = ACTIONS(4871), + [anon_sym_DOLLAR] = ACTIONS(5858), + [sym_raw_string] = ACTIONS(4871), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4871), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4871), + [anon_sym_BQUOTE] = ACTIONS(4871), + [anon_sym_LT_LPAREN] = ACTIONS(4871), + [anon_sym_GT_LPAREN] = ACTIONS(4871), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5794), - [sym_word] = ACTIONS(4811), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5858), + [sym_word] = ACTIONS(4873), }, [3102] = { [sym_concatenation] = STATE(451), @@ -79233,44 +79570,44 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3601), - [anon_sym_RBRACE] = ACTIONS(7200), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7270), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3103] = { - [sym__concat] = ACTIONS(4815), - [anon_sym_PIPE] = ACTIONS(5798), - [anon_sym_PIPE_AMP] = ACTIONS(4815), - [anon_sym_AMP_AMP] = ACTIONS(4815), - [anon_sym_PIPE_PIPE] = ACTIONS(4815), - [sym__special_characters] = ACTIONS(5798), - [anon_sym_DQUOTE] = ACTIONS(4815), - [anon_sym_DOLLAR] = ACTIONS(5798), - [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__concat] = ACTIONS(4877), + [anon_sym_PIPE] = ACTIONS(5862), + [anon_sym_PIPE_AMP] = ACTIONS(4877), + [anon_sym_AMP_AMP] = ACTIONS(4877), + [anon_sym_PIPE_PIPE] = ACTIONS(4877), + [sym__special_characters] = ACTIONS(5862), + [anon_sym_DQUOTE] = ACTIONS(4877), + [anon_sym_DOLLAR] = ACTIONS(5862), + [sym_raw_string] = ACTIONS(4877), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4877), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4877), + [anon_sym_BQUOTE] = ACTIONS(4877), + [anon_sym_LT_LPAREN] = ACTIONS(4877), + [anon_sym_GT_LPAREN] = ACTIONS(4877), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5798), - [sym_word] = ACTIONS(4817), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5862), + [sym_word] = ACTIONS(4879), }, [3104] = { [sym_concatenation] = STATE(451), @@ -79281,44 +79618,44 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3603), - [anon_sym_RBRACE] = ACTIONS(7202), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7272), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3105] = { - [sym__concat] = ACTIONS(4821), - [anon_sym_PIPE] = ACTIONS(5802), - [anon_sym_PIPE_AMP] = ACTIONS(4821), - [anon_sym_AMP_AMP] = ACTIONS(4821), - [anon_sym_PIPE_PIPE] = ACTIONS(4821), - [sym__special_characters] = ACTIONS(5802), - [anon_sym_DQUOTE] = ACTIONS(4821), - [anon_sym_DOLLAR] = ACTIONS(5802), - [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__concat] = ACTIONS(4883), + [anon_sym_PIPE] = ACTIONS(5866), + [anon_sym_PIPE_AMP] = ACTIONS(4883), + [anon_sym_AMP_AMP] = ACTIONS(4883), + [anon_sym_PIPE_PIPE] = ACTIONS(4883), + [sym__special_characters] = ACTIONS(5866), + [anon_sym_DQUOTE] = ACTIONS(4883), + [anon_sym_DOLLAR] = ACTIONS(5866), + [sym_raw_string] = ACTIONS(4883), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4883), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4883), + [anon_sym_BQUOTE] = ACTIONS(4883), + [anon_sym_LT_LPAREN] = ACTIONS(4883), + [anon_sym_GT_LPAREN] = ACTIONS(4883), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5802), - [sym_word] = ACTIONS(4823), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5866), + [sym_word] = ACTIONS(4885), }, [3106] = { [sym_concatenation] = STATE(451), @@ -79329,44 +79666,44 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7204), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7274), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3107] = { - [sym__concat] = ACTIONS(4827), - [anon_sym_PIPE] = ACTIONS(5806), - [anon_sym_PIPE_AMP] = ACTIONS(4827), - [anon_sym_AMP_AMP] = ACTIONS(4827), - [anon_sym_PIPE_PIPE] = ACTIONS(4827), - [sym__special_characters] = ACTIONS(5806), - [anon_sym_DQUOTE] = ACTIONS(4827), - [anon_sym_DOLLAR] = ACTIONS(5806), - [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__concat] = ACTIONS(4889), + [anon_sym_PIPE] = ACTIONS(5870), + [anon_sym_PIPE_AMP] = ACTIONS(4889), + [anon_sym_AMP_AMP] = ACTIONS(4889), + [anon_sym_PIPE_PIPE] = ACTIONS(4889), + [sym__special_characters] = ACTIONS(5870), + [anon_sym_DQUOTE] = ACTIONS(4889), + [anon_sym_DOLLAR] = ACTIONS(5870), + [sym_raw_string] = ACTIONS(4889), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4889), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4889), + [anon_sym_BQUOTE] = ACTIONS(4889), + [anon_sym_LT_LPAREN] = ACTIONS(4889), + [anon_sym_GT_LPAREN] = ACTIONS(4889), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5806), - [sym_word] = ACTIONS(4829), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5870), + [sym_word] = ACTIONS(4891), }, [3108] = { [sym_concatenation] = STATE(451), @@ -79377,145 +79714,149 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7206), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7276), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3109] = { - [sym_file_descriptor] = ACTIONS(5961), - [sym__concat] = ACTIONS(5961), - [anon_sym_PIPE] = ACTIONS(6846), - [anon_sym_PIPE_AMP] = ACTIONS(5961), - [anon_sym_AMP_AMP] = ACTIONS(5961), - [anon_sym_PIPE_PIPE] = ACTIONS(5961), - [anon_sym_EQ_TILDE] = ACTIONS(6846), - [anon_sym_LT] = ACTIONS(6846), - [anon_sym_GT] = ACTIONS(6846), - [anon_sym_GT_GT] = ACTIONS(5961), - [anon_sym_AMP_GT] = ACTIONS(6846), - [anon_sym_AMP_GT_GT] = ACTIONS(5961), - [anon_sym_LT_AMP] = ACTIONS(5961), - [anon_sym_GT_AMP] = ACTIONS(5961), - [anon_sym_LT_LT] = ACTIONS(6846), - [anon_sym_LT_LT_DASH] = ACTIONS(5961), - [anon_sym_LT_LT_LT] = ACTIONS(5961), - [sym__special_characters] = ACTIONS(6846), - [anon_sym_DQUOTE] = ACTIONS(5961), - [anon_sym_DOLLAR] = ACTIONS(6846), - [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_file_descriptor] = ACTIONS(6025), + [sym__concat] = ACTIONS(6025), + [anon_sym_PIPE] = ACTIONS(6916), + [anon_sym_PIPE_AMP] = ACTIONS(6025), + [anon_sym_AMP_AMP] = ACTIONS(6025), + [anon_sym_PIPE_PIPE] = ACTIONS(6025), + [anon_sym_EQ_TILDE] = ACTIONS(6916), + [anon_sym_EQ_EQ] = ACTIONS(6916), + [anon_sym_LT] = ACTIONS(6916), + [anon_sym_GT] = ACTIONS(6916), + [anon_sym_GT_GT] = ACTIONS(6025), + [anon_sym_AMP_GT] = ACTIONS(6916), + [anon_sym_AMP_GT_GT] = ACTIONS(6025), + [anon_sym_LT_AMP] = ACTIONS(6025), + [anon_sym_GT_AMP] = ACTIONS(6025), + [anon_sym_LT_LT] = ACTIONS(6916), + [anon_sym_LT_LT_DASH] = ACTIONS(6025), + [anon_sym_LT_LT_LT] = ACTIONS(6025), + [sym__special_characters] = ACTIONS(6916), + [anon_sym_DQUOTE] = ACTIONS(6025), + [anon_sym_DOLLAR] = ACTIONS(6916), + [sym_raw_string] = ACTIONS(6025), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6025), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6025), + [anon_sym_BQUOTE] = ACTIONS(6025), + [anon_sym_LT_LPAREN] = ACTIONS(6025), + [anon_sym_GT_LPAREN] = ACTIONS(6025), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5963), + [sym_word] = ACTIONS(6027), }, [3110] = { - [sym_file_descriptor] = ACTIONS(5965), - [sym__concat] = ACTIONS(5965), - [anon_sym_PIPE] = ACTIONS(6848), - [anon_sym_PIPE_AMP] = ACTIONS(5965), - [anon_sym_AMP_AMP] = ACTIONS(5965), - [anon_sym_PIPE_PIPE] = ACTIONS(5965), - [anon_sym_EQ_TILDE] = ACTIONS(6848), - [anon_sym_LT] = ACTIONS(6848), - [anon_sym_GT] = ACTIONS(6848), - [anon_sym_GT_GT] = ACTIONS(5965), - [anon_sym_AMP_GT] = ACTIONS(6848), - [anon_sym_AMP_GT_GT] = ACTIONS(5965), - [anon_sym_LT_AMP] = ACTIONS(5965), - [anon_sym_GT_AMP] = ACTIONS(5965), - [anon_sym_LT_LT] = ACTIONS(6848), - [anon_sym_LT_LT_DASH] = ACTIONS(5965), - [anon_sym_LT_LT_LT] = ACTIONS(5965), - [sym__special_characters] = ACTIONS(6848), - [anon_sym_DQUOTE] = ACTIONS(5965), - [anon_sym_DOLLAR] = ACTIONS(6848), - [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_file_descriptor] = ACTIONS(6029), + [sym__concat] = ACTIONS(6029), + [anon_sym_PIPE] = ACTIONS(6918), + [anon_sym_PIPE_AMP] = ACTIONS(6029), + [anon_sym_AMP_AMP] = ACTIONS(6029), + [anon_sym_PIPE_PIPE] = ACTIONS(6029), + [anon_sym_EQ_TILDE] = ACTIONS(6918), + [anon_sym_EQ_EQ] = ACTIONS(6918), + [anon_sym_LT] = ACTIONS(6918), + [anon_sym_GT] = ACTIONS(6918), + [anon_sym_GT_GT] = ACTIONS(6029), + [anon_sym_AMP_GT] = ACTIONS(6918), + [anon_sym_AMP_GT_GT] = ACTIONS(6029), + [anon_sym_LT_AMP] = ACTIONS(6029), + [anon_sym_GT_AMP] = ACTIONS(6029), + [anon_sym_LT_LT] = ACTIONS(6918), + [anon_sym_LT_LT_DASH] = ACTIONS(6029), + [anon_sym_LT_LT_LT] = ACTIONS(6029), + [sym__special_characters] = ACTIONS(6918), + [anon_sym_DQUOTE] = ACTIONS(6029), + [anon_sym_DOLLAR] = ACTIONS(6918), + [sym_raw_string] = ACTIONS(6029), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6029), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6029), + [anon_sym_BQUOTE] = ACTIONS(6029), + [anon_sym_LT_LPAREN] = ACTIONS(6029), + [anon_sym_GT_LPAREN] = ACTIONS(6029), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5967), + [sym_word] = ACTIONS(6031), }, [3111] = { - [sym_file_descriptor] = ACTIONS(5969), - [sym__concat] = ACTIONS(5969), - [anon_sym_PIPE] = ACTIONS(6850), - [anon_sym_PIPE_AMP] = ACTIONS(5969), - [anon_sym_AMP_AMP] = ACTIONS(5969), - [anon_sym_PIPE_PIPE] = ACTIONS(5969), - [anon_sym_EQ_TILDE] = ACTIONS(6850), - [anon_sym_LT] = ACTIONS(6850), - [anon_sym_GT] = ACTIONS(6850), - [anon_sym_GT_GT] = ACTIONS(5969), - [anon_sym_AMP_GT] = ACTIONS(6850), - [anon_sym_AMP_GT_GT] = ACTIONS(5969), - [anon_sym_LT_AMP] = ACTIONS(5969), - [anon_sym_GT_AMP] = ACTIONS(5969), - [anon_sym_LT_LT] = ACTIONS(6850), - [anon_sym_LT_LT_DASH] = ACTIONS(5969), - [anon_sym_LT_LT_LT] = ACTIONS(5969), - [sym__special_characters] = ACTIONS(6850), - [anon_sym_DQUOTE] = ACTIONS(5969), - [anon_sym_DOLLAR] = ACTIONS(6850), - [sym_raw_string] = ACTIONS(5969), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5969), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5969), - [anon_sym_BQUOTE] = ACTIONS(5969), - [anon_sym_LT_LPAREN] = ACTIONS(5969), - [anon_sym_GT_LPAREN] = ACTIONS(5969), + [sym_file_descriptor] = ACTIONS(6033), + [sym__concat] = ACTIONS(6033), + [anon_sym_PIPE] = ACTIONS(6920), + [anon_sym_PIPE_AMP] = ACTIONS(6033), + [anon_sym_AMP_AMP] = ACTIONS(6033), + [anon_sym_PIPE_PIPE] = ACTIONS(6033), + [anon_sym_EQ_TILDE] = ACTIONS(6920), + [anon_sym_EQ_EQ] = ACTIONS(6920), + [anon_sym_LT] = ACTIONS(6920), + [anon_sym_GT] = ACTIONS(6920), + [anon_sym_GT_GT] = ACTIONS(6033), + [anon_sym_AMP_GT] = ACTIONS(6920), + [anon_sym_AMP_GT_GT] = ACTIONS(6033), + [anon_sym_LT_AMP] = ACTIONS(6033), + [anon_sym_GT_AMP] = ACTIONS(6033), + [anon_sym_LT_LT] = ACTIONS(6920), + [anon_sym_LT_LT_DASH] = ACTIONS(6033), + [anon_sym_LT_LT_LT] = ACTIONS(6033), + [sym__special_characters] = ACTIONS(6920), + [anon_sym_DQUOTE] = ACTIONS(6033), + [anon_sym_DOLLAR] = ACTIONS(6920), + [sym_raw_string] = ACTIONS(6033), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6033), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6033), + [anon_sym_BQUOTE] = ACTIONS(6033), + [anon_sym_LT_LPAREN] = ACTIONS(6033), + [anon_sym_GT_LPAREN] = ACTIONS(6033), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5971), + [sym_word] = ACTIONS(6035), }, [3112] = { - [sym_file_descriptor] = ACTIONS(5973), - [sym__concat] = ACTIONS(5973), - [anon_sym_PIPE] = ACTIONS(6852), - [anon_sym_PIPE_AMP] = ACTIONS(5973), - [anon_sym_AMP_AMP] = ACTIONS(5973), - [anon_sym_PIPE_PIPE] = ACTIONS(5973), - [anon_sym_EQ_TILDE] = ACTIONS(6852), - [anon_sym_LT] = ACTIONS(6852), - [anon_sym_GT] = ACTIONS(6852), - [anon_sym_GT_GT] = ACTIONS(5973), - [anon_sym_AMP_GT] = ACTIONS(6852), - [anon_sym_AMP_GT_GT] = ACTIONS(5973), - [anon_sym_LT_AMP] = ACTIONS(5973), - [anon_sym_GT_AMP] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(6852), - [anon_sym_LT_LT_DASH] = ACTIONS(5973), - [anon_sym_LT_LT_LT] = ACTIONS(5973), - [sym__special_characters] = ACTIONS(6852), - [anon_sym_DQUOTE] = ACTIONS(5973), - [anon_sym_DOLLAR] = ACTIONS(6852), - [sym_raw_string] = ACTIONS(5973), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5973), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5973), - [anon_sym_BQUOTE] = ACTIONS(5973), - [anon_sym_LT_LPAREN] = ACTIONS(5973), - [anon_sym_GT_LPAREN] = ACTIONS(5973), + [sym_file_descriptor] = ACTIONS(6037), + [sym__concat] = ACTIONS(6037), + [anon_sym_PIPE] = ACTIONS(6922), + [anon_sym_PIPE_AMP] = ACTIONS(6037), + [anon_sym_AMP_AMP] = ACTIONS(6037), + [anon_sym_PIPE_PIPE] = ACTIONS(6037), + [anon_sym_EQ_TILDE] = ACTIONS(6922), + [anon_sym_EQ_EQ] = ACTIONS(6922), + [anon_sym_LT] = ACTIONS(6922), + [anon_sym_GT] = ACTIONS(6922), + [anon_sym_GT_GT] = ACTIONS(6037), + [anon_sym_AMP_GT] = ACTIONS(6922), + [anon_sym_AMP_GT_GT] = ACTIONS(6037), + [anon_sym_LT_AMP] = ACTIONS(6037), + [anon_sym_GT_AMP] = ACTIONS(6037), + [anon_sym_LT_LT] = ACTIONS(6922), + [anon_sym_LT_LT_DASH] = ACTIONS(6037), + [anon_sym_LT_LT_LT] = ACTIONS(6037), + [sym__special_characters] = ACTIONS(6922), + [anon_sym_DQUOTE] = ACTIONS(6037), + [anon_sym_DOLLAR] = ACTIONS(6922), + [sym_raw_string] = ACTIONS(6037), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6037), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6037), + [anon_sym_BQUOTE] = ACTIONS(6037), + [anon_sym_LT_LPAREN] = ACTIONS(6037), + [anon_sym_GT_LPAREN] = ACTIONS(6037), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5975), + [sym_word] = ACTIONS(6039), }, [3113] = { [sym_concatenation] = STATE(451), @@ -79526,55 +79867,56 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7208), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7278), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3114] = { - [sym_file_descriptor] = ACTIONS(5979), - [sym__concat] = ACTIONS(5979), - [anon_sym_PIPE] = ACTIONS(6856), - [anon_sym_PIPE_AMP] = ACTIONS(5979), - [anon_sym_AMP_AMP] = ACTIONS(5979), - [anon_sym_PIPE_PIPE] = ACTIONS(5979), - [anon_sym_EQ_TILDE] = ACTIONS(6856), - [anon_sym_LT] = ACTIONS(6856), - [anon_sym_GT] = ACTIONS(6856), - [anon_sym_GT_GT] = ACTIONS(5979), - [anon_sym_AMP_GT] = ACTIONS(6856), - [anon_sym_AMP_GT_GT] = ACTIONS(5979), - [anon_sym_LT_AMP] = ACTIONS(5979), - [anon_sym_GT_AMP] = ACTIONS(5979), - [anon_sym_LT_LT] = ACTIONS(6856), - [anon_sym_LT_LT_DASH] = ACTIONS(5979), - [anon_sym_LT_LT_LT] = ACTIONS(5979), - [sym__special_characters] = ACTIONS(6856), - [anon_sym_DQUOTE] = ACTIONS(5979), - [anon_sym_DOLLAR] = ACTIONS(6856), - [sym_raw_string] = ACTIONS(5979), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5979), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5979), - [anon_sym_BQUOTE] = ACTIONS(5979), - [anon_sym_LT_LPAREN] = ACTIONS(5979), - [anon_sym_GT_LPAREN] = ACTIONS(5979), + [sym_file_descriptor] = ACTIONS(6043), + [sym__concat] = ACTIONS(6043), + [anon_sym_PIPE] = ACTIONS(6926), + [anon_sym_PIPE_AMP] = ACTIONS(6043), + [anon_sym_AMP_AMP] = ACTIONS(6043), + [anon_sym_PIPE_PIPE] = ACTIONS(6043), + [anon_sym_EQ_TILDE] = ACTIONS(6926), + [anon_sym_EQ_EQ] = ACTIONS(6926), + [anon_sym_LT] = ACTIONS(6926), + [anon_sym_GT] = ACTIONS(6926), + [anon_sym_GT_GT] = ACTIONS(6043), + [anon_sym_AMP_GT] = ACTIONS(6926), + [anon_sym_AMP_GT_GT] = ACTIONS(6043), + [anon_sym_LT_AMP] = ACTIONS(6043), + [anon_sym_GT_AMP] = ACTIONS(6043), + [anon_sym_LT_LT] = ACTIONS(6926), + [anon_sym_LT_LT_DASH] = ACTIONS(6043), + [anon_sym_LT_LT_LT] = ACTIONS(6043), + [sym__special_characters] = ACTIONS(6926), + [anon_sym_DQUOTE] = ACTIONS(6043), + [anon_sym_DOLLAR] = ACTIONS(6926), + [sym_raw_string] = ACTIONS(6043), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6043), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6043), + [anon_sym_BQUOTE] = ACTIONS(6043), + [anon_sym_LT_LPAREN] = ACTIONS(6043), + [anon_sym_GT_LPAREN] = ACTIONS(6043), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5981), + [sym_word] = ACTIONS(6045), }, [3115] = { [sym_concatenation] = STATE(451), @@ -79585,55 +79927,56 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7210), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7280), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3116] = { - [sym_file_descriptor] = ACTIONS(5985), - [sym__concat] = ACTIONS(5985), - [anon_sym_PIPE] = ACTIONS(6860), - [anon_sym_PIPE_AMP] = ACTIONS(5985), - [anon_sym_AMP_AMP] = ACTIONS(5985), - [anon_sym_PIPE_PIPE] = ACTIONS(5985), - [anon_sym_EQ_TILDE] = ACTIONS(6860), - [anon_sym_LT] = ACTIONS(6860), - [anon_sym_GT] = ACTIONS(6860), - [anon_sym_GT_GT] = ACTIONS(5985), - [anon_sym_AMP_GT] = ACTIONS(6860), - [anon_sym_AMP_GT_GT] = ACTIONS(5985), - [anon_sym_LT_AMP] = ACTIONS(5985), - [anon_sym_GT_AMP] = ACTIONS(5985), - [anon_sym_LT_LT] = ACTIONS(6860), - [anon_sym_LT_LT_DASH] = ACTIONS(5985), - [anon_sym_LT_LT_LT] = ACTIONS(5985), - [sym__special_characters] = ACTIONS(6860), - [anon_sym_DQUOTE] = ACTIONS(5985), - [anon_sym_DOLLAR] = ACTIONS(6860), - [sym_raw_string] = ACTIONS(5985), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5985), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5985), - [anon_sym_BQUOTE] = ACTIONS(5985), - [anon_sym_LT_LPAREN] = ACTIONS(5985), - [anon_sym_GT_LPAREN] = ACTIONS(5985), + [sym_file_descriptor] = ACTIONS(6049), + [sym__concat] = ACTIONS(6049), + [anon_sym_PIPE] = ACTIONS(6930), + [anon_sym_PIPE_AMP] = ACTIONS(6049), + [anon_sym_AMP_AMP] = ACTIONS(6049), + [anon_sym_PIPE_PIPE] = ACTIONS(6049), + [anon_sym_EQ_TILDE] = ACTIONS(6930), + [anon_sym_EQ_EQ] = ACTIONS(6930), + [anon_sym_LT] = ACTIONS(6930), + [anon_sym_GT] = ACTIONS(6930), + [anon_sym_GT_GT] = ACTIONS(6049), + [anon_sym_AMP_GT] = ACTIONS(6930), + [anon_sym_AMP_GT_GT] = ACTIONS(6049), + [anon_sym_LT_AMP] = ACTIONS(6049), + [anon_sym_GT_AMP] = ACTIONS(6049), + [anon_sym_LT_LT] = ACTIONS(6930), + [anon_sym_LT_LT_DASH] = ACTIONS(6049), + [anon_sym_LT_LT_LT] = ACTIONS(6049), + [sym__special_characters] = ACTIONS(6930), + [anon_sym_DQUOTE] = ACTIONS(6049), + [anon_sym_DOLLAR] = ACTIONS(6930), + [sym_raw_string] = ACTIONS(6049), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6049), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6049), + [anon_sym_BQUOTE] = ACTIONS(6049), + [anon_sym_LT_LPAREN] = ACTIONS(6049), + [anon_sym_GT_LPAREN] = ACTIONS(6049), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5987), + [sym_word] = ACTIONS(6051), }, [3117] = { [sym_concatenation] = STATE(451), @@ -79644,120 +79987,122 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(7282), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3118] = { - [sym_file_descriptor] = ACTIONS(5991), - [sym__concat] = ACTIONS(5991), - [anon_sym_PIPE] = ACTIONS(6864), - [anon_sym_PIPE_AMP] = ACTIONS(5991), - [anon_sym_AMP_AMP] = ACTIONS(5991), - [anon_sym_PIPE_PIPE] = ACTIONS(5991), - [anon_sym_EQ_TILDE] = ACTIONS(6864), - [anon_sym_LT] = ACTIONS(6864), - [anon_sym_GT] = ACTIONS(6864), - [anon_sym_GT_GT] = ACTIONS(5991), - [anon_sym_AMP_GT] = ACTIONS(6864), - [anon_sym_AMP_GT_GT] = ACTIONS(5991), - [anon_sym_LT_AMP] = ACTIONS(5991), - [anon_sym_GT_AMP] = ACTIONS(5991), - [anon_sym_LT_LT] = ACTIONS(6864), - [anon_sym_LT_LT_DASH] = ACTIONS(5991), - [anon_sym_LT_LT_LT] = ACTIONS(5991), - [sym__special_characters] = ACTIONS(6864), - [anon_sym_DQUOTE] = ACTIONS(5991), - [anon_sym_DOLLAR] = ACTIONS(6864), - [sym_raw_string] = ACTIONS(5991), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5991), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5991), - [anon_sym_BQUOTE] = ACTIONS(5991), - [anon_sym_LT_LPAREN] = ACTIONS(5991), - [anon_sym_GT_LPAREN] = ACTIONS(5991), + [sym_file_descriptor] = ACTIONS(6055), + [sym__concat] = ACTIONS(6055), + [anon_sym_PIPE] = ACTIONS(6934), + [anon_sym_PIPE_AMP] = ACTIONS(6055), + [anon_sym_AMP_AMP] = ACTIONS(6055), + [anon_sym_PIPE_PIPE] = ACTIONS(6055), + [anon_sym_EQ_TILDE] = ACTIONS(6934), + [anon_sym_EQ_EQ] = ACTIONS(6934), + [anon_sym_LT] = ACTIONS(6934), + [anon_sym_GT] = ACTIONS(6934), + [anon_sym_GT_GT] = ACTIONS(6055), + [anon_sym_AMP_GT] = ACTIONS(6934), + [anon_sym_AMP_GT_GT] = ACTIONS(6055), + [anon_sym_LT_AMP] = ACTIONS(6055), + [anon_sym_GT_AMP] = ACTIONS(6055), + [anon_sym_LT_LT] = ACTIONS(6934), + [anon_sym_LT_LT_DASH] = ACTIONS(6055), + [anon_sym_LT_LT_LT] = ACTIONS(6055), + [sym__special_characters] = ACTIONS(6934), + [anon_sym_DQUOTE] = ACTIONS(6055), + [anon_sym_DOLLAR] = ACTIONS(6934), + [sym_raw_string] = ACTIONS(6055), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6055), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6055), + [anon_sym_BQUOTE] = ACTIONS(6055), + [anon_sym_LT_LPAREN] = ACTIONS(6055), + [anon_sym_GT_LPAREN] = ACTIONS(6055), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5993), + [sym_word] = ACTIONS(6057), }, [3119] = { - [sym_file_descriptor] = ACTIONS(5995), - [sym__concat] = ACTIONS(5995), - [anon_sym_PIPE] = ACTIONS(6866), - [anon_sym_PIPE_AMP] = ACTIONS(5995), - [anon_sym_AMP_AMP] = ACTIONS(5995), - [anon_sym_PIPE_PIPE] = ACTIONS(5995), - [anon_sym_EQ_TILDE] = ACTIONS(6866), - [anon_sym_LT] = ACTIONS(6866), - [anon_sym_GT] = ACTIONS(6866), - [anon_sym_GT_GT] = ACTIONS(5995), - [anon_sym_AMP_GT] = ACTIONS(6866), - [anon_sym_AMP_GT_GT] = ACTIONS(5995), - [anon_sym_LT_AMP] = ACTIONS(5995), - [anon_sym_GT_AMP] = ACTIONS(5995), - [anon_sym_LT_LT] = ACTIONS(6866), - [anon_sym_LT_LT_DASH] = ACTIONS(5995), - [anon_sym_LT_LT_LT] = ACTIONS(5995), - [sym__special_characters] = ACTIONS(6866), - [anon_sym_DQUOTE] = ACTIONS(5995), - [anon_sym_DOLLAR] = ACTIONS(6866), - [sym_raw_string] = ACTIONS(5995), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5995), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5995), - [anon_sym_BQUOTE] = ACTIONS(5995), - [anon_sym_LT_LPAREN] = ACTIONS(5995), - [anon_sym_GT_LPAREN] = ACTIONS(5995), + [sym_file_descriptor] = ACTIONS(6059), + [sym__concat] = ACTIONS(6059), + [anon_sym_PIPE] = ACTIONS(6936), + [anon_sym_PIPE_AMP] = ACTIONS(6059), + [anon_sym_AMP_AMP] = ACTIONS(6059), + [anon_sym_PIPE_PIPE] = ACTIONS(6059), + [anon_sym_EQ_TILDE] = ACTIONS(6936), + [anon_sym_EQ_EQ] = ACTIONS(6936), + [anon_sym_LT] = ACTIONS(6936), + [anon_sym_GT] = ACTIONS(6936), + [anon_sym_GT_GT] = ACTIONS(6059), + [anon_sym_AMP_GT] = ACTIONS(6936), + [anon_sym_AMP_GT_GT] = ACTIONS(6059), + [anon_sym_LT_AMP] = ACTIONS(6059), + [anon_sym_GT_AMP] = ACTIONS(6059), + [anon_sym_LT_LT] = ACTIONS(6936), + [anon_sym_LT_LT_DASH] = ACTIONS(6059), + [anon_sym_LT_LT_LT] = ACTIONS(6059), + [sym__special_characters] = ACTIONS(6936), + [anon_sym_DQUOTE] = ACTIONS(6059), + [anon_sym_DOLLAR] = ACTIONS(6936), + [sym_raw_string] = ACTIONS(6059), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6059), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6059), + [anon_sym_BQUOTE] = ACTIONS(6059), + [anon_sym_LT_LPAREN] = ACTIONS(6059), + [anon_sym_GT_LPAREN] = ACTIONS(6059), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5997), + [sym_word] = ACTIONS(6061), }, [3120] = { - [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_file_descriptor] = ACTIONS(3283), + [sym__concat] = ACTIONS(3283), + [anon_sym_PIPE] = ACTIONS(4602), + [anon_sym_PIPE_AMP] = ACTIONS(3283), + [anon_sym_AMP_AMP] = ACTIONS(3283), + [anon_sym_PIPE_PIPE] = ACTIONS(3283), + [anon_sym_LT] = ACTIONS(4602), + [anon_sym_GT] = ACTIONS(4602), + [anon_sym_GT_GT] = ACTIONS(3283), + [anon_sym_AMP_GT] = ACTIONS(4602), + [anon_sym_AMP_GT_GT] = ACTIONS(3283), + [anon_sym_LT_AMP] = ACTIONS(3283), + [anon_sym_GT_AMP] = ACTIONS(3283), + [anon_sym_LT_LT] = ACTIONS(4602), + [anon_sym_LT_LT_DASH] = ACTIONS(3283), + [anon_sym_LT_LT_LT] = ACTIONS(3283), + [anon_sym_BQUOTE] = ACTIONS(3283), [sym_comment] = ACTIONS(56), }, [3121] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(7214), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(7284), [sym_comment] = ACTIONS(56), }, [3122] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(7216), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(7286), [sym_comment] = ACTIONS(56), }, [3123] = { - [anon_sym_RBRACE] = ACTIONS(7216), + [anon_sym_RBRACE] = ACTIONS(7286), [sym_comment] = ACTIONS(56), }, [3124] = { @@ -79769,44 +80114,44 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3612), - [anon_sym_RBRACE] = ACTIONS(7218), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7288), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3125] = { - [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_file_descriptor] = ACTIONS(3347), + [sym__concat] = ACTIONS(3347), + [anon_sym_PIPE] = ACTIONS(4610), + [anon_sym_PIPE_AMP] = ACTIONS(3347), + [anon_sym_AMP_AMP] = ACTIONS(3347), + [anon_sym_PIPE_PIPE] = ACTIONS(3347), + [anon_sym_LT] = ACTIONS(4610), + [anon_sym_GT] = ACTIONS(4610), + [anon_sym_GT_GT] = ACTIONS(3347), + [anon_sym_AMP_GT] = ACTIONS(4610), + [anon_sym_AMP_GT_GT] = ACTIONS(3347), + [anon_sym_LT_AMP] = ACTIONS(3347), + [anon_sym_GT_AMP] = ACTIONS(3347), + [anon_sym_LT_LT] = ACTIONS(4610), + [anon_sym_LT_LT_DASH] = ACTIONS(3347), + [anon_sym_LT_LT_LT] = ACTIONS(3347), + [anon_sym_BQUOTE] = ACTIONS(3347), [sym_comment] = ACTIONS(56), }, [3126] = { @@ -79817,42 +80162,42 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(3614), [sym_command_substitution] = STATE(3614), [sym_process_substitution] = STATE(3614), - [anon_sym_RBRACE] = ACTIONS(7216), - [sym__special_characters] = ACTIONS(7220), - [anon_sym_DQUOTE] = ACTIONS(1924), - [anon_sym_DOLLAR] = ACTIONS(1926), - [sym_raw_string] = ACTIONS(7222), - [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), + [anon_sym_RBRACE] = ACTIONS(7286), + [sym__special_characters] = ACTIONS(7290), + [anon_sym_DQUOTE] = ACTIONS(1952), + [anon_sym_DOLLAR] = ACTIONS(1954), + [sym_raw_string] = ACTIONS(7292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), + [anon_sym_BQUOTE] = ACTIONS(1962), + [anon_sym_LT_LPAREN] = ACTIONS(1964), + [anon_sym_GT_LPAREN] = ACTIONS(1964), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7224), + [sym_word] = ACTIONS(7294), }, [3127] = { - [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_file_descriptor] = ACTIONS(3392), + [sym__concat] = ACTIONS(3392), + [anon_sym_PIPE] = ACTIONS(4618), + [anon_sym_PIPE_AMP] = ACTIONS(3392), + [anon_sym_AMP_AMP] = ACTIONS(3392), + [anon_sym_PIPE_PIPE] = ACTIONS(3392), + [anon_sym_LT] = ACTIONS(4618), + [anon_sym_GT] = ACTIONS(4618), + [anon_sym_GT_GT] = ACTIONS(3392), + [anon_sym_AMP_GT] = ACTIONS(4618), + [anon_sym_AMP_GT_GT] = ACTIONS(3392), + [anon_sym_LT_AMP] = ACTIONS(3392), + [anon_sym_GT_AMP] = ACTIONS(3392), + [anon_sym_LT_LT] = ACTIONS(4618), + [anon_sym_LT_LT_DASH] = ACTIONS(3392), + [anon_sym_LT_LT_LT] = ACTIONS(3392), + [anon_sym_BQUOTE] = ACTIONS(3392), [sym_comment] = ACTIONS(56), }, [3128] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(7226), + [sym_regex_without_right_brace] = ACTIONS(7296), }, [3129] = { [sym_concatenation] = STATE(451), @@ -79863,49 +80208,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(7298), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3130] = { - [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_file_descriptor] = ACTIONS(3400), + [sym__concat] = ACTIONS(3400), + [anon_sym_PIPE] = ACTIONS(4624), + [anon_sym_PIPE_AMP] = ACTIONS(3400), + [anon_sym_AMP_AMP] = ACTIONS(3400), + [anon_sym_PIPE_PIPE] = ACTIONS(3400), + [anon_sym_LT] = ACTIONS(4624), + [anon_sym_GT] = ACTIONS(4624), + [anon_sym_GT_GT] = ACTIONS(3400), + [anon_sym_AMP_GT] = ACTIONS(4624), + [anon_sym_AMP_GT_GT] = ACTIONS(3400), + [anon_sym_LT_AMP] = ACTIONS(3400), + [anon_sym_GT_AMP] = ACTIONS(3400), + [anon_sym_LT_LT] = ACTIONS(4624), + [anon_sym_LT_LT_DASH] = ACTIONS(3400), + [anon_sym_LT_LT_LT] = ACTIONS(3400), + [anon_sym_BQUOTE] = ACTIONS(3400), [sym_comment] = ACTIONS(56), }, [3131] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(7230), + [sym_regex_without_right_brace] = ACTIONS(7300), }, [3132] = { [sym_concatenation] = STATE(451), @@ -79916,29 +80261,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [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), + [anon_sym_RBRACE] = ACTIONS(7302), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3133] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(7234), + [sym_regex_without_right_brace] = ACTIONS(7304), }, [3134] = { [sym_concatenation] = STATE(451), @@ -79949,25 +80294,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7216), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7286), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3135] = { [sym_concatenation] = STATE(451), @@ -79978,44 +80323,44 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3622), - [anon_sym_RBRACE] = ACTIONS(7236), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7306), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3136] = { - [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_file_descriptor] = ACTIONS(3412), + [sym__concat] = ACTIONS(3412), + [anon_sym_PIPE] = ACTIONS(4634), + [anon_sym_PIPE_AMP] = ACTIONS(3412), + [anon_sym_AMP_AMP] = ACTIONS(3412), + [anon_sym_PIPE_PIPE] = ACTIONS(3412), + [anon_sym_LT] = ACTIONS(4634), + [anon_sym_GT] = ACTIONS(4634), + [anon_sym_GT_GT] = ACTIONS(3412), + [anon_sym_AMP_GT] = ACTIONS(4634), + [anon_sym_AMP_GT_GT] = ACTIONS(3412), + [anon_sym_LT_AMP] = ACTIONS(3412), + [anon_sym_GT_AMP] = ACTIONS(3412), + [anon_sym_LT_LT] = ACTIONS(4634), + [anon_sym_LT_LT_DASH] = ACTIONS(3412), + [anon_sym_LT_LT_LT] = ACTIONS(3412), + [anon_sym_BQUOTE] = ACTIONS(3412), [sym_comment] = ACTIONS(56), }, [3137] = { @@ -80027,94 +80372,94 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3624), - [anon_sym_RBRACE] = ACTIONS(7238), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7308), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3138] = { - [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_file_descriptor] = ACTIONS(4790), + [sym__concat] = ACTIONS(4790), + [anon_sym_PIPE] = ACTIONS(4792), + [anon_sym_SEMI_SEMI] = ACTIONS(4792), + [anon_sym_PIPE_AMP] = ACTIONS(4792), + [anon_sym_AMP_AMP] = ACTIONS(4792), + [anon_sym_PIPE_PIPE] = ACTIONS(4792), + [anon_sym_LT] = ACTIONS(4792), + [anon_sym_GT] = ACTIONS(4792), + [anon_sym_GT_GT] = ACTIONS(4792), + [anon_sym_AMP_GT] = ACTIONS(4792), + [anon_sym_AMP_GT_GT] = ACTIONS(4792), + [anon_sym_LT_AMP] = ACTIONS(4792), + [anon_sym_GT_AMP] = ACTIONS(4792), + [anon_sym_LT_LT] = ACTIONS(4792), + [anon_sym_LT_LT_DASH] = ACTIONS(4792), + [anon_sym_LT_LT_LT] = ACTIONS(4792), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4730), - [anon_sym_LF] = ACTIONS(4730), - [anon_sym_AMP] = ACTIONS(4730), + [anon_sym_SEMI] = ACTIONS(4792), + [anon_sym_LF] = ACTIONS(4792), + [anon_sym_AMP] = ACTIONS(4792), }, [3139] = { - [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_file_descriptor] = ACTIONS(4796), + [sym__concat] = ACTIONS(4796), + [anon_sym_PIPE] = ACTIONS(4798), + [anon_sym_SEMI_SEMI] = ACTIONS(4798), + [anon_sym_PIPE_AMP] = ACTIONS(4798), + [anon_sym_AMP_AMP] = ACTIONS(4798), + [anon_sym_PIPE_PIPE] = ACTIONS(4798), + [anon_sym_LT] = ACTIONS(4798), + [anon_sym_GT] = ACTIONS(4798), + [anon_sym_GT_GT] = ACTIONS(4798), + [anon_sym_AMP_GT] = ACTIONS(4798), + [anon_sym_AMP_GT_GT] = ACTIONS(4798), + [anon_sym_LT_AMP] = ACTIONS(4798), + [anon_sym_GT_AMP] = ACTIONS(4798), + [anon_sym_LT_LT] = ACTIONS(4798), + [anon_sym_LT_LT_DASH] = ACTIONS(4798), + [anon_sym_LT_LT_LT] = ACTIONS(4798), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4736), - [anon_sym_LF] = ACTIONS(4736), - [anon_sym_AMP] = ACTIONS(4736), + [anon_sym_SEMI] = ACTIONS(4798), + [anon_sym_LF] = ACTIONS(4798), + [anon_sym_AMP] = ACTIONS(4798), }, [3140] = { - [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_file_descriptor] = ACTIONS(4859), + [sym__concat] = ACTIONS(4859), + [anon_sym_PIPE] = ACTIONS(4861), + [anon_sym_SEMI_SEMI] = ACTIONS(4861), + [anon_sym_PIPE_AMP] = ACTIONS(4861), + [anon_sym_AMP_AMP] = ACTIONS(4861), + [anon_sym_PIPE_PIPE] = ACTIONS(4861), + [anon_sym_LT] = ACTIONS(4861), + [anon_sym_GT] = ACTIONS(4861), + [anon_sym_GT_GT] = ACTIONS(4861), + [anon_sym_AMP_GT] = ACTIONS(4861), + [anon_sym_AMP_GT_GT] = ACTIONS(4861), + [anon_sym_LT_AMP] = ACTIONS(4861), + [anon_sym_GT_AMP] = ACTIONS(4861), + [anon_sym_LT_LT] = ACTIONS(4861), + [anon_sym_LT_LT_DASH] = ACTIONS(4861), + [anon_sym_LT_LT_LT] = ACTIONS(4861), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4799), - [anon_sym_LF] = ACTIONS(4799), - [anon_sym_AMP] = ACTIONS(4799), + [anon_sym_SEMI] = ACTIONS(4861), + [anon_sym_LF] = ACTIONS(4861), + [anon_sym_AMP] = ACTIONS(4861), }, [3141] = { [sym_concatenation] = STATE(451), @@ -80125,40 +80470,40 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7240), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7310), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3142] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(7242), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(7312), [sym_comment] = ACTIONS(56), }, [3143] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(7244), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(7314), [sym_comment] = ACTIONS(56), }, [3144] = { - [anon_sym_RBRACE] = ACTIONS(7244), + [anon_sym_RBRACE] = ACTIONS(7314), [sym_comment] = ACTIONS(56), }, [3145] = { @@ -80170,48 +80515,48 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3629), - [anon_sym_RBRACE] = ACTIONS(7246), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7316), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3146] = { - [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_file_descriptor] = ACTIONS(4871), + [sym__concat] = ACTIONS(4871), + [anon_sym_PIPE] = ACTIONS(4873), + [anon_sym_SEMI_SEMI] = ACTIONS(4873), + [anon_sym_PIPE_AMP] = ACTIONS(4873), + [anon_sym_AMP_AMP] = ACTIONS(4873), + [anon_sym_PIPE_PIPE] = ACTIONS(4873), + [anon_sym_LT] = ACTIONS(4873), + [anon_sym_GT] = ACTIONS(4873), + [anon_sym_GT_GT] = ACTIONS(4873), + [anon_sym_AMP_GT] = ACTIONS(4873), + [anon_sym_AMP_GT_GT] = ACTIONS(4873), + [anon_sym_LT_AMP] = ACTIONS(4873), + [anon_sym_GT_AMP] = ACTIONS(4873), + [anon_sym_LT_LT] = ACTIONS(4873), + [anon_sym_LT_LT_DASH] = ACTIONS(4873), + [anon_sym_LT_LT_LT] = ACTIONS(4873), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4811), - [anon_sym_LF] = ACTIONS(4811), - [anon_sym_AMP] = ACTIONS(4811), + [anon_sym_SEMI] = ACTIONS(4873), + [anon_sym_LF] = ACTIONS(4873), + [anon_sym_AMP] = ACTIONS(4873), }, [3147] = { [sym_concatenation] = STATE(451), @@ -80222,48 +80567,48 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3631), - [anon_sym_RBRACE] = ACTIONS(7248), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7318), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3148] = { - [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_file_descriptor] = ACTIONS(4877), + [sym__concat] = ACTIONS(4877), + [anon_sym_PIPE] = ACTIONS(4879), + [anon_sym_SEMI_SEMI] = ACTIONS(4879), + [anon_sym_PIPE_AMP] = ACTIONS(4879), + [anon_sym_AMP_AMP] = ACTIONS(4879), + [anon_sym_PIPE_PIPE] = ACTIONS(4879), + [anon_sym_LT] = ACTIONS(4879), + [anon_sym_GT] = ACTIONS(4879), + [anon_sym_GT_GT] = ACTIONS(4879), + [anon_sym_AMP_GT] = ACTIONS(4879), + [anon_sym_AMP_GT_GT] = ACTIONS(4879), + [anon_sym_LT_AMP] = ACTIONS(4879), + [anon_sym_GT_AMP] = ACTIONS(4879), + [anon_sym_LT_LT] = ACTIONS(4879), + [anon_sym_LT_LT_DASH] = ACTIONS(4879), + [anon_sym_LT_LT_LT] = ACTIONS(4879), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4817), - [anon_sym_LF] = ACTIONS(4817), - [anon_sym_AMP] = ACTIONS(4817), + [anon_sym_SEMI] = ACTIONS(4879), + [anon_sym_LF] = ACTIONS(4879), + [anon_sym_AMP] = ACTIONS(4879), }, [3149] = { [sym_concatenation] = STATE(451), @@ -80274,48 +80619,48 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3633), - [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), + [anon_sym_RBRACE] = ACTIONS(7320), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3150] = { - [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_file_descriptor] = ACTIONS(4883), + [sym__concat] = ACTIONS(4883), + [anon_sym_PIPE] = ACTIONS(4885), + [anon_sym_SEMI_SEMI] = ACTIONS(4885), + [anon_sym_PIPE_AMP] = ACTIONS(4885), + [anon_sym_AMP_AMP] = ACTIONS(4885), + [anon_sym_PIPE_PIPE] = ACTIONS(4885), + [anon_sym_LT] = ACTIONS(4885), + [anon_sym_GT] = ACTIONS(4885), + [anon_sym_GT_GT] = ACTIONS(4885), + [anon_sym_AMP_GT] = ACTIONS(4885), + [anon_sym_AMP_GT_GT] = ACTIONS(4885), + [anon_sym_LT_AMP] = ACTIONS(4885), + [anon_sym_GT_AMP] = ACTIONS(4885), + [anon_sym_LT_LT] = ACTIONS(4885), + [anon_sym_LT_LT_DASH] = ACTIONS(4885), + [anon_sym_LT_LT_LT] = ACTIONS(4885), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4823), - [anon_sym_LF] = ACTIONS(4823), - [anon_sym_AMP] = ACTIONS(4823), + [anon_sym_SEMI] = ACTIONS(4885), + [anon_sym_LF] = ACTIONS(4885), + [anon_sym_AMP] = ACTIONS(4885), }, [3151] = { [sym_concatenation] = STATE(451), @@ -80326,48 +80671,48 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [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), + [anon_sym_RBRACE] = ACTIONS(7322), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3152] = { - [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_file_descriptor] = ACTIONS(4889), + [sym__concat] = ACTIONS(4889), + [anon_sym_PIPE] = ACTIONS(4891), + [anon_sym_SEMI_SEMI] = ACTIONS(4891), + [anon_sym_PIPE_AMP] = ACTIONS(4891), + [anon_sym_AMP_AMP] = ACTIONS(4891), + [anon_sym_PIPE_PIPE] = ACTIONS(4891), + [anon_sym_LT] = ACTIONS(4891), + [anon_sym_GT] = ACTIONS(4891), + [anon_sym_GT_GT] = ACTIONS(4891), + [anon_sym_AMP_GT] = ACTIONS(4891), + [anon_sym_AMP_GT_GT] = ACTIONS(4891), + [anon_sym_LT_AMP] = ACTIONS(4891), + [anon_sym_GT_AMP] = ACTIONS(4891), + [anon_sym_LT_LT] = ACTIONS(4891), + [anon_sym_LT_LT_DASH] = ACTIONS(4891), + [anon_sym_LT_LT_LT] = ACTIONS(4891), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4829), - [anon_sym_LF] = ACTIONS(4829), - [anon_sym_AMP] = ACTIONS(4829), + [anon_sym_SEMI] = ACTIONS(4891), + [anon_sym_LF] = ACTIONS(4891), + [anon_sym_AMP] = ACTIONS(4891), }, [3153] = { [sym_concatenation] = STATE(451), @@ -80378,47 +80723,47 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7254), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7324), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3154] = { - [sym__heredoc_middle] = ACTIONS(3235), - [sym__heredoc_end] = ACTIONS(3235), - [anon_sym_DOLLAR] = ACTIONS(4540), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3235), + [sym__heredoc_middle] = ACTIONS(3283), + [sym__heredoc_end] = ACTIONS(3283), + [anon_sym_DOLLAR] = ACTIONS(4602), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3283), [sym_comment] = ACTIONS(56), }, [3155] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(7256), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(7326), [sym_comment] = ACTIONS(56), }, [3156] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(7258), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(7328), [sym_comment] = ACTIONS(56), }, [3157] = { - [anon_sym_RBRACE] = ACTIONS(7258), + [anon_sym_RBRACE] = ACTIONS(7328), [sym_comment] = ACTIONS(56), }, [3158] = { @@ -80430,31 +80775,31 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3639), - [anon_sym_RBRACE] = ACTIONS(7260), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7330), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3159] = { - [sym__heredoc_middle] = ACTIONS(3297), - [sym__heredoc_end] = ACTIONS(3297), - [anon_sym_DOLLAR] = ACTIONS(4548), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3297), + [sym__heredoc_middle] = ACTIONS(3347), + [sym__heredoc_end] = ACTIONS(3347), + [anon_sym_DOLLAR] = ACTIONS(4610), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3347), [sym_comment] = ACTIONS(56), }, [3160] = { @@ -80465,29 +80810,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(3641), [sym_command_substitution] = STATE(3641), [sym_process_substitution] = STATE(3641), - [anon_sym_RBRACE] = ACTIONS(7258), - [sym__special_characters] = ACTIONS(7262), - [anon_sym_DQUOTE] = ACTIONS(1924), - [anon_sym_DOLLAR] = ACTIONS(1926), - [sym_raw_string] = ACTIONS(7264), - [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), + [anon_sym_RBRACE] = ACTIONS(7328), + [sym__special_characters] = ACTIONS(7332), + [anon_sym_DQUOTE] = ACTIONS(1952), + [anon_sym_DOLLAR] = ACTIONS(1954), + [sym_raw_string] = ACTIONS(7334), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), + [anon_sym_BQUOTE] = ACTIONS(1962), + [anon_sym_LT_LPAREN] = ACTIONS(1964), + [anon_sym_GT_LPAREN] = ACTIONS(1964), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7266), + [sym_word] = ACTIONS(7336), }, [3161] = { - [sym__heredoc_middle] = ACTIONS(3342), - [sym__heredoc_end] = ACTIONS(3342), - [anon_sym_DOLLAR] = ACTIONS(4556), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3342), + [sym__heredoc_middle] = ACTIONS(3392), + [sym__heredoc_end] = ACTIONS(3392), + [anon_sym_DOLLAR] = ACTIONS(4618), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3392), [sym_comment] = ACTIONS(56), }, [3162] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(7268), + [sym_regex_without_right_brace] = ACTIONS(7338), }, [3163] = { [sym_concatenation] = STATE(451), @@ -80498,36 +80843,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [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), + [anon_sym_RBRACE] = ACTIONS(7340), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3164] = { - [sym__heredoc_middle] = ACTIONS(3350), - [sym__heredoc_end] = ACTIONS(3350), - [anon_sym_DOLLAR] = ACTIONS(4562), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3350), + [sym__heredoc_middle] = ACTIONS(3400), + [sym__heredoc_end] = ACTIONS(3400), + [anon_sym_DOLLAR] = ACTIONS(4624), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3400), [sym_comment] = ACTIONS(56), }, [3165] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(7272), + [sym_regex_without_right_brace] = ACTIONS(7342), }, [3166] = { [sym_concatenation] = STATE(451), @@ -80538,29 +80883,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(7344), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3167] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(7276), + [sym_regex_without_right_brace] = ACTIONS(7346), }, [3168] = { [sym_concatenation] = STATE(451), @@ -80571,25 +80916,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7258), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7328), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3169] = { [sym_concatenation] = STATE(451), @@ -80600,31 +80945,31 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3649), - [anon_sym_RBRACE] = ACTIONS(7278), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7348), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3170] = { - [sym__heredoc_middle] = ACTIONS(3362), - [sym__heredoc_end] = ACTIONS(3362), - [anon_sym_DOLLAR] = ACTIONS(4572), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3362), + [sym__heredoc_middle] = ACTIONS(3412), + [sym__heredoc_end] = ACTIONS(3412), + [anon_sym_DOLLAR] = ACTIONS(4634), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3412), [sym_comment] = ACTIONS(56), }, [3171] = { @@ -80636,44 +80981,44 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3651), - [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), + [anon_sym_RBRACE] = ACTIONS(7350), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3172] = { - [sym__concat] = ACTIONS(5961), - [anon_sym_RBRACK] = ACTIONS(5961), + [sym__concat] = ACTIONS(6025), + [anon_sym_RBRACK] = ACTIONS(6025), [sym_comment] = ACTIONS(56), }, [3173] = { - [sym__concat] = ACTIONS(5965), - [anon_sym_RBRACK] = ACTIONS(5965), + [sym__concat] = ACTIONS(6029), + [anon_sym_RBRACK] = ACTIONS(6029), [sym_comment] = ACTIONS(56), }, [3174] = { - [sym__concat] = ACTIONS(5969), - [anon_sym_RBRACK] = ACTIONS(5969), + [sym__concat] = ACTIONS(6033), + [anon_sym_RBRACK] = ACTIONS(6033), [sym_comment] = ACTIONS(56), }, [3175] = { - [sym__concat] = ACTIONS(5973), - [anon_sym_RBRACK] = ACTIONS(5973), + [sym__concat] = ACTIONS(6037), + [anon_sym_RBRACK] = ACTIONS(6037), [sym_comment] = ACTIONS(56), }, [3176] = { @@ -80685,29 +81030,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7282), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7352), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3177] = { - [sym__concat] = ACTIONS(5979), - [anon_sym_RBRACK] = ACTIONS(5979), + [sym__concat] = ACTIONS(6043), + [anon_sym_RBRACK] = ACTIONS(6043), [sym_comment] = ACTIONS(56), }, [3178] = { @@ -80719,29 +81064,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [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), + [anon_sym_RBRACE] = ACTIONS(7354), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3179] = { - [sym__concat] = ACTIONS(5985), - [anon_sym_RBRACK] = ACTIONS(5985), + [sym__concat] = ACTIONS(6049), + [anon_sym_RBRACK] = ACTIONS(6049), [sym_comment] = ACTIONS(56), }, [3180] = { @@ -80753,80 +81098,80 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(7356), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3181] = { - [sym__concat] = ACTIONS(5991), - [anon_sym_RBRACK] = ACTIONS(5991), + [sym__concat] = ACTIONS(6055), + [anon_sym_RBRACK] = ACTIONS(6055), [sym_comment] = ACTIONS(56), }, [3182] = { - [sym__concat] = ACTIONS(5995), - [anon_sym_RBRACK] = ACTIONS(5995), + [sym__concat] = ACTIONS(6059), + [anon_sym_RBRACK] = ACTIONS(6059), [sym_comment] = ACTIONS(56), }, [3183] = { - [sym__concat] = ACTIONS(4728), - [anon_sym_RPAREN] = ACTIONS(4728), - [sym__special_characters] = ACTIONS(5780), - [anon_sym_DQUOTE] = ACTIONS(4728), - [anon_sym_DOLLAR] = ACTIONS(5780), - [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__concat] = ACTIONS(4790), + [anon_sym_RPAREN] = ACTIONS(4790), + [sym__special_characters] = ACTIONS(5844), + [anon_sym_DQUOTE] = ACTIONS(4790), + [anon_sym_DOLLAR] = ACTIONS(5844), + [sym_raw_string] = ACTIONS(4790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4790), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4790), + [anon_sym_BQUOTE] = ACTIONS(4790), + [anon_sym_LT_LPAREN] = ACTIONS(4790), + [anon_sym_GT_LPAREN] = ACTIONS(4790), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5780), + [sym_word] = ACTIONS(5844), }, [3184] = { - [sym__concat] = ACTIONS(4734), - [anon_sym_RPAREN] = ACTIONS(4734), - [sym__special_characters] = ACTIONS(5782), - [anon_sym_DQUOTE] = ACTIONS(4734), - [anon_sym_DOLLAR] = ACTIONS(5782), - [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__concat] = ACTIONS(4796), + [anon_sym_RPAREN] = ACTIONS(4796), + [sym__special_characters] = ACTIONS(5846), + [anon_sym_DQUOTE] = ACTIONS(4796), + [anon_sym_DOLLAR] = ACTIONS(5846), + [sym_raw_string] = ACTIONS(4796), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4796), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4796), + [anon_sym_BQUOTE] = ACTIONS(4796), + [anon_sym_LT_LPAREN] = ACTIONS(4796), + [anon_sym_GT_LPAREN] = ACTIONS(4796), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5782), + [sym_word] = ACTIONS(5846), }, [3185] = { - [sym__concat] = ACTIONS(4797), - [anon_sym_RPAREN] = ACTIONS(4797), - [sym__special_characters] = ACTIONS(5784), - [anon_sym_DQUOTE] = ACTIONS(4797), - [anon_sym_DOLLAR] = ACTIONS(5784), - [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__concat] = ACTIONS(4859), + [anon_sym_RPAREN] = ACTIONS(4859), + [sym__special_characters] = ACTIONS(5848), + [anon_sym_DQUOTE] = ACTIONS(4859), + [anon_sym_DOLLAR] = ACTIONS(5848), + [sym_raw_string] = ACTIONS(4859), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4859), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4859), + [anon_sym_BQUOTE] = ACTIONS(4859), + [anon_sym_LT_LPAREN] = ACTIONS(4859), + [anon_sym_GT_LPAREN] = ACTIONS(4859), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5784), + [sym_word] = ACTIONS(5848), }, [3186] = { [sym_concatenation] = STATE(451), @@ -80837,40 +81182,40 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(7358), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3187] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(7290), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(7360), [sym_comment] = ACTIONS(56), }, [3188] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(7292), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(7362), [sym_comment] = ACTIONS(56), }, [3189] = { - [anon_sym_RBRACE] = ACTIONS(7292), + [anon_sym_RBRACE] = ACTIONS(7362), [sym_comment] = ACTIONS(56), }, [3190] = { @@ -80882,40 +81227,40 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3659), - [anon_sym_RBRACE] = ACTIONS(7294), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7364), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3191] = { - [sym__concat] = ACTIONS(4809), - [anon_sym_RPAREN] = ACTIONS(4809), - [sym__special_characters] = ACTIONS(5794), - [anon_sym_DQUOTE] = ACTIONS(4809), - [anon_sym_DOLLAR] = ACTIONS(5794), - [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__concat] = ACTIONS(4871), + [anon_sym_RPAREN] = ACTIONS(4871), + [sym__special_characters] = ACTIONS(5858), + [anon_sym_DQUOTE] = ACTIONS(4871), + [anon_sym_DOLLAR] = ACTIONS(5858), + [sym_raw_string] = ACTIONS(4871), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4871), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4871), + [anon_sym_BQUOTE] = ACTIONS(4871), + [anon_sym_LT_LPAREN] = ACTIONS(4871), + [anon_sym_GT_LPAREN] = ACTIONS(4871), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5794), + [sym_word] = ACTIONS(5858), }, [3192] = { [sym_concatenation] = STATE(451), @@ -80926,40 +81271,40 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3661), - [anon_sym_RBRACE] = ACTIONS(7296), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7366), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3193] = { - [sym__concat] = ACTIONS(4815), - [anon_sym_RPAREN] = ACTIONS(4815), - [sym__special_characters] = ACTIONS(5798), - [anon_sym_DQUOTE] = ACTIONS(4815), - [anon_sym_DOLLAR] = ACTIONS(5798), - [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__concat] = ACTIONS(4877), + [anon_sym_RPAREN] = ACTIONS(4877), + [sym__special_characters] = ACTIONS(5862), + [anon_sym_DQUOTE] = ACTIONS(4877), + [anon_sym_DOLLAR] = ACTIONS(5862), + [sym_raw_string] = ACTIONS(4877), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4877), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4877), + [anon_sym_BQUOTE] = ACTIONS(4877), + [anon_sym_LT_LPAREN] = ACTIONS(4877), + [anon_sym_GT_LPAREN] = ACTIONS(4877), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5798), + [sym_word] = ACTIONS(5862), }, [3194] = { [sym_concatenation] = STATE(451), @@ -80970,40 +81315,40 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3663), - [anon_sym_RBRACE] = ACTIONS(7298), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7368), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3195] = { - [sym__concat] = ACTIONS(4821), - [anon_sym_RPAREN] = ACTIONS(4821), - [sym__special_characters] = ACTIONS(5802), - [anon_sym_DQUOTE] = ACTIONS(4821), - [anon_sym_DOLLAR] = ACTIONS(5802), - [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__concat] = ACTIONS(4883), + [anon_sym_RPAREN] = ACTIONS(4883), + [sym__special_characters] = ACTIONS(5866), + [anon_sym_DQUOTE] = ACTIONS(4883), + [anon_sym_DOLLAR] = ACTIONS(5866), + [sym_raw_string] = ACTIONS(4883), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4883), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4883), + [anon_sym_BQUOTE] = ACTIONS(4883), + [anon_sym_LT_LPAREN] = ACTIONS(4883), + [anon_sym_GT_LPAREN] = ACTIONS(4883), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5802), + [sym_word] = ACTIONS(5866), }, [3196] = { [sym_concatenation] = STATE(451), @@ -81014,40 +81359,40 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7300), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7370), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3197] = { - [sym__concat] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(4827), - [sym__special_characters] = ACTIONS(5806), - [anon_sym_DQUOTE] = ACTIONS(4827), - [anon_sym_DOLLAR] = ACTIONS(5806), - [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__concat] = ACTIONS(4889), + [anon_sym_RPAREN] = ACTIONS(4889), + [sym__special_characters] = ACTIONS(5870), + [anon_sym_DQUOTE] = ACTIONS(4889), + [anon_sym_DOLLAR] = ACTIONS(5870), + [sym_raw_string] = ACTIONS(4889), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4889), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4889), + [anon_sym_BQUOTE] = ACTIONS(4889), + [anon_sym_LT_LPAREN] = ACTIONS(4889), + [anon_sym_GT_LPAREN] = ACTIONS(4889), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5806), + [sym_word] = ACTIONS(5870), }, [3198] = { [sym_concatenation] = STATE(451), @@ -81058,149 +81403,149 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7302), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7372), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3199] = { - [sym_file_descriptor] = ACTIONS(5961), - [sym__concat] = ACTIONS(5961), - [sym_variable_name] = ACTIONS(5961), - [anon_sym_PIPE] = ACTIONS(5963), - [anon_sym_SEMI_SEMI] = ACTIONS(5963), - [anon_sym_PIPE_AMP] = ACTIONS(5963), - [anon_sym_AMP_AMP] = ACTIONS(5963), - [anon_sym_PIPE_PIPE] = ACTIONS(5963), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_GT] = ACTIONS(5963), - [anon_sym_GT_GT] = ACTIONS(5963), - [anon_sym_AMP_GT] = ACTIONS(5963), - [anon_sym_AMP_GT_GT] = ACTIONS(5963), - [anon_sym_LT_AMP] = ACTIONS(5963), - [anon_sym_GT_AMP] = ACTIONS(5963), - [sym__special_characters] = ACTIONS(5963), - [anon_sym_DQUOTE] = ACTIONS(5963), - [anon_sym_DOLLAR] = ACTIONS(5963), - [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_file_descriptor] = ACTIONS(6025), + [sym__concat] = ACTIONS(6025), + [sym_variable_name] = ACTIONS(6025), + [anon_sym_PIPE] = ACTIONS(6027), + [anon_sym_SEMI_SEMI] = ACTIONS(6027), + [anon_sym_PIPE_AMP] = ACTIONS(6027), + [anon_sym_AMP_AMP] = ACTIONS(6027), + [anon_sym_PIPE_PIPE] = ACTIONS(6027), + [anon_sym_LT] = ACTIONS(6027), + [anon_sym_GT] = ACTIONS(6027), + [anon_sym_GT_GT] = ACTIONS(6027), + [anon_sym_AMP_GT] = ACTIONS(6027), + [anon_sym_AMP_GT_GT] = ACTIONS(6027), + [anon_sym_LT_AMP] = ACTIONS(6027), + [anon_sym_GT_AMP] = ACTIONS(6027), + [sym__special_characters] = ACTIONS(6027), + [anon_sym_DQUOTE] = ACTIONS(6027), + [anon_sym_DOLLAR] = ACTIONS(6027), + [sym_raw_string] = ACTIONS(6027), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6027), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6027), + [anon_sym_BQUOTE] = ACTIONS(6027), + [anon_sym_LT_LPAREN] = ACTIONS(6027), + [anon_sym_GT_LPAREN] = ACTIONS(6027), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(5963), - [anon_sym_SEMI] = ACTIONS(5963), - [anon_sym_LF] = ACTIONS(5963), - [anon_sym_AMP] = ACTIONS(5963), + [sym_word] = ACTIONS(6027), + [anon_sym_SEMI] = ACTIONS(6027), + [anon_sym_LF] = ACTIONS(6027), + [anon_sym_AMP] = ACTIONS(6027), }, [3200] = { - [sym_file_descriptor] = ACTIONS(5965), - [sym__concat] = ACTIONS(5965), - [sym_variable_name] = ACTIONS(5965), - [anon_sym_PIPE] = ACTIONS(5967), - [anon_sym_SEMI_SEMI] = ACTIONS(5967), - [anon_sym_PIPE_AMP] = ACTIONS(5967), - [anon_sym_AMP_AMP] = ACTIONS(5967), - [anon_sym_PIPE_PIPE] = ACTIONS(5967), - [anon_sym_LT] = ACTIONS(5967), - [anon_sym_GT] = ACTIONS(5967), - [anon_sym_GT_GT] = ACTIONS(5967), - [anon_sym_AMP_GT] = ACTIONS(5967), - [anon_sym_AMP_GT_GT] = ACTIONS(5967), - [anon_sym_LT_AMP] = ACTIONS(5967), - [anon_sym_GT_AMP] = ACTIONS(5967), - [sym__special_characters] = ACTIONS(5967), - [anon_sym_DQUOTE] = ACTIONS(5967), - [anon_sym_DOLLAR] = ACTIONS(5967), - [sym_raw_string] = ACTIONS(5967), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5967), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5967), - [anon_sym_BQUOTE] = ACTIONS(5967), - [anon_sym_LT_LPAREN] = ACTIONS(5967), - [anon_sym_GT_LPAREN] = ACTIONS(5967), + [sym_file_descriptor] = ACTIONS(6029), + [sym__concat] = ACTIONS(6029), + [sym_variable_name] = ACTIONS(6029), + [anon_sym_PIPE] = ACTIONS(6031), + [anon_sym_SEMI_SEMI] = ACTIONS(6031), + [anon_sym_PIPE_AMP] = ACTIONS(6031), + [anon_sym_AMP_AMP] = ACTIONS(6031), + [anon_sym_PIPE_PIPE] = ACTIONS(6031), + [anon_sym_LT] = ACTIONS(6031), + [anon_sym_GT] = ACTIONS(6031), + [anon_sym_GT_GT] = ACTIONS(6031), + [anon_sym_AMP_GT] = ACTIONS(6031), + [anon_sym_AMP_GT_GT] = ACTIONS(6031), + [anon_sym_LT_AMP] = ACTIONS(6031), + [anon_sym_GT_AMP] = ACTIONS(6031), + [sym__special_characters] = ACTIONS(6031), + [anon_sym_DQUOTE] = ACTIONS(6031), + [anon_sym_DOLLAR] = ACTIONS(6031), + [sym_raw_string] = ACTIONS(6031), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6031), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6031), + [anon_sym_BQUOTE] = ACTIONS(6031), + [anon_sym_LT_LPAREN] = ACTIONS(6031), + [anon_sym_GT_LPAREN] = ACTIONS(6031), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(5967), - [anon_sym_SEMI] = ACTIONS(5967), - [anon_sym_LF] = ACTIONS(5967), - [anon_sym_AMP] = ACTIONS(5967), + [sym_word] = ACTIONS(6031), + [anon_sym_SEMI] = ACTIONS(6031), + [anon_sym_LF] = ACTIONS(6031), + [anon_sym_AMP] = ACTIONS(6031), }, [3201] = { - [sym_file_descriptor] = ACTIONS(5969), - [sym__concat] = ACTIONS(5969), - [sym_variable_name] = ACTIONS(5969), - [anon_sym_PIPE] = ACTIONS(5971), - [anon_sym_SEMI_SEMI] = ACTIONS(5971), - [anon_sym_PIPE_AMP] = ACTIONS(5971), - [anon_sym_AMP_AMP] = ACTIONS(5971), - [anon_sym_PIPE_PIPE] = ACTIONS(5971), - [anon_sym_LT] = ACTIONS(5971), - [anon_sym_GT] = ACTIONS(5971), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_AMP_GT] = ACTIONS(5971), - [anon_sym_AMP_GT_GT] = ACTIONS(5971), - [anon_sym_LT_AMP] = ACTIONS(5971), - [anon_sym_GT_AMP] = ACTIONS(5971), - [sym__special_characters] = ACTIONS(5971), - [anon_sym_DQUOTE] = ACTIONS(5971), - [anon_sym_DOLLAR] = ACTIONS(5971), - [sym_raw_string] = ACTIONS(5971), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5971), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5971), - [anon_sym_BQUOTE] = ACTIONS(5971), - [anon_sym_LT_LPAREN] = ACTIONS(5971), - [anon_sym_GT_LPAREN] = ACTIONS(5971), + [sym_file_descriptor] = ACTIONS(6033), + [sym__concat] = ACTIONS(6033), + [sym_variable_name] = ACTIONS(6033), + [anon_sym_PIPE] = ACTIONS(6035), + [anon_sym_SEMI_SEMI] = ACTIONS(6035), + [anon_sym_PIPE_AMP] = ACTIONS(6035), + [anon_sym_AMP_AMP] = ACTIONS(6035), + [anon_sym_PIPE_PIPE] = ACTIONS(6035), + [anon_sym_LT] = ACTIONS(6035), + [anon_sym_GT] = ACTIONS(6035), + [anon_sym_GT_GT] = ACTIONS(6035), + [anon_sym_AMP_GT] = ACTIONS(6035), + [anon_sym_AMP_GT_GT] = ACTIONS(6035), + [anon_sym_LT_AMP] = ACTIONS(6035), + [anon_sym_GT_AMP] = ACTIONS(6035), + [sym__special_characters] = ACTIONS(6035), + [anon_sym_DQUOTE] = ACTIONS(6035), + [anon_sym_DOLLAR] = ACTIONS(6035), + [sym_raw_string] = ACTIONS(6035), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6035), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6035), + [anon_sym_BQUOTE] = ACTIONS(6035), + [anon_sym_LT_LPAREN] = ACTIONS(6035), + [anon_sym_GT_LPAREN] = ACTIONS(6035), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(5971), - [anon_sym_SEMI] = ACTIONS(5971), - [anon_sym_LF] = ACTIONS(5971), - [anon_sym_AMP] = ACTIONS(5971), + [sym_word] = ACTIONS(6035), + [anon_sym_SEMI] = ACTIONS(6035), + [anon_sym_LF] = ACTIONS(6035), + [anon_sym_AMP] = ACTIONS(6035), }, [3202] = { - [sym_file_descriptor] = ACTIONS(5973), - [sym__concat] = ACTIONS(5973), - [sym_variable_name] = ACTIONS(5973), - [anon_sym_PIPE] = ACTIONS(5975), - [anon_sym_SEMI_SEMI] = ACTIONS(5975), - [anon_sym_PIPE_AMP] = ACTIONS(5975), - [anon_sym_AMP_AMP] = ACTIONS(5975), - [anon_sym_PIPE_PIPE] = ACTIONS(5975), - [anon_sym_LT] = ACTIONS(5975), - [anon_sym_GT] = ACTIONS(5975), - [anon_sym_GT_GT] = ACTIONS(5975), - [anon_sym_AMP_GT] = ACTIONS(5975), - [anon_sym_AMP_GT_GT] = ACTIONS(5975), - [anon_sym_LT_AMP] = ACTIONS(5975), - [anon_sym_GT_AMP] = ACTIONS(5975), - [sym__special_characters] = ACTIONS(5975), - [anon_sym_DQUOTE] = ACTIONS(5975), - [anon_sym_DOLLAR] = ACTIONS(5975), - [sym_raw_string] = ACTIONS(5975), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5975), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5975), - [anon_sym_BQUOTE] = ACTIONS(5975), - [anon_sym_LT_LPAREN] = ACTIONS(5975), - [anon_sym_GT_LPAREN] = ACTIONS(5975), + [sym_file_descriptor] = ACTIONS(6037), + [sym__concat] = ACTIONS(6037), + [sym_variable_name] = ACTIONS(6037), + [anon_sym_PIPE] = ACTIONS(6039), + [anon_sym_SEMI_SEMI] = ACTIONS(6039), + [anon_sym_PIPE_AMP] = ACTIONS(6039), + [anon_sym_AMP_AMP] = ACTIONS(6039), + [anon_sym_PIPE_PIPE] = ACTIONS(6039), + [anon_sym_LT] = ACTIONS(6039), + [anon_sym_GT] = ACTIONS(6039), + [anon_sym_GT_GT] = ACTIONS(6039), + [anon_sym_AMP_GT] = ACTIONS(6039), + [anon_sym_AMP_GT_GT] = ACTIONS(6039), + [anon_sym_LT_AMP] = ACTIONS(6039), + [anon_sym_GT_AMP] = ACTIONS(6039), + [sym__special_characters] = ACTIONS(6039), + [anon_sym_DQUOTE] = ACTIONS(6039), + [anon_sym_DOLLAR] = ACTIONS(6039), + [sym_raw_string] = ACTIONS(6039), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6039), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6039), + [anon_sym_BQUOTE] = ACTIONS(6039), + [anon_sym_LT_LPAREN] = ACTIONS(6039), + [anon_sym_GT_LPAREN] = ACTIONS(6039), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(5975), - [anon_sym_SEMI] = ACTIONS(5975), - [anon_sym_LF] = ACTIONS(5975), - [anon_sym_AMP] = ACTIONS(5975), + [sym_word] = ACTIONS(6039), + [anon_sym_SEMI] = ACTIONS(6039), + [anon_sym_LF] = ACTIONS(6039), + [anon_sym_AMP] = ACTIONS(6039), }, [3203] = { [sym_concatenation] = STATE(451), @@ -81211,56 +81556,56 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7304), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7374), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3204] = { - [sym_file_descriptor] = ACTIONS(5979), - [sym__concat] = ACTIONS(5979), - [sym_variable_name] = ACTIONS(5979), - [anon_sym_PIPE] = ACTIONS(5981), - [anon_sym_SEMI_SEMI] = ACTIONS(5981), - [anon_sym_PIPE_AMP] = ACTIONS(5981), - [anon_sym_AMP_AMP] = ACTIONS(5981), - [anon_sym_PIPE_PIPE] = ACTIONS(5981), - [anon_sym_LT] = ACTIONS(5981), - [anon_sym_GT] = ACTIONS(5981), - [anon_sym_GT_GT] = ACTIONS(5981), - [anon_sym_AMP_GT] = ACTIONS(5981), - [anon_sym_AMP_GT_GT] = ACTIONS(5981), - [anon_sym_LT_AMP] = ACTIONS(5981), - [anon_sym_GT_AMP] = ACTIONS(5981), - [sym__special_characters] = ACTIONS(5981), - [anon_sym_DQUOTE] = ACTIONS(5981), - [anon_sym_DOLLAR] = ACTIONS(5981), - [sym_raw_string] = ACTIONS(5981), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5981), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5981), - [anon_sym_BQUOTE] = ACTIONS(5981), - [anon_sym_LT_LPAREN] = ACTIONS(5981), - [anon_sym_GT_LPAREN] = ACTIONS(5981), + [sym_file_descriptor] = ACTIONS(6043), + [sym__concat] = ACTIONS(6043), + [sym_variable_name] = ACTIONS(6043), + [anon_sym_PIPE] = ACTIONS(6045), + [anon_sym_SEMI_SEMI] = ACTIONS(6045), + [anon_sym_PIPE_AMP] = ACTIONS(6045), + [anon_sym_AMP_AMP] = ACTIONS(6045), + [anon_sym_PIPE_PIPE] = ACTIONS(6045), + [anon_sym_LT] = ACTIONS(6045), + [anon_sym_GT] = ACTIONS(6045), + [anon_sym_GT_GT] = ACTIONS(6045), + [anon_sym_AMP_GT] = ACTIONS(6045), + [anon_sym_AMP_GT_GT] = ACTIONS(6045), + [anon_sym_LT_AMP] = ACTIONS(6045), + [anon_sym_GT_AMP] = ACTIONS(6045), + [sym__special_characters] = ACTIONS(6045), + [anon_sym_DQUOTE] = ACTIONS(6045), + [anon_sym_DOLLAR] = ACTIONS(6045), + [sym_raw_string] = ACTIONS(6045), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6045), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6045), + [anon_sym_BQUOTE] = ACTIONS(6045), + [anon_sym_LT_LPAREN] = ACTIONS(6045), + [anon_sym_GT_LPAREN] = ACTIONS(6045), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(5981), - [anon_sym_SEMI] = ACTIONS(5981), - [anon_sym_LF] = ACTIONS(5981), - [anon_sym_AMP] = ACTIONS(5981), + [sym_word] = ACTIONS(6045), + [anon_sym_SEMI] = ACTIONS(6045), + [anon_sym_LF] = ACTIONS(6045), + [anon_sym_AMP] = ACTIONS(6045), }, [3205] = { [sym_concatenation] = STATE(451), @@ -81271,56 +81616,56 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7306), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7376), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3206] = { - [sym_file_descriptor] = ACTIONS(5985), - [sym__concat] = ACTIONS(5985), - [sym_variable_name] = ACTIONS(5985), - [anon_sym_PIPE] = ACTIONS(5987), - [anon_sym_SEMI_SEMI] = ACTIONS(5987), - [anon_sym_PIPE_AMP] = ACTIONS(5987), - [anon_sym_AMP_AMP] = ACTIONS(5987), - [anon_sym_PIPE_PIPE] = ACTIONS(5987), - [anon_sym_LT] = ACTIONS(5987), - [anon_sym_GT] = ACTIONS(5987), - [anon_sym_GT_GT] = ACTIONS(5987), - [anon_sym_AMP_GT] = ACTIONS(5987), - [anon_sym_AMP_GT_GT] = ACTIONS(5987), - [anon_sym_LT_AMP] = ACTIONS(5987), - [anon_sym_GT_AMP] = ACTIONS(5987), - [sym__special_characters] = ACTIONS(5987), - [anon_sym_DQUOTE] = ACTIONS(5987), - [anon_sym_DOLLAR] = ACTIONS(5987), - [sym_raw_string] = ACTIONS(5987), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5987), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5987), - [anon_sym_BQUOTE] = ACTIONS(5987), - [anon_sym_LT_LPAREN] = ACTIONS(5987), - [anon_sym_GT_LPAREN] = ACTIONS(5987), + [sym_file_descriptor] = ACTIONS(6049), + [sym__concat] = ACTIONS(6049), + [sym_variable_name] = ACTIONS(6049), + [anon_sym_PIPE] = ACTIONS(6051), + [anon_sym_SEMI_SEMI] = ACTIONS(6051), + [anon_sym_PIPE_AMP] = ACTIONS(6051), + [anon_sym_AMP_AMP] = ACTIONS(6051), + [anon_sym_PIPE_PIPE] = ACTIONS(6051), + [anon_sym_LT] = ACTIONS(6051), + [anon_sym_GT] = ACTIONS(6051), + [anon_sym_GT_GT] = ACTIONS(6051), + [anon_sym_AMP_GT] = ACTIONS(6051), + [anon_sym_AMP_GT_GT] = ACTIONS(6051), + [anon_sym_LT_AMP] = ACTIONS(6051), + [anon_sym_GT_AMP] = ACTIONS(6051), + [sym__special_characters] = ACTIONS(6051), + [anon_sym_DQUOTE] = ACTIONS(6051), + [anon_sym_DOLLAR] = ACTIONS(6051), + [sym_raw_string] = ACTIONS(6051), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6051), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6051), + [anon_sym_BQUOTE] = ACTIONS(6051), + [anon_sym_LT_LPAREN] = ACTIONS(6051), + [anon_sym_GT_LPAREN] = ACTIONS(6051), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(5987), - [anon_sym_SEMI] = ACTIONS(5987), - [anon_sym_LF] = ACTIONS(5987), - [anon_sym_AMP] = ACTIONS(5987), + [sym_word] = ACTIONS(6051), + [anon_sym_SEMI] = ACTIONS(6051), + [anon_sym_LF] = ACTIONS(6051), + [anon_sym_AMP] = ACTIONS(6051), }, [3207] = { [sym_concatenation] = STATE(451), @@ -81331,141 +81676,141 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7308), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7378), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3208] = { - [sym_file_descriptor] = ACTIONS(5991), - [sym__concat] = ACTIONS(5991), - [sym_variable_name] = ACTIONS(5991), - [anon_sym_PIPE] = ACTIONS(5993), - [anon_sym_SEMI_SEMI] = ACTIONS(5993), - [anon_sym_PIPE_AMP] = ACTIONS(5993), - [anon_sym_AMP_AMP] = ACTIONS(5993), - [anon_sym_PIPE_PIPE] = ACTIONS(5993), - [anon_sym_LT] = ACTIONS(5993), - [anon_sym_GT] = ACTIONS(5993), - [anon_sym_GT_GT] = ACTIONS(5993), - [anon_sym_AMP_GT] = ACTIONS(5993), - [anon_sym_AMP_GT_GT] = ACTIONS(5993), - [anon_sym_LT_AMP] = ACTIONS(5993), - [anon_sym_GT_AMP] = ACTIONS(5993), - [sym__special_characters] = ACTIONS(5993), - [anon_sym_DQUOTE] = ACTIONS(5993), - [anon_sym_DOLLAR] = ACTIONS(5993), - [sym_raw_string] = ACTIONS(5993), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5993), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5993), - [anon_sym_BQUOTE] = ACTIONS(5993), - [anon_sym_LT_LPAREN] = ACTIONS(5993), - [anon_sym_GT_LPAREN] = ACTIONS(5993), + [sym_file_descriptor] = ACTIONS(6055), + [sym__concat] = ACTIONS(6055), + [sym_variable_name] = ACTIONS(6055), + [anon_sym_PIPE] = ACTIONS(6057), + [anon_sym_SEMI_SEMI] = ACTIONS(6057), + [anon_sym_PIPE_AMP] = ACTIONS(6057), + [anon_sym_AMP_AMP] = ACTIONS(6057), + [anon_sym_PIPE_PIPE] = ACTIONS(6057), + [anon_sym_LT] = ACTIONS(6057), + [anon_sym_GT] = ACTIONS(6057), + [anon_sym_GT_GT] = ACTIONS(6057), + [anon_sym_AMP_GT] = ACTIONS(6057), + [anon_sym_AMP_GT_GT] = ACTIONS(6057), + [anon_sym_LT_AMP] = ACTIONS(6057), + [anon_sym_GT_AMP] = ACTIONS(6057), + [sym__special_characters] = ACTIONS(6057), + [anon_sym_DQUOTE] = ACTIONS(6057), + [anon_sym_DOLLAR] = ACTIONS(6057), + [sym_raw_string] = ACTIONS(6057), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6057), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6057), + [anon_sym_BQUOTE] = ACTIONS(6057), + [anon_sym_LT_LPAREN] = ACTIONS(6057), + [anon_sym_GT_LPAREN] = ACTIONS(6057), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(5993), - [anon_sym_SEMI] = ACTIONS(5993), - [anon_sym_LF] = ACTIONS(5993), - [anon_sym_AMP] = ACTIONS(5993), + [sym_word] = ACTIONS(6057), + [anon_sym_SEMI] = ACTIONS(6057), + [anon_sym_LF] = ACTIONS(6057), + [anon_sym_AMP] = ACTIONS(6057), }, [3209] = { - [sym_file_descriptor] = ACTIONS(5995), - [sym__concat] = ACTIONS(5995), - [sym_variable_name] = ACTIONS(5995), - [anon_sym_PIPE] = ACTIONS(5997), - [anon_sym_SEMI_SEMI] = ACTIONS(5997), - [anon_sym_PIPE_AMP] = ACTIONS(5997), - [anon_sym_AMP_AMP] = ACTIONS(5997), - [anon_sym_PIPE_PIPE] = ACTIONS(5997), - [anon_sym_LT] = ACTIONS(5997), - [anon_sym_GT] = ACTIONS(5997), - [anon_sym_GT_GT] = ACTIONS(5997), - [anon_sym_AMP_GT] = ACTIONS(5997), - [anon_sym_AMP_GT_GT] = ACTIONS(5997), - [anon_sym_LT_AMP] = ACTIONS(5997), - [anon_sym_GT_AMP] = ACTIONS(5997), - [sym__special_characters] = ACTIONS(5997), - [anon_sym_DQUOTE] = ACTIONS(5997), - [anon_sym_DOLLAR] = ACTIONS(5997), - [sym_raw_string] = ACTIONS(5997), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5997), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5997), - [anon_sym_BQUOTE] = ACTIONS(5997), - [anon_sym_LT_LPAREN] = ACTIONS(5997), - [anon_sym_GT_LPAREN] = ACTIONS(5997), + [sym_file_descriptor] = ACTIONS(6059), + [sym__concat] = ACTIONS(6059), + [sym_variable_name] = ACTIONS(6059), + [anon_sym_PIPE] = ACTIONS(6061), + [anon_sym_SEMI_SEMI] = ACTIONS(6061), + [anon_sym_PIPE_AMP] = ACTIONS(6061), + [anon_sym_AMP_AMP] = ACTIONS(6061), + [anon_sym_PIPE_PIPE] = ACTIONS(6061), + [anon_sym_LT] = ACTIONS(6061), + [anon_sym_GT] = ACTIONS(6061), + [anon_sym_GT_GT] = ACTIONS(6061), + [anon_sym_AMP_GT] = ACTIONS(6061), + [anon_sym_AMP_GT_GT] = ACTIONS(6061), + [anon_sym_LT_AMP] = ACTIONS(6061), + [anon_sym_GT_AMP] = ACTIONS(6061), + [sym__special_characters] = ACTIONS(6061), + [anon_sym_DQUOTE] = ACTIONS(6061), + [anon_sym_DOLLAR] = ACTIONS(6061), + [sym_raw_string] = ACTIONS(6061), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6061), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6061), + [anon_sym_BQUOTE] = ACTIONS(6061), + [anon_sym_LT_LPAREN] = ACTIONS(6061), + [anon_sym_GT_LPAREN] = ACTIONS(6061), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(5997), - [anon_sym_SEMI] = ACTIONS(5997), - [anon_sym_LF] = ACTIONS(5997), - [anon_sym_AMP] = ACTIONS(5997), + [sym_word] = ACTIONS(6061), + [anon_sym_SEMI] = ACTIONS(6061), + [anon_sym_LF] = ACTIONS(6061), + [anon_sym_AMP] = ACTIONS(6061), }, [3210] = { - [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__concat] = ACTIONS(4790), + [anon_sym_SEMI_SEMI] = ACTIONS(4792), + [sym__special_characters] = ACTIONS(4792), + [anon_sym_DQUOTE] = ACTIONS(4792), + [anon_sym_DOLLAR] = ACTIONS(4792), + [sym_raw_string] = ACTIONS(4792), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4792), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4792), + [anon_sym_BQUOTE] = ACTIONS(4792), + [anon_sym_LT_LPAREN] = ACTIONS(4792), + [anon_sym_GT_LPAREN] = ACTIONS(4792), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4730), - [anon_sym_SEMI] = ACTIONS(4730), - [anon_sym_LF] = ACTIONS(4730), - [anon_sym_AMP] = ACTIONS(4730), + [sym_word] = ACTIONS(4792), + [anon_sym_SEMI] = ACTIONS(4792), + [anon_sym_LF] = ACTIONS(4792), + [anon_sym_AMP] = ACTIONS(4792), }, [3211] = { - [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__concat] = ACTIONS(4796), + [anon_sym_SEMI_SEMI] = ACTIONS(4798), + [sym__special_characters] = ACTIONS(4798), + [anon_sym_DQUOTE] = ACTIONS(4798), + [anon_sym_DOLLAR] = ACTIONS(4798), + [sym_raw_string] = ACTIONS(4798), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4798), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4798), + [anon_sym_BQUOTE] = ACTIONS(4798), + [anon_sym_LT_LPAREN] = ACTIONS(4798), + [anon_sym_GT_LPAREN] = ACTIONS(4798), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4736), - [anon_sym_SEMI] = ACTIONS(4736), - [anon_sym_LF] = ACTIONS(4736), - [anon_sym_AMP] = ACTIONS(4736), + [sym_word] = ACTIONS(4798), + [anon_sym_SEMI] = ACTIONS(4798), + [anon_sym_LF] = ACTIONS(4798), + [anon_sym_AMP] = ACTIONS(4798), }, [3212] = { - [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__concat] = ACTIONS(4859), + [anon_sym_SEMI_SEMI] = ACTIONS(4861), + [sym__special_characters] = ACTIONS(4861), + [anon_sym_DQUOTE] = ACTIONS(4861), + [anon_sym_DOLLAR] = ACTIONS(4861), + [sym_raw_string] = ACTIONS(4861), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4861), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4861), + [anon_sym_BQUOTE] = ACTIONS(4861), + [anon_sym_LT_LPAREN] = ACTIONS(4861), + [anon_sym_GT_LPAREN] = ACTIONS(4861), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4799), - [anon_sym_SEMI] = ACTIONS(4799), - [anon_sym_LF] = ACTIONS(4799), - [anon_sym_AMP] = ACTIONS(4799), + [sym_word] = ACTIONS(4861), + [anon_sym_SEMI] = ACTIONS(4861), + [anon_sym_LF] = ACTIONS(4861), + [anon_sym_AMP] = ACTIONS(4861), }, [3213] = { [sym_concatenation] = STATE(451), @@ -81476,40 +81821,40 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7310), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7380), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3214] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(7312), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(7382), [sym_comment] = ACTIONS(56), }, [3215] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(7314), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(7384), [sym_comment] = ACTIONS(56), }, [3216] = { - [anon_sym_RBRACE] = ACTIONS(7314), + [anon_sym_RBRACE] = ACTIONS(7384), [sym_comment] = ACTIONS(56), }, [3217] = { @@ -81521,43 +81866,43 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3673), - [anon_sym_RBRACE] = ACTIONS(7316), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7386), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3218] = { - [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__concat] = ACTIONS(4871), + [anon_sym_SEMI_SEMI] = ACTIONS(4873), + [sym__special_characters] = ACTIONS(4873), + [anon_sym_DQUOTE] = ACTIONS(4873), + [anon_sym_DOLLAR] = ACTIONS(4873), + [sym_raw_string] = ACTIONS(4873), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4873), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4873), + [anon_sym_BQUOTE] = ACTIONS(4873), + [anon_sym_LT_LPAREN] = ACTIONS(4873), + [anon_sym_GT_LPAREN] = ACTIONS(4873), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4811), - [anon_sym_SEMI] = ACTIONS(4811), - [anon_sym_LF] = ACTIONS(4811), - [anon_sym_AMP] = ACTIONS(4811), + [sym_word] = ACTIONS(4873), + [anon_sym_SEMI] = ACTIONS(4873), + [anon_sym_LF] = ACTIONS(4873), + [anon_sym_AMP] = ACTIONS(4873), }, [3219] = { [sym_concatenation] = STATE(451), @@ -81568,43 +81913,43 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3675), - [anon_sym_RBRACE] = ACTIONS(7318), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7388), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3220] = { - [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__concat] = ACTIONS(4877), + [anon_sym_SEMI_SEMI] = ACTIONS(4879), + [sym__special_characters] = ACTIONS(4879), + [anon_sym_DQUOTE] = ACTIONS(4879), + [anon_sym_DOLLAR] = ACTIONS(4879), + [sym_raw_string] = ACTIONS(4879), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4879), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4879), + [anon_sym_BQUOTE] = ACTIONS(4879), + [anon_sym_LT_LPAREN] = ACTIONS(4879), + [anon_sym_GT_LPAREN] = ACTIONS(4879), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4817), - [anon_sym_SEMI] = ACTIONS(4817), - [anon_sym_LF] = ACTIONS(4817), - [anon_sym_AMP] = ACTIONS(4817), + [sym_word] = ACTIONS(4879), + [anon_sym_SEMI] = ACTIONS(4879), + [anon_sym_LF] = ACTIONS(4879), + [anon_sym_AMP] = ACTIONS(4879), }, [3221] = { [sym_concatenation] = STATE(451), @@ -81615,43 +81960,43 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3677), - [anon_sym_RBRACE] = ACTIONS(7320), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7390), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3222] = { - [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__concat] = ACTIONS(4883), + [anon_sym_SEMI_SEMI] = ACTIONS(4885), + [sym__special_characters] = ACTIONS(4885), + [anon_sym_DQUOTE] = ACTIONS(4885), + [anon_sym_DOLLAR] = ACTIONS(4885), + [sym_raw_string] = ACTIONS(4885), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4885), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4885), + [anon_sym_BQUOTE] = ACTIONS(4885), + [anon_sym_LT_LPAREN] = ACTIONS(4885), + [anon_sym_GT_LPAREN] = ACTIONS(4885), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4823), - [anon_sym_SEMI] = ACTIONS(4823), - [anon_sym_LF] = ACTIONS(4823), - [anon_sym_AMP] = ACTIONS(4823), + [sym_word] = ACTIONS(4885), + [anon_sym_SEMI] = ACTIONS(4885), + [anon_sym_LF] = ACTIONS(4885), + [anon_sym_AMP] = ACTIONS(4885), }, [3223] = { [sym_concatenation] = STATE(451), @@ -81662,43 +82007,43 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7322), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7392), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3224] = { - [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__concat] = ACTIONS(4889), + [anon_sym_SEMI_SEMI] = ACTIONS(4891), + [sym__special_characters] = ACTIONS(4891), + [anon_sym_DQUOTE] = ACTIONS(4891), + [anon_sym_DOLLAR] = ACTIONS(4891), + [sym_raw_string] = ACTIONS(4891), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4891), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4891), + [anon_sym_BQUOTE] = ACTIONS(4891), + [anon_sym_LT_LPAREN] = ACTIONS(4891), + [anon_sym_GT_LPAREN] = ACTIONS(4891), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4829), - [anon_sym_SEMI] = ACTIONS(4829), - [anon_sym_LF] = ACTIONS(4829), - [anon_sym_AMP] = ACTIONS(4829), + [sym_word] = ACTIONS(4891), + [anon_sym_SEMI] = ACTIONS(4891), + [anon_sym_LF] = ACTIONS(4891), + [anon_sym_AMP] = ACTIONS(4891), }, [3225] = { [sym_concatenation] = STATE(451), @@ -81709,38 +82054,38 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7324), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7394), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3226] = { - [anon_sym_esac] = ACTIONS(4239), - [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_esac] = ACTIONS(4297), + [anon_sym_PIPE] = ACTIONS(4297), + [anon_sym_RPAREN] = ACTIONS(4297), + [anon_sym_SEMI_SEMI] = ACTIONS(4297), + [anon_sym_PIPE_AMP] = ACTIONS(4297), + [anon_sym_AMP_AMP] = ACTIONS(4297), + [anon_sym_PIPE_PIPE] = ACTIONS(4297), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4239), - [anon_sym_LF] = ACTIONS(4239), - [anon_sym_AMP] = ACTIONS(4239), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_LF] = ACTIONS(4297), + [anon_sym_AMP] = ACTIONS(4297), }, [3227] = { [sym_concatenation] = STATE(3680), @@ -81751,60 +82096,60 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(3685), [sym_command_substitution] = STATE(3685), [sym_process_substitution] = STATE(3685), - [sym__empty_value] = ACTIONS(7326), - [anon_sym_LPAREN] = ACTIONS(7328), - [sym__special_characters] = ACTIONS(7330), - [anon_sym_DQUOTE] = ACTIONS(7332), - [anon_sym_DOLLAR] = ACTIONS(7334), - [sym_raw_string] = ACTIONS(7336), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7338), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7340), - [anon_sym_BQUOTE] = ACTIONS(7342), - [anon_sym_LT_LPAREN] = ACTIONS(7344), - [anon_sym_GT_LPAREN] = ACTIONS(7344), + [sym__empty_value] = ACTIONS(7396), + [anon_sym_LPAREN] = ACTIONS(7398), + [sym__special_characters] = ACTIONS(7400), + [anon_sym_DQUOTE] = ACTIONS(7402), + [anon_sym_DOLLAR] = ACTIONS(7404), + [sym_raw_string] = ACTIONS(7406), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7408), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7410), + [anon_sym_BQUOTE] = ACTIONS(7412), + [anon_sym_LT_LPAREN] = ACTIONS(7414), + [anon_sym_GT_LPAREN] = ACTIONS(7414), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7346), + [sym_word] = ACTIONS(7416), }, [3228] = { - [sym_file_descriptor] = ACTIONS(438), - [sym_variable_name] = ACTIONS(438), - [anon_sym_esac] = ACTIONS(440), - [anon_sym_PIPE] = 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_file_descriptor] = ACTIONS(440), + [sym_variable_name] = ACTIONS(440), + [anon_sym_esac] = ACTIONS(442), + [anon_sym_PIPE] = ACTIONS(442), + [anon_sym_SEMI_SEMI] = ACTIONS(442), + [anon_sym_PIPE_AMP] = ACTIONS(442), + [anon_sym_AMP_AMP] = ACTIONS(442), + [anon_sym_PIPE_PIPE] = ACTIONS(442), + [anon_sym_LT] = ACTIONS(442), + [anon_sym_GT] = ACTIONS(442), + [anon_sym_GT_GT] = ACTIONS(442), + [anon_sym_AMP_GT] = ACTIONS(442), + [anon_sym_AMP_GT_GT] = ACTIONS(442), + [anon_sym_LT_AMP] = ACTIONS(442), + [anon_sym_GT_AMP] = ACTIONS(442), + [sym__special_characters] = ACTIONS(442), + [anon_sym_DQUOTE] = ACTIONS(442), + [anon_sym_DOLLAR] = ACTIONS(442), + [sym_raw_string] = ACTIONS(442), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(442), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(442), + [anon_sym_BQUOTE] = ACTIONS(442), + [anon_sym_LT_LPAREN] = ACTIONS(442), + [anon_sym_GT_LPAREN] = ACTIONS(442), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(440), - [anon_sym_SEMI] = ACTIONS(440), - [anon_sym_LF] = ACTIONS(440), - [anon_sym_AMP] = ACTIONS(440), + [sym_word] = ACTIONS(442), + [anon_sym_SEMI] = ACTIONS(442), + [anon_sym_LF] = ACTIONS(442), + [anon_sym_AMP] = ACTIONS(442), }, [3229] = { [sym_do_group] = STATE(3690), - [anon_sym_do] = ACTIONS(444), + [anon_sym_do] = ACTIONS(446), [sym_comment] = ACTIONS(56), }, [3230] = { [sym_compound_statement] = STATE(3692), - [anon_sym_LPAREN] = ACTIONS(7348), - [anon_sym_LBRACE] = ACTIONS(480), + [anon_sym_LPAREN] = ACTIONS(7418), + [anon_sym_LBRACE] = ACTIONS(484), [sym_comment] = ACTIONS(56), }, [3231] = { @@ -81817,8 +82162,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_process_substitution] = STATE(79), [aux_sym_command_repeat2] = STATE(350), [anon_sym_EQ_TILDE] = ACTIONS(122), - [anon_sym_RBRACK] = ACTIONS(7350), - [sym__special_characters] = ACTIONS(630), + [anon_sym_EQ_EQ] = ACTIONS(122), + [anon_sym_RBRACK] = ACTIONS(7420), + [sym__special_characters] = ACTIONS(638), [anon_sym_DQUOTE] = ACTIONS(126), [anon_sym_DOLLAR] = ACTIONS(128), [sym_raw_string] = ACTIONS(130), @@ -81840,8 +82186,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_process_substitution] = STATE(90), [aux_sym_command_repeat2] = STATE(372), [anon_sym_EQ_TILDE] = ACTIONS(142), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7350), - [sym__special_characters] = ACTIONS(670), + [anon_sym_EQ_EQ] = ACTIONS(142), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7420), + [sym__special_characters] = ACTIONS(680), [anon_sym_DQUOTE] = ACTIONS(146), [anon_sym_DOLLAR] = ACTIONS(148), [sym_raw_string] = ACTIONS(150), @@ -81856,42 +82203,42 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [3233] = { [sym__assignment] = STATE(3695), [anon_sym_LBRACK] = ACTIONS(64), - [anon_sym_EQ] = ACTIONS(7352), - [anon_sym_PLUS_EQ] = ACTIONS(7352), + [anon_sym_EQ] = ACTIONS(7422), + [anon_sym_PLUS_EQ] = ACTIONS(7422), [sym_comment] = ACTIONS(56), }, [3234] = { [aux_sym_concatenation_repeat1] = STATE(3697), - [sym__concat] = ACTIONS(7354), - [sym_variable_name] = ACTIONS(676), - [anon_sym_esac] = ACTIONS(678), - [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__concat] = ACTIONS(7424), + [sym_variable_name] = ACTIONS(686), + [anon_sym_esac] = ACTIONS(688), + [anon_sym_PIPE] = ACTIONS(688), + [anon_sym_SEMI_SEMI] = ACTIONS(688), + [anon_sym_PIPE_AMP] = ACTIONS(688), + [anon_sym_AMP_AMP] = ACTIONS(688), + [anon_sym_PIPE_PIPE] = ACTIONS(688), + [sym__special_characters] = ACTIONS(688), + [anon_sym_DQUOTE] = ACTIONS(688), + [anon_sym_DOLLAR] = ACTIONS(688), + [sym_raw_string] = ACTIONS(688), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(688), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(688), + [anon_sym_BQUOTE] = ACTIONS(688), + [anon_sym_LT_LPAREN] = ACTIONS(688), + [anon_sym_GT_LPAREN] = ACTIONS(688), [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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(688), + [sym_word] = ACTIONS(688), + [anon_sym_SEMI] = ACTIONS(688), + [anon_sym_LF] = ACTIONS(688), + [anon_sym_AMP] = ACTIONS(688), }, [3235] = { [sym_simple_expansion] = STATE(134), [sym_expansion] = STATE(134), [sym_command_substitution] = STATE(134), [aux_sym_string_repeat1] = STATE(3699), - [anon_sym_DQUOTE] = ACTIONS(7356), + [anon_sym_DQUOTE] = ACTIONS(7426), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -81900,58 +82247,59 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(182), }, [3236] = { - [sym_string] = STATE(3702), - [anon_sym_DQUOTE] = ACTIONS(7358), - [anon_sym_DOLLAR] = ACTIONS(7360), - [anon_sym_POUND] = ACTIONS(7360), - [anon_sym_DASH] = ACTIONS(7360), + [sym_string] = STATE(3701), + [anon_sym_DQUOTE] = ACTIONS(7428), + [anon_sym_DOLLAR] = ACTIONS(7430), + [sym_raw_string] = ACTIONS(7432), + [anon_sym_POUND] = ACTIONS(7430), + [anon_sym_DASH] = ACTIONS(7430), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7362), - [anon_sym_STAR] = ACTIONS(7360), - [anon_sym_AT] = ACTIONS(7360), - [anon_sym_QMARK] = ACTIONS(7360), - [anon_sym_0] = ACTIONS(7364), - [anon_sym__] = ACTIONS(7364), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7434), + [anon_sym_STAR] = ACTIONS(7430), + [anon_sym_AT] = ACTIONS(7430), + [anon_sym_QMARK] = ACTIONS(7430), + [anon_sym_0] = ACTIONS(7436), + [anon_sym__] = ACTIONS(7436), }, [3237] = { [aux_sym_concatenation_repeat1] = STATE(3697), - [sym__concat] = ACTIONS(7354), - [sym_variable_name] = ACTIONS(690), - [anon_sym_esac] = ACTIONS(692), - [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__concat] = ACTIONS(7424), + [sym_variable_name] = ACTIONS(702), + [anon_sym_esac] = ACTIONS(704), + [anon_sym_PIPE] = ACTIONS(704), + [anon_sym_SEMI_SEMI] = ACTIONS(704), + [anon_sym_PIPE_AMP] = ACTIONS(704), + [anon_sym_AMP_AMP] = ACTIONS(704), + [anon_sym_PIPE_PIPE] = ACTIONS(704), + [sym__special_characters] = ACTIONS(704), + [anon_sym_DQUOTE] = ACTIONS(704), + [anon_sym_DOLLAR] = ACTIONS(704), + [sym_raw_string] = ACTIONS(704), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(704), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(704), + [anon_sym_BQUOTE] = ACTIONS(704), + [anon_sym_LT_LPAREN] = ACTIONS(704), + [anon_sym_GT_LPAREN] = ACTIONS(704), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(692), - [sym_word] = ACTIONS(692), - [anon_sym_SEMI] = ACTIONS(692), - [anon_sym_LF] = ACTIONS(692), - [anon_sym_AMP] = ACTIONS(692), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(704), + [sym_word] = ACTIONS(704), + [anon_sym_SEMI] = ACTIONS(704), + [anon_sym_LF] = ACTIONS(704), + [anon_sym_AMP] = ACTIONS(704), }, [3238] = { [sym_subscript] = STATE(3707), - [sym_variable_name] = ACTIONS(7366), - [anon_sym_DOLLAR] = ACTIONS(7368), - [anon_sym_POUND] = ACTIONS(7370), - [anon_sym_DASH] = ACTIONS(7368), + [sym_variable_name] = ACTIONS(7438), + [anon_sym_DOLLAR] = ACTIONS(7440), + [anon_sym_POUND] = ACTIONS(7442), + [anon_sym_DASH] = ACTIONS(7440), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7372), - [anon_sym_STAR] = ACTIONS(7368), - [anon_sym_AT] = ACTIONS(7368), - [anon_sym_QMARK] = ACTIONS(7368), - [anon_sym_0] = ACTIONS(7374), - [anon_sym__] = ACTIONS(7374), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7444), + [anon_sym_STAR] = ACTIONS(7440), + [anon_sym_AT] = ACTIONS(7440), + [anon_sym_QMARK] = ACTIONS(7440), + [anon_sym_0] = ACTIONS(7446), + [anon_sym__] = ACTIONS(7446), }, [3239] = { [sym_for_statement] = STATE(3708), @@ -81979,22 +82327,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(264), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(268), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -82002,17 +82350,17 @@ 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(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__special_characters] = ACTIONS(286), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(300), + [sym_word] = ACTIONS(302), }, [3240] = { [sym_for_statement] = STATE(3710), @@ -82040,22 +82388,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(304), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(306), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(308), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_LBRACK_LBRACK] = ACTIONS(312), + [anon_sym_declare] = ACTIONS(314), + [anon_sym_typeset] = ACTIONS(314), + [anon_sym_export] = ACTIONS(314), + [anon_sym_readonly] = ACTIONS(314), + [anon_sym_local] = ACTIONS(314), + [anon_sym_unset] = ACTIONS(316), + [anon_sym_unsetenv] = ACTIONS(316), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -82063,17 +82411,17 @@ 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(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__special_characters] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [anon_sym_DOLLAR] = ACTIONS(322), + [sym_raw_string] = ACTIONS(324), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), + [anon_sym_BQUOTE] = ACTIONS(330), + [anon_sym_LT_LPAREN] = ACTIONS(332), + [anon_sym_GT_LPAREN] = ACTIONS(332), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(332), + [sym_word] = ACTIONS(334), }, [3241] = { [sym_for_statement] = STATE(3712), @@ -82101,22 +82449,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(264), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(268), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -82124,70 +82472,70 @@ 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(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__special_characters] = ACTIONS(286), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(300), + [sym_word] = ACTIONS(302), }, [3242] = { - [sym_variable_name] = ACTIONS(704), - [anon_sym_esac] = ACTIONS(706), - [anon_sym_PIPE] = ACTIONS(706), - [anon_sym_SEMI_SEMI] = ACTIONS(706), - [anon_sym_PIPE_AMP] = ACTIONS(706), - [anon_sym_AMP_AMP] = ACTIONS(706), - [anon_sym_PIPE_PIPE] = ACTIONS(706), - [sym__special_characters] = ACTIONS(706), - [anon_sym_DQUOTE] = ACTIONS(706), - [anon_sym_DOLLAR] = ACTIONS(706), - [sym_raw_string] = ACTIONS(706), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(706), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(706), - [anon_sym_BQUOTE] = ACTIONS(706), - [anon_sym_LT_LPAREN] = ACTIONS(706), - [anon_sym_GT_LPAREN] = ACTIONS(706), + [sym_variable_name] = ACTIONS(716), + [anon_sym_esac] = ACTIONS(718), + [anon_sym_PIPE] = ACTIONS(718), + [anon_sym_SEMI_SEMI] = ACTIONS(718), + [anon_sym_PIPE_AMP] = ACTIONS(718), + [anon_sym_AMP_AMP] = ACTIONS(718), + [anon_sym_PIPE_PIPE] = ACTIONS(718), + [sym__special_characters] = ACTIONS(718), + [anon_sym_DQUOTE] = ACTIONS(718), + [anon_sym_DOLLAR] = ACTIONS(718), + [sym_raw_string] = ACTIONS(718), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(718), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(718), + [anon_sym_BQUOTE] = ACTIONS(718), + [anon_sym_LT_LPAREN] = ACTIONS(718), + [anon_sym_GT_LPAREN] = ACTIONS(718), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(706), - [sym_word] = ACTIONS(706), - [anon_sym_SEMI] = ACTIONS(706), - [anon_sym_LF] = ACTIONS(706), - [anon_sym_AMP] = ACTIONS(706), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(718), + [sym_word] = ACTIONS(718), + [anon_sym_SEMI] = ACTIONS(718), + [anon_sym_LF] = ACTIONS(718), + [anon_sym_AMP] = ACTIONS(718), }, [3243] = { - [sym_variable_name] = ACTIONS(690), - [anon_sym_esac] = ACTIONS(692), - [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_variable_name] = ACTIONS(702), + [anon_sym_esac] = ACTIONS(704), + [anon_sym_PIPE] = ACTIONS(704), + [anon_sym_SEMI_SEMI] = ACTIONS(704), + [anon_sym_PIPE_AMP] = ACTIONS(704), + [anon_sym_AMP_AMP] = ACTIONS(704), + [anon_sym_PIPE_PIPE] = ACTIONS(704), + [sym__special_characters] = ACTIONS(704), + [anon_sym_DQUOTE] = ACTIONS(704), + [anon_sym_DOLLAR] = ACTIONS(704), + [sym_raw_string] = ACTIONS(704), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(704), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(704), + [anon_sym_BQUOTE] = ACTIONS(704), + [anon_sym_LT_LPAREN] = ACTIONS(704), + [anon_sym_GT_LPAREN] = ACTIONS(704), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(692), - [sym_word] = ACTIONS(692), - [anon_sym_SEMI] = ACTIONS(692), - [anon_sym_LF] = ACTIONS(692), - [anon_sym_AMP] = ACTIONS(692), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(704), + [sym_word] = ACTIONS(704), + [anon_sym_SEMI] = ACTIONS(704), + [anon_sym_LF] = ACTIONS(704), + [anon_sym_AMP] = ACTIONS(704), }, [3244] = { [sym__assignment] = STATE(3695), - [anon_sym_EQ] = ACTIONS(7352), - [anon_sym_PLUS_EQ] = ACTIONS(7352), + [anon_sym_EQ] = ACTIONS(7422), + [anon_sym_PLUS_EQ] = ACTIONS(7422), [sym_comment] = ACTIONS(56), }, [3245] = { @@ -82201,84 +82549,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(3237), [sym_process_substitution] = STATE(3237), [aux_sym_declaration_command_repeat1] = STATE(3714), - [sym_variable_name] = ACTIONS(6523), - [anon_sym_esac] = ACTIONS(708), - [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(6525), - [anon_sym_DQUOTE] = ACTIONS(6527), - [anon_sym_DOLLAR] = ACTIONS(6529), - [sym_raw_string] = ACTIONS(6531), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6533), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6535), - [anon_sym_BQUOTE] = ACTIONS(6537), - [anon_sym_LT_LPAREN] = ACTIONS(6539), - [anon_sym_GT_LPAREN] = ACTIONS(6539), + [sym_variable_name] = ACTIONS(6591), + [anon_sym_esac] = ACTIONS(720), + [anon_sym_PIPE] = ACTIONS(720), + [anon_sym_SEMI_SEMI] = ACTIONS(720), + [anon_sym_PIPE_AMP] = ACTIONS(720), + [anon_sym_AMP_AMP] = ACTIONS(720), + [anon_sym_PIPE_PIPE] = ACTIONS(720), + [sym__special_characters] = ACTIONS(6593), + [anon_sym_DQUOTE] = ACTIONS(6595), + [anon_sym_DOLLAR] = ACTIONS(6597), + [sym_raw_string] = ACTIONS(6599), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6601), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6603), + [anon_sym_BQUOTE] = ACTIONS(6605), + [anon_sym_LT_LPAREN] = ACTIONS(6607), + [anon_sym_GT_LPAREN] = ACTIONS(6607), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6541), - [sym_word] = ACTIONS(6531), - [anon_sym_SEMI] = ACTIONS(708), - [anon_sym_LF] = ACTIONS(708), - [anon_sym_AMP] = ACTIONS(708), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6609), + [sym_word] = ACTIONS(6599), + [anon_sym_SEMI] = ACTIONS(720), + [anon_sym_LF] = ACTIONS(720), + [anon_sym_AMP] = ACTIONS(720), }, [3246] = { [aux_sym_concatenation_repeat1] = STATE(3716), - [sym__concat] = ACTIONS(7376), - [anon_sym_esac] = ACTIONS(712), - [anon_sym_PIPE] = 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(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), - }, - [3247] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(3718), - [anon_sym_DQUOTE] = ACTIONS(7378), - [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), - }, - [3248] = { - [sym_string] = STATE(3721), - [anon_sym_DQUOTE] = ACTIONS(7380), - [anon_sym_DOLLAR] = ACTIONS(7382), - [anon_sym_POUND] = ACTIONS(7382), - [anon_sym_DASH] = ACTIONS(7382), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7384), - [anon_sym_STAR] = ACTIONS(7382), - [anon_sym_AT] = ACTIONS(7382), - [anon_sym_QMARK] = ACTIONS(7382), - [anon_sym_0] = ACTIONS(7386), - [anon_sym__] = ACTIONS(7386), - }, - [3249] = { - [aux_sym_concatenation_repeat1] = STATE(3716), - [sym__concat] = ACTIONS(7376), + [sym__concat] = ACTIONS(7448), [anon_sym_esac] = ACTIONS(724), [anon_sym_PIPE] = ACTIONS(724), [anon_sym_SEMI_SEMI] = ACTIONS(724), @@ -82301,19 +82597,72 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(724), [anon_sym_AMP] = ACTIONS(724), }, + [3247] = { + [sym_simple_expansion] = STATE(134), + [sym_expansion] = STATE(134), + [sym_command_substitution] = STATE(134), + [aux_sym_string_repeat1] = STATE(3718), + [anon_sym_DQUOTE] = ACTIONS(7450), + [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), + }, + [3248] = { + [sym_string] = STATE(3720), + [anon_sym_DQUOTE] = ACTIONS(7452), + [anon_sym_DOLLAR] = ACTIONS(7454), + [sym_raw_string] = ACTIONS(7456), + [anon_sym_POUND] = ACTIONS(7454), + [anon_sym_DASH] = ACTIONS(7454), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7458), + [anon_sym_STAR] = ACTIONS(7454), + [anon_sym_AT] = ACTIONS(7454), + [anon_sym_QMARK] = ACTIONS(7454), + [anon_sym_0] = ACTIONS(7460), + [anon_sym__] = ACTIONS(7460), + }, + [3249] = { + [aux_sym_concatenation_repeat1] = STATE(3716), + [sym__concat] = ACTIONS(7448), + [anon_sym_esac] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(738), + [anon_sym_SEMI_SEMI] = ACTIONS(738), + [anon_sym_PIPE_AMP] = ACTIONS(738), + [anon_sym_AMP_AMP] = ACTIONS(738), + [anon_sym_PIPE_PIPE] = ACTIONS(738), + [sym__special_characters] = ACTIONS(738), + [anon_sym_DQUOTE] = ACTIONS(738), + [anon_sym_DOLLAR] = ACTIONS(738), + [sym_raw_string] = ACTIONS(738), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(738), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(738), + [anon_sym_BQUOTE] = ACTIONS(738), + [anon_sym_LT_LPAREN] = ACTIONS(738), + [anon_sym_GT_LPAREN] = ACTIONS(738), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(738), + [sym_word] = ACTIONS(738), + [anon_sym_SEMI] = ACTIONS(738), + [anon_sym_LF] = ACTIONS(738), + [anon_sym_AMP] = ACTIONS(738), + }, [3250] = { [sym_subscript] = STATE(3726), - [sym_variable_name] = ACTIONS(7388), - [anon_sym_DOLLAR] = ACTIONS(7390), - [anon_sym_POUND] = ACTIONS(7392), - [anon_sym_DASH] = ACTIONS(7390), + [sym_variable_name] = ACTIONS(7462), + [anon_sym_DOLLAR] = ACTIONS(7464), + [anon_sym_POUND] = ACTIONS(7466), + [anon_sym_DASH] = ACTIONS(7464), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7394), - [anon_sym_STAR] = ACTIONS(7390), - [anon_sym_AT] = ACTIONS(7390), - [anon_sym_QMARK] = ACTIONS(7390), - [anon_sym_0] = ACTIONS(7396), - [anon_sym__] = ACTIONS(7396), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7468), + [anon_sym_STAR] = ACTIONS(7464), + [anon_sym_AT] = ACTIONS(7464), + [anon_sym_QMARK] = ACTIONS(7464), + [anon_sym_0] = ACTIONS(7470), + [anon_sym__] = ACTIONS(7470), }, [3251] = { [sym_for_statement] = STATE(3727), @@ -82341,22 +82690,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(264), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(268), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -82364,17 +82713,17 @@ 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(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__special_characters] = ACTIONS(286), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(300), + [sym_word] = ACTIONS(302), }, [3252] = { [sym_for_statement] = STATE(3729), @@ -82402,22 +82751,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(304), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(306), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(308), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_LBRACK_LBRACK] = ACTIONS(312), + [anon_sym_declare] = ACTIONS(314), + [anon_sym_typeset] = ACTIONS(314), + [anon_sym_export] = ACTIONS(314), + [anon_sym_readonly] = ACTIONS(314), + [anon_sym_local] = ACTIONS(314), + [anon_sym_unset] = ACTIONS(316), + [anon_sym_unsetenv] = ACTIONS(316), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -82425,17 +82774,17 @@ 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(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__special_characters] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [anon_sym_DOLLAR] = ACTIONS(322), + [sym_raw_string] = ACTIONS(324), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), + [anon_sym_BQUOTE] = ACTIONS(330), + [anon_sym_LT_LPAREN] = ACTIONS(332), + [anon_sym_GT_LPAREN] = ACTIONS(332), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(332), + [sym_word] = ACTIONS(334), }, [3253] = { [sym_for_statement] = STATE(3731), @@ -82463,22 +82812,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(264), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(268), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -82486,63 +82835,63 @@ 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(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__special_characters] = ACTIONS(286), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(300), + [sym_word] = ACTIONS(302), }, [3254] = { - [anon_sym_esac] = ACTIONS(736), - [anon_sym_PIPE] = 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), + [anon_sym_esac] = ACTIONS(750), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_SEMI_SEMI] = ACTIONS(750), + [anon_sym_PIPE_AMP] = ACTIONS(750), + [anon_sym_AMP_AMP] = ACTIONS(750), + [anon_sym_PIPE_PIPE] = ACTIONS(750), + [sym__special_characters] = ACTIONS(750), + [anon_sym_DQUOTE] = ACTIONS(750), + [anon_sym_DOLLAR] = ACTIONS(750), + [sym_raw_string] = ACTIONS(750), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(750), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(750), + [anon_sym_BQUOTE] = ACTIONS(750), + [anon_sym_LT_LPAREN] = ACTIONS(750), + [anon_sym_GT_LPAREN] = ACTIONS(750), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(736), - [sym_word] = ACTIONS(736), - [anon_sym_SEMI] = ACTIONS(736), - [anon_sym_LF] = ACTIONS(736), - [anon_sym_AMP] = ACTIONS(736), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(750), + [sym_word] = ACTIONS(750), + [anon_sym_SEMI] = ACTIONS(750), + [anon_sym_LF] = ACTIONS(750), + [anon_sym_AMP] = ACTIONS(750), }, [3255] = { - [anon_sym_esac] = ACTIONS(724), - [anon_sym_PIPE] = ACTIONS(724), - [anon_sym_SEMI_SEMI] = ACTIONS(724), - [anon_sym_PIPE_AMP] = ACTIONS(724), - [anon_sym_AMP_AMP] = ACTIONS(724), - [anon_sym_PIPE_PIPE] = ACTIONS(724), - [sym__special_characters] = ACTIONS(724), - [anon_sym_DQUOTE] = ACTIONS(724), - [anon_sym_DOLLAR] = ACTIONS(724), - [sym_raw_string] = ACTIONS(724), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(724), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(724), - [anon_sym_BQUOTE] = ACTIONS(724), - [anon_sym_LT_LPAREN] = ACTIONS(724), - [anon_sym_GT_LPAREN] = ACTIONS(724), + [anon_sym_esac] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(738), + [anon_sym_SEMI_SEMI] = ACTIONS(738), + [anon_sym_PIPE_AMP] = ACTIONS(738), + [anon_sym_AMP_AMP] = ACTIONS(738), + [anon_sym_PIPE_PIPE] = ACTIONS(738), + [sym__special_characters] = ACTIONS(738), + [anon_sym_DQUOTE] = ACTIONS(738), + [anon_sym_DOLLAR] = ACTIONS(738), + [sym_raw_string] = ACTIONS(738), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(738), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(738), + [anon_sym_BQUOTE] = ACTIONS(738), + [anon_sym_LT_LPAREN] = ACTIONS(738), + [anon_sym_GT_LPAREN] = ACTIONS(738), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(724), - [sym_word] = ACTIONS(724), - [anon_sym_SEMI] = ACTIONS(724), - [anon_sym_LF] = ACTIONS(724), - [anon_sym_AMP] = ACTIONS(724), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(738), + [sym_word] = ACTIONS(738), + [anon_sym_SEMI] = ACTIONS(738), + [anon_sym_LF] = ACTIONS(738), + [anon_sym_AMP] = ACTIONS(738), }, [3256] = { [sym_concatenation] = STATE(3255), @@ -82553,27 +82902,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(3249), [sym_process_substitution] = STATE(3249), [aux_sym_unset_command_repeat1] = STATE(3733), - [anon_sym_esac] = ACTIONS(738), - [anon_sym_PIPE] = ACTIONS(738), - [anon_sym_SEMI_SEMI] = ACTIONS(738), - [anon_sym_PIPE_AMP] = ACTIONS(738), - [anon_sym_AMP_AMP] = ACTIONS(738), - [anon_sym_PIPE_PIPE] = ACTIONS(738), - [sym__special_characters] = ACTIONS(6543), - [anon_sym_DQUOTE] = ACTIONS(6545), - [anon_sym_DOLLAR] = ACTIONS(6547), - [sym_raw_string] = ACTIONS(6549), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6551), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6553), - [anon_sym_BQUOTE] = ACTIONS(6555), - [anon_sym_LT_LPAREN] = ACTIONS(6557), - [anon_sym_GT_LPAREN] = ACTIONS(6557), + [anon_sym_esac] = ACTIONS(752), + [anon_sym_PIPE] = ACTIONS(752), + [anon_sym_SEMI_SEMI] = ACTIONS(752), + [anon_sym_PIPE_AMP] = ACTIONS(752), + [anon_sym_AMP_AMP] = ACTIONS(752), + [anon_sym_PIPE_PIPE] = ACTIONS(752), + [sym__special_characters] = ACTIONS(6611), + [anon_sym_DQUOTE] = ACTIONS(6613), + [anon_sym_DOLLAR] = ACTIONS(6615), + [sym_raw_string] = ACTIONS(6617), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6619), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6621), + [anon_sym_BQUOTE] = ACTIONS(6623), + [anon_sym_LT_LPAREN] = ACTIONS(6625), + [anon_sym_GT_LPAREN] = ACTIONS(6625), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6559), - [sym_word] = ACTIONS(6549), - [anon_sym_SEMI] = ACTIONS(738), - [anon_sym_LF] = ACTIONS(738), - [anon_sym_AMP] = ACTIONS(738), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6627), + [sym_word] = ACTIONS(6617), + [anon_sym_SEMI] = ACTIONS(752), + [anon_sym_LF] = ACTIONS(752), + [anon_sym_AMP] = ACTIONS(752), }, [3257] = { [sym_string] = STATE(3734), @@ -82582,95 +82931,97 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(3734), [sym_command_substitution] = STATE(3734), [sym_process_substitution] = STATE(3734), - [sym__special_characters] = ACTIONS(7398), - [anon_sym_DQUOTE] = ACTIONS(5479), - [anon_sym_DOLLAR] = ACTIONS(5481), - [sym_raw_string] = ACTIONS(7400), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5485), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5487), - [anon_sym_BQUOTE] = ACTIONS(5489), - [anon_sym_LT_LPAREN] = ACTIONS(5491), - [anon_sym_GT_LPAREN] = ACTIONS(5491), + [sym__special_characters] = ACTIONS(7472), + [anon_sym_DQUOTE] = ACTIONS(5541), + [anon_sym_DOLLAR] = ACTIONS(5543), + [sym_raw_string] = ACTIONS(7474), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5547), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5549), + [anon_sym_BQUOTE] = ACTIONS(5551), + [anon_sym_LT_LPAREN] = ACTIONS(5553), + [anon_sym_GT_LPAREN] = ACTIONS(5553), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7398), + [sym_word] = ACTIONS(7472), }, [3258] = { [aux_sym_concatenation_repeat1] = STATE(3735), - [sym_file_descriptor] = ACTIONS(772), - [sym__concat] = ACTIONS(6561), - [anon_sym_esac] = ACTIONS(774), - [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_file_descriptor] = ACTIONS(788), + [sym__concat] = ACTIONS(6629), + [anon_sym_esac] = ACTIONS(790), + [anon_sym_PIPE] = ACTIONS(790), + [anon_sym_SEMI_SEMI] = ACTIONS(790), + [anon_sym_PIPE_AMP] = ACTIONS(790), + [anon_sym_AMP_AMP] = ACTIONS(790), + [anon_sym_PIPE_PIPE] = ACTIONS(790), + [anon_sym_EQ_TILDE] = ACTIONS(790), + [anon_sym_EQ_EQ] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(790), + [anon_sym_GT] = ACTIONS(790), + [anon_sym_GT_GT] = ACTIONS(790), + [anon_sym_AMP_GT] = ACTIONS(790), + [anon_sym_AMP_GT_GT] = ACTIONS(790), + [anon_sym_LT_AMP] = ACTIONS(790), + [anon_sym_GT_AMP] = ACTIONS(790), + [anon_sym_LT_LT] = ACTIONS(790), + [anon_sym_LT_LT_DASH] = ACTIONS(790), + [anon_sym_LT_LT_LT] = ACTIONS(790), + [sym__special_characters] = ACTIONS(790), + [anon_sym_DQUOTE] = ACTIONS(790), + [anon_sym_DOLLAR] = ACTIONS(790), + [sym_raw_string] = ACTIONS(790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(790), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(790), + [anon_sym_BQUOTE] = ACTIONS(790), + [anon_sym_LT_LPAREN] = ACTIONS(790), + [anon_sym_GT_LPAREN] = ACTIONS(790), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(774), - [anon_sym_SEMI] = ACTIONS(774), - [anon_sym_LF] = ACTIONS(774), - [anon_sym_AMP] = ACTIONS(774), + [sym_word] = ACTIONS(790), + [anon_sym_SEMI] = ACTIONS(790), + [anon_sym_LF] = ACTIONS(790), + [anon_sym_AMP] = ACTIONS(790), }, [3259] = { - [sym_file_descriptor] = ACTIONS(776), - [sym__concat] = ACTIONS(776), - [anon_sym_esac] = ACTIONS(778), - [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_file_descriptor] = ACTIONS(792), + [sym__concat] = ACTIONS(792), + [anon_sym_esac] = ACTIONS(794), + [anon_sym_PIPE] = ACTIONS(794), + [anon_sym_SEMI_SEMI] = ACTIONS(794), + [anon_sym_PIPE_AMP] = ACTIONS(794), + [anon_sym_AMP_AMP] = ACTIONS(794), + [anon_sym_PIPE_PIPE] = ACTIONS(794), + [anon_sym_EQ_TILDE] = ACTIONS(794), + [anon_sym_EQ_EQ] = ACTIONS(794), + [anon_sym_LT] = ACTIONS(794), + [anon_sym_GT] = ACTIONS(794), + [anon_sym_GT_GT] = ACTIONS(794), + [anon_sym_AMP_GT] = ACTIONS(794), + [anon_sym_AMP_GT_GT] = ACTIONS(794), + [anon_sym_LT_AMP] = ACTIONS(794), + [anon_sym_GT_AMP] = ACTIONS(794), + [anon_sym_LT_LT] = ACTIONS(794), + [anon_sym_LT_LT_DASH] = ACTIONS(794), + [anon_sym_LT_LT_LT] = ACTIONS(794), + [sym__special_characters] = ACTIONS(794), + [anon_sym_DQUOTE] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(794), + [sym_raw_string] = ACTIONS(794), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(794), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(794), + [anon_sym_BQUOTE] = ACTIONS(794), + [anon_sym_LT_LPAREN] = ACTIONS(794), + [anon_sym_GT_LPAREN] = ACTIONS(794), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(778), - [anon_sym_SEMI] = ACTIONS(778), - [anon_sym_LF] = ACTIONS(778), - [anon_sym_AMP] = ACTIONS(778), + [sym_word] = ACTIONS(794), + [anon_sym_SEMI] = ACTIONS(794), + [anon_sym_LF] = ACTIONS(794), + [anon_sym_AMP] = ACTIONS(794), }, [3260] = { [sym_simple_expansion] = STATE(134), [sym_expansion] = STATE(134), [sym_command_substitution] = STATE(134), [aux_sym_string_repeat1] = STATE(447), - [anon_sym_DQUOTE] = ACTIONS(7402), + [anon_sym_DQUOTE] = ACTIONS(7476), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -82679,113 +83030,116 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(182), }, [3261] = { - [sym_file_descriptor] = ACTIONS(808), - [sym__concat] = ACTIONS(808), - [anon_sym_esac] = ACTIONS(810), - [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_file_descriptor] = ACTIONS(824), + [sym__concat] = ACTIONS(824), + [anon_sym_esac] = ACTIONS(826), + [anon_sym_PIPE] = ACTIONS(826), + [anon_sym_SEMI_SEMI] = ACTIONS(826), + [anon_sym_PIPE_AMP] = ACTIONS(826), + [anon_sym_AMP_AMP] = ACTIONS(826), + [anon_sym_PIPE_PIPE] = ACTIONS(826), + [anon_sym_EQ_TILDE] = ACTIONS(826), + [anon_sym_EQ_EQ] = ACTIONS(826), + [anon_sym_LT] = ACTIONS(826), + [anon_sym_GT] = ACTIONS(826), + [anon_sym_GT_GT] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(826), + [anon_sym_AMP_GT_GT] = ACTIONS(826), + [anon_sym_LT_AMP] = ACTIONS(826), + [anon_sym_GT_AMP] = ACTIONS(826), + [anon_sym_LT_LT] = ACTIONS(826), + [anon_sym_LT_LT_DASH] = ACTIONS(826), + [anon_sym_LT_LT_LT] = ACTIONS(826), + [sym__special_characters] = ACTIONS(826), + [anon_sym_DQUOTE] = ACTIONS(826), + [anon_sym_DOLLAR] = ACTIONS(826), + [sym_raw_string] = ACTIONS(826), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(826), + [anon_sym_BQUOTE] = ACTIONS(826), + [anon_sym_LT_LPAREN] = ACTIONS(826), + [anon_sym_GT_LPAREN] = ACTIONS(826), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(810), - [anon_sym_SEMI] = ACTIONS(810), - [anon_sym_LF] = ACTIONS(810), - [anon_sym_AMP] = ACTIONS(810), + [sym_word] = ACTIONS(826), + [anon_sym_SEMI] = ACTIONS(826), + [anon_sym_LF] = ACTIONS(826), + [anon_sym_AMP] = ACTIONS(826), }, [3262] = { - [sym_file_descriptor] = ACTIONS(812), - [sym__concat] = ACTIONS(812), - [anon_sym_esac] = ACTIONS(814), - [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_file_descriptor] = ACTIONS(828), + [sym__concat] = ACTIONS(828), + [anon_sym_esac] = ACTIONS(830), + [anon_sym_PIPE] = ACTIONS(830), + [anon_sym_SEMI_SEMI] = ACTIONS(830), + [anon_sym_PIPE_AMP] = ACTIONS(830), + [anon_sym_AMP_AMP] = ACTIONS(830), + [anon_sym_PIPE_PIPE] = ACTIONS(830), + [anon_sym_EQ_TILDE] = ACTIONS(830), + [anon_sym_EQ_EQ] = ACTIONS(830), + [anon_sym_LT] = ACTIONS(830), + [anon_sym_GT] = ACTIONS(830), + [anon_sym_GT_GT] = ACTIONS(830), + [anon_sym_AMP_GT] = ACTIONS(830), + [anon_sym_AMP_GT_GT] = ACTIONS(830), + [anon_sym_LT_AMP] = ACTIONS(830), + [anon_sym_GT_AMP] = ACTIONS(830), + [anon_sym_LT_LT] = ACTIONS(830), + [anon_sym_LT_LT_DASH] = ACTIONS(830), + [anon_sym_LT_LT_LT] = ACTIONS(830), + [sym__special_characters] = ACTIONS(830), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(830), + [sym_raw_string] = ACTIONS(830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(830), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_LT_LPAREN] = ACTIONS(830), + [anon_sym_GT_LPAREN] = ACTIONS(830), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(814), - [anon_sym_SEMI] = ACTIONS(814), - [anon_sym_LF] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(814), + [sym_word] = ACTIONS(830), + [anon_sym_SEMI] = ACTIONS(830), + [anon_sym_LF] = ACTIONS(830), + [anon_sym_AMP] = ACTIONS(830), }, [3263] = { - [sym_file_descriptor] = ACTIONS(816), - [sym__concat] = ACTIONS(816), - [anon_sym_esac] = ACTIONS(818), - [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(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_file_descriptor] = ACTIONS(832), + [sym__concat] = ACTIONS(832), + [anon_sym_esac] = ACTIONS(834), + [anon_sym_PIPE] = ACTIONS(834), + [anon_sym_SEMI_SEMI] = ACTIONS(834), + [anon_sym_PIPE_AMP] = ACTIONS(834), + [anon_sym_AMP_AMP] = ACTIONS(834), + [anon_sym_PIPE_PIPE] = ACTIONS(834), + [anon_sym_EQ_TILDE] = ACTIONS(834), + [anon_sym_EQ_EQ] = ACTIONS(834), + [anon_sym_LT] = ACTIONS(834), + [anon_sym_GT] = ACTIONS(834), + [anon_sym_GT_GT] = ACTIONS(834), + [anon_sym_AMP_GT] = ACTIONS(834), + [anon_sym_AMP_GT_GT] = ACTIONS(834), + [anon_sym_LT_AMP] = ACTIONS(834), + [anon_sym_GT_AMP] = ACTIONS(834), + [anon_sym_LT_LT] = ACTIONS(834), + [anon_sym_LT_LT_DASH] = ACTIONS(834), + [anon_sym_LT_LT_LT] = ACTIONS(834), + [sym__special_characters] = ACTIONS(834), + [anon_sym_DQUOTE] = ACTIONS(834), + [anon_sym_DOLLAR] = ACTIONS(834), + [sym_raw_string] = ACTIONS(834), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(834), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(834), + [anon_sym_BQUOTE] = ACTIONS(834), + [anon_sym_LT_LPAREN] = ACTIONS(834), + [anon_sym_GT_LPAREN] = ACTIONS(834), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(818), - [anon_sym_SEMI] = ACTIONS(818), - [anon_sym_LF] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(818), + [sym_word] = ACTIONS(834), + [anon_sym_SEMI] = ACTIONS(834), + [anon_sym_LF] = ACTIONS(834), + [anon_sym_AMP] = ACTIONS(834), }, [3264] = { - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(7404), + [anon_sym_LBRACK] = ACTIONS(836), + [anon_sym_EQ] = ACTIONS(7478), [sym_comment] = ACTIONS(56), }, [3265] = { @@ -82797,39 +83151,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3740), - [anon_sym_RBRACE] = ACTIONS(7406), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_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(7408), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7480), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(7482), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3266] = { [sym_subscript] = STATE(3744), - [sym_variable_name] = ACTIONS(7410), - [anon_sym_DOLLAR] = ACTIONS(7412), - [anon_sym_DASH] = ACTIONS(7412), + [sym_variable_name] = ACTIONS(7484), + [anon_sym_DOLLAR] = ACTIONS(7486), + [anon_sym_DASH] = ACTIONS(7486), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7414), - [anon_sym_STAR] = ACTIONS(7412), - [anon_sym_AT] = ACTIONS(7412), - [anon_sym_QMARK] = ACTIONS(7412), - [anon_sym_0] = ACTIONS(7416), - [anon_sym__] = ACTIONS(7416), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7488), + [anon_sym_STAR] = ACTIONS(7486), + [anon_sym_AT] = ACTIONS(7486), + [anon_sym_QMARK] = ACTIONS(7486), + [anon_sym_0] = ACTIONS(7490), + [anon_sym__] = ACTIONS(7490), }, [3267] = { [sym_concatenation] = STATE(451), @@ -82840,26 +83194,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3747), - [anon_sym_RBRACE] = ACTIONS(7418), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_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(7420), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7492), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(7494), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3268] = { [sym_concatenation] = STATE(451), @@ -82870,133 +83224,133 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3750), - [anon_sym_RBRACE] = ACTIONS(7422), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_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(7424), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7496), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(7498), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3269] = { - [anon_sym_PIPE] = ACTIONS(954), - [anon_sym_RPAREN] = ACTIONS(7426), - [anon_sym_PIPE_AMP] = ACTIONS(958), - [anon_sym_AMP_AMP] = ACTIONS(960), - [anon_sym_PIPE_PIPE] = ACTIONS(960), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(7500), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), [sym_comment] = ACTIONS(56), }, [3270] = { - [sym_file_descriptor] = ACTIONS(378), - [sym_variable_name] = ACTIONS(378), - [anon_sym_PIPE] = ACTIONS(954), - [anon_sym_RPAREN] = ACTIONS(7426), - [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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(7500), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [3271] = { - [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(7426), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_PIPE_AMP] = ACTIONS(1072), + [anon_sym_AMP_AMP] = ACTIONS(1074), + [anon_sym_PIPE_PIPE] = ACTIONS(1074), + [anon_sym_BQUOTE] = ACTIONS(7500), [sym_comment] = ACTIONS(56), }, [3272] = { - [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(7426), - [anon_sym_LT_LPAREN] = ACTIONS(378), - [anon_sym_GT_LPAREN] = ACTIONS(378), + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_PIPE_AMP] = ACTIONS(1072), + [anon_sym_AMP_AMP] = ACTIONS(1074), + [anon_sym_PIPE_PIPE] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(7500), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [3273] = { - [anon_sym_PIPE] = ACTIONS(954), - [anon_sym_RPAREN] = ACTIONS(7428), - [anon_sym_PIPE_AMP] = ACTIONS(958), - [anon_sym_AMP_AMP] = ACTIONS(960), - [anon_sym_PIPE_PIPE] = ACTIONS(960), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(7502), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), [sym_comment] = ACTIONS(56), }, [3274] = { - [sym_file_descriptor] = ACTIONS(378), - [sym_variable_name] = ACTIONS(378), - [anon_sym_PIPE] = ACTIONS(954), - [anon_sym_RPAREN] = ACTIONS(7428), - [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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(7502), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [3275] = { - [anon_sym_RPAREN] = ACTIONS(7430), + [anon_sym_RPAREN] = ACTIONS(7504), [sym_comment] = ACTIONS(56), }, [3276] = { @@ -83025,22 +83379,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_process_substitution] = STATE(2645), [aux_sym_command_repeat1] = STATE(2658), [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(5459), + [sym_variable_name] = ACTIONS(5521), [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(5461), + [anon_sym_while] = ACTIONS(5523), [anon_sym_if] = ACTIONS(20), [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(5467), + [anon_sym_function] = ACTIONS(5529), [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(5469), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5471), - [anon_sym_declare] = ACTIONS(5473), - [anon_sym_typeset] = ACTIONS(5473), - [anon_sym_export] = ACTIONS(5473), - [anon_sym_readonly] = ACTIONS(5473), - [anon_sym_local] = ACTIONS(5473), - [anon_sym_unset] = ACTIONS(5475), - [anon_sym_unsetenv] = ACTIONS(5475), + [anon_sym_LBRACK] = ACTIONS(5531), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5533), + [anon_sym_declare] = ACTIONS(5535), + [anon_sym_typeset] = ACTIONS(5535), + [anon_sym_export] = ACTIONS(5535), + [anon_sym_readonly] = ACTIONS(5535), + [anon_sym_local] = ACTIONS(5535), + [anon_sym_unset] = ACTIONS(5537), + [anon_sym_unsetenv] = ACTIONS(5537), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -83048,56 +83402,56 @@ 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(5477), - [anon_sym_DQUOTE] = ACTIONS(5479), - [anon_sym_DOLLAR] = ACTIONS(5481), - [sym_raw_string] = ACTIONS(5483), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5485), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5487), - [anon_sym_BQUOTE] = ACTIONS(5489), - [anon_sym_LT_LPAREN] = ACTIONS(5491), - [anon_sym_GT_LPAREN] = ACTIONS(5491), + [sym__special_characters] = ACTIONS(5539), + [anon_sym_DQUOTE] = ACTIONS(5541), + [anon_sym_DOLLAR] = ACTIONS(5543), + [sym_raw_string] = ACTIONS(5545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5547), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5549), + [anon_sym_BQUOTE] = ACTIONS(5551), + [anon_sym_LT_LPAREN] = ACTIONS(5553), + [anon_sym_GT_LPAREN] = ACTIONS(5553), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5493), + [sym_word] = ACTIONS(5555), }, [3277] = { - [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(7432), - [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(7434), - [anon_sym_DQUOTE] = ACTIONS(7436), - [anon_sym_DOLLAR] = ACTIONS(7438), - [sym_raw_string] = ACTIONS(7436), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7436), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7436), - [anon_sym_BQUOTE] = ACTIONS(7436), - [anon_sym_LT_LPAREN] = ACTIONS(7436), - [anon_sym_GT_LPAREN] = ACTIONS(7436), + [sym_file_descriptor] = ACTIONS(1100), + [sym_variable_name] = ACTIONS(1100), + [anon_sym_for] = ACTIONS(1102), + [anon_sym_while] = ACTIONS(1102), + [anon_sym_if] = ACTIONS(1102), + [anon_sym_case] = ACTIONS(1102), + [anon_sym_esac] = ACTIONS(7506), + [anon_sym_SEMI_SEMI] = ACTIONS(1100), + [anon_sym_function] = ACTIONS(1102), + [anon_sym_LPAREN] = ACTIONS(1100), + [anon_sym_LBRACK] = ACTIONS(1102), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1100), + [anon_sym_declare] = ACTIONS(1102), + [anon_sym_typeset] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(1102), + [anon_sym_readonly] = ACTIONS(1102), + [anon_sym_local] = ACTIONS(1102), + [anon_sym_unset] = ACTIONS(1102), + [anon_sym_unsetenv] = ACTIONS(1102), + [anon_sym_LT] = ACTIONS(1102), + [anon_sym_GT] = ACTIONS(1102), + [anon_sym_GT_GT] = ACTIONS(1100), + [anon_sym_AMP_GT] = ACTIONS(1102), + [anon_sym_AMP_GT_GT] = ACTIONS(1100), + [anon_sym_LT_AMP] = ACTIONS(1100), + [anon_sym_GT_AMP] = ACTIONS(1100), + [sym__special_characters] = ACTIONS(7508), + [anon_sym_DQUOTE] = ACTIONS(7510), + [anon_sym_DOLLAR] = ACTIONS(7512), + [sym_raw_string] = ACTIONS(7510), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7510), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7510), + [anon_sym_BQUOTE] = ACTIONS(7510), + [anon_sym_LT_LPAREN] = ACTIONS(7510), + [anon_sym_GT_LPAREN] = ACTIONS(7510), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7434), + [sym_word] = ACTIONS(7508), }, [3278] = { [sym_for_statement] = STATE(3755), @@ -83125,22 +83479,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_process_substitution] = STATE(2645), [aux_sym_command_repeat1] = STATE(2658), [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(5459), + [sym_variable_name] = ACTIONS(5521), [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(5461), + [anon_sym_while] = ACTIONS(5523), [anon_sym_if] = ACTIONS(20), [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(5467), + [anon_sym_function] = ACTIONS(5529), [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(5469), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5471), - [anon_sym_declare] = ACTIONS(5473), - [anon_sym_typeset] = ACTIONS(5473), - [anon_sym_export] = ACTIONS(5473), - [anon_sym_readonly] = ACTIONS(5473), - [anon_sym_local] = ACTIONS(5473), - [anon_sym_unset] = ACTIONS(5475), - [anon_sym_unsetenv] = ACTIONS(5475), + [anon_sym_LBRACK] = ACTIONS(5531), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5533), + [anon_sym_declare] = ACTIONS(5535), + [anon_sym_typeset] = ACTIONS(5535), + [anon_sym_export] = ACTIONS(5535), + [anon_sym_readonly] = ACTIONS(5535), + [anon_sym_local] = ACTIONS(5535), + [anon_sym_unset] = ACTIONS(5537), + [anon_sym_unsetenv] = ACTIONS(5537), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -83148,65 +83502,65 @@ 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(5477), - [anon_sym_DQUOTE] = ACTIONS(5479), - [anon_sym_DOLLAR] = ACTIONS(5481), - [sym_raw_string] = ACTIONS(5483), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5485), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5487), - [anon_sym_BQUOTE] = ACTIONS(5489), - [anon_sym_LT_LPAREN] = ACTIONS(5491), - [anon_sym_GT_LPAREN] = ACTIONS(5491), + [sym__special_characters] = ACTIONS(5539), + [anon_sym_DQUOTE] = ACTIONS(5541), + [anon_sym_DOLLAR] = ACTIONS(5543), + [sym_raw_string] = ACTIONS(5545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5547), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5549), + [anon_sym_BQUOTE] = ACTIONS(5551), + [anon_sym_LT_LPAREN] = ACTIONS(5553), + [anon_sym_GT_LPAREN] = ACTIONS(5553), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5493), + [sym_word] = ACTIONS(5555), }, [3279] = { - [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_file_descriptor] = ACTIONS(1100), + [sym_variable_name] = ACTIONS(1100), + [anon_sym_for] = ACTIONS(1102), + [anon_sym_while] = ACTIONS(1102), + [anon_sym_if] = ACTIONS(1102), + [anon_sym_case] = ACTIONS(1102), + [anon_sym_esac] = ACTIONS(1102), + [anon_sym_SEMI_SEMI] = ACTIONS(1100), + [anon_sym_function] = ACTIONS(1102), + [anon_sym_LPAREN] = ACTIONS(1100), + [anon_sym_LBRACK] = ACTIONS(1102), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1100), + [anon_sym_declare] = ACTIONS(1102), + [anon_sym_typeset] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(1102), + [anon_sym_readonly] = ACTIONS(1102), + [anon_sym_local] = ACTIONS(1102), + [anon_sym_unset] = ACTIONS(1102), + [anon_sym_unsetenv] = ACTIONS(1102), + [anon_sym_LT] = ACTIONS(1102), + [anon_sym_GT] = ACTIONS(1102), + [anon_sym_GT_GT] = ACTIONS(1100), + [anon_sym_AMP_GT] = ACTIONS(1102), + [anon_sym_AMP_GT_GT] = ACTIONS(1100), + [anon_sym_LT_AMP] = ACTIONS(1100), + [anon_sym_GT_AMP] = ACTIONS(1100), + [sym__special_characters] = ACTIONS(1104), + [anon_sym_DQUOTE] = ACTIONS(1100), + [anon_sym_DOLLAR] = ACTIONS(1102), + [sym_raw_string] = ACTIONS(1100), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1100), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1100), + [anon_sym_BQUOTE] = ACTIONS(1100), + [anon_sym_LT_LPAREN] = ACTIONS(1100), + [anon_sym_GT_LPAREN] = ACTIONS(1100), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1084), + [sym_word] = ACTIONS(1104), }, [3280] = { - [anon_sym_LT] = ACTIONS(7440), - [anon_sym_GT] = ACTIONS(7440), - [anon_sym_GT_GT] = ACTIONS(7442), - [anon_sym_AMP_GT] = ACTIONS(7440), - [anon_sym_AMP_GT_GT] = ACTIONS(7442), - [anon_sym_LT_AMP] = ACTIONS(7442), - [anon_sym_GT_AMP] = ACTIONS(7442), + [anon_sym_LT] = ACTIONS(7514), + [anon_sym_GT] = ACTIONS(7514), + [anon_sym_GT_GT] = ACTIONS(7516), + [anon_sym_AMP_GT] = ACTIONS(7514), + [anon_sym_AMP_GT_GT] = ACTIONS(7516), + [anon_sym_LT_AMP] = ACTIONS(7516), + [anon_sym_GT_AMP] = ACTIONS(7516), [sym_comment] = ACTIONS(56), }, [3281] = { @@ -83217,18 +83571,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(3759), [sym_command_substitution] = STATE(3759), [sym_process_substitution] = STATE(3759), - [sym__special_characters] = ACTIONS(7444), - [anon_sym_DQUOTE] = ACTIONS(6603), - [anon_sym_DOLLAR] = ACTIONS(6605), - [sym_raw_string] = ACTIONS(7446), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6609), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6611), - [anon_sym_BQUOTE] = ACTIONS(6613), - [anon_sym_LT_LPAREN] = ACTIONS(6615), - [anon_sym_GT_LPAREN] = ACTIONS(6615), + [sym__special_characters] = ACTIONS(7518), + [anon_sym_DQUOTE] = ACTIONS(6673), + [anon_sym_DOLLAR] = ACTIONS(6675), + [sym_raw_string] = ACTIONS(7520), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6679), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6681), + [anon_sym_BQUOTE] = ACTIONS(6683), + [anon_sym_LT_LPAREN] = ACTIONS(6685), + [anon_sym_GT_LPAREN] = ACTIONS(6685), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(7446), - [sym_regex] = ACTIONS(7448), + [sym_word] = ACTIONS(7520), + [sym_regex] = ACTIONS(7522), }, [3282] = { [sym_concatenation] = STATE(617), @@ -83238,17 +83592,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(3764), [sym_command_substitution] = STATE(3764), [sym_process_substitution] = STATE(3764), - [sym__special_characters] = ACTIONS(7450), - [anon_sym_DQUOTE] = ACTIONS(7452), - [anon_sym_DOLLAR] = ACTIONS(7454), - [sym_raw_string] = ACTIONS(7456), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7458), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7460), - [anon_sym_BQUOTE] = ACTIONS(7462), - [anon_sym_LT_LPAREN] = ACTIONS(7464), - [anon_sym_GT_LPAREN] = ACTIONS(7464), + [sym__special_characters] = ACTIONS(7524), + [anon_sym_DQUOTE] = ACTIONS(7526), + [anon_sym_DOLLAR] = ACTIONS(7528), + [sym_raw_string] = ACTIONS(7530), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7532), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7534), + [anon_sym_BQUOTE] = ACTIONS(7536), + [anon_sym_LT_LPAREN] = ACTIONS(7538), + [anon_sym_GT_LPAREN] = ACTIONS(7538), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7466), + [sym_word] = ACTIONS(7540), }, [3283] = { [sym_concatenation] = STATE(623), @@ -83258,150 +83612,153 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(3770), [sym_command_substitution] = STATE(3770), [sym_process_substitution] = STATE(3770), - [sym__special_characters] = ACTIONS(7468), - [anon_sym_DQUOTE] = ACTIONS(7452), - [anon_sym_DOLLAR] = ACTIONS(7454), - [sym_raw_string] = ACTIONS(7470), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7458), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7460), - [anon_sym_BQUOTE] = ACTIONS(7462), - [anon_sym_LT_LPAREN] = ACTIONS(7464), - [anon_sym_GT_LPAREN] = ACTIONS(7464), + [sym__special_characters] = ACTIONS(7542), + [anon_sym_DQUOTE] = ACTIONS(7526), + [anon_sym_DOLLAR] = ACTIONS(7528), + [sym_raw_string] = ACTIONS(7544), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7532), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7534), + [anon_sym_BQUOTE] = ACTIONS(7536), + [anon_sym_LT_LPAREN] = ACTIONS(7538), + [anon_sym_GT_LPAREN] = ACTIONS(7538), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7472), + [sym_word] = ACTIONS(7546), }, [3284] = { [aux_sym_concatenation_repeat1] = STATE(3258), - [sym_file_descriptor] = ACTIONS(600), - [sym__concat] = ACTIONS(6561), - [anon_sym_esac] = ACTIONS(602), - [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_file_descriptor] = ACTIONS(606), + [sym__concat] = ACTIONS(6629), + [anon_sym_esac] = ACTIONS(608), + [anon_sym_PIPE] = ACTIONS(608), + [anon_sym_SEMI_SEMI] = ACTIONS(608), + [anon_sym_PIPE_AMP] = ACTIONS(608), + [anon_sym_AMP_AMP] = ACTIONS(608), + [anon_sym_PIPE_PIPE] = ACTIONS(608), + [anon_sym_EQ_TILDE] = ACTIONS(608), + [anon_sym_EQ_EQ] = ACTIONS(608), + [anon_sym_LT] = ACTIONS(608), + [anon_sym_GT] = ACTIONS(608), + [anon_sym_GT_GT] = ACTIONS(608), + [anon_sym_AMP_GT] = ACTIONS(608), + [anon_sym_AMP_GT_GT] = ACTIONS(608), + [anon_sym_LT_AMP] = ACTIONS(608), + [anon_sym_GT_AMP] = ACTIONS(608), + [anon_sym_LT_LT] = ACTIONS(608), + [anon_sym_LT_LT_DASH] = ACTIONS(608), + [anon_sym_LT_LT_LT] = ACTIONS(608), + [sym__special_characters] = ACTIONS(608), + [anon_sym_DQUOTE] = ACTIONS(608), + [anon_sym_DOLLAR] = ACTIONS(608), + [sym_raw_string] = ACTIONS(608), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(608), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(608), + [anon_sym_BQUOTE] = ACTIONS(608), + [anon_sym_LT_LPAREN] = ACTIONS(608), + [anon_sym_GT_LPAREN] = ACTIONS(608), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(602), - [anon_sym_SEMI] = ACTIONS(602), - [anon_sym_LF] = ACTIONS(602), - [anon_sym_AMP] = ACTIONS(602), + [sym_word] = ACTIONS(608), + [anon_sym_SEMI] = ACTIONS(608), + [anon_sym_LF] = ACTIONS(608), + [anon_sym_AMP] = ACTIONS(608), }, [3285] = { [aux_sym_concatenation_repeat1] = STATE(3258), - [sym_file_descriptor] = ACTIONS(614), - [sym__concat] = ACTIONS(6561), - [anon_sym_esac] = ACTIONS(616), - [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_file_descriptor] = ACTIONS(622), + [sym__concat] = ACTIONS(6629), + [anon_sym_esac] = ACTIONS(624), + [anon_sym_PIPE] = ACTIONS(624), + [anon_sym_SEMI_SEMI] = ACTIONS(624), + [anon_sym_PIPE_AMP] = ACTIONS(624), + [anon_sym_AMP_AMP] = ACTIONS(624), + [anon_sym_PIPE_PIPE] = ACTIONS(624), + [anon_sym_EQ_TILDE] = ACTIONS(624), + [anon_sym_EQ_EQ] = ACTIONS(624), + [anon_sym_LT] = ACTIONS(624), + [anon_sym_GT] = ACTIONS(624), + [anon_sym_GT_GT] = ACTIONS(624), + [anon_sym_AMP_GT] = ACTIONS(624), + [anon_sym_AMP_GT_GT] = ACTIONS(624), + [anon_sym_LT_AMP] = ACTIONS(624), + [anon_sym_GT_AMP] = ACTIONS(624), + [anon_sym_LT_LT] = ACTIONS(624), + [anon_sym_LT_LT_DASH] = ACTIONS(624), + [anon_sym_LT_LT_LT] = ACTIONS(624), + [sym__special_characters] = ACTIONS(624), + [anon_sym_DQUOTE] = ACTIONS(624), + [anon_sym_DOLLAR] = ACTIONS(624), + [sym_raw_string] = ACTIONS(624), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(624), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(624), + [anon_sym_BQUOTE] = ACTIONS(624), + [anon_sym_LT_LPAREN] = ACTIONS(624), + [anon_sym_GT_LPAREN] = ACTIONS(624), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(616), - [anon_sym_SEMI] = ACTIONS(616), - [anon_sym_LF] = ACTIONS(616), - [anon_sym_AMP] = ACTIONS(616), + [sym_word] = ACTIONS(624), + [anon_sym_SEMI] = ACTIONS(624), + [anon_sym_LF] = ACTIONS(624), + [anon_sym_AMP] = ACTIONS(624), }, [3286] = { - [sym_file_descriptor] = ACTIONS(614), - [anon_sym_esac] = ACTIONS(616), - [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_file_descriptor] = ACTIONS(622), + [anon_sym_esac] = ACTIONS(624), + [anon_sym_PIPE] = ACTIONS(624), + [anon_sym_SEMI_SEMI] = ACTIONS(624), + [anon_sym_PIPE_AMP] = ACTIONS(624), + [anon_sym_AMP_AMP] = ACTIONS(624), + [anon_sym_PIPE_PIPE] = ACTIONS(624), + [anon_sym_EQ_TILDE] = ACTIONS(624), + [anon_sym_EQ_EQ] = ACTIONS(624), + [anon_sym_LT] = ACTIONS(624), + [anon_sym_GT] = ACTIONS(624), + [anon_sym_GT_GT] = ACTIONS(624), + [anon_sym_AMP_GT] = ACTIONS(624), + [anon_sym_AMP_GT_GT] = ACTIONS(624), + [anon_sym_LT_AMP] = ACTIONS(624), + [anon_sym_GT_AMP] = ACTIONS(624), + [anon_sym_LT_LT] = ACTIONS(624), + [anon_sym_LT_LT_DASH] = ACTIONS(624), + [anon_sym_LT_LT_LT] = ACTIONS(624), + [sym__special_characters] = ACTIONS(624), + [anon_sym_DQUOTE] = ACTIONS(624), + [anon_sym_DOLLAR] = ACTIONS(624), + [sym_raw_string] = ACTIONS(624), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(624), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(624), + [anon_sym_BQUOTE] = ACTIONS(624), + [anon_sym_LT_LPAREN] = ACTIONS(624), + [anon_sym_GT_LPAREN] = ACTIONS(624), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(616), - [anon_sym_SEMI] = ACTIONS(616), - [anon_sym_LF] = ACTIONS(616), - [anon_sym_AMP] = ACTIONS(616), + [sym_word] = ACTIONS(624), + [anon_sym_SEMI] = ACTIONS(624), + [anon_sym_LF] = ACTIONS(624), + [anon_sym_AMP] = ACTIONS(624), }, [3287] = { [sym_file_redirect] = STATE(207), [sym_heredoc_redirect] = STATE(207), [sym_herestring_redirect] = STATE(207), [aux_sym_while_statement_repeat1] = STATE(3771), - [sym_file_descriptor] = ACTIONS(6593), - [anon_sym_esac] = ACTIONS(1128), - [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(6597), - [anon_sym_GT] = ACTIONS(6597), - [anon_sym_GT_GT] = ACTIONS(6597), - [anon_sym_AMP_GT] = ACTIONS(6597), - [anon_sym_AMP_GT_GT] = ACTIONS(6597), - [anon_sym_LT_AMP] = ACTIONS(6597), - [anon_sym_GT_AMP] = ACTIONS(6597), - [anon_sym_LT_LT] = ACTIONS(358), - [anon_sym_LT_LT_DASH] = ACTIONS(358), - [anon_sym_LT_LT_LT] = ACTIONS(6599), + [sym_file_descriptor] = ACTIONS(6663), + [anon_sym_esac] = ACTIONS(1148), + [anon_sym_PIPE] = ACTIONS(1148), + [anon_sym_SEMI_SEMI] = ACTIONS(1148), + [anon_sym_PIPE_AMP] = ACTIONS(1148), + [anon_sym_AMP_AMP] = ACTIONS(1148), + [anon_sym_PIPE_PIPE] = ACTIONS(1148), + [anon_sym_LT] = ACTIONS(6667), + [anon_sym_GT] = ACTIONS(6667), + [anon_sym_GT_GT] = ACTIONS(6667), + [anon_sym_AMP_GT] = ACTIONS(6667), + [anon_sym_AMP_GT_GT] = ACTIONS(6667), + [anon_sym_LT_AMP] = ACTIONS(6667), + [anon_sym_GT_AMP] = ACTIONS(6667), + [anon_sym_LT_LT] = ACTIONS(360), + [anon_sym_LT_LT_DASH] = ACTIONS(360), + [anon_sym_LT_LT_LT] = ACTIONS(6669), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1128), - [anon_sym_LF] = ACTIONS(1128), - [anon_sym_AMP] = ACTIONS(1128), + [anon_sym_SEMI] = ACTIONS(1148), + [anon_sym_LF] = ACTIONS(1148), + [anon_sym_AMP] = ACTIONS(1148), }, [3288] = { [sym_file_redirect] = STATE(207), @@ -83416,95 +83773,96 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_process_substitution] = STATE(3285), [aux_sym_while_statement_repeat1] = STATE(3772), [aux_sym_command_repeat2] = STATE(3773), - [sym_file_descriptor] = ACTIONS(6593), - [anon_sym_esac] = ACTIONS(1128), - [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(6595), - [anon_sym_LT] = ACTIONS(6597), - [anon_sym_GT] = ACTIONS(6597), - [anon_sym_GT_GT] = ACTIONS(6597), - [anon_sym_AMP_GT] = ACTIONS(6597), - [anon_sym_AMP_GT_GT] = ACTIONS(6597), - [anon_sym_LT_AMP] = ACTIONS(6597), - [anon_sym_GT_AMP] = ACTIONS(6597), - [anon_sym_LT_LT] = ACTIONS(358), - [anon_sym_LT_LT_DASH] = ACTIONS(358), - [anon_sym_LT_LT_LT] = ACTIONS(6599), - [sym__special_characters] = ACTIONS(6601), - [anon_sym_DQUOTE] = ACTIONS(6603), - [anon_sym_DOLLAR] = ACTIONS(6605), - [sym_raw_string] = ACTIONS(6607), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6609), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6611), - [anon_sym_BQUOTE] = ACTIONS(6613), - [anon_sym_LT_LPAREN] = ACTIONS(6615), - [anon_sym_GT_LPAREN] = ACTIONS(6615), + [sym_file_descriptor] = ACTIONS(6663), + [anon_sym_esac] = ACTIONS(1148), + [anon_sym_PIPE] = ACTIONS(1148), + [anon_sym_SEMI_SEMI] = ACTIONS(1148), + [anon_sym_PIPE_AMP] = ACTIONS(1148), + [anon_sym_AMP_AMP] = ACTIONS(1148), + [anon_sym_PIPE_PIPE] = ACTIONS(1148), + [anon_sym_EQ_TILDE] = ACTIONS(6665), + [anon_sym_EQ_EQ] = ACTIONS(6665), + [anon_sym_LT] = ACTIONS(6667), + [anon_sym_GT] = ACTIONS(6667), + [anon_sym_GT_GT] = ACTIONS(6667), + [anon_sym_AMP_GT] = ACTIONS(6667), + [anon_sym_AMP_GT_GT] = ACTIONS(6667), + [anon_sym_LT_AMP] = ACTIONS(6667), + [anon_sym_GT_AMP] = ACTIONS(6667), + [anon_sym_LT_LT] = ACTIONS(360), + [anon_sym_LT_LT_DASH] = ACTIONS(360), + [anon_sym_LT_LT_LT] = ACTIONS(6669), + [sym__special_characters] = ACTIONS(6671), + [anon_sym_DQUOTE] = ACTIONS(6673), + [anon_sym_DOLLAR] = ACTIONS(6675), + [sym_raw_string] = ACTIONS(6677), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6679), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6681), + [anon_sym_BQUOTE] = ACTIONS(6683), + [anon_sym_LT_LPAREN] = ACTIONS(6685), + [anon_sym_GT_LPAREN] = ACTIONS(6685), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6607), - [anon_sym_SEMI] = ACTIONS(1128), - [anon_sym_LF] = ACTIONS(1128), - [anon_sym_AMP] = ACTIONS(1128), + [sym_word] = ACTIONS(6677), + [anon_sym_SEMI] = ACTIONS(1148), + [anon_sym_LF] = ACTIONS(1148), + [anon_sym_AMP] = ACTIONS(1148), }, [3289] = { - [anon_sym_esac] = ACTIONS(7432), - [sym__special_characters] = ACTIONS(7438), - [anon_sym_DQUOTE] = ACTIONS(7436), - [anon_sym_DOLLAR] = ACTIONS(7438), - [sym_raw_string] = ACTIONS(7436), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7436), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7436), - [anon_sym_BQUOTE] = ACTIONS(7436), - [anon_sym_LT_LPAREN] = ACTIONS(7436), - [anon_sym_GT_LPAREN] = ACTIONS(7436), + [anon_sym_esac] = ACTIONS(7506), + [sym__special_characters] = ACTIONS(7512), + [anon_sym_DQUOTE] = ACTIONS(7510), + [anon_sym_DOLLAR] = ACTIONS(7512), + [sym_raw_string] = ACTIONS(7510), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7510), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7510), + [anon_sym_BQUOTE] = ACTIONS(7510), + [anon_sym_LT_LPAREN] = ACTIONS(7510), + [anon_sym_GT_LPAREN] = ACTIONS(7510), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7434), + [sym_word] = ACTIONS(7508), }, [3290] = { - [anon_sym_esac] = ACTIONS(7474), - [anon_sym_PIPE] = ACTIONS(6585), - [anon_sym_SEMI_SEMI] = ACTIONS(7476), - [anon_sym_PIPE_AMP] = ACTIONS(6585), - [anon_sym_AMP_AMP] = ACTIONS(6589), - [anon_sym_PIPE_PIPE] = ACTIONS(6589), + [anon_sym_esac] = ACTIONS(7548), + [anon_sym_PIPE] = ACTIONS(6655), + [anon_sym_SEMI_SEMI] = ACTIONS(7550), + [anon_sym_PIPE_AMP] = ACTIONS(6655), + [anon_sym_AMP_AMP] = ACTIONS(6659), + [anon_sym_PIPE_PIPE] = ACTIONS(6659), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6591), - [anon_sym_LF] = ACTIONS(6591), - [anon_sym_AMP] = ACTIONS(6591), + [anon_sym_SEMI] = ACTIONS(6661), + [anon_sym_LF] = ACTIONS(6661), + [anon_sym_AMP] = ACTIONS(6661), }, [3291] = { - [sym_file_descriptor] = ACTIONS(378), - [sym_variable_name] = ACTIONS(378), - [anon_sym_esac] = ACTIONS(7474), - [anon_sym_PIPE] = ACTIONS(6585), - [anon_sym_SEMI_SEMI] = ACTIONS(7476), - [anon_sym_PIPE_AMP] = ACTIONS(6585), - [anon_sym_AMP_AMP] = ACTIONS(6589), - [anon_sym_PIPE_PIPE] = ACTIONS(6589), - [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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_esac] = ACTIONS(7548), + [anon_sym_PIPE] = ACTIONS(6655), + [anon_sym_SEMI_SEMI] = ACTIONS(7550), + [anon_sym_PIPE_AMP] = ACTIONS(6655), + [anon_sym_AMP_AMP] = ACTIONS(6659), + [anon_sym_PIPE_PIPE] = ACTIONS(6659), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(382), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(382), + [anon_sym_LT_AMP] = ACTIONS(382), + [anon_sym_GT_AMP] = ACTIONS(382), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(382), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(382), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(382), + [anon_sym_BQUOTE] = ACTIONS(382), + [anon_sym_LT_LPAREN] = ACTIONS(382), + [anon_sym_GT_LPAREN] = ACTIONS(382), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(380), - [anon_sym_SEMI] = ACTIONS(6591), - [anon_sym_LF] = ACTIONS(6591), - [anon_sym_AMP] = ACTIONS(6591), + [sym_word] = ACTIONS(382), + [anon_sym_SEMI] = ACTIONS(6661), + [anon_sym_LF] = ACTIONS(6661), + [anon_sym_AMP] = ACTIONS(6661), }, [3292] = { [sym__terminated_statement] = STATE(2651), @@ -83533,43 +83891,43 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_process_substitution] = STATE(18), [aux_sym_program_repeat1] = STATE(3292), [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_file_descriptor] = ACTIONS(1150), + [sym_variable_name] = ACTIONS(1153), + [anon_sym_for] = ACTIONS(1158), + [anon_sym_while] = ACTIONS(1161), + [anon_sym_if] = ACTIONS(1164), + [anon_sym_case] = ACTIONS(1167), + [anon_sym_esac] = ACTIONS(4299), + [anon_sym_SEMI_SEMI] = ACTIONS(1156), + [anon_sym_function] = ACTIONS(1170), + [anon_sym_LPAREN] = ACTIONS(1173), + [anon_sym_LBRACK] = ACTIONS(1176), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1179), + [anon_sym_declare] = ACTIONS(1182), + [anon_sym_typeset] = ACTIONS(1182), + [anon_sym_export] = ACTIONS(1182), + [anon_sym_readonly] = ACTIONS(1182), + [anon_sym_local] = ACTIONS(1182), + [anon_sym_unset] = ACTIONS(1185), + [anon_sym_unsetenv] = ACTIONS(1185), + [anon_sym_LT] = ACTIONS(1188), + [anon_sym_GT] = ACTIONS(1188), + [anon_sym_GT_GT] = ACTIONS(1191), + [anon_sym_AMP_GT] = ACTIONS(1188), + [anon_sym_AMP_GT_GT] = ACTIONS(1191), + [anon_sym_LT_AMP] = ACTIONS(1191), + [anon_sym_GT_AMP] = ACTIONS(1191), + [sym__special_characters] = ACTIONS(1194), + [anon_sym_DQUOTE] = ACTIONS(1197), + [anon_sym_DOLLAR] = ACTIONS(1200), + [sym_raw_string] = ACTIONS(1203), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1206), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1209), + [anon_sym_BQUOTE] = ACTIONS(1212), + [anon_sym_LT_LPAREN] = ACTIONS(1215), + [anon_sym_GT_LPAREN] = ACTIONS(1215), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1198), + [sym_word] = ACTIONS(1218), }, [3293] = { [sym_file_redirect] = STATE(207), @@ -83584,38 +83942,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_process_substitution] = STATE(3285), [aux_sym_while_statement_repeat1] = STATE(3772), [aux_sym_command_repeat2] = STATE(3777), - [sym_file_descriptor] = ACTIONS(6593), - [anon_sym_esac] = ACTIONS(1128), - [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(6595), - [anon_sym_LT] = ACTIONS(6597), - [anon_sym_GT] = ACTIONS(6597), - [anon_sym_GT_GT] = ACTIONS(6597), - [anon_sym_AMP_GT] = ACTIONS(6597), - [anon_sym_AMP_GT_GT] = ACTIONS(6597), - [anon_sym_LT_AMP] = ACTIONS(6597), - [anon_sym_GT_AMP] = ACTIONS(6597), - [anon_sym_LT_LT] = ACTIONS(358), - [anon_sym_LT_LT_DASH] = ACTIONS(358), - [anon_sym_LT_LT_LT] = ACTIONS(6599), - [sym__special_characters] = ACTIONS(6601), - [anon_sym_DQUOTE] = ACTIONS(6603), - [anon_sym_DOLLAR] = ACTIONS(6605), - [sym_raw_string] = ACTIONS(6607), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6609), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6611), - [anon_sym_BQUOTE] = ACTIONS(6613), - [anon_sym_LT_LPAREN] = ACTIONS(6615), - [anon_sym_GT_LPAREN] = ACTIONS(6615), + [sym_file_descriptor] = ACTIONS(6663), + [anon_sym_esac] = ACTIONS(1148), + [anon_sym_PIPE] = ACTIONS(1148), + [anon_sym_SEMI_SEMI] = ACTIONS(1148), + [anon_sym_PIPE_AMP] = ACTIONS(1148), + [anon_sym_AMP_AMP] = ACTIONS(1148), + [anon_sym_PIPE_PIPE] = ACTIONS(1148), + [anon_sym_EQ_TILDE] = ACTIONS(6665), + [anon_sym_EQ_EQ] = ACTIONS(6665), + [anon_sym_LT] = ACTIONS(6667), + [anon_sym_GT] = ACTIONS(6667), + [anon_sym_GT_GT] = ACTIONS(6667), + [anon_sym_AMP_GT] = ACTIONS(6667), + [anon_sym_AMP_GT_GT] = ACTIONS(6667), + [anon_sym_LT_AMP] = ACTIONS(6667), + [anon_sym_GT_AMP] = ACTIONS(6667), + [anon_sym_LT_LT] = ACTIONS(360), + [anon_sym_LT_LT_DASH] = ACTIONS(360), + [anon_sym_LT_LT_LT] = ACTIONS(6669), + [sym__special_characters] = ACTIONS(6671), + [anon_sym_DQUOTE] = ACTIONS(6673), + [anon_sym_DOLLAR] = ACTIONS(6675), + [sym_raw_string] = ACTIONS(6677), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6679), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6681), + [anon_sym_BQUOTE] = ACTIONS(6683), + [anon_sym_LT_LPAREN] = ACTIONS(6685), + [anon_sym_GT_LPAREN] = ACTIONS(6685), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6607), - [anon_sym_SEMI] = ACTIONS(1128), - [anon_sym_LF] = ACTIONS(1128), - [anon_sym_AMP] = ACTIONS(1128), + [sym_word] = ACTIONS(6677), + [anon_sym_SEMI] = ACTIONS(1148), + [anon_sym_LF] = ACTIONS(1148), + [anon_sym_AMP] = ACTIONS(1148), }, [3294] = { [sym__terminated_statement] = STATE(2651), @@ -83645,24 +84004,24 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_program_repeat1] = STATE(3292), [aux_sym_command_repeat1] = STATE(2658), [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(5459), + [sym_variable_name] = ACTIONS(5521), [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(5461), + [anon_sym_while] = ACTIONS(5523), [anon_sym_if] = ACTIONS(20), [anon_sym_case] = ACTIONS(22), - [anon_sym_esac] = ACTIONS(7432), - [anon_sym_SEMI_SEMI] = ACTIONS(7478), - [anon_sym_function] = ACTIONS(5467), + [anon_sym_esac] = ACTIONS(7506), + [anon_sym_SEMI_SEMI] = ACTIONS(7552), + [anon_sym_function] = ACTIONS(5529), [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(5469), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5471), - [anon_sym_declare] = ACTIONS(5473), - [anon_sym_typeset] = ACTIONS(5473), - [anon_sym_export] = ACTIONS(5473), - [anon_sym_readonly] = ACTIONS(5473), - [anon_sym_local] = ACTIONS(5473), - [anon_sym_unset] = ACTIONS(5475), - [anon_sym_unsetenv] = ACTIONS(5475), + [anon_sym_LBRACK] = ACTIONS(5531), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5533), + [anon_sym_declare] = ACTIONS(5535), + [anon_sym_typeset] = ACTIONS(5535), + [anon_sym_export] = ACTIONS(5535), + [anon_sym_readonly] = ACTIONS(5535), + [anon_sym_local] = ACTIONS(5535), + [anon_sym_unset] = ACTIONS(5537), + [anon_sym_unsetenv] = ACTIONS(5537), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -83670,113 +84029,113 @@ 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(5477), - [anon_sym_DQUOTE] = ACTIONS(5479), - [anon_sym_DOLLAR] = ACTIONS(5481), - [sym_raw_string] = ACTIONS(5483), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5485), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5487), - [anon_sym_BQUOTE] = ACTIONS(5489), - [anon_sym_LT_LPAREN] = ACTIONS(5491), - [anon_sym_GT_LPAREN] = ACTIONS(5491), + [sym__special_characters] = ACTIONS(5539), + [anon_sym_DQUOTE] = ACTIONS(5541), + [anon_sym_DOLLAR] = ACTIONS(5543), + [sym_raw_string] = ACTIONS(5545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5547), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5549), + [anon_sym_BQUOTE] = ACTIONS(5551), + [anon_sym_LT_LPAREN] = ACTIONS(5553), + [anon_sym_GT_LPAREN] = ACTIONS(5553), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5493), + [sym_word] = ACTIONS(5555), }, [3295] = { - [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(7480), - [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(7482), - [anon_sym_DQUOTE] = ACTIONS(7484), - [anon_sym_DOLLAR] = ACTIONS(7486), - [sym_raw_string] = ACTIONS(7484), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7484), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7484), - [anon_sym_BQUOTE] = ACTIONS(7484), - [anon_sym_LT_LPAREN] = ACTIONS(7484), - [anon_sym_GT_LPAREN] = ACTIONS(7484), + [sym_file_descriptor] = ACTIONS(1100), + [sym_variable_name] = ACTIONS(1100), + [anon_sym_for] = ACTIONS(1102), + [anon_sym_while] = ACTIONS(1102), + [anon_sym_if] = ACTIONS(1102), + [anon_sym_case] = ACTIONS(1102), + [anon_sym_esac] = ACTIONS(7554), + [anon_sym_SEMI_SEMI] = ACTIONS(1100), + [anon_sym_function] = ACTIONS(1102), + [anon_sym_LPAREN] = ACTIONS(1100), + [anon_sym_LBRACK] = ACTIONS(1102), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1100), + [anon_sym_declare] = ACTIONS(1102), + [anon_sym_typeset] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(1102), + [anon_sym_readonly] = ACTIONS(1102), + [anon_sym_local] = ACTIONS(1102), + [anon_sym_unset] = ACTIONS(1102), + [anon_sym_unsetenv] = ACTIONS(1102), + [anon_sym_LT] = ACTIONS(1102), + [anon_sym_GT] = ACTIONS(1102), + [anon_sym_GT_GT] = ACTIONS(1100), + [anon_sym_AMP_GT] = ACTIONS(1102), + [anon_sym_AMP_GT_GT] = ACTIONS(1100), + [anon_sym_LT_AMP] = ACTIONS(1100), + [anon_sym_GT_AMP] = ACTIONS(1100), + [sym__special_characters] = ACTIONS(7556), + [anon_sym_DQUOTE] = ACTIONS(7558), + [anon_sym_DOLLAR] = ACTIONS(7560), + [sym_raw_string] = ACTIONS(7558), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7558), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7558), + [anon_sym_BQUOTE] = ACTIONS(7558), + [anon_sym_LT_LPAREN] = ACTIONS(7558), + [anon_sym_GT_LPAREN] = ACTIONS(7558), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7482), + [sym_word] = ACTIONS(7556), }, [3296] = { - [anon_sym_esac] = ACTIONS(7480), - [sym__special_characters] = ACTIONS(7486), - [anon_sym_DQUOTE] = ACTIONS(7484), - [anon_sym_DOLLAR] = ACTIONS(7486), - [sym_raw_string] = ACTIONS(7484), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7484), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7484), - [anon_sym_BQUOTE] = ACTIONS(7484), - [anon_sym_LT_LPAREN] = ACTIONS(7484), - [anon_sym_GT_LPAREN] = ACTIONS(7484), + [anon_sym_esac] = ACTIONS(7554), + [sym__special_characters] = ACTIONS(7560), + [anon_sym_DQUOTE] = ACTIONS(7558), + [anon_sym_DOLLAR] = ACTIONS(7560), + [sym_raw_string] = ACTIONS(7558), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7558), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7558), + [anon_sym_BQUOTE] = ACTIONS(7558), + [anon_sym_LT_LPAREN] = ACTIONS(7558), + [anon_sym_GT_LPAREN] = ACTIONS(7558), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7482), + [sym_word] = ACTIONS(7556), }, [3297] = { - [anon_sym_esac] = ACTIONS(7488), - [anon_sym_PIPE] = ACTIONS(6585), - [anon_sym_SEMI_SEMI] = ACTIONS(7490), - [anon_sym_PIPE_AMP] = ACTIONS(6585), - [anon_sym_AMP_AMP] = ACTIONS(6589), - [anon_sym_PIPE_PIPE] = ACTIONS(6589), + [anon_sym_esac] = ACTIONS(7562), + [anon_sym_PIPE] = ACTIONS(6655), + [anon_sym_SEMI_SEMI] = ACTIONS(7564), + [anon_sym_PIPE_AMP] = ACTIONS(6655), + [anon_sym_AMP_AMP] = ACTIONS(6659), + [anon_sym_PIPE_PIPE] = ACTIONS(6659), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6591), - [anon_sym_LF] = ACTIONS(6591), - [anon_sym_AMP] = ACTIONS(6591), + [anon_sym_SEMI] = ACTIONS(6661), + [anon_sym_LF] = ACTIONS(6661), + [anon_sym_AMP] = ACTIONS(6661), }, [3298] = { - [sym_file_descriptor] = ACTIONS(378), - [sym_variable_name] = ACTIONS(378), - [anon_sym_esac] = ACTIONS(7488), - [anon_sym_PIPE] = ACTIONS(6585), - [anon_sym_SEMI_SEMI] = ACTIONS(7490), - [anon_sym_PIPE_AMP] = ACTIONS(6585), - [anon_sym_AMP_AMP] = ACTIONS(6589), - [anon_sym_PIPE_PIPE] = ACTIONS(6589), - [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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_esac] = ACTIONS(7562), + [anon_sym_PIPE] = ACTIONS(6655), + [anon_sym_SEMI_SEMI] = ACTIONS(7564), + [anon_sym_PIPE_AMP] = ACTIONS(6655), + [anon_sym_AMP_AMP] = ACTIONS(6659), + [anon_sym_PIPE_PIPE] = ACTIONS(6659), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(382), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(382), + [anon_sym_LT_AMP] = ACTIONS(382), + [anon_sym_GT_AMP] = ACTIONS(382), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(382), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(382), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(382), + [anon_sym_BQUOTE] = ACTIONS(382), + [anon_sym_LT_LPAREN] = ACTIONS(382), + [anon_sym_GT_LPAREN] = ACTIONS(382), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(380), - [anon_sym_SEMI] = ACTIONS(6591), - [anon_sym_LF] = ACTIONS(6591), - [anon_sym_AMP] = ACTIONS(6591), + [sym_word] = ACTIONS(382), + [anon_sym_SEMI] = ACTIONS(6661), + [anon_sym_LF] = ACTIONS(6661), + [anon_sym_AMP] = ACTIONS(6661), }, [3299] = { [sym__terminated_statement] = STATE(2651), @@ -83806,24 +84165,24 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_program_repeat1] = STATE(3292), [aux_sym_command_repeat1] = STATE(2658), [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(5459), + [sym_variable_name] = ACTIONS(5521), [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(5461), + [anon_sym_while] = ACTIONS(5523), [anon_sym_if] = ACTIONS(20), [anon_sym_case] = ACTIONS(22), - [anon_sym_esac] = ACTIONS(7480), - [anon_sym_SEMI_SEMI] = ACTIONS(7492), - [anon_sym_function] = ACTIONS(5467), + [anon_sym_esac] = ACTIONS(7554), + [anon_sym_SEMI_SEMI] = ACTIONS(7566), + [anon_sym_function] = ACTIONS(5529), [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(5469), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5471), - [anon_sym_declare] = ACTIONS(5473), - [anon_sym_typeset] = ACTIONS(5473), - [anon_sym_export] = ACTIONS(5473), - [anon_sym_readonly] = ACTIONS(5473), - [anon_sym_local] = ACTIONS(5473), - [anon_sym_unset] = ACTIONS(5475), - [anon_sym_unsetenv] = ACTIONS(5475), + [anon_sym_LBRACK] = ACTIONS(5531), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5533), + [anon_sym_declare] = ACTIONS(5535), + [anon_sym_typeset] = ACTIONS(5535), + [anon_sym_export] = ACTIONS(5535), + [anon_sym_readonly] = ACTIONS(5535), + [anon_sym_local] = ACTIONS(5535), + [anon_sym_unset] = ACTIONS(5537), + [anon_sym_unsetenv] = ACTIONS(5537), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -83831,38 +84190,38 @@ 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(5477), - [anon_sym_DQUOTE] = ACTIONS(5479), - [anon_sym_DOLLAR] = ACTIONS(5481), - [sym_raw_string] = ACTIONS(5483), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5485), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5487), - [anon_sym_BQUOTE] = ACTIONS(5489), - [anon_sym_LT_LPAREN] = ACTIONS(5491), - [anon_sym_GT_LPAREN] = ACTIONS(5491), + [sym__special_characters] = ACTIONS(5539), + [anon_sym_DQUOTE] = ACTIONS(5541), + [anon_sym_DOLLAR] = ACTIONS(5543), + [sym_raw_string] = ACTIONS(5545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5547), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5549), + [anon_sym_BQUOTE] = ACTIONS(5551), + [anon_sym_LT_LPAREN] = ACTIONS(5553), + [anon_sym_GT_LPAREN] = ACTIONS(5553), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5493), + [sym_word] = ACTIONS(5555), }, [3300] = { - [sym__concat] = ACTIONS(3235), - [anon_sym_PIPE] = ACTIONS(3235), - [anon_sym_RPAREN] = ACTIONS(3235), + [sym__concat] = ACTIONS(3283), + [anon_sym_PIPE] = ACTIONS(3283), + [anon_sym_RPAREN] = ACTIONS(3283), [sym_comment] = ACTIONS(56), }, [3301] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(7494), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(7568), [sym_comment] = ACTIONS(56), }, [3302] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(7496), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(7570), [sym_comment] = ACTIONS(56), }, [3303] = { - [anon_sym_RBRACE] = ACTIONS(7496), + [anon_sym_RBRACE] = ACTIONS(7570), [sym_comment] = ACTIONS(56), }, [3304] = { @@ -83874,30 +84233,30 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3788), - [anon_sym_RBRACE] = ACTIONS(7498), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7572), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3305] = { - [sym__concat] = ACTIONS(3297), - [anon_sym_PIPE] = ACTIONS(3297), - [anon_sym_RPAREN] = ACTIONS(3297), + [sym__concat] = ACTIONS(3347), + [anon_sym_PIPE] = ACTIONS(3347), + [anon_sym_RPAREN] = ACTIONS(3347), [sym_comment] = ACTIONS(56), }, [3306] = { @@ -83908,28 +84267,28 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(3790), [sym_command_substitution] = STATE(3790), [sym_process_substitution] = STATE(3790), - [anon_sym_RBRACE] = ACTIONS(7496), - [sym__special_characters] = ACTIONS(7500), - [anon_sym_DQUOTE] = ACTIONS(1924), - [anon_sym_DOLLAR] = ACTIONS(1926), - [sym_raw_string] = ACTIONS(7502), - [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), + [anon_sym_RBRACE] = ACTIONS(7570), + [sym__special_characters] = ACTIONS(7574), + [anon_sym_DQUOTE] = ACTIONS(1952), + [anon_sym_DOLLAR] = ACTIONS(1954), + [sym_raw_string] = ACTIONS(7576), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), + [anon_sym_BQUOTE] = ACTIONS(1962), + [anon_sym_LT_LPAREN] = ACTIONS(1964), + [anon_sym_GT_LPAREN] = ACTIONS(1964), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7504), + [sym_word] = ACTIONS(7578), }, [3307] = { - [sym__concat] = ACTIONS(3342), - [anon_sym_PIPE] = ACTIONS(3342), - [anon_sym_RPAREN] = ACTIONS(3342), + [sym__concat] = ACTIONS(3392), + [anon_sym_PIPE] = ACTIONS(3392), + [anon_sym_RPAREN] = ACTIONS(3392), [sym_comment] = ACTIONS(56), }, [3308] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(7506), + [sym_regex_without_right_brace] = ACTIONS(7580), }, [3309] = { [sym_concatenation] = STATE(451), @@ -83940,35 +84299,35 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7508), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7582), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3310] = { - [sym__concat] = ACTIONS(3350), - [anon_sym_PIPE] = ACTIONS(3350), - [anon_sym_RPAREN] = ACTIONS(3350), + [sym__concat] = ACTIONS(3400), + [anon_sym_PIPE] = ACTIONS(3400), + [anon_sym_RPAREN] = ACTIONS(3400), [sym_comment] = ACTIONS(56), }, [3311] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(7510), + [sym_regex_without_right_brace] = ACTIONS(7584), }, [3312] = { [sym_concatenation] = STATE(451), @@ -83979,29 +84338,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7512), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7586), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3313] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(7514), + [sym_regex_without_right_brace] = ACTIONS(7588), }, [3314] = { [sym_concatenation] = STATE(451), @@ -84012,25 +84371,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7496), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7570), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3315] = { [sym_concatenation] = STATE(451), @@ -84041,30 +84400,30 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3798), - [anon_sym_RBRACE] = ACTIONS(7516), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7590), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3316] = { - [sym__concat] = ACTIONS(3362), - [anon_sym_PIPE] = ACTIONS(3362), - [anon_sym_RPAREN] = ACTIONS(3362), + [sym__concat] = ACTIONS(3412), + [anon_sym_PIPE] = ACTIONS(3412), + [anon_sym_RPAREN] = ACTIONS(3412), [sym_comment] = ACTIONS(56), }, [3317] = { @@ -84076,25 +84435,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3800), - [anon_sym_RBRACE] = ACTIONS(7518), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7592), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3318] = { [sym__terminated_statement] = STATE(25), @@ -84129,7 +84488,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(18), [anon_sym_if] = ACTIONS(20), [anon_sym_case] = ACTIONS(22), - [anon_sym_SEMI_SEMI] = ACTIONS(7520), + [anon_sym_SEMI_SEMI] = ACTIONS(7594), [anon_sym_function] = ACTIONS(24), [anon_sym_LPAREN] = ACTIONS(26), [anon_sym_LBRACK] = ACTIONS(28), @@ -84162,8 +84521,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [3319] = { [aux_sym_case_item_repeat1] = STATE(2660), - [anon_sym_PIPE] = ACTIONS(4262), - [anon_sym_RPAREN] = ACTIONS(7522), + [anon_sym_PIPE] = ACTIONS(4320), + [anon_sym_RPAREN] = ACTIONS(7596), [sym_comment] = ACTIONS(56), }, [3320] = { @@ -84199,7 +84558,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(18), [anon_sym_if] = ACTIONS(20), [anon_sym_case] = ACTIONS(22), - [anon_sym_SEMI_SEMI] = ACTIONS(7524), + [anon_sym_SEMI_SEMI] = ACTIONS(7598), [anon_sym_function] = ACTIONS(24), [anon_sym_LPAREN] = ACTIONS(26), [anon_sym_LBRACK] = ACTIONS(28), @@ -84232,89 +84591,89 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [3321] = { [aux_sym_case_item_repeat1] = STATE(2660), - [anon_sym_PIPE] = ACTIONS(4262), - [anon_sym_RPAREN] = ACTIONS(7526), + [anon_sym_PIPE] = ACTIONS(4320), + [anon_sym_RPAREN] = ACTIONS(7600), [sym_comment] = ACTIONS(56), }, [3322] = { - [anon_sym_esac] = ACTIONS(7528), - [anon_sym_PIPE] = ACTIONS(7528), - [anon_sym_RPAREN] = ACTIONS(7528), - [anon_sym_SEMI_SEMI] = ACTIONS(7528), - [anon_sym_PIPE_AMP] = ACTIONS(7528), - [anon_sym_AMP_AMP] = ACTIONS(7528), - [anon_sym_PIPE_PIPE] = ACTIONS(7528), + [anon_sym_esac] = ACTIONS(7602), + [anon_sym_PIPE] = ACTIONS(7602), + [anon_sym_RPAREN] = ACTIONS(7602), + [anon_sym_SEMI_SEMI] = ACTIONS(7602), + [anon_sym_PIPE_AMP] = ACTIONS(7602), + [anon_sym_AMP_AMP] = ACTIONS(7602), + [anon_sym_PIPE_PIPE] = ACTIONS(7602), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(7528), - [anon_sym_LF] = ACTIONS(7528), - [anon_sym_AMP] = ACTIONS(7528), + [anon_sym_SEMI] = ACTIONS(7602), + [anon_sym_LF] = ACTIONS(7602), + [anon_sym_AMP] = ACTIONS(7602), }, [3323] = { - [anon_sym_esac] = ACTIONS(7530), - [anon_sym_PIPE] = ACTIONS(7530), - [anon_sym_RPAREN] = ACTIONS(7530), - [anon_sym_SEMI_SEMI] = ACTIONS(7530), - [anon_sym_PIPE_AMP] = ACTIONS(7530), - [anon_sym_AMP_AMP] = ACTIONS(7530), - [anon_sym_PIPE_PIPE] = ACTIONS(7530), + [anon_sym_esac] = ACTIONS(7604), + [anon_sym_PIPE] = ACTIONS(7604), + [anon_sym_RPAREN] = ACTIONS(7604), + [anon_sym_SEMI_SEMI] = ACTIONS(7604), + [anon_sym_PIPE_AMP] = ACTIONS(7604), + [anon_sym_AMP_AMP] = ACTIONS(7604), + [anon_sym_PIPE_PIPE] = ACTIONS(7604), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(7530), - [anon_sym_LF] = ACTIONS(7530), - [anon_sym_AMP] = ACTIONS(7530), + [anon_sym_SEMI] = ACTIONS(7604), + [anon_sym_LF] = ACTIONS(7604), + [anon_sym_AMP] = ACTIONS(7604), }, [3324] = { - [sym__concat] = ACTIONS(6948), - [anon_sym_in] = ACTIONS(6950), - [anon_sym_SEMI_SEMI] = ACTIONS(6950), + [sym__concat] = ACTIONS(7018), + [anon_sym_in] = ACTIONS(7020), + [anon_sym_SEMI_SEMI] = ACTIONS(7020), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6950), - [anon_sym_LF] = ACTIONS(6950), - [anon_sym_AMP] = ACTIONS(6950), + [anon_sym_SEMI] = ACTIONS(7020), + [anon_sym_LF] = ACTIONS(7020), + [anon_sym_AMP] = ACTIONS(7020), }, [3325] = { - [sym__concat] = ACTIONS(6952), - [anon_sym_in] = ACTIONS(6954), - [anon_sym_SEMI_SEMI] = ACTIONS(6954), + [sym__concat] = ACTIONS(7022), + [anon_sym_in] = ACTIONS(7024), + [anon_sym_SEMI_SEMI] = ACTIONS(7024), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6954), - [anon_sym_LF] = ACTIONS(6954), - [anon_sym_AMP] = ACTIONS(6954), + [anon_sym_SEMI] = ACTIONS(7024), + [anon_sym_LF] = ACTIONS(7024), + [anon_sym_AMP] = ACTIONS(7024), }, [3326] = { - [sym__concat] = ACTIONS(6956), - [anon_sym_in] = ACTIONS(6958), - [anon_sym_SEMI_SEMI] = ACTIONS(6958), + [sym__concat] = ACTIONS(7026), + [anon_sym_in] = ACTIONS(7028), + [anon_sym_SEMI_SEMI] = ACTIONS(7028), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6958), - [anon_sym_LF] = ACTIONS(6958), - [anon_sym_AMP] = ACTIONS(6958), + [anon_sym_SEMI] = ACTIONS(7028), + [anon_sym_LF] = ACTIONS(7028), + [anon_sym_AMP] = ACTIONS(7028), }, [3327] = { - [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__concat] = ACTIONS(3283), + [anon_sym_PIPE] = ACTIONS(3285), + [anon_sym_SEMI_SEMI] = ACTIONS(3285), + [anon_sym_PIPE_AMP] = ACTIONS(3285), + [anon_sym_AMP_AMP] = ACTIONS(3285), + [anon_sym_PIPE_PIPE] = ACTIONS(3285), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3237), - [anon_sym_LF] = ACTIONS(3237), - [anon_sym_AMP] = ACTIONS(3237), + [anon_sym_SEMI] = ACTIONS(3285), + [anon_sym_LF] = ACTIONS(3285), + [anon_sym_AMP] = ACTIONS(3285), }, [3328] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(7532), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(7606), [sym_comment] = ACTIONS(56), }, [3329] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(7534), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(7608), [sym_comment] = ACTIONS(56), }, [3330] = { - [anon_sym_RBRACE] = ACTIONS(7534), + [anon_sym_RBRACE] = ACTIONS(7608), [sym_comment] = ACTIONS(56), }, [3331] = { @@ -84326,37 +84685,37 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3814), - [anon_sym_RBRACE] = ACTIONS(7536), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7610), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3332] = { - [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__concat] = ACTIONS(3347), + [anon_sym_PIPE] = ACTIONS(3349), + [anon_sym_SEMI_SEMI] = ACTIONS(3349), + [anon_sym_PIPE_AMP] = ACTIONS(3349), + [anon_sym_AMP_AMP] = ACTIONS(3349), + [anon_sym_PIPE_PIPE] = ACTIONS(3349), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3299), - [anon_sym_LF] = ACTIONS(3299), - [anon_sym_AMP] = ACTIONS(3299), + [anon_sym_SEMI] = ACTIONS(3349), + [anon_sym_LF] = ACTIONS(3349), + [anon_sym_AMP] = ACTIONS(3349), }, [3333] = { [sym_concatenation] = STATE(3817), @@ -84366,34 +84725,34 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(3816), [sym_command_substitution] = STATE(3816), [sym_process_substitution] = STATE(3816), - [anon_sym_RBRACE] = ACTIONS(7534), - [sym__special_characters] = ACTIONS(7538), - [anon_sym_DQUOTE] = ACTIONS(1924), - [anon_sym_DOLLAR] = ACTIONS(1926), - [sym_raw_string] = ACTIONS(7540), - [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), + [anon_sym_RBRACE] = ACTIONS(7608), + [sym__special_characters] = ACTIONS(7612), + [anon_sym_DQUOTE] = ACTIONS(1952), + [anon_sym_DOLLAR] = ACTIONS(1954), + [sym_raw_string] = ACTIONS(7614), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), + [anon_sym_BQUOTE] = ACTIONS(1962), + [anon_sym_LT_LPAREN] = ACTIONS(1964), + [anon_sym_GT_LPAREN] = ACTIONS(1964), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7542), + [sym_word] = ACTIONS(7616), }, [3334] = { - [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__concat] = ACTIONS(3392), + [anon_sym_PIPE] = ACTIONS(3394), + [anon_sym_SEMI_SEMI] = ACTIONS(3394), + [anon_sym_PIPE_AMP] = ACTIONS(3394), + [anon_sym_AMP_AMP] = ACTIONS(3394), + [anon_sym_PIPE_PIPE] = ACTIONS(3394), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3344), - [anon_sym_LF] = ACTIONS(3344), - [anon_sym_AMP] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(3394), + [anon_sym_LF] = ACTIONS(3394), + [anon_sym_AMP] = ACTIONS(3394), }, [3335] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(7544), + [sym_regex_without_right_brace] = ACTIONS(7618), }, [3336] = { [sym_concatenation] = STATE(451), @@ -84404,41 +84763,41 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7546), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7620), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3337] = { - [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__concat] = ACTIONS(3400), + [anon_sym_PIPE] = ACTIONS(3402), + [anon_sym_SEMI_SEMI] = ACTIONS(3402), + [anon_sym_PIPE_AMP] = ACTIONS(3402), + [anon_sym_AMP_AMP] = ACTIONS(3402), + [anon_sym_PIPE_PIPE] = ACTIONS(3402), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3352), - [anon_sym_LF] = ACTIONS(3352), - [anon_sym_AMP] = ACTIONS(3352), + [anon_sym_SEMI] = ACTIONS(3402), + [anon_sym_LF] = ACTIONS(3402), + [anon_sym_AMP] = ACTIONS(3402), }, [3338] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(7548), + [sym_regex_without_right_brace] = ACTIONS(7622), }, [3339] = { [sym_concatenation] = STATE(451), @@ -84449,29 +84808,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7550), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7624), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3340] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(7552), + [sym_regex_without_right_brace] = ACTIONS(7626), }, [3341] = { [sym_concatenation] = STATE(451), @@ -84482,25 +84841,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7534), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7608), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3342] = { [sym_concatenation] = STATE(451), @@ -84511,37 +84870,37 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3824), - [anon_sym_RBRACE] = ACTIONS(7554), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7628), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3343] = { - [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__concat] = ACTIONS(3412), + [anon_sym_PIPE] = ACTIONS(3414), + [anon_sym_SEMI_SEMI] = ACTIONS(3414), + [anon_sym_PIPE_AMP] = ACTIONS(3414), + [anon_sym_AMP_AMP] = ACTIONS(3414), + [anon_sym_PIPE_PIPE] = ACTIONS(3414), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3364), - [anon_sym_LF] = ACTIONS(3364), - [anon_sym_AMP] = ACTIONS(3364), + [anon_sym_SEMI] = ACTIONS(3414), + [anon_sym_LF] = ACTIONS(3414), + [anon_sym_AMP] = ACTIONS(3414), }, [3344] = { [sym_concatenation] = STATE(451), @@ -84552,121 +84911,121 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3826), - [anon_sym_RBRACE] = ACTIONS(7556), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7630), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3345] = { - [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_file_descriptor] = ACTIONS(4790), + [sym__concat] = ACTIONS(4790), + [sym_variable_name] = ACTIONS(4790), + [anon_sym_PIPE] = ACTIONS(4792), + [anon_sym_RPAREN] = ACTIONS(4792), + [anon_sym_SEMI_SEMI] = ACTIONS(4792), + [anon_sym_PIPE_AMP] = ACTIONS(4792), + [anon_sym_AMP_AMP] = ACTIONS(4792), + [anon_sym_PIPE_PIPE] = ACTIONS(4792), + [anon_sym_LT] = ACTIONS(4792), + [anon_sym_GT] = ACTIONS(4792), + [anon_sym_GT_GT] = ACTIONS(4792), + [anon_sym_AMP_GT] = ACTIONS(4792), + [anon_sym_AMP_GT_GT] = ACTIONS(4792), + [anon_sym_LT_AMP] = ACTIONS(4792), + [anon_sym_GT_AMP] = ACTIONS(4792), + [sym__special_characters] = ACTIONS(4792), + [anon_sym_DQUOTE] = ACTIONS(4792), + [anon_sym_DOLLAR] = ACTIONS(4792), + [sym_raw_string] = ACTIONS(4792), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4792), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4792), + [anon_sym_BQUOTE] = ACTIONS(4792), + [anon_sym_LT_LPAREN] = ACTIONS(4792), + [anon_sym_GT_LPAREN] = ACTIONS(4792), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4730), - [anon_sym_SEMI] = ACTIONS(4730), - [anon_sym_LF] = ACTIONS(4730), - [anon_sym_AMP] = ACTIONS(4730), + [sym_word] = ACTIONS(4792), + [anon_sym_SEMI] = ACTIONS(4792), + [anon_sym_LF] = ACTIONS(4792), + [anon_sym_AMP] = ACTIONS(4792), }, [3346] = { - [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_file_descriptor] = ACTIONS(4796), + [sym__concat] = ACTIONS(4796), + [sym_variable_name] = ACTIONS(4796), + [anon_sym_PIPE] = ACTIONS(4798), + [anon_sym_RPAREN] = ACTIONS(4798), + [anon_sym_SEMI_SEMI] = ACTIONS(4798), + [anon_sym_PIPE_AMP] = ACTIONS(4798), + [anon_sym_AMP_AMP] = ACTIONS(4798), + [anon_sym_PIPE_PIPE] = ACTIONS(4798), + [anon_sym_LT] = ACTIONS(4798), + [anon_sym_GT] = ACTIONS(4798), + [anon_sym_GT_GT] = ACTIONS(4798), + [anon_sym_AMP_GT] = ACTIONS(4798), + [anon_sym_AMP_GT_GT] = ACTIONS(4798), + [anon_sym_LT_AMP] = ACTIONS(4798), + [anon_sym_GT_AMP] = ACTIONS(4798), + [sym__special_characters] = ACTIONS(4798), + [anon_sym_DQUOTE] = ACTIONS(4798), + [anon_sym_DOLLAR] = ACTIONS(4798), + [sym_raw_string] = ACTIONS(4798), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4798), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4798), + [anon_sym_BQUOTE] = ACTIONS(4798), + [anon_sym_LT_LPAREN] = ACTIONS(4798), + [anon_sym_GT_LPAREN] = ACTIONS(4798), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4736), - [anon_sym_SEMI] = ACTIONS(4736), - [anon_sym_LF] = ACTIONS(4736), - [anon_sym_AMP] = ACTIONS(4736), + [sym_word] = ACTIONS(4798), + [anon_sym_SEMI] = ACTIONS(4798), + [anon_sym_LF] = ACTIONS(4798), + [anon_sym_AMP] = ACTIONS(4798), }, [3347] = { - [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_file_descriptor] = ACTIONS(4859), + [sym__concat] = ACTIONS(4859), + [sym_variable_name] = ACTIONS(4859), + [anon_sym_PIPE] = ACTIONS(4861), + [anon_sym_RPAREN] = ACTIONS(4861), + [anon_sym_SEMI_SEMI] = ACTIONS(4861), + [anon_sym_PIPE_AMP] = ACTIONS(4861), + [anon_sym_AMP_AMP] = ACTIONS(4861), + [anon_sym_PIPE_PIPE] = ACTIONS(4861), + [anon_sym_LT] = ACTIONS(4861), + [anon_sym_GT] = ACTIONS(4861), + [anon_sym_GT_GT] = ACTIONS(4861), + [anon_sym_AMP_GT] = ACTIONS(4861), + [anon_sym_AMP_GT_GT] = ACTIONS(4861), + [anon_sym_LT_AMP] = ACTIONS(4861), + [anon_sym_GT_AMP] = ACTIONS(4861), + [sym__special_characters] = ACTIONS(4861), + [anon_sym_DQUOTE] = ACTIONS(4861), + [anon_sym_DOLLAR] = ACTIONS(4861), + [sym_raw_string] = ACTIONS(4861), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4861), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4861), + [anon_sym_BQUOTE] = ACTIONS(4861), + [anon_sym_LT_LPAREN] = ACTIONS(4861), + [anon_sym_GT_LPAREN] = ACTIONS(4861), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4799), - [anon_sym_SEMI] = ACTIONS(4799), - [anon_sym_LF] = ACTIONS(4799), - [anon_sym_AMP] = ACTIONS(4799), + [sym_word] = ACTIONS(4861), + [anon_sym_SEMI] = ACTIONS(4861), + [anon_sym_LF] = ACTIONS(4861), + [anon_sym_AMP] = ACTIONS(4861), }, [3348] = { [sym_concatenation] = STATE(451), @@ -84677,40 +85036,40 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7558), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7632), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3349] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(7560), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(7634), [sym_comment] = ACTIONS(56), }, [3350] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(7562), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(7636), [sym_comment] = ACTIONS(56), }, [3351] = { - [anon_sym_RBRACE] = ACTIONS(7562), + [anon_sym_RBRACE] = ACTIONS(7636), [sym_comment] = ACTIONS(56), }, [3352] = { @@ -84722,57 +85081,57 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3831), - [anon_sym_RBRACE] = ACTIONS(7564), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7638), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3353] = { - [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_file_descriptor] = ACTIONS(4871), + [sym__concat] = ACTIONS(4871), + [sym_variable_name] = ACTIONS(4871), + [anon_sym_PIPE] = ACTIONS(4873), + [anon_sym_RPAREN] = ACTIONS(4873), + [anon_sym_SEMI_SEMI] = ACTIONS(4873), + [anon_sym_PIPE_AMP] = ACTIONS(4873), + [anon_sym_AMP_AMP] = ACTIONS(4873), + [anon_sym_PIPE_PIPE] = ACTIONS(4873), + [anon_sym_LT] = ACTIONS(4873), + [anon_sym_GT] = ACTIONS(4873), + [anon_sym_GT_GT] = ACTIONS(4873), + [anon_sym_AMP_GT] = ACTIONS(4873), + [anon_sym_AMP_GT_GT] = ACTIONS(4873), + [anon_sym_LT_AMP] = ACTIONS(4873), + [anon_sym_GT_AMP] = ACTIONS(4873), + [sym__special_characters] = ACTIONS(4873), + [anon_sym_DQUOTE] = ACTIONS(4873), + [anon_sym_DOLLAR] = ACTIONS(4873), + [sym_raw_string] = ACTIONS(4873), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4873), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4873), + [anon_sym_BQUOTE] = ACTIONS(4873), + [anon_sym_LT_LPAREN] = ACTIONS(4873), + [anon_sym_GT_LPAREN] = ACTIONS(4873), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4811), - [anon_sym_SEMI] = ACTIONS(4811), - [anon_sym_LF] = ACTIONS(4811), - [anon_sym_AMP] = ACTIONS(4811), + [sym_word] = ACTIONS(4873), + [anon_sym_SEMI] = ACTIONS(4873), + [anon_sym_LF] = ACTIONS(4873), + [anon_sym_AMP] = ACTIONS(4873), }, [3354] = { [sym_concatenation] = STATE(451), @@ -84783,57 +85142,57 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3833), - [anon_sym_RBRACE] = ACTIONS(7566), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7640), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3355] = { - [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_file_descriptor] = ACTIONS(4877), + [sym__concat] = ACTIONS(4877), + [sym_variable_name] = ACTIONS(4877), + [anon_sym_PIPE] = ACTIONS(4879), + [anon_sym_RPAREN] = ACTIONS(4879), + [anon_sym_SEMI_SEMI] = ACTIONS(4879), + [anon_sym_PIPE_AMP] = ACTIONS(4879), + [anon_sym_AMP_AMP] = ACTIONS(4879), + [anon_sym_PIPE_PIPE] = ACTIONS(4879), + [anon_sym_LT] = ACTIONS(4879), + [anon_sym_GT] = ACTIONS(4879), + [anon_sym_GT_GT] = ACTIONS(4879), + [anon_sym_AMP_GT] = ACTIONS(4879), + [anon_sym_AMP_GT_GT] = ACTIONS(4879), + [anon_sym_LT_AMP] = ACTIONS(4879), + [anon_sym_GT_AMP] = ACTIONS(4879), + [sym__special_characters] = ACTIONS(4879), + [anon_sym_DQUOTE] = ACTIONS(4879), + [anon_sym_DOLLAR] = ACTIONS(4879), + [sym_raw_string] = ACTIONS(4879), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4879), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4879), + [anon_sym_BQUOTE] = ACTIONS(4879), + [anon_sym_LT_LPAREN] = ACTIONS(4879), + [anon_sym_GT_LPAREN] = ACTIONS(4879), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4817), - [anon_sym_SEMI] = ACTIONS(4817), - [anon_sym_LF] = ACTIONS(4817), - [anon_sym_AMP] = ACTIONS(4817), + [sym_word] = ACTIONS(4879), + [anon_sym_SEMI] = ACTIONS(4879), + [anon_sym_LF] = ACTIONS(4879), + [anon_sym_AMP] = ACTIONS(4879), }, [3356] = { [sym_concatenation] = STATE(451), @@ -84844,57 +85203,57 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3835), - [anon_sym_RBRACE] = ACTIONS(7568), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7642), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3357] = { - [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_file_descriptor] = ACTIONS(4883), + [sym__concat] = ACTIONS(4883), + [sym_variable_name] = ACTIONS(4883), + [anon_sym_PIPE] = ACTIONS(4885), + [anon_sym_RPAREN] = ACTIONS(4885), + [anon_sym_SEMI_SEMI] = ACTIONS(4885), + [anon_sym_PIPE_AMP] = ACTIONS(4885), + [anon_sym_AMP_AMP] = ACTIONS(4885), + [anon_sym_PIPE_PIPE] = ACTIONS(4885), + [anon_sym_LT] = ACTIONS(4885), + [anon_sym_GT] = ACTIONS(4885), + [anon_sym_GT_GT] = ACTIONS(4885), + [anon_sym_AMP_GT] = ACTIONS(4885), + [anon_sym_AMP_GT_GT] = ACTIONS(4885), + [anon_sym_LT_AMP] = ACTIONS(4885), + [anon_sym_GT_AMP] = ACTIONS(4885), + [sym__special_characters] = ACTIONS(4885), + [anon_sym_DQUOTE] = ACTIONS(4885), + [anon_sym_DOLLAR] = ACTIONS(4885), + [sym_raw_string] = ACTIONS(4885), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4885), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4885), + [anon_sym_BQUOTE] = ACTIONS(4885), + [anon_sym_LT_LPAREN] = ACTIONS(4885), + [anon_sym_GT_LPAREN] = ACTIONS(4885), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4823), - [anon_sym_SEMI] = ACTIONS(4823), - [anon_sym_LF] = ACTIONS(4823), - [anon_sym_AMP] = ACTIONS(4823), + [sym_word] = ACTIONS(4885), + [anon_sym_SEMI] = ACTIONS(4885), + [anon_sym_LF] = ACTIONS(4885), + [anon_sym_AMP] = ACTIONS(4885), }, [3358] = { [sym_concatenation] = STATE(451), @@ -84905,57 +85264,57 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7570), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7644), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3359] = { - [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_file_descriptor] = ACTIONS(4889), + [sym__concat] = ACTIONS(4889), + [sym_variable_name] = ACTIONS(4889), + [anon_sym_PIPE] = ACTIONS(4891), + [anon_sym_RPAREN] = ACTIONS(4891), + [anon_sym_SEMI_SEMI] = ACTIONS(4891), + [anon_sym_PIPE_AMP] = ACTIONS(4891), + [anon_sym_AMP_AMP] = ACTIONS(4891), + [anon_sym_PIPE_PIPE] = ACTIONS(4891), + [anon_sym_LT] = ACTIONS(4891), + [anon_sym_GT] = ACTIONS(4891), + [anon_sym_GT_GT] = ACTIONS(4891), + [anon_sym_AMP_GT] = ACTIONS(4891), + [anon_sym_AMP_GT_GT] = ACTIONS(4891), + [anon_sym_LT_AMP] = ACTIONS(4891), + [anon_sym_GT_AMP] = ACTIONS(4891), + [sym__special_characters] = ACTIONS(4891), + [anon_sym_DQUOTE] = ACTIONS(4891), + [anon_sym_DOLLAR] = ACTIONS(4891), + [sym_raw_string] = ACTIONS(4891), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4891), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4891), + [anon_sym_BQUOTE] = ACTIONS(4891), + [anon_sym_LT_LPAREN] = ACTIONS(4891), + [anon_sym_GT_LPAREN] = ACTIONS(4891), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4829), - [anon_sym_SEMI] = ACTIONS(4829), - [anon_sym_LF] = ACTIONS(4829), - [anon_sym_AMP] = ACTIONS(4829), + [sym_word] = ACTIONS(4891), + [anon_sym_SEMI] = ACTIONS(4891), + [anon_sym_LF] = ACTIONS(4891), + [anon_sym_AMP] = ACTIONS(4891), }, [3360] = { [sym_concatenation] = STATE(451), @@ -84966,65 +85325,65 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7572), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7646), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3361] = { - [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__concat] = ACTIONS(1886), + [anon_sym_PIPE] = ACTIONS(1888), + [anon_sym_RPAREN] = ACTIONS(1888), + [anon_sym_SEMI_SEMI] = ACTIONS(1888), + [anon_sym_PIPE_AMP] = ACTIONS(1888), + [anon_sym_AMP_AMP] = ACTIONS(1888), + [anon_sym_PIPE_PIPE] = ACTIONS(1888), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1860), - [anon_sym_LF] = ACTIONS(1860), - [anon_sym_AMP] = ACTIONS(1860), + [anon_sym_SEMI] = ACTIONS(1888), + [anon_sym_LF] = ACTIONS(1888), + [anon_sym_AMP] = ACTIONS(1888), }, [3362] = { [aux_sym_concatenation_repeat1] = STATE(3362), - [sym__concat] = ACTIONS(7574), - [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__concat] = ACTIONS(7648), + [anon_sym_PIPE] = ACTIONS(1888), + [anon_sym_RPAREN] = ACTIONS(1888), + [anon_sym_SEMI_SEMI] = ACTIONS(1888), + [anon_sym_PIPE_AMP] = ACTIONS(1888), + [anon_sym_AMP_AMP] = ACTIONS(1888), + [anon_sym_PIPE_PIPE] = ACTIONS(1888), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1860), - [anon_sym_LF] = ACTIONS(1860), - [anon_sym_AMP] = ACTIONS(1860), + [anon_sym_SEMI] = ACTIONS(1888), + [anon_sym_LF] = ACTIONS(1888), + [anon_sym_AMP] = ACTIONS(1888), }, [3363] = { - [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__concat] = ACTIONS(1923), + [anon_sym_PIPE] = ACTIONS(1925), + [anon_sym_RPAREN] = ACTIONS(1925), + [anon_sym_SEMI_SEMI] = ACTIONS(1925), + [anon_sym_PIPE_AMP] = ACTIONS(1925), + [anon_sym_AMP_AMP] = ACTIONS(1925), + [anon_sym_PIPE_PIPE] = ACTIONS(1925), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1897), - [anon_sym_LF] = ACTIONS(1897), - [anon_sym_AMP] = ACTIONS(1897), + [anon_sym_SEMI] = ACTIONS(1925), + [anon_sym_LF] = ACTIONS(1925), + [anon_sym_AMP] = ACTIONS(1925), }, [3364] = { [sym_concatenation] = STATE(3841), @@ -85034,35 +85393,35 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(3840), [sym_command_substitution] = STATE(3840), [sym_process_substitution] = STATE(3840), - [anon_sym_RBRACE] = ACTIONS(7577), - [sym__special_characters] = ACTIONS(7579), - [anon_sym_DQUOTE] = ACTIONS(1924), - [anon_sym_DOLLAR] = ACTIONS(1926), - [sym_raw_string] = ACTIONS(7581), - [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), + [anon_sym_RBRACE] = ACTIONS(7651), + [sym__special_characters] = ACTIONS(7653), + [anon_sym_DQUOTE] = ACTIONS(1952), + [anon_sym_DOLLAR] = ACTIONS(1954), + [sym_raw_string] = ACTIONS(7655), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), + [anon_sym_BQUOTE] = ACTIONS(1962), + [anon_sym_LT_LPAREN] = ACTIONS(1964), + [anon_sym_GT_LPAREN] = ACTIONS(1964), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7583), + [sym_word] = ACTIONS(7657), }, [3365] = { - [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__concat] = ACTIONS(1968), + [anon_sym_PIPE] = ACTIONS(1970), + [anon_sym_RPAREN] = ACTIONS(1970), + [anon_sym_SEMI_SEMI] = ACTIONS(1970), + [anon_sym_PIPE_AMP] = ACTIONS(1970), + [anon_sym_AMP_AMP] = ACTIONS(1970), + [anon_sym_PIPE_PIPE] = ACTIONS(1970), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1942), - [anon_sym_LF] = ACTIONS(1942), - [anon_sym_AMP] = ACTIONS(1942), + [anon_sym_SEMI] = ACTIONS(1970), + [anon_sym_LF] = ACTIONS(1970), + [anon_sym_AMP] = ACTIONS(1970), }, [3366] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(7585), + [sym_regex_without_right_brace] = ACTIONS(7659), }, [3367] = { [sym_concatenation] = STATE(451), @@ -85073,29 +85432,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7587), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7661), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3368] = { - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(7589), + [anon_sym_LBRACK] = ACTIONS(836), + [anon_sym_EQ] = ACTIONS(7663), [sym_comment] = ACTIONS(56), }, [3369] = { @@ -85107,26 +85466,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3847), - [anon_sym_RBRACE] = ACTIONS(7591), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_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(7593), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7665), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(7667), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3370] = { [sym_concatenation] = STATE(451), @@ -85137,26 +85496,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3850), - [anon_sym_RBRACE] = ACTIONS(7595), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_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(7597), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7669), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(7671), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3371] = { [sym_concatenation] = STATE(451), @@ -85167,43 +85526,43 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3852), - [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), - [aux_sym_SLASH] = ACTIONS(7599), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7651), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(7673), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3372] = { - [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__concat] = ACTIONS(2022), + [anon_sym_PIPE] = ACTIONS(2024), + [anon_sym_RPAREN] = ACTIONS(2024), + [anon_sym_SEMI_SEMI] = ACTIONS(2024), + [anon_sym_PIPE_AMP] = ACTIONS(2024), + [anon_sym_AMP_AMP] = ACTIONS(2024), + [anon_sym_PIPE_PIPE] = ACTIONS(2024), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1994), - [anon_sym_LF] = ACTIONS(1994), - [anon_sym_AMP] = ACTIONS(1994), + [anon_sym_SEMI] = ACTIONS(2024), + [anon_sym_LF] = ACTIONS(2024), + [anon_sym_AMP] = ACTIONS(2024), }, [3373] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(7601), + [sym_regex_without_right_brace] = ACTIONS(7675), }, [3374] = { [sym_concatenation] = STATE(451), @@ -85214,42 +85573,42 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7603), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7677), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3375] = { - [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__concat] = ACTIONS(2030), + [anon_sym_PIPE] = ACTIONS(2032), + [anon_sym_RPAREN] = ACTIONS(2032), + [anon_sym_SEMI_SEMI] = ACTIONS(2032), + [anon_sym_PIPE_AMP] = ACTIONS(2032), + [anon_sym_AMP_AMP] = ACTIONS(2032), + [anon_sym_PIPE_PIPE] = ACTIONS(2032), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2002), - [anon_sym_LF] = ACTIONS(2002), - [anon_sym_AMP] = ACTIONS(2002), + [anon_sym_SEMI] = ACTIONS(2032), + [anon_sym_LF] = ACTIONS(2032), + [anon_sym_AMP] = ACTIONS(2032), }, [3376] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(7605), + [sym_regex_without_right_brace] = ACTIONS(7679), }, [3377] = { [sym_concatenation] = STATE(451), @@ -85260,151 +85619,151 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(7651), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3378] = { - [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__concat] = ACTIONS(2190), + [anon_sym_PIPE] = ACTIONS(2192), + [anon_sym_RPAREN] = ACTIONS(2192), + [anon_sym_SEMI_SEMI] = ACTIONS(2192), + [anon_sym_PIPE_AMP] = ACTIONS(2192), + [anon_sym_AMP_AMP] = ACTIONS(2192), + [anon_sym_PIPE_PIPE] = ACTIONS(2192), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2158), - [anon_sym_LF] = ACTIONS(2158), - [anon_sym_AMP] = ACTIONS(2158), + [anon_sym_SEMI] = ACTIONS(2192), + [anon_sym_LF] = ACTIONS(2192), + [anon_sym_AMP] = ACTIONS(2192), }, [3379] = { - [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__concat] = ACTIONS(2396), + [anon_sym_PIPE] = ACTIONS(2398), + [anon_sym_RPAREN] = ACTIONS(2398), + [anon_sym_SEMI_SEMI] = ACTIONS(2398), + [anon_sym_PIPE_AMP] = ACTIONS(2398), + [anon_sym_AMP_AMP] = ACTIONS(2398), + [anon_sym_PIPE_PIPE] = ACTIONS(2398), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2360), - [anon_sym_LF] = ACTIONS(2360), - [anon_sym_AMP] = ACTIONS(2360), + [anon_sym_SEMI] = ACTIONS(2398), + [anon_sym_LF] = ACTIONS(2398), + [anon_sym_AMP] = ACTIONS(2398), }, [3380] = { - [sym__concat] = ACTIONS(5961), - [sym_variable_name] = ACTIONS(5961), - [anon_sym_PIPE] = ACTIONS(5963), - [anon_sym_RPAREN] = ACTIONS(5963), - [anon_sym_SEMI_SEMI] = ACTIONS(5963), - [anon_sym_PIPE_AMP] = ACTIONS(5963), - [anon_sym_AMP_AMP] = ACTIONS(5963), - [anon_sym_PIPE_PIPE] = ACTIONS(5963), - [sym__special_characters] = ACTIONS(5963), - [anon_sym_DQUOTE] = ACTIONS(5963), - [anon_sym_DOLLAR] = ACTIONS(5963), - [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__concat] = ACTIONS(6025), + [sym_variable_name] = ACTIONS(6025), + [anon_sym_PIPE] = ACTIONS(6027), + [anon_sym_RPAREN] = ACTIONS(6027), + [anon_sym_SEMI_SEMI] = ACTIONS(6027), + [anon_sym_PIPE_AMP] = ACTIONS(6027), + [anon_sym_AMP_AMP] = ACTIONS(6027), + [anon_sym_PIPE_PIPE] = ACTIONS(6027), + [sym__special_characters] = ACTIONS(6027), + [anon_sym_DQUOTE] = ACTIONS(6027), + [anon_sym_DOLLAR] = ACTIONS(6027), + [sym_raw_string] = ACTIONS(6027), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6027), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6027), + [anon_sym_BQUOTE] = ACTIONS(6027), + [anon_sym_LT_LPAREN] = ACTIONS(6027), + [anon_sym_GT_LPAREN] = ACTIONS(6027), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5963), - [sym_word] = ACTIONS(5963), - [anon_sym_SEMI] = ACTIONS(5963), - [anon_sym_LF] = ACTIONS(5963), - [anon_sym_AMP] = ACTIONS(5963), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6027), + [sym_word] = ACTIONS(6027), + [anon_sym_SEMI] = ACTIONS(6027), + [anon_sym_LF] = ACTIONS(6027), + [anon_sym_AMP] = ACTIONS(6027), }, [3381] = { - [sym__concat] = ACTIONS(5965), - [sym_variable_name] = ACTIONS(5965), - [anon_sym_PIPE] = ACTIONS(5967), - [anon_sym_RPAREN] = ACTIONS(5967), - [anon_sym_SEMI_SEMI] = ACTIONS(5967), - [anon_sym_PIPE_AMP] = ACTIONS(5967), - [anon_sym_AMP_AMP] = ACTIONS(5967), - [anon_sym_PIPE_PIPE] = ACTIONS(5967), - [sym__special_characters] = ACTIONS(5967), - [anon_sym_DQUOTE] = ACTIONS(5967), - [anon_sym_DOLLAR] = ACTIONS(5967), - [sym_raw_string] = ACTIONS(5967), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5967), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5967), - [anon_sym_BQUOTE] = ACTIONS(5967), - [anon_sym_LT_LPAREN] = ACTIONS(5967), - [anon_sym_GT_LPAREN] = ACTIONS(5967), + [sym__concat] = ACTIONS(6029), + [sym_variable_name] = ACTIONS(6029), + [anon_sym_PIPE] = ACTIONS(6031), + [anon_sym_RPAREN] = ACTIONS(6031), + [anon_sym_SEMI_SEMI] = ACTIONS(6031), + [anon_sym_PIPE_AMP] = ACTIONS(6031), + [anon_sym_AMP_AMP] = ACTIONS(6031), + [anon_sym_PIPE_PIPE] = ACTIONS(6031), + [sym__special_characters] = ACTIONS(6031), + [anon_sym_DQUOTE] = ACTIONS(6031), + [anon_sym_DOLLAR] = ACTIONS(6031), + [sym_raw_string] = ACTIONS(6031), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6031), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6031), + [anon_sym_BQUOTE] = ACTIONS(6031), + [anon_sym_LT_LPAREN] = ACTIONS(6031), + [anon_sym_GT_LPAREN] = ACTIONS(6031), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5967), - [sym_word] = ACTIONS(5967), - [anon_sym_SEMI] = ACTIONS(5967), - [anon_sym_LF] = ACTIONS(5967), - [anon_sym_AMP] = ACTIONS(5967), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6031), + [sym_word] = ACTIONS(6031), + [anon_sym_SEMI] = ACTIONS(6031), + [anon_sym_LF] = ACTIONS(6031), + [anon_sym_AMP] = ACTIONS(6031), }, [3382] = { - [sym__concat] = ACTIONS(5969), - [sym_variable_name] = ACTIONS(5969), - [anon_sym_PIPE] = ACTIONS(5971), - [anon_sym_RPAREN] = ACTIONS(5971), - [anon_sym_SEMI_SEMI] = ACTIONS(5971), - [anon_sym_PIPE_AMP] = ACTIONS(5971), - [anon_sym_AMP_AMP] = ACTIONS(5971), - [anon_sym_PIPE_PIPE] = ACTIONS(5971), - [sym__special_characters] = ACTIONS(5971), - [anon_sym_DQUOTE] = ACTIONS(5971), - [anon_sym_DOLLAR] = ACTIONS(5971), - [sym_raw_string] = ACTIONS(5971), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5971), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5971), - [anon_sym_BQUOTE] = ACTIONS(5971), - [anon_sym_LT_LPAREN] = ACTIONS(5971), - [anon_sym_GT_LPAREN] = ACTIONS(5971), + [sym__concat] = ACTIONS(6033), + [sym_variable_name] = ACTIONS(6033), + [anon_sym_PIPE] = ACTIONS(6035), + [anon_sym_RPAREN] = ACTIONS(6035), + [anon_sym_SEMI_SEMI] = ACTIONS(6035), + [anon_sym_PIPE_AMP] = ACTIONS(6035), + [anon_sym_AMP_AMP] = ACTIONS(6035), + [anon_sym_PIPE_PIPE] = ACTIONS(6035), + [sym__special_characters] = ACTIONS(6035), + [anon_sym_DQUOTE] = ACTIONS(6035), + [anon_sym_DOLLAR] = ACTIONS(6035), + [sym_raw_string] = ACTIONS(6035), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6035), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6035), + [anon_sym_BQUOTE] = ACTIONS(6035), + [anon_sym_LT_LPAREN] = ACTIONS(6035), + [anon_sym_GT_LPAREN] = ACTIONS(6035), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5971), - [sym_word] = ACTIONS(5971), - [anon_sym_SEMI] = ACTIONS(5971), - [anon_sym_LF] = ACTIONS(5971), - [anon_sym_AMP] = ACTIONS(5971), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6035), + [sym_word] = ACTIONS(6035), + [anon_sym_SEMI] = ACTIONS(6035), + [anon_sym_LF] = ACTIONS(6035), + [anon_sym_AMP] = ACTIONS(6035), }, [3383] = { - [sym__concat] = ACTIONS(5973), - [sym_variable_name] = ACTIONS(5973), - [anon_sym_PIPE] = ACTIONS(5975), - [anon_sym_RPAREN] = ACTIONS(5975), - [anon_sym_SEMI_SEMI] = ACTIONS(5975), - [anon_sym_PIPE_AMP] = ACTIONS(5975), - [anon_sym_AMP_AMP] = ACTIONS(5975), - [anon_sym_PIPE_PIPE] = ACTIONS(5975), - [sym__special_characters] = ACTIONS(5975), - [anon_sym_DQUOTE] = ACTIONS(5975), - [anon_sym_DOLLAR] = ACTIONS(5975), - [sym_raw_string] = ACTIONS(5975), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5975), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5975), - [anon_sym_BQUOTE] = ACTIONS(5975), - [anon_sym_LT_LPAREN] = ACTIONS(5975), - [anon_sym_GT_LPAREN] = ACTIONS(5975), + [sym__concat] = ACTIONS(6037), + [sym_variable_name] = ACTIONS(6037), + [anon_sym_PIPE] = ACTIONS(6039), + [anon_sym_RPAREN] = ACTIONS(6039), + [anon_sym_SEMI_SEMI] = ACTIONS(6039), + [anon_sym_PIPE_AMP] = ACTIONS(6039), + [anon_sym_AMP_AMP] = ACTIONS(6039), + [anon_sym_PIPE_PIPE] = ACTIONS(6039), + [sym__special_characters] = ACTIONS(6039), + [anon_sym_DQUOTE] = ACTIONS(6039), + [anon_sym_DOLLAR] = ACTIONS(6039), + [sym_raw_string] = ACTIONS(6039), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6039), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6039), + [anon_sym_BQUOTE] = ACTIONS(6039), + [anon_sym_LT_LPAREN] = ACTIONS(6039), + [anon_sym_GT_LPAREN] = ACTIONS(6039), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5975), - [sym_word] = ACTIONS(5975), - [anon_sym_SEMI] = ACTIONS(5975), - [anon_sym_LF] = ACTIONS(5975), - [anon_sym_AMP] = ACTIONS(5975), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6039), + [sym_word] = ACTIONS(6039), + [anon_sym_SEMI] = ACTIONS(6039), + [anon_sym_LF] = ACTIONS(6039), + [anon_sym_AMP] = ACTIONS(6039), }, [3384] = { [sym_concatenation] = STATE(451), @@ -85415,50 +85774,50 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [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), + [anon_sym_RBRACE] = ACTIONS(7681), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3385] = { - [sym__concat] = ACTIONS(5979), - [sym_variable_name] = ACTIONS(5979), - [anon_sym_PIPE] = ACTIONS(5981), - [anon_sym_RPAREN] = ACTIONS(5981), - [anon_sym_SEMI_SEMI] = ACTIONS(5981), - [anon_sym_PIPE_AMP] = ACTIONS(5981), - [anon_sym_AMP_AMP] = ACTIONS(5981), - [anon_sym_PIPE_PIPE] = ACTIONS(5981), - [sym__special_characters] = ACTIONS(5981), - [anon_sym_DQUOTE] = ACTIONS(5981), - [anon_sym_DOLLAR] = ACTIONS(5981), - [sym_raw_string] = ACTIONS(5981), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5981), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5981), - [anon_sym_BQUOTE] = ACTIONS(5981), - [anon_sym_LT_LPAREN] = ACTIONS(5981), - [anon_sym_GT_LPAREN] = ACTIONS(5981), + [sym__concat] = ACTIONS(6043), + [sym_variable_name] = ACTIONS(6043), + [anon_sym_PIPE] = ACTIONS(6045), + [anon_sym_RPAREN] = ACTIONS(6045), + [anon_sym_SEMI_SEMI] = ACTIONS(6045), + [anon_sym_PIPE_AMP] = ACTIONS(6045), + [anon_sym_AMP_AMP] = ACTIONS(6045), + [anon_sym_PIPE_PIPE] = ACTIONS(6045), + [sym__special_characters] = ACTIONS(6045), + [anon_sym_DQUOTE] = ACTIONS(6045), + [anon_sym_DOLLAR] = ACTIONS(6045), + [sym_raw_string] = ACTIONS(6045), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6045), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6045), + [anon_sym_BQUOTE] = ACTIONS(6045), + [anon_sym_LT_LPAREN] = ACTIONS(6045), + [anon_sym_GT_LPAREN] = ACTIONS(6045), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5981), - [sym_word] = ACTIONS(5981), - [anon_sym_SEMI] = ACTIONS(5981), - [anon_sym_LF] = ACTIONS(5981), - [anon_sym_AMP] = ACTIONS(5981), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6045), + [sym_word] = ACTIONS(6045), + [anon_sym_SEMI] = ACTIONS(6045), + [anon_sym_LF] = ACTIONS(6045), + [anon_sym_AMP] = ACTIONS(6045), }, [3386] = { [sym_concatenation] = STATE(451), @@ -85469,50 +85828,50 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [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), + [anon_sym_RBRACE] = ACTIONS(7683), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3387] = { - [sym__concat] = ACTIONS(5985), - [sym_variable_name] = ACTIONS(5985), - [anon_sym_PIPE] = ACTIONS(5987), - [anon_sym_RPAREN] = ACTIONS(5987), - [anon_sym_SEMI_SEMI] = ACTIONS(5987), - [anon_sym_PIPE_AMP] = ACTIONS(5987), - [anon_sym_AMP_AMP] = ACTIONS(5987), - [anon_sym_PIPE_PIPE] = ACTIONS(5987), - [sym__special_characters] = ACTIONS(5987), - [anon_sym_DQUOTE] = ACTIONS(5987), - [anon_sym_DOLLAR] = ACTIONS(5987), - [sym_raw_string] = ACTIONS(5987), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5987), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5987), - [anon_sym_BQUOTE] = ACTIONS(5987), - [anon_sym_LT_LPAREN] = ACTIONS(5987), - [anon_sym_GT_LPAREN] = ACTIONS(5987), + [sym__concat] = ACTIONS(6049), + [sym_variable_name] = ACTIONS(6049), + [anon_sym_PIPE] = ACTIONS(6051), + [anon_sym_RPAREN] = ACTIONS(6051), + [anon_sym_SEMI_SEMI] = ACTIONS(6051), + [anon_sym_PIPE_AMP] = ACTIONS(6051), + [anon_sym_AMP_AMP] = ACTIONS(6051), + [anon_sym_PIPE_PIPE] = ACTIONS(6051), + [sym__special_characters] = ACTIONS(6051), + [anon_sym_DQUOTE] = ACTIONS(6051), + [anon_sym_DOLLAR] = ACTIONS(6051), + [sym_raw_string] = ACTIONS(6051), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6051), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6051), + [anon_sym_BQUOTE] = ACTIONS(6051), + [anon_sym_LT_LPAREN] = ACTIONS(6051), + [anon_sym_GT_LPAREN] = ACTIONS(6051), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5987), - [sym_word] = ACTIONS(5987), - [anon_sym_SEMI] = ACTIONS(5987), - [anon_sym_LF] = ACTIONS(5987), - [anon_sym_AMP] = ACTIONS(5987), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6051), + [sym_word] = ACTIONS(6051), + [anon_sym_SEMI] = ACTIONS(6051), + [anon_sym_LF] = ACTIONS(6051), + [anon_sym_AMP] = ACTIONS(6051), }, [3388] = { [sym_concatenation] = STATE(451), @@ -85523,171 +85882,171 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [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), + [anon_sym_RBRACE] = ACTIONS(7685), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3389] = { - [sym__concat] = ACTIONS(5991), - [sym_variable_name] = ACTIONS(5991), - [anon_sym_PIPE] = ACTIONS(5993), - [anon_sym_RPAREN] = ACTIONS(5993), - [anon_sym_SEMI_SEMI] = ACTIONS(5993), - [anon_sym_PIPE_AMP] = ACTIONS(5993), - [anon_sym_AMP_AMP] = ACTIONS(5993), - [anon_sym_PIPE_PIPE] = ACTIONS(5993), - [sym__special_characters] = ACTIONS(5993), - [anon_sym_DQUOTE] = ACTIONS(5993), - [anon_sym_DOLLAR] = ACTIONS(5993), - [sym_raw_string] = ACTIONS(5993), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5993), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5993), - [anon_sym_BQUOTE] = ACTIONS(5993), - [anon_sym_LT_LPAREN] = ACTIONS(5993), - [anon_sym_GT_LPAREN] = ACTIONS(5993), + [sym__concat] = ACTIONS(6055), + [sym_variable_name] = ACTIONS(6055), + [anon_sym_PIPE] = ACTIONS(6057), + [anon_sym_RPAREN] = ACTIONS(6057), + [anon_sym_SEMI_SEMI] = ACTIONS(6057), + [anon_sym_PIPE_AMP] = ACTIONS(6057), + [anon_sym_AMP_AMP] = ACTIONS(6057), + [anon_sym_PIPE_PIPE] = ACTIONS(6057), + [sym__special_characters] = ACTIONS(6057), + [anon_sym_DQUOTE] = ACTIONS(6057), + [anon_sym_DOLLAR] = ACTIONS(6057), + [sym_raw_string] = ACTIONS(6057), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6057), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6057), + [anon_sym_BQUOTE] = ACTIONS(6057), + [anon_sym_LT_LPAREN] = ACTIONS(6057), + [anon_sym_GT_LPAREN] = ACTIONS(6057), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5993), - [sym_word] = ACTIONS(5993), - [anon_sym_SEMI] = ACTIONS(5993), - [anon_sym_LF] = ACTIONS(5993), - [anon_sym_AMP] = ACTIONS(5993), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6057), + [sym_word] = ACTIONS(6057), + [anon_sym_SEMI] = ACTIONS(6057), + [anon_sym_LF] = ACTIONS(6057), + [anon_sym_AMP] = ACTIONS(6057), }, [3390] = { - [sym__concat] = ACTIONS(5995), - [sym_variable_name] = ACTIONS(5995), - [anon_sym_PIPE] = ACTIONS(5997), - [anon_sym_RPAREN] = ACTIONS(5997), - [anon_sym_SEMI_SEMI] = ACTIONS(5997), - [anon_sym_PIPE_AMP] = ACTIONS(5997), - [anon_sym_AMP_AMP] = ACTIONS(5997), - [anon_sym_PIPE_PIPE] = ACTIONS(5997), - [sym__special_characters] = ACTIONS(5997), - [anon_sym_DQUOTE] = ACTIONS(5997), - [anon_sym_DOLLAR] = ACTIONS(5997), - [sym_raw_string] = ACTIONS(5997), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5997), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5997), - [anon_sym_BQUOTE] = ACTIONS(5997), - [anon_sym_LT_LPAREN] = ACTIONS(5997), - [anon_sym_GT_LPAREN] = ACTIONS(5997), + [sym__concat] = ACTIONS(6059), + [sym_variable_name] = ACTIONS(6059), + [anon_sym_PIPE] = ACTIONS(6061), + [anon_sym_RPAREN] = ACTIONS(6061), + [anon_sym_SEMI_SEMI] = ACTIONS(6061), + [anon_sym_PIPE_AMP] = ACTIONS(6061), + [anon_sym_AMP_AMP] = ACTIONS(6061), + [anon_sym_PIPE_PIPE] = ACTIONS(6061), + [sym__special_characters] = ACTIONS(6061), + [anon_sym_DQUOTE] = ACTIONS(6061), + [anon_sym_DOLLAR] = ACTIONS(6061), + [sym_raw_string] = ACTIONS(6061), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6061), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6061), + [anon_sym_BQUOTE] = ACTIONS(6061), + [anon_sym_LT_LPAREN] = ACTIONS(6061), + [anon_sym_GT_LPAREN] = ACTIONS(6061), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5997), - [sym_word] = ACTIONS(5997), - [anon_sym_SEMI] = ACTIONS(5997), - [anon_sym_LF] = ACTIONS(5997), - [anon_sym_AMP] = ACTIONS(5997), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6061), + [sym_word] = ACTIONS(6061), + [anon_sym_SEMI] = ACTIONS(6061), + [anon_sym_LF] = ACTIONS(6061), + [anon_sym_AMP] = ACTIONS(6061), }, [3391] = { - [sym__concat] = ACTIONS(5961), - [anon_sym_PIPE] = ACTIONS(5963), - [anon_sym_RPAREN] = ACTIONS(5963), - [anon_sym_SEMI_SEMI] = ACTIONS(5963), - [anon_sym_PIPE_AMP] = ACTIONS(5963), - [anon_sym_AMP_AMP] = ACTIONS(5963), - [anon_sym_PIPE_PIPE] = ACTIONS(5963), - [sym__special_characters] = ACTIONS(5963), - [anon_sym_DQUOTE] = ACTIONS(5963), - [anon_sym_DOLLAR] = ACTIONS(5963), - [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__concat] = ACTIONS(6025), + [anon_sym_PIPE] = ACTIONS(6027), + [anon_sym_RPAREN] = ACTIONS(6027), + [anon_sym_SEMI_SEMI] = ACTIONS(6027), + [anon_sym_PIPE_AMP] = ACTIONS(6027), + [anon_sym_AMP_AMP] = ACTIONS(6027), + [anon_sym_PIPE_PIPE] = ACTIONS(6027), + [sym__special_characters] = ACTIONS(6027), + [anon_sym_DQUOTE] = ACTIONS(6027), + [anon_sym_DOLLAR] = ACTIONS(6027), + [sym_raw_string] = ACTIONS(6027), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6027), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6027), + [anon_sym_BQUOTE] = ACTIONS(6027), + [anon_sym_LT_LPAREN] = ACTIONS(6027), + [anon_sym_GT_LPAREN] = ACTIONS(6027), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5963), - [sym_word] = ACTIONS(5963), - [anon_sym_SEMI] = ACTIONS(5963), - [anon_sym_LF] = ACTIONS(5963), - [anon_sym_AMP] = ACTIONS(5963), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6027), + [sym_word] = ACTIONS(6027), + [anon_sym_SEMI] = ACTIONS(6027), + [anon_sym_LF] = ACTIONS(6027), + [anon_sym_AMP] = ACTIONS(6027), }, [3392] = { - [sym__concat] = ACTIONS(5965), - [anon_sym_PIPE] = ACTIONS(5967), - [anon_sym_RPAREN] = ACTIONS(5967), - [anon_sym_SEMI_SEMI] = ACTIONS(5967), - [anon_sym_PIPE_AMP] = ACTIONS(5967), - [anon_sym_AMP_AMP] = ACTIONS(5967), - [anon_sym_PIPE_PIPE] = ACTIONS(5967), - [sym__special_characters] = ACTIONS(5967), - [anon_sym_DQUOTE] = ACTIONS(5967), - [anon_sym_DOLLAR] = ACTIONS(5967), - [sym_raw_string] = ACTIONS(5967), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5967), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5967), - [anon_sym_BQUOTE] = ACTIONS(5967), - [anon_sym_LT_LPAREN] = ACTIONS(5967), - [anon_sym_GT_LPAREN] = ACTIONS(5967), + [sym__concat] = ACTIONS(6029), + [anon_sym_PIPE] = ACTIONS(6031), + [anon_sym_RPAREN] = ACTIONS(6031), + [anon_sym_SEMI_SEMI] = ACTIONS(6031), + [anon_sym_PIPE_AMP] = ACTIONS(6031), + [anon_sym_AMP_AMP] = ACTIONS(6031), + [anon_sym_PIPE_PIPE] = ACTIONS(6031), + [sym__special_characters] = ACTIONS(6031), + [anon_sym_DQUOTE] = ACTIONS(6031), + [anon_sym_DOLLAR] = ACTIONS(6031), + [sym_raw_string] = ACTIONS(6031), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6031), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6031), + [anon_sym_BQUOTE] = ACTIONS(6031), + [anon_sym_LT_LPAREN] = ACTIONS(6031), + [anon_sym_GT_LPAREN] = ACTIONS(6031), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5967), - [sym_word] = ACTIONS(5967), - [anon_sym_SEMI] = ACTIONS(5967), - [anon_sym_LF] = ACTIONS(5967), - [anon_sym_AMP] = ACTIONS(5967), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6031), + [sym_word] = ACTIONS(6031), + [anon_sym_SEMI] = ACTIONS(6031), + [anon_sym_LF] = ACTIONS(6031), + [anon_sym_AMP] = ACTIONS(6031), }, [3393] = { - [sym__concat] = ACTIONS(5969), - [anon_sym_PIPE] = ACTIONS(5971), - [anon_sym_RPAREN] = ACTIONS(5971), - [anon_sym_SEMI_SEMI] = ACTIONS(5971), - [anon_sym_PIPE_AMP] = ACTIONS(5971), - [anon_sym_AMP_AMP] = ACTIONS(5971), - [anon_sym_PIPE_PIPE] = ACTIONS(5971), - [sym__special_characters] = ACTIONS(5971), - [anon_sym_DQUOTE] = ACTIONS(5971), - [anon_sym_DOLLAR] = ACTIONS(5971), - [sym_raw_string] = ACTIONS(5971), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5971), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5971), - [anon_sym_BQUOTE] = ACTIONS(5971), - [anon_sym_LT_LPAREN] = ACTIONS(5971), - [anon_sym_GT_LPAREN] = ACTIONS(5971), + [sym__concat] = ACTIONS(6033), + [anon_sym_PIPE] = ACTIONS(6035), + [anon_sym_RPAREN] = ACTIONS(6035), + [anon_sym_SEMI_SEMI] = ACTIONS(6035), + [anon_sym_PIPE_AMP] = ACTIONS(6035), + [anon_sym_AMP_AMP] = ACTIONS(6035), + [anon_sym_PIPE_PIPE] = ACTIONS(6035), + [sym__special_characters] = ACTIONS(6035), + [anon_sym_DQUOTE] = ACTIONS(6035), + [anon_sym_DOLLAR] = ACTIONS(6035), + [sym_raw_string] = ACTIONS(6035), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6035), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6035), + [anon_sym_BQUOTE] = ACTIONS(6035), + [anon_sym_LT_LPAREN] = ACTIONS(6035), + [anon_sym_GT_LPAREN] = ACTIONS(6035), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5971), - [sym_word] = ACTIONS(5971), - [anon_sym_SEMI] = ACTIONS(5971), - [anon_sym_LF] = ACTIONS(5971), - [anon_sym_AMP] = ACTIONS(5971), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6035), + [sym_word] = ACTIONS(6035), + [anon_sym_SEMI] = ACTIONS(6035), + [anon_sym_LF] = ACTIONS(6035), + [anon_sym_AMP] = ACTIONS(6035), }, [3394] = { - [sym__concat] = ACTIONS(5973), - [anon_sym_PIPE] = ACTIONS(5975), - [anon_sym_RPAREN] = ACTIONS(5975), - [anon_sym_SEMI_SEMI] = ACTIONS(5975), - [anon_sym_PIPE_AMP] = ACTIONS(5975), - [anon_sym_AMP_AMP] = ACTIONS(5975), - [anon_sym_PIPE_PIPE] = ACTIONS(5975), - [sym__special_characters] = ACTIONS(5975), - [anon_sym_DQUOTE] = ACTIONS(5975), - [anon_sym_DOLLAR] = ACTIONS(5975), - [sym_raw_string] = ACTIONS(5975), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5975), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5975), - [anon_sym_BQUOTE] = ACTIONS(5975), - [anon_sym_LT_LPAREN] = ACTIONS(5975), - [anon_sym_GT_LPAREN] = ACTIONS(5975), + [sym__concat] = ACTIONS(6037), + [anon_sym_PIPE] = ACTIONS(6039), + [anon_sym_RPAREN] = ACTIONS(6039), + [anon_sym_SEMI_SEMI] = ACTIONS(6039), + [anon_sym_PIPE_AMP] = ACTIONS(6039), + [anon_sym_AMP_AMP] = ACTIONS(6039), + [anon_sym_PIPE_PIPE] = ACTIONS(6039), + [sym__special_characters] = ACTIONS(6039), + [anon_sym_DQUOTE] = ACTIONS(6039), + [anon_sym_DOLLAR] = ACTIONS(6039), + [sym_raw_string] = ACTIONS(6039), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6039), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6039), + [anon_sym_BQUOTE] = ACTIONS(6039), + [anon_sym_LT_LPAREN] = ACTIONS(6039), + [anon_sym_GT_LPAREN] = ACTIONS(6039), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5975), - [sym_word] = ACTIONS(5975), - [anon_sym_SEMI] = ACTIONS(5975), - [anon_sym_LF] = ACTIONS(5975), - [anon_sym_AMP] = ACTIONS(5975), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6039), + [sym_word] = ACTIONS(6039), + [anon_sym_SEMI] = ACTIONS(6039), + [anon_sym_LF] = ACTIONS(6039), + [anon_sym_AMP] = ACTIONS(6039), }, [3395] = { [sym_concatenation] = STATE(451), @@ -85698,49 +86057,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(7687), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3396] = { - [sym__concat] = ACTIONS(5979), - [anon_sym_PIPE] = ACTIONS(5981), - [anon_sym_RPAREN] = ACTIONS(5981), - [anon_sym_SEMI_SEMI] = ACTIONS(5981), - [anon_sym_PIPE_AMP] = ACTIONS(5981), - [anon_sym_AMP_AMP] = ACTIONS(5981), - [anon_sym_PIPE_PIPE] = ACTIONS(5981), - [sym__special_characters] = ACTIONS(5981), - [anon_sym_DQUOTE] = ACTIONS(5981), - [anon_sym_DOLLAR] = ACTIONS(5981), - [sym_raw_string] = ACTIONS(5981), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5981), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5981), - [anon_sym_BQUOTE] = ACTIONS(5981), - [anon_sym_LT_LPAREN] = ACTIONS(5981), - [anon_sym_GT_LPAREN] = ACTIONS(5981), + [sym__concat] = ACTIONS(6043), + [anon_sym_PIPE] = ACTIONS(6045), + [anon_sym_RPAREN] = ACTIONS(6045), + [anon_sym_SEMI_SEMI] = ACTIONS(6045), + [anon_sym_PIPE_AMP] = ACTIONS(6045), + [anon_sym_AMP_AMP] = ACTIONS(6045), + [anon_sym_PIPE_PIPE] = ACTIONS(6045), + [sym__special_characters] = ACTIONS(6045), + [anon_sym_DQUOTE] = ACTIONS(6045), + [anon_sym_DOLLAR] = ACTIONS(6045), + [sym_raw_string] = ACTIONS(6045), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6045), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6045), + [anon_sym_BQUOTE] = ACTIONS(6045), + [anon_sym_LT_LPAREN] = ACTIONS(6045), + [anon_sym_GT_LPAREN] = ACTIONS(6045), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5981), - [sym_word] = ACTIONS(5981), - [anon_sym_SEMI] = ACTIONS(5981), - [anon_sym_LF] = ACTIONS(5981), - [anon_sym_AMP] = ACTIONS(5981), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6045), + [sym_word] = ACTIONS(6045), + [anon_sym_SEMI] = ACTIONS(6045), + [anon_sym_LF] = ACTIONS(6045), + [anon_sym_AMP] = ACTIONS(6045), }, [3397] = { [sym_concatenation] = STATE(451), @@ -85751,49 +86110,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(7689), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3398] = { - [sym__concat] = ACTIONS(5985), - [anon_sym_PIPE] = ACTIONS(5987), - [anon_sym_RPAREN] = ACTIONS(5987), - [anon_sym_SEMI_SEMI] = ACTIONS(5987), - [anon_sym_PIPE_AMP] = ACTIONS(5987), - [anon_sym_AMP_AMP] = ACTIONS(5987), - [anon_sym_PIPE_PIPE] = ACTIONS(5987), - [sym__special_characters] = ACTIONS(5987), - [anon_sym_DQUOTE] = ACTIONS(5987), - [anon_sym_DOLLAR] = ACTIONS(5987), - [sym_raw_string] = ACTIONS(5987), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5987), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5987), - [anon_sym_BQUOTE] = ACTIONS(5987), - [anon_sym_LT_LPAREN] = ACTIONS(5987), - [anon_sym_GT_LPAREN] = ACTIONS(5987), + [sym__concat] = ACTIONS(6049), + [anon_sym_PIPE] = ACTIONS(6051), + [anon_sym_RPAREN] = ACTIONS(6051), + [anon_sym_SEMI_SEMI] = ACTIONS(6051), + [anon_sym_PIPE_AMP] = ACTIONS(6051), + [anon_sym_AMP_AMP] = ACTIONS(6051), + [anon_sym_PIPE_PIPE] = ACTIONS(6051), + [sym__special_characters] = ACTIONS(6051), + [anon_sym_DQUOTE] = ACTIONS(6051), + [anon_sym_DOLLAR] = ACTIONS(6051), + [sym_raw_string] = ACTIONS(6051), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6051), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6051), + [anon_sym_BQUOTE] = ACTIONS(6051), + [anon_sym_LT_LPAREN] = ACTIONS(6051), + [anon_sym_GT_LPAREN] = ACTIONS(6051), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5987), - [sym_word] = ACTIONS(5987), - [anon_sym_SEMI] = ACTIONS(5987), - [anon_sym_LF] = ACTIONS(5987), - [anon_sym_AMP] = ACTIONS(5987), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6051), + [sym_word] = ACTIONS(6051), + [anon_sym_SEMI] = ACTIONS(6051), + [anon_sym_LF] = ACTIONS(6051), + [anon_sym_AMP] = ACTIONS(6051), }, [3399] = { [sym_concatenation] = STATE(451), @@ -85804,250 +86163,253 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7617), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7691), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3400] = { - [sym__concat] = ACTIONS(5991), - [anon_sym_PIPE] = ACTIONS(5993), - [anon_sym_RPAREN] = ACTIONS(5993), - [anon_sym_SEMI_SEMI] = ACTIONS(5993), - [anon_sym_PIPE_AMP] = ACTIONS(5993), - [anon_sym_AMP_AMP] = ACTIONS(5993), - [anon_sym_PIPE_PIPE] = ACTIONS(5993), - [sym__special_characters] = ACTIONS(5993), - [anon_sym_DQUOTE] = ACTIONS(5993), - [anon_sym_DOLLAR] = ACTIONS(5993), - [sym_raw_string] = ACTIONS(5993), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5993), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5993), - [anon_sym_BQUOTE] = ACTIONS(5993), - [anon_sym_LT_LPAREN] = ACTIONS(5993), - [anon_sym_GT_LPAREN] = ACTIONS(5993), + [sym__concat] = ACTIONS(6055), + [anon_sym_PIPE] = ACTIONS(6057), + [anon_sym_RPAREN] = ACTIONS(6057), + [anon_sym_SEMI_SEMI] = ACTIONS(6057), + [anon_sym_PIPE_AMP] = ACTIONS(6057), + [anon_sym_AMP_AMP] = ACTIONS(6057), + [anon_sym_PIPE_PIPE] = ACTIONS(6057), + [sym__special_characters] = ACTIONS(6057), + [anon_sym_DQUOTE] = ACTIONS(6057), + [anon_sym_DOLLAR] = ACTIONS(6057), + [sym_raw_string] = ACTIONS(6057), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6057), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6057), + [anon_sym_BQUOTE] = ACTIONS(6057), + [anon_sym_LT_LPAREN] = ACTIONS(6057), + [anon_sym_GT_LPAREN] = ACTIONS(6057), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5993), - [sym_word] = ACTIONS(5993), - [anon_sym_SEMI] = ACTIONS(5993), - [anon_sym_LF] = ACTIONS(5993), - [anon_sym_AMP] = ACTIONS(5993), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6057), + [sym_word] = ACTIONS(6057), + [anon_sym_SEMI] = ACTIONS(6057), + [anon_sym_LF] = ACTIONS(6057), + [anon_sym_AMP] = ACTIONS(6057), }, [3401] = { - [sym__concat] = ACTIONS(5995), - [anon_sym_PIPE] = ACTIONS(5997), - [anon_sym_RPAREN] = ACTIONS(5997), - [anon_sym_SEMI_SEMI] = ACTIONS(5997), - [anon_sym_PIPE_AMP] = ACTIONS(5997), - [anon_sym_AMP_AMP] = ACTIONS(5997), - [anon_sym_PIPE_PIPE] = ACTIONS(5997), - [sym__special_characters] = ACTIONS(5997), - [anon_sym_DQUOTE] = ACTIONS(5997), - [anon_sym_DOLLAR] = ACTIONS(5997), - [sym_raw_string] = ACTIONS(5997), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5997), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5997), - [anon_sym_BQUOTE] = ACTIONS(5997), - [anon_sym_LT_LPAREN] = ACTIONS(5997), - [anon_sym_GT_LPAREN] = ACTIONS(5997), + [sym__concat] = ACTIONS(6059), + [anon_sym_PIPE] = ACTIONS(6061), + [anon_sym_RPAREN] = ACTIONS(6061), + [anon_sym_SEMI_SEMI] = ACTIONS(6061), + [anon_sym_PIPE_AMP] = ACTIONS(6061), + [anon_sym_AMP_AMP] = ACTIONS(6061), + [anon_sym_PIPE_PIPE] = ACTIONS(6061), + [sym__special_characters] = ACTIONS(6061), + [anon_sym_DQUOTE] = ACTIONS(6061), + [anon_sym_DOLLAR] = ACTIONS(6061), + [sym_raw_string] = ACTIONS(6061), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6061), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6061), + [anon_sym_BQUOTE] = ACTIONS(6061), + [anon_sym_LT_LPAREN] = ACTIONS(6061), + [anon_sym_GT_LPAREN] = ACTIONS(6061), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5997), - [sym_word] = ACTIONS(5997), - [anon_sym_SEMI] = ACTIONS(5997), - [anon_sym_LF] = ACTIONS(5997), - [anon_sym_AMP] = ACTIONS(5997), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6061), + [sym_word] = ACTIONS(6061), + [anon_sym_SEMI] = ACTIONS(6061), + [anon_sym_LF] = ACTIONS(6061), + [anon_sym_AMP] = ACTIONS(6061), }, [3402] = { - [sym_file_descriptor] = ACTIONS(6948), - [sym__concat] = ACTIONS(6948), - [anon_sym_PIPE] = ACTIONS(6950), - [anon_sym_RPAREN] = ACTIONS(6950), - [anon_sym_SEMI_SEMI] = ACTIONS(6950), - [anon_sym_PIPE_AMP] = ACTIONS(6950), - [anon_sym_AMP_AMP] = ACTIONS(6950), - [anon_sym_PIPE_PIPE] = ACTIONS(6950), - [anon_sym_EQ_TILDE] = ACTIONS(6950), - [anon_sym_LT] = ACTIONS(6950), - [anon_sym_GT] = ACTIONS(6950), - [anon_sym_GT_GT] = ACTIONS(6950), - [anon_sym_AMP_GT] = ACTIONS(6950), - [anon_sym_AMP_GT_GT] = ACTIONS(6950), - [anon_sym_LT_AMP] = ACTIONS(6950), - [anon_sym_GT_AMP] = ACTIONS(6950), - [anon_sym_LT_LT] = ACTIONS(6950), - [anon_sym_LT_LT_DASH] = ACTIONS(6950), - [anon_sym_LT_LT_LT] = ACTIONS(6950), - [sym__special_characters] = ACTIONS(6950), - [anon_sym_DQUOTE] = ACTIONS(6950), - [anon_sym_DOLLAR] = ACTIONS(6950), - [sym_raw_string] = ACTIONS(6950), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6950), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6950), - [anon_sym_BQUOTE] = ACTIONS(6950), - [anon_sym_LT_LPAREN] = ACTIONS(6950), - [anon_sym_GT_LPAREN] = ACTIONS(6950), + [sym_file_descriptor] = ACTIONS(7018), + [sym__concat] = ACTIONS(7018), + [anon_sym_PIPE] = ACTIONS(7020), + [anon_sym_RPAREN] = ACTIONS(7020), + [anon_sym_SEMI_SEMI] = ACTIONS(7020), + [anon_sym_PIPE_AMP] = ACTIONS(7020), + [anon_sym_AMP_AMP] = ACTIONS(7020), + [anon_sym_PIPE_PIPE] = ACTIONS(7020), + [anon_sym_EQ_TILDE] = ACTIONS(7020), + [anon_sym_EQ_EQ] = ACTIONS(7020), + [anon_sym_LT] = ACTIONS(7020), + [anon_sym_GT] = ACTIONS(7020), + [anon_sym_GT_GT] = ACTIONS(7020), + [anon_sym_AMP_GT] = ACTIONS(7020), + [anon_sym_AMP_GT_GT] = ACTIONS(7020), + [anon_sym_LT_AMP] = ACTIONS(7020), + [anon_sym_GT_AMP] = ACTIONS(7020), + [anon_sym_LT_LT] = ACTIONS(7020), + [anon_sym_LT_LT_DASH] = ACTIONS(7020), + [anon_sym_LT_LT_LT] = ACTIONS(7020), + [sym__special_characters] = ACTIONS(7020), + [anon_sym_DQUOTE] = ACTIONS(7020), + [anon_sym_DOLLAR] = ACTIONS(7020), + [sym_raw_string] = ACTIONS(7020), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7020), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7020), + [anon_sym_BQUOTE] = ACTIONS(7020), + [anon_sym_LT_LPAREN] = ACTIONS(7020), + [anon_sym_GT_LPAREN] = ACTIONS(7020), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6950), - [anon_sym_SEMI] = ACTIONS(6950), - [anon_sym_LF] = ACTIONS(6950), - [anon_sym_AMP] = ACTIONS(6950), + [sym_word] = ACTIONS(7020), + [anon_sym_SEMI] = ACTIONS(7020), + [anon_sym_LF] = ACTIONS(7020), + [anon_sym_AMP] = ACTIONS(7020), }, [3403] = { - [sym_file_descriptor] = ACTIONS(6952), - [sym__concat] = ACTIONS(6952), - [anon_sym_PIPE] = ACTIONS(6954), - [anon_sym_RPAREN] = ACTIONS(6954), - [anon_sym_SEMI_SEMI] = ACTIONS(6954), - [anon_sym_PIPE_AMP] = ACTIONS(6954), - [anon_sym_AMP_AMP] = ACTIONS(6954), - [anon_sym_PIPE_PIPE] = ACTIONS(6954), - [anon_sym_EQ_TILDE] = ACTIONS(6954), - [anon_sym_LT] = ACTIONS(6954), - [anon_sym_GT] = ACTIONS(6954), - [anon_sym_GT_GT] = ACTIONS(6954), - [anon_sym_AMP_GT] = ACTIONS(6954), - [anon_sym_AMP_GT_GT] = ACTIONS(6954), - [anon_sym_LT_AMP] = ACTIONS(6954), - [anon_sym_GT_AMP] = ACTIONS(6954), - [anon_sym_LT_LT] = ACTIONS(6954), - [anon_sym_LT_LT_DASH] = ACTIONS(6954), - [anon_sym_LT_LT_LT] = ACTIONS(6954), - [sym__special_characters] = ACTIONS(6954), - [anon_sym_DQUOTE] = ACTIONS(6954), - [anon_sym_DOLLAR] = ACTIONS(6954), - [sym_raw_string] = ACTIONS(6954), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6954), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6954), - [anon_sym_BQUOTE] = ACTIONS(6954), - [anon_sym_LT_LPAREN] = ACTIONS(6954), - [anon_sym_GT_LPAREN] = ACTIONS(6954), + [sym_file_descriptor] = ACTIONS(7022), + [sym__concat] = ACTIONS(7022), + [anon_sym_PIPE] = ACTIONS(7024), + [anon_sym_RPAREN] = ACTIONS(7024), + [anon_sym_SEMI_SEMI] = ACTIONS(7024), + [anon_sym_PIPE_AMP] = ACTIONS(7024), + [anon_sym_AMP_AMP] = ACTIONS(7024), + [anon_sym_PIPE_PIPE] = ACTIONS(7024), + [anon_sym_EQ_TILDE] = ACTIONS(7024), + [anon_sym_EQ_EQ] = ACTIONS(7024), + [anon_sym_LT] = ACTIONS(7024), + [anon_sym_GT] = ACTIONS(7024), + [anon_sym_GT_GT] = ACTIONS(7024), + [anon_sym_AMP_GT] = ACTIONS(7024), + [anon_sym_AMP_GT_GT] = ACTIONS(7024), + [anon_sym_LT_AMP] = ACTIONS(7024), + [anon_sym_GT_AMP] = ACTIONS(7024), + [anon_sym_LT_LT] = ACTIONS(7024), + [anon_sym_LT_LT_DASH] = ACTIONS(7024), + [anon_sym_LT_LT_LT] = ACTIONS(7024), + [sym__special_characters] = ACTIONS(7024), + [anon_sym_DQUOTE] = ACTIONS(7024), + [anon_sym_DOLLAR] = ACTIONS(7024), + [sym_raw_string] = ACTIONS(7024), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7024), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7024), + [anon_sym_BQUOTE] = ACTIONS(7024), + [anon_sym_LT_LPAREN] = ACTIONS(7024), + [anon_sym_GT_LPAREN] = ACTIONS(7024), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6954), - [anon_sym_SEMI] = ACTIONS(6954), - [anon_sym_LF] = ACTIONS(6954), - [anon_sym_AMP] = ACTIONS(6954), + [sym_word] = ACTIONS(7024), + [anon_sym_SEMI] = ACTIONS(7024), + [anon_sym_LF] = ACTIONS(7024), + [anon_sym_AMP] = ACTIONS(7024), }, [3404] = { - [sym_file_descriptor] = ACTIONS(6956), - [sym__concat] = ACTIONS(6956), - [anon_sym_PIPE] = ACTIONS(6958), - [anon_sym_RPAREN] = ACTIONS(6958), - [anon_sym_SEMI_SEMI] = ACTIONS(6958), - [anon_sym_PIPE_AMP] = ACTIONS(6958), - [anon_sym_AMP_AMP] = ACTIONS(6958), - [anon_sym_PIPE_PIPE] = ACTIONS(6958), - [anon_sym_EQ_TILDE] = ACTIONS(6958), - [anon_sym_LT] = ACTIONS(6958), - [anon_sym_GT] = ACTIONS(6958), - [anon_sym_GT_GT] = ACTIONS(6958), - [anon_sym_AMP_GT] = ACTIONS(6958), - [anon_sym_AMP_GT_GT] = ACTIONS(6958), - [anon_sym_LT_AMP] = ACTIONS(6958), - [anon_sym_GT_AMP] = ACTIONS(6958), - [anon_sym_LT_LT] = ACTIONS(6958), - [anon_sym_LT_LT_DASH] = ACTIONS(6958), - [anon_sym_LT_LT_LT] = ACTIONS(6958), - [sym__special_characters] = ACTIONS(6958), - [anon_sym_DQUOTE] = ACTIONS(6958), - [anon_sym_DOLLAR] = ACTIONS(6958), - [sym_raw_string] = ACTIONS(6958), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6958), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6958), - [anon_sym_BQUOTE] = ACTIONS(6958), - [anon_sym_LT_LPAREN] = ACTIONS(6958), - [anon_sym_GT_LPAREN] = ACTIONS(6958), + [sym_file_descriptor] = ACTIONS(7026), + [sym__concat] = ACTIONS(7026), + [anon_sym_PIPE] = ACTIONS(7028), + [anon_sym_RPAREN] = ACTIONS(7028), + [anon_sym_SEMI_SEMI] = ACTIONS(7028), + [anon_sym_PIPE_AMP] = ACTIONS(7028), + [anon_sym_AMP_AMP] = ACTIONS(7028), + [anon_sym_PIPE_PIPE] = ACTIONS(7028), + [anon_sym_EQ_TILDE] = ACTIONS(7028), + [anon_sym_EQ_EQ] = ACTIONS(7028), + [anon_sym_LT] = ACTIONS(7028), + [anon_sym_GT] = ACTIONS(7028), + [anon_sym_GT_GT] = ACTIONS(7028), + [anon_sym_AMP_GT] = ACTIONS(7028), + [anon_sym_AMP_GT_GT] = ACTIONS(7028), + [anon_sym_LT_AMP] = ACTIONS(7028), + [anon_sym_GT_AMP] = ACTIONS(7028), + [anon_sym_LT_LT] = ACTIONS(7028), + [anon_sym_LT_LT_DASH] = ACTIONS(7028), + [anon_sym_LT_LT_LT] = ACTIONS(7028), + [sym__special_characters] = ACTIONS(7028), + [anon_sym_DQUOTE] = ACTIONS(7028), + [anon_sym_DOLLAR] = ACTIONS(7028), + [sym_raw_string] = ACTIONS(7028), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7028), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7028), + [anon_sym_BQUOTE] = ACTIONS(7028), + [anon_sym_LT_LPAREN] = ACTIONS(7028), + [anon_sym_GT_LPAREN] = ACTIONS(7028), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6958), - [anon_sym_SEMI] = ACTIONS(6958), - [anon_sym_LF] = ACTIONS(6958), - [anon_sym_AMP] = ACTIONS(6958), + [sym_word] = ACTIONS(7028), + [anon_sym_SEMI] = ACTIONS(7028), + [anon_sym_LF] = ACTIONS(7028), + [anon_sym_AMP] = ACTIONS(7028), }, [3405] = { - [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_file_descriptor] = ACTIONS(4790), + [sym__concat] = ACTIONS(4790), + [anon_sym_PIPE] = ACTIONS(4792), + [anon_sym_RPAREN] = ACTIONS(4792), + [anon_sym_SEMI_SEMI] = ACTIONS(4792), + [anon_sym_PIPE_AMP] = ACTIONS(4792), + [anon_sym_AMP_AMP] = ACTIONS(4792), + [anon_sym_PIPE_PIPE] = ACTIONS(4792), + [anon_sym_LT] = ACTIONS(4792), + [anon_sym_GT] = ACTIONS(4792), + [anon_sym_GT_GT] = ACTIONS(4792), + [anon_sym_AMP_GT] = ACTIONS(4792), + [anon_sym_AMP_GT_GT] = ACTIONS(4792), + [anon_sym_LT_AMP] = ACTIONS(4792), + [anon_sym_GT_AMP] = ACTIONS(4792), + [anon_sym_LT_LT] = ACTIONS(4792), + [anon_sym_LT_LT_DASH] = ACTIONS(4792), + [anon_sym_LT_LT_LT] = ACTIONS(4792), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4730), - [anon_sym_LF] = ACTIONS(4730), - [anon_sym_AMP] = ACTIONS(4730), + [anon_sym_SEMI] = ACTIONS(4792), + [anon_sym_LF] = ACTIONS(4792), + [anon_sym_AMP] = ACTIONS(4792), }, [3406] = { - [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_file_descriptor] = ACTIONS(4796), + [sym__concat] = ACTIONS(4796), + [anon_sym_PIPE] = ACTIONS(4798), + [anon_sym_RPAREN] = ACTIONS(4798), + [anon_sym_SEMI_SEMI] = ACTIONS(4798), + [anon_sym_PIPE_AMP] = ACTIONS(4798), + [anon_sym_AMP_AMP] = ACTIONS(4798), + [anon_sym_PIPE_PIPE] = ACTIONS(4798), + [anon_sym_LT] = ACTIONS(4798), + [anon_sym_GT] = ACTIONS(4798), + [anon_sym_GT_GT] = ACTIONS(4798), + [anon_sym_AMP_GT] = ACTIONS(4798), + [anon_sym_AMP_GT_GT] = ACTIONS(4798), + [anon_sym_LT_AMP] = ACTIONS(4798), + [anon_sym_GT_AMP] = ACTIONS(4798), + [anon_sym_LT_LT] = ACTIONS(4798), + [anon_sym_LT_LT_DASH] = ACTIONS(4798), + [anon_sym_LT_LT_LT] = ACTIONS(4798), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4736), - [anon_sym_LF] = ACTIONS(4736), - [anon_sym_AMP] = ACTIONS(4736), + [anon_sym_SEMI] = ACTIONS(4798), + [anon_sym_LF] = ACTIONS(4798), + [anon_sym_AMP] = ACTIONS(4798), }, [3407] = { - [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_file_descriptor] = ACTIONS(4859), + [sym__concat] = ACTIONS(4859), + [anon_sym_PIPE] = ACTIONS(4861), + [anon_sym_RPAREN] = ACTIONS(4861), + [anon_sym_SEMI_SEMI] = ACTIONS(4861), + [anon_sym_PIPE_AMP] = ACTIONS(4861), + [anon_sym_AMP_AMP] = ACTIONS(4861), + [anon_sym_PIPE_PIPE] = ACTIONS(4861), + [anon_sym_LT] = ACTIONS(4861), + [anon_sym_GT] = ACTIONS(4861), + [anon_sym_GT_GT] = ACTIONS(4861), + [anon_sym_AMP_GT] = ACTIONS(4861), + [anon_sym_AMP_GT_GT] = ACTIONS(4861), + [anon_sym_LT_AMP] = ACTIONS(4861), + [anon_sym_GT_AMP] = ACTIONS(4861), + [anon_sym_LT_LT] = ACTIONS(4861), + [anon_sym_LT_LT_DASH] = ACTIONS(4861), + [anon_sym_LT_LT_LT] = ACTIONS(4861), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4799), - [anon_sym_LF] = ACTIONS(4799), - [anon_sym_AMP] = ACTIONS(4799), + [anon_sym_SEMI] = ACTIONS(4861), + [anon_sym_LF] = ACTIONS(4861), + [anon_sym_AMP] = ACTIONS(4861), }, [3408] = { [sym_concatenation] = STATE(451), @@ -86058,40 +86420,40 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7619), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7693), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3409] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(7621), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(7695), [sym_comment] = ACTIONS(56), }, [3410] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(7623), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(7697), [sym_comment] = ACTIONS(56), }, [3411] = { - [anon_sym_RBRACE] = ACTIONS(7623), + [anon_sym_RBRACE] = ACTIONS(7697), [sym_comment] = ACTIONS(56), }, [3412] = { @@ -86103,49 +86465,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3866), - [anon_sym_RBRACE] = ACTIONS(7625), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7699), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3413] = { - [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_file_descriptor] = ACTIONS(4871), + [sym__concat] = ACTIONS(4871), + [anon_sym_PIPE] = ACTIONS(4873), + [anon_sym_RPAREN] = ACTIONS(4873), + [anon_sym_SEMI_SEMI] = ACTIONS(4873), + [anon_sym_PIPE_AMP] = ACTIONS(4873), + [anon_sym_AMP_AMP] = ACTIONS(4873), + [anon_sym_PIPE_PIPE] = ACTIONS(4873), + [anon_sym_LT] = ACTIONS(4873), + [anon_sym_GT] = ACTIONS(4873), + [anon_sym_GT_GT] = ACTIONS(4873), + [anon_sym_AMP_GT] = ACTIONS(4873), + [anon_sym_AMP_GT_GT] = ACTIONS(4873), + [anon_sym_LT_AMP] = ACTIONS(4873), + [anon_sym_GT_AMP] = ACTIONS(4873), + [anon_sym_LT_LT] = ACTIONS(4873), + [anon_sym_LT_LT_DASH] = ACTIONS(4873), + [anon_sym_LT_LT_LT] = ACTIONS(4873), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4811), - [anon_sym_LF] = ACTIONS(4811), - [anon_sym_AMP] = ACTIONS(4811), + [anon_sym_SEMI] = ACTIONS(4873), + [anon_sym_LF] = ACTIONS(4873), + [anon_sym_AMP] = ACTIONS(4873), }, [3414] = { [sym_concatenation] = STATE(451), @@ -86156,49 +86518,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3868), - [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), + [anon_sym_RBRACE] = ACTIONS(7701), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3415] = { - [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_file_descriptor] = ACTIONS(4877), + [sym__concat] = ACTIONS(4877), + [anon_sym_PIPE] = ACTIONS(4879), + [anon_sym_RPAREN] = ACTIONS(4879), + [anon_sym_SEMI_SEMI] = ACTIONS(4879), + [anon_sym_PIPE_AMP] = ACTIONS(4879), + [anon_sym_AMP_AMP] = ACTIONS(4879), + [anon_sym_PIPE_PIPE] = ACTIONS(4879), + [anon_sym_LT] = ACTIONS(4879), + [anon_sym_GT] = ACTIONS(4879), + [anon_sym_GT_GT] = ACTIONS(4879), + [anon_sym_AMP_GT] = ACTIONS(4879), + [anon_sym_AMP_GT_GT] = ACTIONS(4879), + [anon_sym_LT_AMP] = ACTIONS(4879), + [anon_sym_GT_AMP] = ACTIONS(4879), + [anon_sym_LT_LT] = ACTIONS(4879), + [anon_sym_LT_LT_DASH] = ACTIONS(4879), + [anon_sym_LT_LT_LT] = ACTIONS(4879), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4817), - [anon_sym_LF] = ACTIONS(4817), - [anon_sym_AMP] = ACTIONS(4817), + [anon_sym_SEMI] = ACTIONS(4879), + [anon_sym_LF] = ACTIONS(4879), + [anon_sym_AMP] = ACTIONS(4879), }, [3416] = { [sym_concatenation] = STATE(451), @@ -86209,49 +86571,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3870), - [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), + [anon_sym_RBRACE] = ACTIONS(7703), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3417] = { - [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_file_descriptor] = ACTIONS(4883), + [sym__concat] = ACTIONS(4883), + [anon_sym_PIPE] = ACTIONS(4885), + [anon_sym_RPAREN] = ACTIONS(4885), + [anon_sym_SEMI_SEMI] = ACTIONS(4885), + [anon_sym_PIPE_AMP] = ACTIONS(4885), + [anon_sym_AMP_AMP] = ACTIONS(4885), + [anon_sym_PIPE_PIPE] = ACTIONS(4885), + [anon_sym_LT] = ACTIONS(4885), + [anon_sym_GT] = ACTIONS(4885), + [anon_sym_GT_GT] = ACTIONS(4885), + [anon_sym_AMP_GT] = ACTIONS(4885), + [anon_sym_AMP_GT_GT] = ACTIONS(4885), + [anon_sym_LT_AMP] = ACTIONS(4885), + [anon_sym_GT_AMP] = ACTIONS(4885), + [anon_sym_LT_LT] = ACTIONS(4885), + [anon_sym_LT_LT_DASH] = ACTIONS(4885), + [anon_sym_LT_LT_LT] = ACTIONS(4885), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4823), - [anon_sym_LF] = ACTIONS(4823), - [anon_sym_AMP] = ACTIONS(4823), + [anon_sym_SEMI] = ACTIONS(4885), + [anon_sym_LF] = ACTIONS(4885), + [anon_sym_AMP] = ACTIONS(4885), }, [3418] = { [sym_concatenation] = STATE(451), @@ -86262,49 +86624,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [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), + [anon_sym_RBRACE] = ACTIONS(7705), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3419] = { - [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_file_descriptor] = ACTIONS(4889), + [sym__concat] = ACTIONS(4889), + [anon_sym_PIPE] = ACTIONS(4891), + [anon_sym_RPAREN] = ACTIONS(4891), + [anon_sym_SEMI_SEMI] = ACTIONS(4891), + [anon_sym_PIPE_AMP] = ACTIONS(4891), + [anon_sym_AMP_AMP] = ACTIONS(4891), + [anon_sym_PIPE_PIPE] = ACTIONS(4891), + [anon_sym_LT] = ACTIONS(4891), + [anon_sym_GT] = ACTIONS(4891), + [anon_sym_GT_GT] = ACTIONS(4891), + [anon_sym_AMP_GT] = ACTIONS(4891), + [anon_sym_AMP_GT_GT] = ACTIONS(4891), + [anon_sym_LT_AMP] = ACTIONS(4891), + [anon_sym_GT_AMP] = ACTIONS(4891), + [anon_sym_LT_LT] = ACTIONS(4891), + [anon_sym_LT_LT_DASH] = ACTIONS(4891), + [anon_sym_LT_LT_LT] = ACTIONS(4891), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4829), - [anon_sym_LF] = ACTIONS(4829), - [anon_sym_AMP] = ACTIONS(4829), + [anon_sym_SEMI] = ACTIONS(4891), + [anon_sym_LF] = ACTIONS(4891), + [anon_sym_AMP] = ACTIONS(4891), }, [3420] = { [sym_concatenation] = STATE(451), @@ -86315,375 +86677,381 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(7707), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3421] = { - [sym__concat] = ACTIONS(6948), - [anon_sym_EQ_TILDE] = ACTIONS(7635), - [anon_sym_RBRACK] = ACTIONS(6948), - [sym__special_characters] = ACTIONS(6950), - [anon_sym_DQUOTE] = ACTIONS(6948), - [anon_sym_DOLLAR] = ACTIONS(7635), - [sym_raw_string] = ACTIONS(6948), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6948), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6948), - [anon_sym_BQUOTE] = ACTIONS(6948), - [anon_sym_LT_LPAREN] = ACTIONS(6948), - [anon_sym_GT_LPAREN] = ACTIONS(6948), + [sym__concat] = ACTIONS(7018), + [anon_sym_EQ_TILDE] = ACTIONS(7709), + [anon_sym_EQ_EQ] = ACTIONS(7709), + [anon_sym_RBRACK] = ACTIONS(7018), + [sym__special_characters] = ACTIONS(7020), + [anon_sym_DQUOTE] = ACTIONS(7018), + [anon_sym_DOLLAR] = ACTIONS(7709), + [sym_raw_string] = ACTIONS(7018), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7018), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7018), + [anon_sym_BQUOTE] = ACTIONS(7018), + [anon_sym_LT_LPAREN] = ACTIONS(7018), + [anon_sym_GT_LPAREN] = ACTIONS(7018), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6950), + [sym_word] = ACTIONS(7020), }, [3422] = { - [sym__concat] = ACTIONS(6952), - [anon_sym_EQ_TILDE] = ACTIONS(7637), - [anon_sym_RBRACK] = ACTIONS(6952), - [sym__special_characters] = ACTIONS(6954), - [anon_sym_DQUOTE] = ACTIONS(6952), - [anon_sym_DOLLAR] = ACTIONS(7637), - [sym_raw_string] = ACTIONS(6952), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6952), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6952), - [anon_sym_BQUOTE] = ACTIONS(6952), - [anon_sym_LT_LPAREN] = ACTIONS(6952), - [anon_sym_GT_LPAREN] = ACTIONS(6952), + [sym__concat] = ACTIONS(7022), + [anon_sym_EQ_TILDE] = ACTIONS(7711), + [anon_sym_EQ_EQ] = ACTIONS(7711), + [anon_sym_RBRACK] = ACTIONS(7022), + [sym__special_characters] = ACTIONS(7024), + [anon_sym_DQUOTE] = ACTIONS(7022), + [anon_sym_DOLLAR] = ACTIONS(7711), + [sym_raw_string] = ACTIONS(7022), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7022), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7022), + [anon_sym_BQUOTE] = ACTIONS(7022), + [anon_sym_LT_LPAREN] = ACTIONS(7022), + [anon_sym_GT_LPAREN] = ACTIONS(7022), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6954), + [sym_word] = ACTIONS(7024), }, [3423] = { - [sym__concat] = ACTIONS(6956), - [anon_sym_EQ_TILDE] = ACTIONS(7639), - [anon_sym_RBRACK] = ACTIONS(6956), - [sym__special_characters] = ACTIONS(6958), - [anon_sym_DQUOTE] = ACTIONS(6956), - [anon_sym_DOLLAR] = ACTIONS(7639), - [sym_raw_string] = ACTIONS(6956), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6956), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6956), - [anon_sym_BQUOTE] = ACTIONS(6956), - [anon_sym_LT_LPAREN] = ACTIONS(6956), - [anon_sym_GT_LPAREN] = ACTIONS(6956), + [sym__concat] = ACTIONS(7026), + [anon_sym_EQ_TILDE] = ACTIONS(7713), + [anon_sym_EQ_EQ] = ACTIONS(7713), + [anon_sym_RBRACK] = ACTIONS(7026), + [sym__special_characters] = ACTIONS(7028), + [anon_sym_DQUOTE] = ACTIONS(7026), + [anon_sym_DOLLAR] = ACTIONS(7713), + [sym_raw_string] = ACTIONS(7026), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7026), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7026), + [anon_sym_BQUOTE] = ACTIONS(7026), + [anon_sym_LT_LPAREN] = ACTIONS(7026), + [anon_sym_GT_LPAREN] = ACTIONS(7026), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6958), + [sym_word] = ACTIONS(7028), }, [3424] = { - [sym__concat] = ACTIONS(6948), - [anon_sym_EQ_TILDE] = ACTIONS(7635), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6948), - [sym__special_characters] = ACTIONS(6950), - [anon_sym_DQUOTE] = ACTIONS(6948), - [anon_sym_DOLLAR] = ACTIONS(7635), - [sym_raw_string] = ACTIONS(6948), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6948), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6948), - [anon_sym_BQUOTE] = ACTIONS(6948), - [anon_sym_LT_LPAREN] = ACTIONS(6948), - [anon_sym_GT_LPAREN] = ACTIONS(6948), + [sym__concat] = ACTIONS(7018), + [anon_sym_EQ_TILDE] = ACTIONS(7709), + [anon_sym_EQ_EQ] = ACTIONS(7709), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7018), + [sym__special_characters] = ACTIONS(7020), + [anon_sym_DQUOTE] = ACTIONS(7018), + [anon_sym_DOLLAR] = ACTIONS(7709), + [sym_raw_string] = ACTIONS(7018), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7018), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7018), + [anon_sym_BQUOTE] = ACTIONS(7018), + [anon_sym_LT_LPAREN] = ACTIONS(7018), + [anon_sym_GT_LPAREN] = ACTIONS(7018), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6950), + [sym_word] = ACTIONS(7020), }, [3425] = { - [sym__concat] = ACTIONS(6952), - [anon_sym_EQ_TILDE] = ACTIONS(7637), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6952), - [sym__special_characters] = ACTIONS(6954), - [anon_sym_DQUOTE] = ACTIONS(6952), - [anon_sym_DOLLAR] = ACTIONS(7637), - [sym_raw_string] = ACTIONS(6952), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6952), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6952), - [anon_sym_BQUOTE] = ACTIONS(6952), - [anon_sym_LT_LPAREN] = ACTIONS(6952), - [anon_sym_GT_LPAREN] = ACTIONS(6952), + [sym__concat] = ACTIONS(7022), + [anon_sym_EQ_TILDE] = ACTIONS(7711), + [anon_sym_EQ_EQ] = ACTIONS(7711), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7022), + [sym__special_characters] = ACTIONS(7024), + [anon_sym_DQUOTE] = ACTIONS(7022), + [anon_sym_DOLLAR] = ACTIONS(7711), + [sym_raw_string] = ACTIONS(7022), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7022), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7022), + [anon_sym_BQUOTE] = ACTIONS(7022), + [anon_sym_LT_LPAREN] = ACTIONS(7022), + [anon_sym_GT_LPAREN] = ACTIONS(7022), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6954), + [sym_word] = ACTIONS(7024), }, [3426] = { - [sym__concat] = ACTIONS(6956), - [anon_sym_EQ_TILDE] = ACTIONS(7639), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6956), - [sym__special_characters] = ACTIONS(6958), - [anon_sym_DQUOTE] = ACTIONS(6956), - [anon_sym_DOLLAR] = ACTIONS(7639), - [sym_raw_string] = ACTIONS(6956), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6956), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6956), - [anon_sym_BQUOTE] = ACTIONS(6956), - [anon_sym_LT_LPAREN] = ACTIONS(6956), - [anon_sym_GT_LPAREN] = ACTIONS(6956), + [sym__concat] = ACTIONS(7026), + [anon_sym_EQ_TILDE] = ACTIONS(7713), + [anon_sym_EQ_EQ] = ACTIONS(7713), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7026), + [sym__special_characters] = ACTIONS(7028), + [anon_sym_DQUOTE] = ACTIONS(7026), + [anon_sym_DOLLAR] = ACTIONS(7713), + [sym_raw_string] = ACTIONS(7026), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7026), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7026), + [anon_sym_BQUOTE] = ACTIONS(7026), + [anon_sym_LT_LPAREN] = ACTIONS(7026), + [anon_sym_GT_LPAREN] = ACTIONS(7026), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6958), + [sym_word] = ACTIONS(7028), }, [3427] = { - [sym__concat] = ACTIONS(6948), - [sym_variable_name] = ACTIONS(6948), - [anon_sym_PIPE] = ACTIONS(6950), - [anon_sym_SEMI_SEMI] = ACTIONS(6950), - [anon_sym_PIPE_AMP] = ACTIONS(6950), - [anon_sym_AMP_AMP] = ACTIONS(6950), - [anon_sym_PIPE_PIPE] = ACTIONS(6950), - [sym__special_characters] = ACTIONS(6950), - [anon_sym_DQUOTE] = ACTIONS(6950), - [anon_sym_DOLLAR] = ACTIONS(6950), - [sym_raw_string] = ACTIONS(6950), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6950), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6950), - [anon_sym_BQUOTE] = ACTIONS(6950), - [anon_sym_LT_LPAREN] = ACTIONS(6950), - [anon_sym_GT_LPAREN] = ACTIONS(6950), + [sym__concat] = ACTIONS(7018), + [sym_variable_name] = ACTIONS(7018), + [anon_sym_PIPE] = ACTIONS(7020), + [anon_sym_SEMI_SEMI] = ACTIONS(7020), + [anon_sym_PIPE_AMP] = ACTIONS(7020), + [anon_sym_AMP_AMP] = ACTIONS(7020), + [anon_sym_PIPE_PIPE] = ACTIONS(7020), + [sym__special_characters] = ACTIONS(7020), + [anon_sym_DQUOTE] = ACTIONS(7020), + [anon_sym_DOLLAR] = ACTIONS(7020), + [sym_raw_string] = ACTIONS(7020), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7020), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7020), + [anon_sym_BQUOTE] = ACTIONS(7020), + [anon_sym_LT_LPAREN] = ACTIONS(7020), + [anon_sym_GT_LPAREN] = ACTIONS(7020), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6950), - [sym_word] = ACTIONS(6950), - [anon_sym_SEMI] = ACTIONS(6950), - [anon_sym_LF] = ACTIONS(6950), - [anon_sym_AMP] = ACTIONS(6950), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7020), + [sym_word] = ACTIONS(7020), + [anon_sym_SEMI] = ACTIONS(7020), + [anon_sym_LF] = ACTIONS(7020), + [anon_sym_AMP] = ACTIONS(7020), }, [3428] = { - [sym__concat] = ACTIONS(6952), - [sym_variable_name] = ACTIONS(6952), - [anon_sym_PIPE] = ACTIONS(6954), - [anon_sym_SEMI_SEMI] = ACTIONS(6954), - [anon_sym_PIPE_AMP] = ACTIONS(6954), - [anon_sym_AMP_AMP] = ACTIONS(6954), - [anon_sym_PIPE_PIPE] = ACTIONS(6954), - [sym__special_characters] = ACTIONS(6954), - [anon_sym_DQUOTE] = ACTIONS(6954), - [anon_sym_DOLLAR] = ACTIONS(6954), - [sym_raw_string] = ACTIONS(6954), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6954), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6954), - [anon_sym_BQUOTE] = ACTIONS(6954), - [anon_sym_LT_LPAREN] = ACTIONS(6954), - [anon_sym_GT_LPAREN] = ACTIONS(6954), + [sym__concat] = ACTIONS(7022), + [sym_variable_name] = ACTIONS(7022), + [anon_sym_PIPE] = ACTIONS(7024), + [anon_sym_SEMI_SEMI] = ACTIONS(7024), + [anon_sym_PIPE_AMP] = ACTIONS(7024), + [anon_sym_AMP_AMP] = ACTIONS(7024), + [anon_sym_PIPE_PIPE] = ACTIONS(7024), + [sym__special_characters] = ACTIONS(7024), + [anon_sym_DQUOTE] = ACTIONS(7024), + [anon_sym_DOLLAR] = ACTIONS(7024), + [sym_raw_string] = ACTIONS(7024), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7024), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7024), + [anon_sym_BQUOTE] = ACTIONS(7024), + [anon_sym_LT_LPAREN] = ACTIONS(7024), + [anon_sym_GT_LPAREN] = ACTIONS(7024), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6954), - [sym_word] = ACTIONS(6954), - [anon_sym_SEMI] = ACTIONS(6954), - [anon_sym_LF] = ACTIONS(6954), - [anon_sym_AMP] = ACTIONS(6954), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7024), + [sym_word] = ACTIONS(7024), + [anon_sym_SEMI] = ACTIONS(7024), + [anon_sym_LF] = ACTIONS(7024), + [anon_sym_AMP] = ACTIONS(7024), }, [3429] = { - [sym__concat] = ACTIONS(6956), - [sym_variable_name] = ACTIONS(6956), - [anon_sym_PIPE] = ACTIONS(6958), - [anon_sym_SEMI_SEMI] = ACTIONS(6958), - [anon_sym_PIPE_AMP] = ACTIONS(6958), - [anon_sym_AMP_AMP] = ACTIONS(6958), - [anon_sym_PIPE_PIPE] = ACTIONS(6958), - [sym__special_characters] = ACTIONS(6958), - [anon_sym_DQUOTE] = ACTIONS(6958), - [anon_sym_DOLLAR] = ACTIONS(6958), - [sym_raw_string] = ACTIONS(6958), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6958), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6958), - [anon_sym_BQUOTE] = ACTIONS(6958), - [anon_sym_LT_LPAREN] = ACTIONS(6958), - [anon_sym_GT_LPAREN] = ACTIONS(6958), + [sym__concat] = ACTIONS(7026), + [sym_variable_name] = ACTIONS(7026), + [anon_sym_PIPE] = ACTIONS(7028), + [anon_sym_SEMI_SEMI] = ACTIONS(7028), + [anon_sym_PIPE_AMP] = ACTIONS(7028), + [anon_sym_AMP_AMP] = ACTIONS(7028), + [anon_sym_PIPE_PIPE] = ACTIONS(7028), + [sym__special_characters] = ACTIONS(7028), + [anon_sym_DQUOTE] = ACTIONS(7028), + [anon_sym_DOLLAR] = ACTIONS(7028), + [sym_raw_string] = ACTIONS(7028), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7028), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7028), + [anon_sym_BQUOTE] = ACTIONS(7028), + [anon_sym_LT_LPAREN] = ACTIONS(7028), + [anon_sym_GT_LPAREN] = ACTIONS(7028), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6958), - [sym_word] = ACTIONS(6958), - [anon_sym_SEMI] = ACTIONS(6958), - [anon_sym_LF] = ACTIONS(6958), - [anon_sym_AMP] = ACTIONS(6958), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7028), + [sym_word] = ACTIONS(7028), + [anon_sym_SEMI] = ACTIONS(7028), + [anon_sym_LF] = ACTIONS(7028), + [anon_sym_AMP] = ACTIONS(7028), }, [3430] = { - [sym__concat] = ACTIONS(6948), - [anon_sym_PIPE] = ACTIONS(6950), - [anon_sym_SEMI_SEMI] = ACTIONS(6950), - [anon_sym_PIPE_AMP] = ACTIONS(6950), - [anon_sym_AMP_AMP] = ACTIONS(6950), - [anon_sym_PIPE_PIPE] = ACTIONS(6950), - [sym__special_characters] = ACTIONS(6950), - [anon_sym_DQUOTE] = ACTIONS(6950), - [anon_sym_DOLLAR] = ACTIONS(6950), - [sym_raw_string] = ACTIONS(6950), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6950), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6950), - [anon_sym_BQUOTE] = ACTIONS(6950), - [anon_sym_LT_LPAREN] = ACTIONS(6950), - [anon_sym_GT_LPAREN] = ACTIONS(6950), + [sym__concat] = ACTIONS(7018), + [anon_sym_PIPE] = ACTIONS(7020), + [anon_sym_SEMI_SEMI] = ACTIONS(7020), + [anon_sym_PIPE_AMP] = ACTIONS(7020), + [anon_sym_AMP_AMP] = ACTIONS(7020), + [anon_sym_PIPE_PIPE] = ACTIONS(7020), + [sym__special_characters] = ACTIONS(7020), + [anon_sym_DQUOTE] = ACTIONS(7020), + [anon_sym_DOLLAR] = ACTIONS(7020), + [sym_raw_string] = ACTIONS(7020), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7020), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7020), + [anon_sym_BQUOTE] = ACTIONS(7020), + [anon_sym_LT_LPAREN] = ACTIONS(7020), + [anon_sym_GT_LPAREN] = ACTIONS(7020), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6950), - [sym_word] = ACTIONS(6950), - [anon_sym_SEMI] = ACTIONS(6950), - [anon_sym_LF] = ACTIONS(6950), - [anon_sym_AMP] = ACTIONS(6950), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7020), + [sym_word] = ACTIONS(7020), + [anon_sym_SEMI] = ACTIONS(7020), + [anon_sym_LF] = ACTIONS(7020), + [anon_sym_AMP] = ACTIONS(7020), }, [3431] = { - [sym__concat] = ACTIONS(6952), - [anon_sym_PIPE] = ACTIONS(6954), - [anon_sym_SEMI_SEMI] = ACTIONS(6954), - [anon_sym_PIPE_AMP] = ACTIONS(6954), - [anon_sym_AMP_AMP] = ACTIONS(6954), - [anon_sym_PIPE_PIPE] = ACTIONS(6954), - [sym__special_characters] = ACTIONS(6954), - [anon_sym_DQUOTE] = ACTIONS(6954), - [anon_sym_DOLLAR] = ACTIONS(6954), - [sym_raw_string] = ACTIONS(6954), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6954), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6954), - [anon_sym_BQUOTE] = ACTIONS(6954), - [anon_sym_LT_LPAREN] = ACTIONS(6954), - [anon_sym_GT_LPAREN] = ACTIONS(6954), + [sym__concat] = ACTIONS(7022), + [anon_sym_PIPE] = ACTIONS(7024), + [anon_sym_SEMI_SEMI] = ACTIONS(7024), + [anon_sym_PIPE_AMP] = ACTIONS(7024), + [anon_sym_AMP_AMP] = ACTIONS(7024), + [anon_sym_PIPE_PIPE] = ACTIONS(7024), + [sym__special_characters] = ACTIONS(7024), + [anon_sym_DQUOTE] = ACTIONS(7024), + [anon_sym_DOLLAR] = ACTIONS(7024), + [sym_raw_string] = ACTIONS(7024), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7024), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7024), + [anon_sym_BQUOTE] = ACTIONS(7024), + [anon_sym_LT_LPAREN] = ACTIONS(7024), + [anon_sym_GT_LPAREN] = ACTIONS(7024), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6954), - [sym_word] = ACTIONS(6954), - [anon_sym_SEMI] = ACTIONS(6954), - [anon_sym_LF] = ACTIONS(6954), - [anon_sym_AMP] = ACTIONS(6954), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7024), + [sym_word] = ACTIONS(7024), + [anon_sym_SEMI] = ACTIONS(7024), + [anon_sym_LF] = ACTIONS(7024), + [anon_sym_AMP] = ACTIONS(7024), }, [3432] = { - [sym__concat] = ACTIONS(6956), - [anon_sym_PIPE] = ACTIONS(6958), - [anon_sym_SEMI_SEMI] = ACTIONS(6958), - [anon_sym_PIPE_AMP] = ACTIONS(6958), - [anon_sym_AMP_AMP] = ACTIONS(6958), - [anon_sym_PIPE_PIPE] = ACTIONS(6958), - [sym__special_characters] = ACTIONS(6958), - [anon_sym_DQUOTE] = ACTIONS(6958), - [anon_sym_DOLLAR] = ACTIONS(6958), - [sym_raw_string] = ACTIONS(6958), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6958), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6958), - [anon_sym_BQUOTE] = ACTIONS(6958), - [anon_sym_LT_LPAREN] = ACTIONS(6958), - [anon_sym_GT_LPAREN] = ACTIONS(6958), + [sym__concat] = ACTIONS(7026), + [anon_sym_PIPE] = ACTIONS(7028), + [anon_sym_SEMI_SEMI] = ACTIONS(7028), + [anon_sym_PIPE_AMP] = ACTIONS(7028), + [anon_sym_AMP_AMP] = ACTIONS(7028), + [anon_sym_PIPE_PIPE] = ACTIONS(7028), + [sym__special_characters] = ACTIONS(7028), + [anon_sym_DQUOTE] = ACTIONS(7028), + [anon_sym_DOLLAR] = ACTIONS(7028), + [sym_raw_string] = ACTIONS(7028), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7028), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7028), + [anon_sym_BQUOTE] = ACTIONS(7028), + [anon_sym_LT_LPAREN] = ACTIONS(7028), + [anon_sym_GT_LPAREN] = ACTIONS(7028), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6958), - [sym_word] = ACTIONS(6958), - [anon_sym_SEMI] = ACTIONS(6958), - [anon_sym_LF] = ACTIONS(6958), - [anon_sym_AMP] = ACTIONS(6958), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7028), + [sym_word] = ACTIONS(7028), + [anon_sym_SEMI] = ACTIONS(7028), + [anon_sym_LF] = ACTIONS(7028), + [anon_sym_AMP] = ACTIONS(7028), }, [3433] = { - [sym_file_descriptor] = ACTIONS(6948), - [sym__concat] = ACTIONS(6948), - [sym_variable_name] = ACTIONS(6948), - [anon_sym_LT] = ACTIONS(7635), - [anon_sym_GT] = ACTIONS(7635), - [anon_sym_GT_GT] = ACTIONS(6948), - [anon_sym_AMP_GT] = ACTIONS(7635), - [anon_sym_AMP_GT_GT] = ACTIONS(6948), - [anon_sym_LT_AMP] = ACTIONS(6948), - [anon_sym_GT_AMP] = ACTIONS(6948), - [sym__special_characters] = ACTIONS(7635), - [anon_sym_DQUOTE] = ACTIONS(6948), - [anon_sym_DOLLAR] = ACTIONS(7635), - [sym_raw_string] = ACTIONS(6948), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6948), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6948), - [anon_sym_BQUOTE] = ACTIONS(6948), - [anon_sym_LT_LPAREN] = ACTIONS(6948), - [anon_sym_GT_LPAREN] = ACTIONS(6948), + [sym_file_descriptor] = ACTIONS(7018), + [sym__concat] = ACTIONS(7018), + [sym_variable_name] = ACTIONS(7018), + [anon_sym_LT] = ACTIONS(7709), + [anon_sym_GT] = ACTIONS(7709), + [anon_sym_GT_GT] = ACTIONS(7018), + [anon_sym_AMP_GT] = ACTIONS(7709), + [anon_sym_AMP_GT_GT] = ACTIONS(7018), + [anon_sym_LT_AMP] = ACTIONS(7018), + [anon_sym_GT_AMP] = ACTIONS(7018), + [sym__special_characters] = ACTIONS(7709), + [anon_sym_DQUOTE] = ACTIONS(7018), + [anon_sym_DOLLAR] = ACTIONS(7709), + [sym_raw_string] = ACTIONS(7018), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7018), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7018), + [anon_sym_BQUOTE] = ACTIONS(7018), + [anon_sym_LT_LPAREN] = ACTIONS(7018), + [anon_sym_GT_LPAREN] = ACTIONS(7018), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7635), + [sym_word] = ACTIONS(7709), }, [3434] = { - [sym_file_descriptor] = ACTIONS(6952), - [sym__concat] = ACTIONS(6952), - [sym_variable_name] = ACTIONS(6952), - [anon_sym_LT] = ACTIONS(7637), - [anon_sym_GT] = ACTIONS(7637), - [anon_sym_GT_GT] = ACTIONS(6952), - [anon_sym_AMP_GT] = ACTIONS(7637), - [anon_sym_AMP_GT_GT] = ACTIONS(6952), - [anon_sym_LT_AMP] = ACTIONS(6952), - [anon_sym_GT_AMP] = ACTIONS(6952), - [sym__special_characters] = ACTIONS(7637), - [anon_sym_DQUOTE] = ACTIONS(6952), - [anon_sym_DOLLAR] = ACTIONS(7637), - [sym_raw_string] = ACTIONS(6952), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6952), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6952), - [anon_sym_BQUOTE] = ACTIONS(6952), - [anon_sym_LT_LPAREN] = ACTIONS(6952), - [anon_sym_GT_LPAREN] = ACTIONS(6952), + [sym_file_descriptor] = ACTIONS(7022), + [sym__concat] = ACTIONS(7022), + [sym_variable_name] = ACTIONS(7022), + [anon_sym_LT] = ACTIONS(7711), + [anon_sym_GT] = ACTIONS(7711), + [anon_sym_GT_GT] = ACTIONS(7022), + [anon_sym_AMP_GT] = ACTIONS(7711), + [anon_sym_AMP_GT_GT] = ACTIONS(7022), + [anon_sym_LT_AMP] = ACTIONS(7022), + [anon_sym_GT_AMP] = ACTIONS(7022), + [sym__special_characters] = ACTIONS(7711), + [anon_sym_DQUOTE] = ACTIONS(7022), + [anon_sym_DOLLAR] = ACTIONS(7711), + [sym_raw_string] = ACTIONS(7022), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7022), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7022), + [anon_sym_BQUOTE] = ACTIONS(7022), + [anon_sym_LT_LPAREN] = ACTIONS(7022), + [anon_sym_GT_LPAREN] = ACTIONS(7022), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7637), + [sym_word] = ACTIONS(7711), }, [3435] = { - [sym_file_descriptor] = ACTIONS(6956), - [sym__concat] = ACTIONS(6956), - [sym_variable_name] = ACTIONS(6956), - [anon_sym_LT] = ACTIONS(7639), - [anon_sym_GT] = ACTIONS(7639), - [anon_sym_GT_GT] = ACTIONS(6956), - [anon_sym_AMP_GT] = ACTIONS(7639), - [anon_sym_AMP_GT_GT] = ACTIONS(6956), - [anon_sym_LT_AMP] = ACTIONS(6956), - [anon_sym_GT_AMP] = ACTIONS(6956), - [sym__special_characters] = ACTIONS(7639), - [anon_sym_DQUOTE] = ACTIONS(6956), - [anon_sym_DOLLAR] = ACTIONS(7639), - [sym_raw_string] = ACTIONS(6956), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6956), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6956), - [anon_sym_BQUOTE] = ACTIONS(6956), - [anon_sym_LT_LPAREN] = ACTIONS(6956), - [anon_sym_GT_LPAREN] = ACTIONS(6956), + [sym_file_descriptor] = ACTIONS(7026), + [sym__concat] = ACTIONS(7026), + [sym_variable_name] = ACTIONS(7026), + [anon_sym_LT] = ACTIONS(7713), + [anon_sym_GT] = ACTIONS(7713), + [anon_sym_GT_GT] = ACTIONS(7026), + [anon_sym_AMP_GT] = ACTIONS(7713), + [anon_sym_AMP_GT_GT] = ACTIONS(7026), + [anon_sym_LT_AMP] = ACTIONS(7026), + [anon_sym_GT_AMP] = ACTIONS(7026), + [sym__special_characters] = ACTIONS(7713), + [anon_sym_DQUOTE] = ACTIONS(7026), + [anon_sym_DOLLAR] = ACTIONS(7713), + [sym_raw_string] = ACTIONS(7026), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7026), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7026), + [anon_sym_BQUOTE] = ACTIONS(7026), + [anon_sym_LT_LPAREN] = ACTIONS(7026), + [anon_sym_GT_LPAREN] = ACTIONS(7026), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7639), + [sym_word] = ACTIONS(7713), }, [3436] = { - [sym__concat] = ACTIONS(6948), - [anon_sym_DQUOTE] = ACTIONS(6950), - [anon_sym_DOLLAR] = ACTIONS(6950), - [sym__string_content] = ACTIONS(7635), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6950), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6950), - [anon_sym_BQUOTE] = ACTIONS(6950), + [sym__concat] = ACTIONS(7018), + [anon_sym_DQUOTE] = ACTIONS(7020), + [anon_sym_DOLLAR] = ACTIONS(7020), + [sym__string_content] = ACTIONS(7709), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7020), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7020), + [anon_sym_BQUOTE] = ACTIONS(7020), [sym_comment] = ACTIONS(182), }, [3437] = { - [sym__concat] = ACTIONS(6952), - [anon_sym_DQUOTE] = ACTIONS(6954), - [anon_sym_DOLLAR] = ACTIONS(6954), - [sym__string_content] = ACTIONS(7637), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6954), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6954), - [anon_sym_BQUOTE] = ACTIONS(6954), + [sym__concat] = ACTIONS(7022), + [anon_sym_DQUOTE] = ACTIONS(7024), + [anon_sym_DOLLAR] = ACTIONS(7024), + [sym__string_content] = ACTIONS(7711), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7024), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7024), + [anon_sym_BQUOTE] = ACTIONS(7024), [sym_comment] = ACTIONS(182), }, [3438] = { - [sym__concat] = ACTIONS(6956), - [anon_sym_DQUOTE] = ACTIONS(6958), - [anon_sym_DOLLAR] = ACTIONS(6958), - [sym__string_content] = ACTIONS(7639), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6958), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6958), - [anon_sym_BQUOTE] = ACTIONS(6958), + [sym__concat] = ACTIONS(7026), + [anon_sym_DQUOTE] = ACTIONS(7028), + [anon_sym_DOLLAR] = ACTIONS(7028), + [sym__string_content] = ACTIONS(7713), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7028), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7028), + [anon_sym_BQUOTE] = ACTIONS(7028), [sym_comment] = ACTIONS(182), }, [3439] = { - [sym__concat] = ACTIONS(4728), - [anon_sym_RBRACE] = ACTIONS(4728), + [sym__concat] = ACTIONS(4790), + [anon_sym_RBRACE] = ACTIONS(4790), [sym_comment] = ACTIONS(56), }, [3440] = { - [sym__concat] = ACTIONS(4734), - [anon_sym_RBRACE] = ACTIONS(4734), + [sym__concat] = ACTIONS(4796), + [anon_sym_RBRACE] = ACTIONS(4796), [sym_comment] = ACTIONS(56), }, [3441] = { - [sym__concat] = ACTIONS(4797), - [anon_sym_RBRACE] = ACTIONS(4797), + [sym__concat] = ACTIONS(4859), + [anon_sym_RBRACE] = ACTIONS(4859), [sym_comment] = ACTIONS(56), }, [3442] = { @@ -86695,40 +87063,40 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(7715), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3443] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(7643), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(7717), [sym_comment] = ACTIONS(56), }, [3444] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(7645), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(7719), [sym_comment] = ACTIONS(56), }, [3445] = { - [anon_sym_RBRACE] = ACTIONS(7645), + [anon_sym_RBRACE] = ACTIONS(7719), [sym_comment] = ACTIONS(56), }, [3446] = { @@ -86740,29 +87108,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3877), - [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), + [anon_sym_RBRACE] = ACTIONS(7721), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3447] = { - [sym__concat] = ACTIONS(4809), - [anon_sym_RBRACE] = ACTIONS(4809), + [sym__concat] = ACTIONS(4871), + [anon_sym_RBRACE] = ACTIONS(4871), [sym_comment] = ACTIONS(56), }, [3448] = { @@ -86774,29 +87142,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3879), - [anon_sym_RBRACE] = ACTIONS(7649), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7723), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3449] = { - [sym__concat] = ACTIONS(4815), - [anon_sym_RBRACE] = ACTIONS(4815), + [sym__concat] = ACTIONS(4877), + [anon_sym_RBRACE] = ACTIONS(4877), [sym_comment] = ACTIONS(56), }, [3450] = { @@ -86808,29 +87176,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3881), - [anon_sym_RBRACE] = ACTIONS(7651), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7725), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3451] = { - [sym__concat] = ACTIONS(4821), - [anon_sym_RBRACE] = ACTIONS(4821), + [sym__concat] = ACTIONS(4883), + [anon_sym_RBRACE] = ACTIONS(4883), [sym_comment] = ACTIONS(56), }, [3452] = { @@ -86842,29 +87210,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7653), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7727), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3453] = { - [sym__concat] = ACTIONS(4827), - [anon_sym_RBRACE] = ACTIONS(4827), + [sym__concat] = ACTIONS(4889), + [anon_sym_RBRACE] = ACTIONS(4889), [sym_comment] = ACTIONS(56), }, [3454] = { @@ -86876,113 +87244,113 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7655), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7729), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3455] = { - [sym__concat] = ACTIONS(5961), - [anon_sym_RBRACE] = ACTIONS(5961), - [anon_sym_EQ] = ACTIONS(6846), - [sym__special_characters] = ACTIONS(5963), - [anon_sym_DQUOTE] = ACTIONS(5961), - [anon_sym_DOLLAR] = ACTIONS(6846), - [sym_raw_string] = ACTIONS(5961), - [anon_sym_POUND] = ACTIONS(5961), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5961), - [anon_sym_COLON] = ACTIONS(6846), - [anon_sym_COLON_QMARK] = ACTIONS(6846), - [anon_sym_COLON_DASH] = ACTIONS(6846), - [anon_sym_PERCENT] = ACTIONS(6846), - [anon_sym_DASH] = ACTIONS(6846), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5961), - [anon_sym_BQUOTE] = ACTIONS(5961), - [anon_sym_LT_LPAREN] = ACTIONS(5961), - [anon_sym_GT_LPAREN] = ACTIONS(5961), + [sym__concat] = ACTIONS(6025), + [anon_sym_RBRACE] = ACTIONS(6025), + [anon_sym_EQ] = ACTIONS(6916), + [sym__special_characters] = ACTIONS(6027), + [anon_sym_DQUOTE] = ACTIONS(6025), + [anon_sym_DOLLAR] = ACTIONS(6916), + [sym_raw_string] = ACTIONS(6025), + [anon_sym_POUND] = ACTIONS(6025), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6025), + [anon_sym_COLON] = ACTIONS(6916), + [anon_sym_COLON_QMARK] = ACTIONS(6916), + [anon_sym_COLON_DASH] = ACTIONS(6916), + [anon_sym_PERCENT] = ACTIONS(6916), + [anon_sym_DASH] = ACTIONS(6916), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6025), + [anon_sym_BQUOTE] = ACTIONS(6025), + [anon_sym_LT_LPAREN] = ACTIONS(6025), + [anon_sym_GT_LPAREN] = ACTIONS(6025), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(5963), + [sym_word] = ACTIONS(6027), }, [3456] = { - [sym__concat] = ACTIONS(5965), - [anon_sym_RBRACE] = ACTIONS(5965), - [anon_sym_EQ] = ACTIONS(6848), - [sym__special_characters] = ACTIONS(5967), - [anon_sym_DQUOTE] = ACTIONS(5965), - [anon_sym_DOLLAR] = ACTIONS(6848), - [sym_raw_string] = ACTIONS(5965), - [anon_sym_POUND] = ACTIONS(5965), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5965), - [anon_sym_COLON] = ACTIONS(6848), - [anon_sym_COLON_QMARK] = ACTIONS(6848), - [anon_sym_COLON_DASH] = ACTIONS(6848), - [anon_sym_PERCENT] = ACTIONS(6848), - [anon_sym_DASH] = ACTIONS(6848), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5965), - [anon_sym_BQUOTE] = ACTIONS(5965), - [anon_sym_LT_LPAREN] = ACTIONS(5965), - [anon_sym_GT_LPAREN] = ACTIONS(5965), + [sym__concat] = ACTIONS(6029), + [anon_sym_RBRACE] = ACTIONS(6029), + [anon_sym_EQ] = ACTIONS(6918), + [sym__special_characters] = ACTIONS(6031), + [anon_sym_DQUOTE] = ACTIONS(6029), + [anon_sym_DOLLAR] = ACTIONS(6918), + [sym_raw_string] = ACTIONS(6029), + [anon_sym_POUND] = ACTIONS(6029), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6029), + [anon_sym_COLON] = ACTIONS(6918), + [anon_sym_COLON_QMARK] = ACTIONS(6918), + [anon_sym_COLON_DASH] = ACTIONS(6918), + [anon_sym_PERCENT] = ACTIONS(6918), + [anon_sym_DASH] = ACTIONS(6918), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6029), + [anon_sym_BQUOTE] = ACTIONS(6029), + [anon_sym_LT_LPAREN] = ACTIONS(6029), + [anon_sym_GT_LPAREN] = ACTIONS(6029), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(5967), + [sym_word] = ACTIONS(6031), }, [3457] = { - [sym__concat] = ACTIONS(5969), - [anon_sym_RBRACE] = ACTIONS(5969), - [anon_sym_EQ] = ACTIONS(6850), - [sym__special_characters] = ACTIONS(5971), - [anon_sym_DQUOTE] = ACTIONS(5969), - [anon_sym_DOLLAR] = ACTIONS(6850), - [sym_raw_string] = ACTIONS(5969), - [anon_sym_POUND] = ACTIONS(5969), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5969), - [anon_sym_COLON] = ACTIONS(6850), - [anon_sym_COLON_QMARK] = ACTIONS(6850), - [anon_sym_COLON_DASH] = ACTIONS(6850), - [anon_sym_PERCENT] = ACTIONS(6850), - [anon_sym_DASH] = ACTIONS(6850), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5969), - [anon_sym_BQUOTE] = ACTIONS(5969), - [anon_sym_LT_LPAREN] = ACTIONS(5969), - [anon_sym_GT_LPAREN] = ACTIONS(5969), + [sym__concat] = ACTIONS(6033), + [anon_sym_RBRACE] = ACTIONS(6033), + [anon_sym_EQ] = ACTIONS(6920), + [sym__special_characters] = ACTIONS(6035), + [anon_sym_DQUOTE] = ACTIONS(6033), + [anon_sym_DOLLAR] = ACTIONS(6920), + [sym_raw_string] = ACTIONS(6033), + [anon_sym_POUND] = ACTIONS(6033), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6033), + [anon_sym_COLON] = ACTIONS(6920), + [anon_sym_COLON_QMARK] = ACTIONS(6920), + [anon_sym_COLON_DASH] = ACTIONS(6920), + [anon_sym_PERCENT] = ACTIONS(6920), + [anon_sym_DASH] = ACTIONS(6920), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6033), + [anon_sym_BQUOTE] = ACTIONS(6033), + [anon_sym_LT_LPAREN] = ACTIONS(6033), + [anon_sym_GT_LPAREN] = ACTIONS(6033), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(5971), + [sym_word] = ACTIONS(6035), }, [3458] = { - [sym__concat] = ACTIONS(5973), - [anon_sym_RBRACE] = ACTIONS(5973), - [anon_sym_EQ] = ACTIONS(6852), - [sym__special_characters] = ACTIONS(5975), - [anon_sym_DQUOTE] = ACTIONS(5973), - [anon_sym_DOLLAR] = ACTIONS(6852), - [sym_raw_string] = ACTIONS(5973), - [anon_sym_POUND] = ACTIONS(5973), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5973), - [anon_sym_COLON] = ACTIONS(6852), - [anon_sym_COLON_QMARK] = ACTIONS(6852), - [anon_sym_COLON_DASH] = ACTIONS(6852), - [anon_sym_PERCENT] = ACTIONS(6852), - [anon_sym_DASH] = ACTIONS(6852), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5973), - [anon_sym_BQUOTE] = ACTIONS(5973), - [anon_sym_LT_LPAREN] = ACTIONS(5973), - [anon_sym_GT_LPAREN] = ACTIONS(5973), + [sym__concat] = ACTIONS(6037), + [anon_sym_RBRACE] = ACTIONS(6037), + [anon_sym_EQ] = ACTIONS(6922), + [sym__special_characters] = ACTIONS(6039), + [anon_sym_DQUOTE] = ACTIONS(6037), + [anon_sym_DOLLAR] = ACTIONS(6922), + [sym_raw_string] = ACTIONS(6037), + [anon_sym_POUND] = ACTIONS(6037), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6037), + [anon_sym_COLON] = ACTIONS(6922), + [anon_sym_COLON_QMARK] = ACTIONS(6922), + [anon_sym_COLON_DASH] = ACTIONS(6922), + [anon_sym_PERCENT] = ACTIONS(6922), + [anon_sym_DASH] = ACTIONS(6922), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6037), + [anon_sym_BQUOTE] = ACTIONS(6037), + [anon_sym_LT_LPAREN] = ACTIONS(6037), + [anon_sym_GT_LPAREN] = ACTIONS(6037), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(5975), + [sym_word] = ACTIONS(6039), }, [3459] = { [sym_concatenation] = STATE(451), @@ -86993,47 +87361,47 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(7731), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3460] = { - [sym__concat] = ACTIONS(5979), - [anon_sym_RBRACE] = ACTIONS(5979), - [anon_sym_EQ] = ACTIONS(6856), - [sym__special_characters] = ACTIONS(5981), - [anon_sym_DQUOTE] = ACTIONS(5979), - [anon_sym_DOLLAR] = ACTIONS(6856), - [sym_raw_string] = ACTIONS(5979), - [anon_sym_POUND] = ACTIONS(5979), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5979), - [anon_sym_COLON] = ACTIONS(6856), - [anon_sym_COLON_QMARK] = ACTIONS(6856), - [anon_sym_COLON_DASH] = ACTIONS(6856), - [anon_sym_PERCENT] = ACTIONS(6856), - [anon_sym_DASH] = ACTIONS(6856), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5979), - [anon_sym_BQUOTE] = ACTIONS(5979), - [anon_sym_LT_LPAREN] = ACTIONS(5979), - [anon_sym_GT_LPAREN] = ACTIONS(5979), + [sym__concat] = ACTIONS(6043), + [anon_sym_RBRACE] = ACTIONS(6043), + [anon_sym_EQ] = ACTIONS(6926), + [sym__special_characters] = ACTIONS(6045), + [anon_sym_DQUOTE] = ACTIONS(6043), + [anon_sym_DOLLAR] = ACTIONS(6926), + [sym_raw_string] = ACTIONS(6043), + [anon_sym_POUND] = ACTIONS(6043), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6043), + [anon_sym_COLON] = ACTIONS(6926), + [anon_sym_COLON_QMARK] = ACTIONS(6926), + [anon_sym_COLON_DASH] = ACTIONS(6926), + [anon_sym_PERCENT] = ACTIONS(6926), + [anon_sym_DASH] = ACTIONS(6926), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6043), + [anon_sym_BQUOTE] = ACTIONS(6043), + [anon_sym_LT_LPAREN] = ACTIONS(6043), + [anon_sym_GT_LPAREN] = ACTIONS(6043), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(5981), + [sym_word] = ACTIONS(6045), }, [3461] = { [sym_concatenation] = STATE(451), @@ -87044,47 +87412,47 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7659), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7733), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3462] = { - [sym__concat] = ACTIONS(5985), - [anon_sym_RBRACE] = ACTIONS(5985), - [anon_sym_EQ] = ACTIONS(6860), - [sym__special_characters] = ACTIONS(5987), - [anon_sym_DQUOTE] = ACTIONS(5985), - [anon_sym_DOLLAR] = ACTIONS(6860), - [sym_raw_string] = ACTIONS(5985), - [anon_sym_POUND] = ACTIONS(5985), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5985), - [anon_sym_COLON] = ACTIONS(6860), - [anon_sym_COLON_QMARK] = ACTIONS(6860), - [anon_sym_COLON_DASH] = ACTIONS(6860), - [anon_sym_PERCENT] = ACTIONS(6860), - [anon_sym_DASH] = ACTIONS(6860), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5985), - [anon_sym_BQUOTE] = ACTIONS(5985), - [anon_sym_LT_LPAREN] = ACTIONS(5985), - [anon_sym_GT_LPAREN] = ACTIONS(5985), + [sym__concat] = ACTIONS(6049), + [anon_sym_RBRACE] = ACTIONS(6049), + [anon_sym_EQ] = ACTIONS(6930), + [sym__special_characters] = ACTIONS(6051), + [anon_sym_DQUOTE] = ACTIONS(6049), + [anon_sym_DOLLAR] = ACTIONS(6930), + [sym_raw_string] = ACTIONS(6049), + [anon_sym_POUND] = ACTIONS(6049), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6049), + [anon_sym_COLON] = ACTIONS(6930), + [anon_sym_COLON_QMARK] = ACTIONS(6930), + [anon_sym_COLON_DASH] = ACTIONS(6930), + [anon_sym_PERCENT] = ACTIONS(6930), + [anon_sym_DASH] = ACTIONS(6930), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6049), + [anon_sym_BQUOTE] = ACTIONS(6049), + [anon_sym_LT_LPAREN] = ACTIONS(6049), + [anon_sym_GT_LPAREN] = ACTIONS(6049), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(5987), + [sym_word] = ACTIONS(6051), }, [3463] = { [sym_concatenation] = STATE(451), @@ -87095,153 +87463,153 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(7735), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3464] = { - [sym__concat] = ACTIONS(5991), - [anon_sym_RBRACE] = ACTIONS(5991), - [anon_sym_EQ] = ACTIONS(6864), - [sym__special_characters] = ACTIONS(5993), - [anon_sym_DQUOTE] = ACTIONS(5991), - [anon_sym_DOLLAR] = ACTIONS(6864), - [sym_raw_string] = ACTIONS(5991), - [anon_sym_POUND] = ACTIONS(5991), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5991), - [anon_sym_COLON] = ACTIONS(6864), - [anon_sym_COLON_QMARK] = ACTIONS(6864), - [anon_sym_COLON_DASH] = ACTIONS(6864), - [anon_sym_PERCENT] = ACTIONS(6864), - [anon_sym_DASH] = ACTIONS(6864), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5991), - [anon_sym_BQUOTE] = ACTIONS(5991), - [anon_sym_LT_LPAREN] = ACTIONS(5991), - [anon_sym_GT_LPAREN] = ACTIONS(5991), + [sym__concat] = ACTIONS(6055), + [anon_sym_RBRACE] = ACTIONS(6055), + [anon_sym_EQ] = ACTIONS(6934), + [sym__special_characters] = ACTIONS(6057), + [anon_sym_DQUOTE] = ACTIONS(6055), + [anon_sym_DOLLAR] = ACTIONS(6934), + [sym_raw_string] = ACTIONS(6055), + [anon_sym_POUND] = ACTIONS(6055), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6055), + [anon_sym_COLON] = ACTIONS(6934), + [anon_sym_COLON_QMARK] = ACTIONS(6934), + [anon_sym_COLON_DASH] = ACTIONS(6934), + [anon_sym_PERCENT] = ACTIONS(6934), + [anon_sym_DASH] = ACTIONS(6934), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6055), + [anon_sym_BQUOTE] = ACTIONS(6055), + [anon_sym_LT_LPAREN] = ACTIONS(6055), + [anon_sym_GT_LPAREN] = ACTIONS(6055), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(5993), + [sym_word] = ACTIONS(6057), }, [3465] = { - [sym__concat] = ACTIONS(5995), - [anon_sym_RBRACE] = ACTIONS(5995), - [anon_sym_EQ] = ACTIONS(6866), - [sym__special_characters] = ACTIONS(5997), - [anon_sym_DQUOTE] = ACTIONS(5995), - [anon_sym_DOLLAR] = ACTIONS(6866), - [sym_raw_string] = ACTIONS(5995), - [anon_sym_POUND] = ACTIONS(5995), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5995), - [anon_sym_COLON] = ACTIONS(6866), - [anon_sym_COLON_QMARK] = ACTIONS(6866), - [anon_sym_COLON_DASH] = ACTIONS(6866), - [anon_sym_PERCENT] = ACTIONS(6866), - [anon_sym_DASH] = ACTIONS(6866), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5995), - [anon_sym_BQUOTE] = ACTIONS(5995), - [anon_sym_LT_LPAREN] = ACTIONS(5995), - [anon_sym_GT_LPAREN] = ACTIONS(5995), + [sym__concat] = ACTIONS(6059), + [anon_sym_RBRACE] = ACTIONS(6059), + [anon_sym_EQ] = ACTIONS(6936), + [sym__special_characters] = ACTIONS(6061), + [anon_sym_DQUOTE] = ACTIONS(6059), + [anon_sym_DOLLAR] = ACTIONS(6936), + [sym_raw_string] = ACTIONS(6059), + [anon_sym_POUND] = ACTIONS(6059), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6059), + [anon_sym_COLON] = ACTIONS(6936), + [anon_sym_COLON_QMARK] = ACTIONS(6936), + [anon_sym_COLON_DASH] = ACTIONS(6936), + [anon_sym_PERCENT] = ACTIONS(6936), + [anon_sym_DASH] = ACTIONS(6936), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6059), + [anon_sym_BQUOTE] = ACTIONS(6059), + [anon_sym_LT_LPAREN] = ACTIONS(6059), + [anon_sym_GT_LPAREN] = ACTIONS(6059), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(5997), + [sym_word] = ACTIONS(6061), }, [3466] = { - [sym_file_descriptor] = ACTIONS(4728), - [sym__concat] = ACTIONS(4728), - [sym_variable_name] = ACTIONS(4728), - [anon_sym_PIPE] = ACTIONS(5780), - [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(5780), - [anon_sym_GT] = ACTIONS(5780), - [anon_sym_GT_GT] = ACTIONS(4728), - [anon_sym_AMP_GT] = ACTIONS(5780), - [anon_sym_AMP_GT_GT] = ACTIONS(4728), - [anon_sym_LT_AMP] = ACTIONS(4728), - [anon_sym_GT_AMP] = ACTIONS(4728), - [sym__special_characters] = ACTIONS(5780), - [anon_sym_DQUOTE] = ACTIONS(4728), - [anon_sym_DOLLAR] = ACTIONS(5780), - [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_file_descriptor] = ACTIONS(4790), + [sym__concat] = ACTIONS(4790), + [sym_variable_name] = ACTIONS(4790), + [anon_sym_PIPE] = ACTIONS(5844), + [anon_sym_RPAREN] = ACTIONS(4790), + [anon_sym_PIPE_AMP] = ACTIONS(4790), + [anon_sym_AMP_AMP] = ACTIONS(4790), + [anon_sym_PIPE_PIPE] = ACTIONS(4790), + [anon_sym_LT] = ACTIONS(5844), + [anon_sym_GT] = ACTIONS(5844), + [anon_sym_GT_GT] = ACTIONS(4790), + [anon_sym_AMP_GT] = ACTIONS(5844), + [anon_sym_AMP_GT_GT] = ACTIONS(4790), + [anon_sym_LT_AMP] = ACTIONS(4790), + [anon_sym_GT_AMP] = ACTIONS(4790), + [sym__special_characters] = ACTIONS(5844), + [anon_sym_DQUOTE] = ACTIONS(4790), + [anon_sym_DOLLAR] = ACTIONS(5844), + [sym_raw_string] = ACTIONS(4790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4790), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4790), + [anon_sym_BQUOTE] = ACTIONS(4790), + [anon_sym_LT_LPAREN] = ACTIONS(4790), + [anon_sym_GT_LPAREN] = ACTIONS(4790), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5780), + [sym_word] = ACTIONS(5844), }, [3467] = { - [sym_file_descriptor] = ACTIONS(4734), - [sym__concat] = ACTIONS(4734), - [sym_variable_name] = ACTIONS(4734), - [anon_sym_PIPE] = ACTIONS(5782), - [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(5782), - [anon_sym_GT] = ACTIONS(5782), - [anon_sym_GT_GT] = ACTIONS(4734), - [anon_sym_AMP_GT] = ACTIONS(5782), - [anon_sym_AMP_GT_GT] = ACTIONS(4734), - [anon_sym_LT_AMP] = ACTIONS(4734), - [anon_sym_GT_AMP] = ACTIONS(4734), - [sym__special_characters] = ACTIONS(5782), - [anon_sym_DQUOTE] = ACTIONS(4734), - [anon_sym_DOLLAR] = ACTIONS(5782), - [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_file_descriptor] = ACTIONS(4796), + [sym__concat] = ACTIONS(4796), + [sym_variable_name] = ACTIONS(4796), + [anon_sym_PIPE] = ACTIONS(5846), + [anon_sym_RPAREN] = ACTIONS(4796), + [anon_sym_PIPE_AMP] = ACTIONS(4796), + [anon_sym_AMP_AMP] = ACTIONS(4796), + [anon_sym_PIPE_PIPE] = ACTIONS(4796), + [anon_sym_LT] = ACTIONS(5846), + [anon_sym_GT] = ACTIONS(5846), + [anon_sym_GT_GT] = ACTIONS(4796), + [anon_sym_AMP_GT] = ACTIONS(5846), + [anon_sym_AMP_GT_GT] = ACTIONS(4796), + [anon_sym_LT_AMP] = ACTIONS(4796), + [anon_sym_GT_AMP] = ACTIONS(4796), + [sym__special_characters] = ACTIONS(5846), + [anon_sym_DQUOTE] = ACTIONS(4796), + [anon_sym_DOLLAR] = ACTIONS(5846), + [sym_raw_string] = ACTIONS(4796), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4796), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4796), + [anon_sym_BQUOTE] = ACTIONS(4796), + [anon_sym_LT_LPAREN] = ACTIONS(4796), + [anon_sym_GT_LPAREN] = ACTIONS(4796), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5782), + [sym_word] = ACTIONS(5846), }, [3468] = { - [sym_file_descriptor] = ACTIONS(4797), - [sym__concat] = ACTIONS(4797), - [sym_variable_name] = ACTIONS(4797), - [anon_sym_PIPE] = ACTIONS(5784), - [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(5784), - [anon_sym_GT] = ACTIONS(5784), - [anon_sym_GT_GT] = ACTIONS(4797), - [anon_sym_AMP_GT] = ACTIONS(5784), - [anon_sym_AMP_GT_GT] = ACTIONS(4797), - [anon_sym_LT_AMP] = ACTIONS(4797), - [anon_sym_GT_AMP] = ACTIONS(4797), - [sym__special_characters] = ACTIONS(5784), - [anon_sym_DQUOTE] = ACTIONS(4797), - [anon_sym_DOLLAR] = ACTIONS(5784), - [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_file_descriptor] = ACTIONS(4859), + [sym__concat] = ACTIONS(4859), + [sym_variable_name] = ACTIONS(4859), + [anon_sym_PIPE] = ACTIONS(5848), + [anon_sym_RPAREN] = ACTIONS(4859), + [anon_sym_PIPE_AMP] = ACTIONS(4859), + [anon_sym_AMP_AMP] = ACTIONS(4859), + [anon_sym_PIPE_PIPE] = ACTIONS(4859), + [anon_sym_LT] = ACTIONS(5848), + [anon_sym_GT] = ACTIONS(5848), + [anon_sym_GT_GT] = ACTIONS(4859), + [anon_sym_AMP_GT] = ACTIONS(5848), + [anon_sym_AMP_GT_GT] = ACTIONS(4859), + [anon_sym_LT_AMP] = ACTIONS(4859), + [anon_sym_GT_AMP] = ACTIONS(4859), + [sym__special_characters] = ACTIONS(5848), + [anon_sym_DQUOTE] = ACTIONS(4859), + [anon_sym_DOLLAR] = ACTIONS(5848), + [sym_raw_string] = ACTIONS(4859), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4859), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4859), + [anon_sym_BQUOTE] = ACTIONS(4859), + [anon_sym_LT_LPAREN] = ACTIONS(4859), + [anon_sym_GT_LPAREN] = ACTIONS(4859), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5784), + [sym_word] = ACTIONS(5848), }, [3469] = { [sym_concatenation] = STATE(451), @@ -87252,40 +87620,40 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7663), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7737), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3470] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(7665), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(7739), [sym_comment] = ACTIONS(56), }, [3471] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(7667), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(7741), [sym_comment] = ACTIONS(56), }, [3472] = { - [anon_sym_RBRACE] = ACTIONS(7667), + [anon_sym_RBRACE] = ACTIONS(7741), [sym_comment] = ACTIONS(56), }, [3473] = { @@ -87297,53 +87665,53 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3891), - [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), + [anon_sym_RBRACE] = ACTIONS(7743), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3474] = { - [sym_file_descriptor] = ACTIONS(4809), - [sym__concat] = ACTIONS(4809), - [sym_variable_name] = ACTIONS(4809), - [anon_sym_PIPE] = ACTIONS(5794), - [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(5794), - [anon_sym_GT] = ACTIONS(5794), - [anon_sym_GT_GT] = ACTIONS(4809), - [anon_sym_AMP_GT] = ACTIONS(5794), - [anon_sym_AMP_GT_GT] = ACTIONS(4809), - [anon_sym_LT_AMP] = ACTIONS(4809), - [anon_sym_GT_AMP] = ACTIONS(4809), - [sym__special_characters] = ACTIONS(5794), - [anon_sym_DQUOTE] = ACTIONS(4809), - [anon_sym_DOLLAR] = ACTIONS(5794), - [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_file_descriptor] = ACTIONS(4871), + [sym__concat] = ACTIONS(4871), + [sym_variable_name] = ACTIONS(4871), + [anon_sym_PIPE] = ACTIONS(5858), + [anon_sym_RPAREN] = ACTIONS(4871), + [anon_sym_PIPE_AMP] = ACTIONS(4871), + [anon_sym_AMP_AMP] = ACTIONS(4871), + [anon_sym_PIPE_PIPE] = ACTIONS(4871), + [anon_sym_LT] = ACTIONS(5858), + [anon_sym_GT] = ACTIONS(5858), + [anon_sym_GT_GT] = ACTIONS(4871), + [anon_sym_AMP_GT] = ACTIONS(5858), + [anon_sym_AMP_GT_GT] = ACTIONS(4871), + [anon_sym_LT_AMP] = ACTIONS(4871), + [anon_sym_GT_AMP] = ACTIONS(4871), + [sym__special_characters] = ACTIONS(5858), + [anon_sym_DQUOTE] = ACTIONS(4871), + [anon_sym_DOLLAR] = ACTIONS(5858), + [sym_raw_string] = ACTIONS(4871), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4871), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4871), + [anon_sym_BQUOTE] = ACTIONS(4871), + [anon_sym_LT_LPAREN] = ACTIONS(4871), + [anon_sym_GT_LPAREN] = ACTIONS(4871), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5794), + [sym_word] = ACTIONS(5858), }, [3475] = { [sym_concatenation] = STATE(451), @@ -87354,53 +87722,53 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3893), - [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), + [anon_sym_RBRACE] = ACTIONS(7745), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3476] = { - [sym_file_descriptor] = ACTIONS(4815), - [sym__concat] = ACTIONS(4815), - [sym_variable_name] = ACTIONS(4815), - [anon_sym_PIPE] = ACTIONS(5798), - [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(5798), - [anon_sym_GT] = ACTIONS(5798), - [anon_sym_GT_GT] = ACTIONS(4815), - [anon_sym_AMP_GT] = ACTIONS(5798), - [anon_sym_AMP_GT_GT] = ACTIONS(4815), - [anon_sym_LT_AMP] = ACTIONS(4815), - [anon_sym_GT_AMP] = ACTIONS(4815), - [sym__special_characters] = ACTIONS(5798), - [anon_sym_DQUOTE] = ACTIONS(4815), - [anon_sym_DOLLAR] = ACTIONS(5798), - [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_file_descriptor] = ACTIONS(4877), + [sym__concat] = ACTIONS(4877), + [sym_variable_name] = ACTIONS(4877), + [anon_sym_PIPE] = ACTIONS(5862), + [anon_sym_RPAREN] = ACTIONS(4877), + [anon_sym_PIPE_AMP] = ACTIONS(4877), + [anon_sym_AMP_AMP] = ACTIONS(4877), + [anon_sym_PIPE_PIPE] = ACTIONS(4877), + [anon_sym_LT] = ACTIONS(5862), + [anon_sym_GT] = ACTIONS(5862), + [anon_sym_GT_GT] = ACTIONS(4877), + [anon_sym_AMP_GT] = ACTIONS(5862), + [anon_sym_AMP_GT_GT] = ACTIONS(4877), + [anon_sym_LT_AMP] = ACTIONS(4877), + [anon_sym_GT_AMP] = ACTIONS(4877), + [sym__special_characters] = ACTIONS(5862), + [anon_sym_DQUOTE] = ACTIONS(4877), + [anon_sym_DOLLAR] = ACTIONS(5862), + [sym_raw_string] = ACTIONS(4877), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4877), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4877), + [anon_sym_BQUOTE] = ACTIONS(4877), + [anon_sym_LT_LPAREN] = ACTIONS(4877), + [anon_sym_GT_LPAREN] = ACTIONS(4877), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5798), + [sym_word] = ACTIONS(5862), }, [3477] = { [sym_concatenation] = STATE(451), @@ -87411,53 +87779,53 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3895), - [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), + [anon_sym_RBRACE] = ACTIONS(7747), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3478] = { - [sym_file_descriptor] = ACTIONS(4821), - [sym__concat] = ACTIONS(4821), - [sym_variable_name] = ACTIONS(4821), - [anon_sym_PIPE] = ACTIONS(5802), - [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(5802), - [anon_sym_GT] = ACTIONS(5802), - [anon_sym_GT_GT] = ACTIONS(4821), - [anon_sym_AMP_GT] = ACTIONS(5802), - [anon_sym_AMP_GT_GT] = ACTIONS(4821), - [anon_sym_LT_AMP] = ACTIONS(4821), - [anon_sym_GT_AMP] = ACTIONS(4821), - [sym__special_characters] = ACTIONS(5802), - [anon_sym_DQUOTE] = ACTIONS(4821), - [anon_sym_DOLLAR] = ACTIONS(5802), - [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_file_descriptor] = ACTIONS(4883), + [sym__concat] = ACTIONS(4883), + [sym_variable_name] = ACTIONS(4883), + [anon_sym_PIPE] = ACTIONS(5866), + [anon_sym_RPAREN] = ACTIONS(4883), + [anon_sym_PIPE_AMP] = ACTIONS(4883), + [anon_sym_AMP_AMP] = ACTIONS(4883), + [anon_sym_PIPE_PIPE] = ACTIONS(4883), + [anon_sym_LT] = ACTIONS(5866), + [anon_sym_GT] = ACTIONS(5866), + [anon_sym_GT_GT] = ACTIONS(4883), + [anon_sym_AMP_GT] = ACTIONS(5866), + [anon_sym_AMP_GT_GT] = ACTIONS(4883), + [anon_sym_LT_AMP] = ACTIONS(4883), + [anon_sym_GT_AMP] = ACTIONS(4883), + [sym__special_characters] = ACTIONS(5866), + [anon_sym_DQUOTE] = ACTIONS(4883), + [anon_sym_DOLLAR] = ACTIONS(5866), + [sym_raw_string] = ACTIONS(4883), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4883), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4883), + [anon_sym_BQUOTE] = ACTIONS(4883), + [anon_sym_LT_LPAREN] = ACTIONS(4883), + [anon_sym_GT_LPAREN] = ACTIONS(4883), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5802), + [sym_word] = ACTIONS(5866), }, [3479] = { [sym_concatenation] = STATE(451), @@ -87468,53 +87836,53 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(7749), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3480] = { - [sym_file_descriptor] = ACTIONS(4827), - [sym__concat] = ACTIONS(4827), - [sym_variable_name] = ACTIONS(4827), - [anon_sym_PIPE] = ACTIONS(5806), - [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(5806), - [anon_sym_GT] = ACTIONS(5806), - [anon_sym_GT_GT] = ACTIONS(4827), - [anon_sym_AMP_GT] = ACTIONS(5806), - [anon_sym_AMP_GT_GT] = ACTIONS(4827), - [anon_sym_LT_AMP] = ACTIONS(4827), - [anon_sym_GT_AMP] = ACTIONS(4827), - [sym__special_characters] = ACTIONS(5806), - [anon_sym_DQUOTE] = ACTIONS(4827), - [anon_sym_DOLLAR] = ACTIONS(5806), - [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_file_descriptor] = ACTIONS(4889), + [sym__concat] = ACTIONS(4889), + [sym_variable_name] = ACTIONS(4889), + [anon_sym_PIPE] = ACTIONS(5870), + [anon_sym_RPAREN] = ACTIONS(4889), + [anon_sym_PIPE_AMP] = ACTIONS(4889), + [anon_sym_AMP_AMP] = ACTIONS(4889), + [anon_sym_PIPE_PIPE] = ACTIONS(4889), + [anon_sym_LT] = ACTIONS(5870), + [anon_sym_GT] = ACTIONS(5870), + [anon_sym_GT_GT] = ACTIONS(4889), + [anon_sym_AMP_GT] = ACTIONS(5870), + [anon_sym_AMP_GT_GT] = ACTIONS(4889), + [anon_sym_LT_AMP] = ACTIONS(4889), + [anon_sym_GT_AMP] = ACTIONS(4889), + [sym__special_characters] = ACTIONS(5870), + [anon_sym_DQUOTE] = ACTIONS(4889), + [anon_sym_DOLLAR] = ACTIONS(5870), + [sym_raw_string] = ACTIONS(4889), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4889), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4889), + [anon_sym_BQUOTE] = ACTIONS(4889), + [anon_sym_LT_LPAREN] = ACTIONS(4889), + [anon_sym_GT_LPAREN] = ACTIONS(4889), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5806), + [sym_word] = ACTIONS(5870), }, [3481] = { [sym_concatenation] = STATE(451), @@ -87525,33 +87893,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(7751), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3482] = { - [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), + [anon_sym_PIPE] = ACTIONS(4933), + [anon_sym_RPAREN] = ACTIONS(2669), + [anon_sym_PIPE_AMP] = ACTIONS(2669), + [anon_sym_AMP_AMP] = ACTIONS(2669), + [anon_sym_PIPE_PIPE] = ACTIONS(2669), + [anon_sym_BQUOTE] = ACTIONS(2669), [sym_comment] = ACTIONS(56), }, [3483] = { @@ -87585,7 +87953,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(12), [anon_sym_for] = ACTIONS(16), [anon_sym_while] = ACTIONS(18), - [anon_sym_done] = ACTIONS(7679), + [anon_sym_done] = ACTIONS(7753), [anon_sym_if] = ACTIONS(20), [anon_sym_case] = ACTIONS(22), [anon_sym_function] = ACTIONS(24), @@ -87619,66 +87987,66 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(58), }, [3484] = { - [anon_sym_PIPE] = ACTIONS(7681), - [anon_sym_RPAREN] = ACTIONS(7683), - [anon_sym_PIPE_AMP] = ACTIONS(7683), - [anon_sym_AMP_AMP] = ACTIONS(7683), - [anon_sym_PIPE_PIPE] = ACTIONS(7683), - [anon_sym_BQUOTE] = ACTIONS(7683), + [anon_sym_PIPE] = ACTIONS(7755), + [anon_sym_RPAREN] = ACTIONS(7757), + [anon_sym_PIPE_AMP] = ACTIONS(7757), + [anon_sym_AMP_AMP] = ACTIONS(7757), + [anon_sym_PIPE_PIPE] = ACTIONS(7757), + [anon_sym_BQUOTE] = ACTIONS(7757), [sym_comment] = ACTIONS(56), }, [3485] = { - [anon_sym_PIPE] = ACTIONS(7685), - [anon_sym_RPAREN] = ACTIONS(7687), - [anon_sym_PIPE_AMP] = ACTIONS(7687), - [anon_sym_AMP_AMP] = ACTIONS(7687), - [anon_sym_PIPE_PIPE] = ACTIONS(7687), - [anon_sym_BQUOTE] = ACTIONS(7687), + [anon_sym_PIPE] = ACTIONS(7759), + [anon_sym_RPAREN] = ACTIONS(7761), + [anon_sym_PIPE_AMP] = ACTIONS(7761), + [anon_sym_AMP_AMP] = ACTIONS(7761), + [anon_sym_PIPE_PIPE] = ACTIONS(7761), + [anon_sym_BQUOTE] = ACTIONS(7761), [sym_comment] = ACTIONS(56), }, [3486] = { - [anon_sym_esac] = ACTIONS(7689), + [anon_sym_esac] = ACTIONS(7763), [sym_comment] = ACTIONS(56), }, [3487] = { - [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), + [anon_sym_PIPE] = ACTIONS(7765), + [anon_sym_RPAREN] = ACTIONS(7767), + [anon_sym_PIPE_AMP] = ACTIONS(7767), + [anon_sym_AMP_AMP] = ACTIONS(7767), + [anon_sym_PIPE_PIPE] = ACTIONS(7767), + [anon_sym_BQUOTE] = ACTIONS(7767), [sym_comment] = ACTIONS(56), }, [3488] = { - [anon_sym_esac] = ACTIONS(7695), + [anon_sym_esac] = ACTIONS(7769), [sym_comment] = ACTIONS(56), }, [3489] = { - [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__concat] = ACTIONS(1886), + [anon_sym_PIPE] = ACTIONS(3056), + [anon_sym_RPAREN] = ACTIONS(1886), + [anon_sym_PIPE_AMP] = ACTIONS(1886), + [anon_sym_AMP_AMP] = ACTIONS(1886), + [anon_sym_PIPE_PIPE] = ACTIONS(1886), [sym_comment] = ACTIONS(56), }, [3490] = { [aux_sym_concatenation_repeat1] = STATE(3490), - [sym__concat] = ACTIONS(7697), - [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__concat] = ACTIONS(7771), + [anon_sym_PIPE] = ACTIONS(3056), + [anon_sym_RPAREN] = ACTIONS(1886), + [anon_sym_PIPE_AMP] = ACTIONS(1886), + [anon_sym_AMP_AMP] = ACTIONS(1886), + [anon_sym_PIPE_PIPE] = ACTIONS(1886), [sym_comment] = ACTIONS(56), }, [3491] = { - [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__concat] = ACTIONS(1923), + [anon_sym_PIPE] = ACTIONS(3061), + [anon_sym_RPAREN] = ACTIONS(1923), + [anon_sym_PIPE_AMP] = ACTIONS(1923), + [anon_sym_AMP_AMP] = ACTIONS(1923), + [anon_sym_PIPE_PIPE] = ACTIONS(1923), [sym_comment] = ACTIONS(56), }, [3492] = { @@ -87689,31 +88057,31 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(3903), [sym_command_substitution] = STATE(3903), [sym_process_substitution] = STATE(3903), - [anon_sym_RBRACE] = ACTIONS(7700), - [sym__special_characters] = ACTIONS(7702), - [anon_sym_DQUOTE] = ACTIONS(1924), - [anon_sym_DOLLAR] = ACTIONS(1926), - [sym_raw_string] = ACTIONS(7704), - [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), + [anon_sym_RBRACE] = ACTIONS(7774), + [sym__special_characters] = ACTIONS(7776), + [anon_sym_DQUOTE] = ACTIONS(1952), + [anon_sym_DOLLAR] = ACTIONS(1954), + [sym_raw_string] = ACTIONS(7778), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), + [anon_sym_BQUOTE] = ACTIONS(1962), + [anon_sym_LT_LPAREN] = ACTIONS(1964), + [anon_sym_GT_LPAREN] = ACTIONS(1964), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7706), + [sym_word] = ACTIONS(7780), }, [3493] = { - [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__concat] = ACTIONS(1968), + [anon_sym_PIPE] = ACTIONS(3071), + [anon_sym_RPAREN] = ACTIONS(1968), + [anon_sym_PIPE_AMP] = ACTIONS(1968), + [anon_sym_AMP_AMP] = ACTIONS(1968), + [anon_sym_PIPE_PIPE] = ACTIONS(1968), [sym_comment] = ACTIONS(56), }, [3494] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(7708), + [sym_regex_without_right_brace] = ACTIONS(7782), }, [3495] = { [sym_concatenation] = STATE(451), @@ -87724,29 +88092,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7710), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7784), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3496] = { - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(7712), + [anon_sym_LBRACK] = ACTIONS(836), + [anon_sym_EQ] = ACTIONS(7786), [sym_comment] = ACTIONS(56), }, [3497] = { @@ -87758,26 +88126,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3910), - [anon_sym_RBRACE] = ACTIONS(7714), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_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(7716), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7788), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(7790), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3498] = { [sym_concatenation] = STATE(451), @@ -87788,26 +88156,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3913), - [anon_sym_RBRACE] = ACTIONS(7718), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_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(7720), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7792), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(7794), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3499] = { [sym_concatenation] = STATE(451), @@ -87818,39 +88186,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3915), - [anon_sym_RBRACE] = ACTIONS(7700), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_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(7722), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7774), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(7796), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3500] = { - [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__concat] = ACTIONS(2022), + [anon_sym_PIPE] = ACTIONS(3089), + [anon_sym_RPAREN] = ACTIONS(2022), + [anon_sym_PIPE_AMP] = ACTIONS(2022), + [anon_sym_AMP_AMP] = ACTIONS(2022), + [anon_sym_PIPE_PIPE] = ACTIONS(2022), [sym_comment] = ACTIONS(56), }, [3501] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(7724), + [sym_regex_without_right_brace] = ACTIONS(7798), }, [3502] = { [sym_concatenation] = STATE(451), @@ -87861,38 +88229,38 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7726), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7800), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3503] = { - [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__concat] = ACTIONS(2030), + [anon_sym_PIPE] = ACTIONS(3095), + [anon_sym_RPAREN] = ACTIONS(2030), + [anon_sym_PIPE_AMP] = ACTIONS(2030), + [anon_sym_AMP_AMP] = ACTIONS(2030), + [anon_sym_PIPE_PIPE] = ACTIONS(2030), [sym_comment] = ACTIONS(56), }, [3504] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(7728), + [sym_regex_without_right_brace] = ACTIONS(7802), }, [3505] = { [sym_concatenation] = STATE(451), @@ -87903,127 +88271,127 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7700), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7774), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3506] = { - [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__concat] = ACTIONS(2190), + [anon_sym_PIPE] = ACTIONS(3099), + [anon_sym_RPAREN] = ACTIONS(2190), + [anon_sym_PIPE_AMP] = ACTIONS(2190), + [anon_sym_AMP_AMP] = ACTIONS(2190), + [anon_sym_PIPE_PIPE] = ACTIONS(2190), [sym_comment] = ACTIONS(56), }, [3507] = { - [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__concat] = ACTIONS(2396), + [anon_sym_PIPE] = ACTIONS(3101), + [anon_sym_RPAREN] = ACTIONS(2396), + [anon_sym_PIPE_AMP] = ACTIONS(2396), + [anon_sym_AMP_AMP] = ACTIONS(2396), + [anon_sym_PIPE_PIPE] = ACTIONS(2396), [sym_comment] = ACTIONS(56), }, [3508] = { - [sym__concat] = ACTIONS(5961), - [sym_variable_name] = ACTIONS(5961), - [anon_sym_PIPE] = ACTIONS(6846), - [anon_sym_RPAREN] = ACTIONS(5961), - [anon_sym_PIPE_AMP] = ACTIONS(5961), - [anon_sym_AMP_AMP] = ACTIONS(5961), - [anon_sym_PIPE_PIPE] = ACTIONS(5961), - [sym__special_characters] = ACTIONS(6846), - [anon_sym_DQUOTE] = ACTIONS(5961), - [anon_sym_DOLLAR] = ACTIONS(6846), - [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__concat] = ACTIONS(6025), + [sym_variable_name] = ACTIONS(6025), + [anon_sym_PIPE] = ACTIONS(6916), + [anon_sym_RPAREN] = ACTIONS(6025), + [anon_sym_PIPE_AMP] = ACTIONS(6025), + [anon_sym_AMP_AMP] = ACTIONS(6025), + [anon_sym_PIPE_PIPE] = ACTIONS(6025), + [sym__special_characters] = ACTIONS(6916), + [anon_sym_DQUOTE] = ACTIONS(6025), + [anon_sym_DOLLAR] = ACTIONS(6916), + [sym_raw_string] = ACTIONS(6025), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6025), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6025), + [anon_sym_BQUOTE] = ACTIONS(6025), + [anon_sym_LT_LPAREN] = ACTIONS(6025), + [anon_sym_GT_LPAREN] = ACTIONS(6025), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6846), - [sym_word] = ACTIONS(5963), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6916), + [sym_word] = ACTIONS(6027), }, [3509] = { - [sym__concat] = ACTIONS(5965), - [sym_variable_name] = ACTIONS(5965), - [anon_sym_PIPE] = ACTIONS(6848), - [anon_sym_RPAREN] = ACTIONS(5965), - [anon_sym_PIPE_AMP] = ACTIONS(5965), - [anon_sym_AMP_AMP] = ACTIONS(5965), - [anon_sym_PIPE_PIPE] = ACTIONS(5965), - [sym__special_characters] = ACTIONS(6848), - [anon_sym_DQUOTE] = ACTIONS(5965), - [anon_sym_DOLLAR] = ACTIONS(6848), - [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__concat] = ACTIONS(6029), + [sym_variable_name] = ACTIONS(6029), + [anon_sym_PIPE] = ACTIONS(6918), + [anon_sym_RPAREN] = ACTIONS(6029), + [anon_sym_PIPE_AMP] = ACTIONS(6029), + [anon_sym_AMP_AMP] = ACTIONS(6029), + [anon_sym_PIPE_PIPE] = ACTIONS(6029), + [sym__special_characters] = ACTIONS(6918), + [anon_sym_DQUOTE] = ACTIONS(6029), + [anon_sym_DOLLAR] = ACTIONS(6918), + [sym_raw_string] = ACTIONS(6029), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6029), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6029), + [anon_sym_BQUOTE] = ACTIONS(6029), + [anon_sym_LT_LPAREN] = ACTIONS(6029), + [anon_sym_GT_LPAREN] = ACTIONS(6029), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6848), - [sym_word] = ACTIONS(5967), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6918), + [sym_word] = ACTIONS(6031), }, [3510] = { - [sym__concat] = ACTIONS(5969), - [sym_variable_name] = ACTIONS(5969), - [anon_sym_PIPE] = ACTIONS(6850), - [anon_sym_RPAREN] = ACTIONS(5969), - [anon_sym_PIPE_AMP] = ACTIONS(5969), - [anon_sym_AMP_AMP] = ACTIONS(5969), - [anon_sym_PIPE_PIPE] = ACTIONS(5969), - [sym__special_characters] = ACTIONS(6850), - [anon_sym_DQUOTE] = ACTIONS(5969), - [anon_sym_DOLLAR] = ACTIONS(6850), - [sym_raw_string] = ACTIONS(5969), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5969), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5969), - [anon_sym_BQUOTE] = ACTIONS(5969), - [anon_sym_LT_LPAREN] = ACTIONS(5969), - [anon_sym_GT_LPAREN] = ACTIONS(5969), + [sym__concat] = ACTIONS(6033), + [sym_variable_name] = ACTIONS(6033), + [anon_sym_PIPE] = ACTIONS(6920), + [anon_sym_RPAREN] = ACTIONS(6033), + [anon_sym_PIPE_AMP] = ACTIONS(6033), + [anon_sym_AMP_AMP] = ACTIONS(6033), + [anon_sym_PIPE_PIPE] = ACTIONS(6033), + [sym__special_characters] = ACTIONS(6920), + [anon_sym_DQUOTE] = ACTIONS(6033), + [anon_sym_DOLLAR] = ACTIONS(6920), + [sym_raw_string] = ACTIONS(6033), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6033), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6033), + [anon_sym_BQUOTE] = ACTIONS(6033), + [anon_sym_LT_LPAREN] = ACTIONS(6033), + [anon_sym_GT_LPAREN] = ACTIONS(6033), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6850), - [sym_word] = ACTIONS(5971), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6920), + [sym_word] = ACTIONS(6035), }, [3511] = { - [sym__concat] = ACTIONS(5973), - [sym_variable_name] = ACTIONS(5973), - [anon_sym_PIPE] = ACTIONS(6852), - [anon_sym_RPAREN] = ACTIONS(5973), - [anon_sym_PIPE_AMP] = ACTIONS(5973), - [anon_sym_AMP_AMP] = ACTIONS(5973), - [anon_sym_PIPE_PIPE] = ACTIONS(5973), - [sym__special_characters] = ACTIONS(6852), - [anon_sym_DQUOTE] = ACTIONS(5973), - [anon_sym_DOLLAR] = ACTIONS(6852), - [sym_raw_string] = ACTIONS(5973), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5973), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5973), - [anon_sym_BQUOTE] = ACTIONS(5973), - [anon_sym_LT_LPAREN] = ACTIONS(5973), - [anon_sym_GT_LPAREN] = ACTIONS(5973), + [sym__concat] = ACTIONS(6037), + [sym_variable_name] = ACTIONS(6037), + [anon_sym_PIPE] = ACTIONS(6922), + [anon_sym_RPAREN] = ACTIONS(6037), + [anon_sym_PIPE_AMP] = ACTIONS(6037), + [anon_sym_AMP_AMP] = ACTIONS(6037), + [anon_sym_PIPE_PIPE] = ACTIONS(6037), + [sym__special_characters] = ACTIONS(6922), + [anon_sym_DQUOTE] = ACTIONS(6037), + [anon_sym_DOLLAR] = ACTIONS(6922), + [sym_raw_string] = ACTIONS(6037), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6037), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6037), + [anon_sym_BQUOTE] = ACTIONS(6037), + [anon_sym_LT_LPAREN] = ACTIONS(6037), + [anon_sym_GT_LPAREN] = ACTIONS(6037), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6852), - [sym_word] = ACTIONS(5975), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6922), + [sym_word] = ACTIONS(6039), }, [3512] = { [sym_concatenation] = STATE(451), @@ -88034,46 +88402,46 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7730), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7804), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3513] = { - [sym__concat] = ACTIONS(5979), - [sym_variable_name] = ACTIONS(5979), - [anon_sym_PIPE] = ACTIONS(6856), - [anon_sym_RPAREN] = ACTIONS(5979), - [anon_sym_PIPE_AMP] = ACTIONS(5979), - [anon_sym_AMP_AMP] = ACTIONS(5979), - [anon_sym_PIPE_PIPE] = ACTIONS(5979), - [sym__special_characters] = ACTIONS(6856), - [anon_sym_DQUOTE] = ACTIONS(5979), - [anon_sym_DOLLAR] = ACTIONS(6856), - [sym_raw_string] = ACTIONS(5979), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5979), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5979), - [anon_sym_BQUOTE] = ACTIONS(5979), - [anon_sym_LT_LPAREN] = ACTIONS(5979), - [anon_sym_GT_LPAREN] = ACTIONS(5979), + [sym__concat] = ACTIONS(6043), + [sym_variable_name] = ACTIONS(6043), + [anon_sym_PIPE] = ACTIONS(6926), + [anon_sym_RPAREN] = ACTIONS(6043), + [anon_sym_PIPE_AMP] = ACTIONS(6043), + [anon_sym_AMP_AMP] = ACTIONS(6043), + [anon_sym_PIPE_PIPE] = ACTIONS(6043), + [sym__special_characters] = ACTIONS(6926), + [anon_sym_DQUOTE] = ACTIONS(6043), + [anon_sym_DOLLAR] = ACTIONS(6926), + [sym_raw_string] = ACTIONS(6043), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6043), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6043), + [anon_sym_BQUOTE] = ACTIONS(6043), + [anon_sym_LT_LPAREN] = ACTIONS(6043), + [anon_sym_GT_LPAREN] = ACTIONS(6043), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6856), - [sym_word] = ACTIONS(5981), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6926), + [sym_word] = ACTIONS(6045), }, [3514] = { [sym_concatenation] = STATE(451), @@ -88084,46 +88452,46 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7732), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7806), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3515] = { - [sym__concat] = ACTIONS(5985), - [sym_variable_name] = ACTIONS(5985), - [anon_sym_PIPE] = ACTIONS(6860), - [anon_sym_RPAREN] = ACTIONS(5985), - [anon_sym_PIPE_AMP] = ACTIONS(5985), - [anon_sym_AMP_AMP] = ACTIONS(5985), - [anon_sym_PIPE_PIPE] = ACTIONS(5985), - [sym__special_characters] = ACTIONS(6860), - [anon_sym_DQUOTE] = ACTIONS(5985), - [anon_sym_DOLLAR] = ACTIONS(6860), - [sym_raw_string] = ACTIONS(5985), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5985), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5985), - [anon_sym_BQUOTE] = ACTIONS(5985), - [anon_sym_LT_LPAREN] = ACTIONS(5985), - [anon_sym_GT_LPAREN] = ACTIONS(5985), + [sym__concat] = ACTIONS(6049), + [sym_variable_name] = ACTIONS(6049), + [anon_sym_PIPE] = ACTIONS(6930), + [anon_sym_RPAREN] = ACTIONS(6049), + [anon_sym_PIPE_AMP] = ACTIONS(6049), + [anon_sym_AMP_AMP] = ACTIONS(6049), + [anon_sym_PIPE_PIPE] = ACTIONS(6049), + [sym__special_characters] = ACTIONS(6930), + [anon_sym_DQUOTE] = ACTIONS(6049), + [anon_sym_DOLLAR] = ACTIONS(6930), + [sym_raw_string] = ACTIONS(6049), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6049), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6049), + [anon_sym_BQUOTE] = ACTIONS(6049), + [anon_sym_LT_LPAREN] = ACTIONS(6049), + [anon_sym_GT_LPAREN] = ACTIONS(6049), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6860), - [sym_word] = ACTIONS(5987), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6930), + [sym_word] = ACTIONS(6051), }, [3516] = { [sym_concatenation] = STATE(451), @@ -88134,147 +88502,147 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7734), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7808), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3517] = { - [sym__concat] = ACTIONS(5991), - [sym_variable_name] = ACTIONS(5991), - [anon_sym_PIPE] = ACTIONS(6864), - [anon_sym_RPAREN] = ACTIONS(5991), - [anon_sym_PIPE_AMP] = ACTIONS(5991), - [anon_sym_AMP_AMP] = ACTIONS(5991), - [anon_sym_PIPE_PIPE] = ACTIONS(5991), - [sym__special_characters] = ACTIONS(6864), - [anon_sym_DQUOTE] = ACTIONS(5991), - [anon_sym_DOLLAR] = ACTIONS(6864), - [sym_raw_string] = ACTIONS(5991), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5991), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5991), - [anon_sym_BQUOTE] = ACTIONS(5991), - [anon_sym_LT_LPAREN] = ACTIONS(5991), - [anon_sym_GT_LPAREN] = ACTIONS(5991), + [sym__concat] = ACTIONS(6055), + [sym_variable_name] = ACTIONS(6055), + [anon_sym_PIPE] = ACTIONS(6934), + [anon_sym_RPAREN] = ACTIONS(6055), + [anon_sym_PIPE_AMP] = ACTIONS(6055), + [anon_sym_AMP_AMP] = ACTIONS(6055), + [anon_sym_PIPE_PIPE] = ACTIONS(6055), + [sym__special_characters] = ACTIONS(6934), + [anon_sym_DQUOTE] = ACTIONS(6055), + [anon_sym_DOLLAR] = ACTIONS(6934), + [sym_raw_string] = ACTIONS(6055), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6055), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6055), + [anon_sym_BQUOTE] = ACTIONS(6055), + [anon_sym_LT_LPAREN] = ACTIONS(6055), + [anon_sym_GT_LPAREN] = ACTIONS(6055), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6864), - [sym_word] = ACTIONS(5993), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6934), + [sym_word] = ACTIONS(6057), }, [3518] = { - [sym__concat] = ACTIONS(5995), - [sym_variable_name] = ACTIONS(5995), - [anon_sym_PIPE] = ACTIONS(6866), - [anon_sym_RPAREN] = ACTIONS(5995), - [anon_sym_PIPE_AMP] = ACTIONS(5995), - [anon_sym_AMP_AMP] = ACTIONS(5995), - [anon_sym_PIPE_PIPE] = ACTIONS(5995), - [sym__special_characters] = ACTIONS(6866), - [anon_sym_DQUOTE] = ACTIONS(5995), - [anon_sym_DOLLAR] = ACTIONS(6866), - [sym_raw_string] = ACTIONS(5995), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5995), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5995), - [anon_sym_BQUOTE] = ACTIONS(5995), - [anon_sym_LT_LPAREN] = ACTIONS(5995), - [anon_sym_GT_LPAREN] = ACTIONS(5995), + [sym__concat] = ACTIONS(6059), + [sym_variable_name] = ACTIONS(6059), + [anon_sym_PIPE] = ACTIONS(6936), + [anon_sym_RPAREN] = ACTIONS(6059), + [anon_sym_PIPE_AMP] = ACTIONS(6059), + [anon_sym_AMP_AMP] = ACTIONS(6059), + [anon_sym_PIPE_PIPE] = ACTIONS(6059), + [sym__special_characters] = ACTIONS(6936), + [anon_sym_DQUOTE] = ACTIONS(6059), + [anon_sym_DOLLAR] = ACTIONS(6936), + [sym_raw_string] = ACTIONS(6059), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6059), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6059), + [anon_sym_BQUOTE] = ACTIONS(6059), + [anon_sym_LT_LPAREN] = ACTIONS(6059), + [anon_sym_GT_LPAREN] = ACTIONS(6059), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6866), - [sym_word] = ACTIONS(5997), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6936), + [sym_word] = ACTIONS(6061), }, [3519] = { - [sym__concat] = ACTIONS(5961), - [anon_sym_PIPE] = ACTIONS(6846), - [anon_sym_RPAREN] = ACTIONS(5961), - [anon_sym_PIPE_AMP] = ACTIONS(5961), - [anon_sym_AMP_AMP] = ACTIONS(5961), - [anon_sym_PIPE_PIPE] = ACTIONS(5961), - [sym__special_characters] = ACTIONS(6846), - [anon_sym_DQUOTE] = ACTIONS(5961), - [anon_sym_DOLLAR] = ACTIONS(6846), - [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__concat] = ACTIONS(6025), + [anon_sym_PIPE] = ACTIONS(6916), + [anon_sym_RPAREN] = ACTIONS(6025), + [anon_sym_PIPE_AMP] = ACTIONS(6025), + [anon_sym_AMP_AMP] = ACTIONS(6025), + [anon_sym_PIPE_PIPE] = ACTIONS(6025), + [sym__special_characters] = ACTIONS(6916), + [anon_sym_DQUOTE] = ACTIONS(6025), + [anon_sym_DOLLAR] = ACTIONS(6916), + [sym_raw_string] = ACTIONS(6025), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6025), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6025), + [anon_sym_BQUOTE] = ACTIONS(6025), + [anon_sym_LT_LPAREN] = ACTIONS(6025), + [anon_sym_GT_LPAREN] = ACTIONS(6025), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6846), - [sym_word] = ACTIONS(5963), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6916), + [sym_word] = ACTIONS(6027), }, [3520] = { - [sym__concat] = ACTIONS(5965), - [anon_sym_PIPE] = ACTIONS(6848), - [anon_sym_RPAREN] = ACTIONS(5965), - [anon_sym_PIPE_AMP] = ACTIONS(5965), - [anon_sym_AMP_AMP] = ACTIONS(5965), - [anon_sym_PIPE_PIPE] = ACTIONS(5965), - [sym__special_characters] = ACTIONS(6848), - [anon_sym_DQUOTE] = ACTIONS(5965), - [anon_sym_DOLLAR] = ACTIONS(6848), - [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__concat] = ACTIONS(6029), + [anon_sym_PIPE] = ACTIONS(6918), + [anon_sym_RPAREN] = ACTIONS(6029), + [anon_sym_PIPE_AMP] = ACTIONS(6029), + [anon_sym_AMP_AMP] = ACTIONS(6029), + [anon_sym_PIPE_PIPE] = ACTIONS(6029), + [sym__special_characters] = ACTIONS(6918), + [anon_sym_DQUOTE] = ACTIONS(6029), + [anon_sym_DOLLAR] = ACTIONS(6918), + [sym_raw_string] = ACTIONS(6029), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6029), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6029), + [anon_sym_BQUOTE] = ACTIONS(6029), + [anon_sym_LT_LPAREN] = ACTIONS(6029), + [anon_sym_GT_LPAREN] = ACTIONS(6029), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6848), - [sym_word] = ACTIONS(5967), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6918), + [sym_word] = ACTIONS(6031), }, [3521] = { - [sym__concat] = ACTIONS(5969), - [anon_sym_PIPE] = ACTIONS(6850), - [anon_sym_RPAREN] = ACTIONS(5969), - [anon_sym_PIPE_AMP] = ACTIONS(5969), - [anon_sym_AMP_AMP] = ACTIONS(5969), - [anon_sym_PIPE_PIPE] = ACTIONS(5969), - [sym__special_characters] = ACTIONS(6850), - [anon_sym_DQUOTE] = ACTIONS(5969), - [anon_sym_DOLLAR] = ACTIONS(6850), - [sym_raw_string] = ACTIONS(5969), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5969), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5969), - [anon_sym_BQUOTE] = ACTIONS(5969), - [anon_sym_LT_LPAREN] = ACTIONS(5969), - [anon_sym_GT_LPAREN] = ACTIONS(5969), + [sym__concat] = ACTIONS(6033), + [anon_sym_PIPE] = ACTIONS(6920), + [anon_sym_RPAREN] = ACTIONS(6033), + [anon_sym_PIPE_AMP] = ACTIONS(6033), + [anon_sym_AMP_AMP] = ACTIONS(6033), + [anon_sym_PIPE_PIPE] = ACTIONS(6033), + [sym__special_characters] = ACTIONS(6920), + [anon_sym_DQUOTE] = ACTIONS(6033), + [anon_sym_DOLLAR] = ACTIONS(6920), + [sym_raw_string] = ACTIONS(6033), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6033), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6033), + [anon_sym_BQUOTE] = ACTIONS(6033), + [anon_sym_LT_LPAREN] = ACTIONS(6033), + [anon_sym_GT_LPAREN] = ACTIONS(6033), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6850), - [sym_word] = ACTIONS(5971), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6920), + [sym_word] = ACTIONS(6035), }, [3522] = { - [sym__concat] = ACTIONS(5973), - [anon_sym_PIPE] = ACTIONS(6852), - [anon_sym_RPAREN] = ACTIONS(5973), - [anon_sym_PIPE_AMP] = ACTIONS(5973), - [anon_sym_AMP_AMP] = ACTIONS(5973), - [anon_sym_PIPE_PIPE] = ACTIONS(5973), - [sym__special_characters] = ACTIONS(6852), - [anon_sym_DQUOTE] = ACTIONS(5973), - [anon_sym_DOLLAR] = ACTIONS(6852), - [sym_raw_string] = ACTIONS(5973), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5973), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5973), - [anon_sym_BQUOTE] = ACTIONS(5973), - [anon_sym_LT_LPAREN] = ACTIONS(5973), - [anon_sym_GT_LPAREN] = ACTIONS(5973), + [sym__concat] = ACTIONS(6037), + [anon_sym_PIPE] = ACTIONS(6922), + [anon_sym_RPAREN] = ACTIONS(6037), + [anon_sym_PIPE_AMP] = ACTIONS(6037), + [anon_sym_AMP_AMP] = ACTIONS(6037), + [anon_sym_PIPE_PIPE] = ACTIONS(6037), + [sym__special_characters] = ACTIONS(6922), + [anon_sym_DQUOTE] = ACTIONS(6037), + [anon_sym_DOLLAR] = ACTIONS(6922), + [sym_raw_string] = ACTIONS(6037), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6037), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6037), + [anon_sym_BQUOTE] = ACTIONS(6037), + [anon_sym_LT_LPAREN] = ACTIONS(6037), + [anon_sym_GT_LPAREN] = ACTIONS(6037), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6852), - [sym_word] = ACTIONS(5975), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6922), + [sym_word] = ACTIONS(6039), }, [3523] = { [sym_concatenation] = STATE(451), @@ -88285,45 +88653,45 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7736), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7810), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3524] = { - [sym__concat] = ACTIONS(5979), - [anon_sym_PIPE] = ACTIONS(6856), - [anon_sym_RPAREN] = ACTIONS(5979), - [anon_sym_PIPE_AMP] = ACTIONS(5979), - [anon_sym_AMP_AMP] = ACTIONS(5979), - [anon_sym_PIPE_PIPE] = ACTIONS(5979), - [sym__special_characters] = ACTIONS(6856), - [anon_sym_DQUOTE] = ACTIONS(5979), - [anon_sym_DOLLAR] = ACTIONS(6856), - [sym_raw_string] = ACTIONS(5979), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5979), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5979), - [anon_sym_BQUOTE] = ACTIONS(5979), - [anon_sym_LT_LPAREN] = ACTIONS(5979), - [anon_sym_GT_LPAREN] = ACTIONS(5979), + [sym__concat] = ACTIONS(6043), + [anon_sym_PIPE] = ACTIONS(6926), + [anon_sym_RPAREN] = ACTIONS(6043), + [anon_sym_PIPE_AMP] = ACTIONS(6043), + [anon_sym_AMP_AMP] = ACTIONS(6043), + [anon_sym_PIPE_PIPE] = ACTIONS(6043), + [sym__special_characters] = ACTIONS(6926), + [anon_sym_DQUOTE] = ACTIONS(6043), + [anon_sym_DOLLAR] = ACTIONS(6926), + [sym_raw_string] = ACTIONS(6043), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6043), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6043), + [anon_sym_BQUOTE] = ACTIONS(6043), + [anon_sym_LT_LPAREN] = ACTIONS(6043), + [anon_sym_GT_LPAREN] = ACTIONS(6043), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6856), - [sym_word] = ACTIONS(5981), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6926), + [sym_word] = ACTIONS(6045), }, [3525] = { [sym_concatenation] = STATE(451), @@ -88334,45 +88702,45 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7738), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7812), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3526] = { - [sym__concat] = ACTIONS(5985), - [anon_sym_PIPE] = ACTIONS(6860), - [anon_sym_RPAREN] = ACTIONS(5985), - [anon_sym_PIPE_AMP] = ACTIONS(5985), - [anon_sym_AMP_AMP] = ACTIONS(5985), - [anon_sym_PIPE_PIPE] = ACTIONS(5985), - [sym__special_characters] = ACTIONS(6860), - [anon_sym_DQUOTE] = ACTIONS(5985), - [anon_sym_DOLLAR] = ACTIONS(6860), - [sym_raw_string] = ACTIONS(5985), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5985), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5985), - [anon_sym_BQUOTE] = ACTIONS(5985), - [anon_sym_LT_LPAREN] = ACTIONS(5985), - [anon_sym_GT_LPAREN] = ACTIONS(5985), + [sym__concat] = ACTIONS(6049), + [anon_sym_PIPE] = ACTIONS(6930), + [anon_sym_RPAREN] = ACTIONS(6049), + [anon_sym_PIPE_AMP] = ACTIONS(6049), + [anon_sym_AMP_AMP] = ACTIONS(6049), + [anon_sym_PIPE_PIPE] = ACTIONS(6049), + [sym__special_characters] = ACTIONS(6930), + [anon_sym_DQUOTE] = ACTIONS(6049), + [anon_sym_DOLLAR] = ACTIONS(6930), + [sym_raw_string] = ACTIONS(6049), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6049), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6049), + [anon_sym_BQUOTE] = ACTIONS(6049), + [anon_sym_LT_LPAREN] = ACTIONS(6049), + [anon_sym_GT_LPAREN] = ACTIONS(6049), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6860), - [sym_word] = ACTIONS(5987), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6930), + [sym_word] = ACTIONS(6051), }, [3527] = { [sym_concatenation] = STATE(451), @@ -88383,217 +88751,220 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7740), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7814), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3528] = { - [sym__concat] = ACTIONS(5991), - [anon_sym_PIPE] = ACTIONS(6864), - [anon_sym_RPAREN] = ACTIONS(5991), - [anon_sym_PIPE_AMP] = ACTIONS(5991), - [anon_sym_AMP_AMP] = ACTIONS(5991), - [anon_sym_PIPE_PIPE] = ACTIONS(5991), - [sym__special_characters] = ACTIONS(6864), - [anon_sym_DQUOTE] = ACTIONS(5991), - [anon_sym_DOLLAR] = ACTIONS(6864), - [sym_raw_string] = ACTIONS(5991), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5991), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5991), - [anon_sym_BQUOTE] = ACTIONS(5991), - [anon_sym_LT_LPAREN] = ACTIONS(5991), - [anon_sym_GT_LPAREN] = ACTIONS(5991), + [sym__concat] = ACTIONS(6055), + [anon_sym_PIPE] = ACTIONS(6934), + [anon_sym_RPAREN] = ACTIONS(6055), + [anon_sym_PIPE_AMP] = ACTIONS(6055), + [anon_sym_AMP_AMP] = ACTIONS(6055), + [anon_sym_PIPE_PIPE] = ACTIONS(6055), + [sym__special_characters] = ACTIONS(6934), + [anon_sym_DQUOTE] = ACTIONS(6055), + [anon_sym_DOLLAR] = ACTIONS(6934), + [sym_raw_string] = ACTIONS(6055), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6055), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6055), + [anon_sym_BQUOTE] = ACTIONS(6055), + [anon_sym_LT_LPAREN] = ACTIONS(6055), + [anon_sym_GT_LPAREN] = ACTIONS(6055), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6864), - [sym_word] = ACTIONS(5993), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6934), + [sym_word] = ACTIONS(6057), }, [3529] = { - [sym__concat] = ACTIONS(5995), - [anon_sym_PIPE] = ACTIONS(6866), - [anon_sym_RPAREN] = ACTIONS(5995), - [anon_sym_PIPE_AMP] = ACTIONS(5995), - [anon_sym_AMP_AMP] = ACTIONS(5995), - [anon_sym_PIPE_PIPE] = ACTIONS(5995), - [sym__special_characters] = ACTIONS(6866), - [anon_sym_DQUOTE] = ACTIONS(5995), - [anon_sym_DOLLAR] = ACTIONS(6866), - [sym_raw_string] = ACTIONS(5995), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5995), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5995), - [anon_sym_BQUOTE] = ACTIONS(5995), - [anon_sym_LT_LPAREN] = ACTIONS(5995), - [anon_sym_GT_LPAREN] = ACTIONS(5995), + [sym__concat] = ACTIONS(6059), + [anon_sym_PIPE] = ACTIONS(6936), + [anon_sym_RPAREN] = ACTIONS(6059), + [anon_sym_PIPE_AMP] = ACTIONS(6059), + [anon_sym_AMP_AMP] = ACTIONS(6059), + [anon_sym_PIPE_PIPE] = ACTIONS(6059), + [sym__special_characters] = ACTIONS(6936), + [anon_sym_DQUOTE] = ACTIONS(6059), + [anon_sym_DOLLAR] = ACTIONS(6936), + [sym_raw_string] = ACTIONS(6059), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6059), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6059), + [anon_sym_BQUOTE] = ACTIONS(6059), + [anon_sym_LT_LPAREN] = ACTIONS(6059), + [anon_sym_GT_LPAREN] = ACTIONS(6059), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6866), - [sym_word] = ACTIONS(5997), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6936), + [sym_word] = ACTIONS(6061), }, [3530] = { - [sym_file_descriptor] = ACTIONS(6948), - [sym__concat] = ACTIONS(6948), - [anon_sym_PIPE] = ACTIONS(7635), - [anon_sym_RPAREN] = ACTIONS(6948), - [anon_sym_PIPE_AMP] = ACTIONS(6948), - [anon_sym_AMP_AMP] = ACTIONS(6948), - [anon_sym_PIPE_PIPE] = ACTIONS(6948), - [anon_sym_EQ_TILDE] = ACTIONS(7635), - [anon_sym_LT] = ACTIONS(7635), - [anon_sym_GT] = ACTIONS(7635), - [anon_sym_GT_GT] = ACTIONS(6948), - [anon_sym_AMP_GT] = ACTIONS(7635), - [anon_sym_AMP_GT_GT] = ACTIONS(6948), - [anon_sym_LT_AMP] = ACTIONS(6948), - [anon_sym_GT_AMP] = ACTIONS(6948), - [anon_sym_LT_LT] = ACTIONS(7635), - [anon_sym_LT_LT_DASH] = ACTIONS(6948), - [anon_sym_LT_LT_LT] = ACTIONS(6948), - [sym__special_characters] = ACTIONS(7635), - [anon_sym_DQUOTE] = ACTIONS(6948), - [anon_sym_DOLLAR] = ACTIONS(7635), - [sym_raw_string] = ACTIONS(6948), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6948), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6948), - [anon_sym_BQUOTE] = ACTIONS(6948), - [anon_sym_LT_LPAREN] = ACTIONS(6948), - [anon_sym_GT_LPAREN] = ACTIONS(6948), + [sym_file_descriptor] = ACTIONS(7018), + [sym__concat] = ACTIONS(7018), + [anon_sym_PIPE] = ACTIONS(7709), + [anon_sym_RPAREN] = ACTIONS(7018), + [anon_sym_PIPE_AMP] = ACTIONS(7018), + [anon_sym_AMP_AMP] = ACTIONS(7018), + [anon_sym_PIPE_PIPE] = ACTIONS(7018), + [anon_sym_EQ_TILDE] = ACTIONS(7709), + [anon_sym_EQ_EQ] = ACTIONS(7709), + [anon_sym_LT] = ACTIONS(7709), + [anon_sym_GT] = ACTIONS(7709), + [anon_sym_GT_GT] = ACTIONS(7018), + [anon_sym_AMP_GT] = ACTIONS(7709), + [anon_sym_AMP_GT_GT] = ACTIONS(7018), + [anon_sym_LT_AMP] = ACTIONS(7018), + [anon_sym_GT_AMP] = ACTIONS(7018), + [anon_sym_LT_LT] = ACTIONS(7709), + [anon_sym_LT_LT_DASH] = ACTIONS(7018), + [anon_sym_LT_LT_LT] = ACTIONS(7018), + [sym__special_characters] = ACTIONS(7709), + [anon_sym_DQUOTE] = ACTIONS(7018), + [anon_sym_DOLLAR] = ACTIONS(7709), + [sym_raw_string] = ACTIONS(7018), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7018), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7018), + [anon_sym_BQUOTE] = ACTIONS(7018), + [anon_sym_LT_LPAREN] = ACTIONS(7018), + [anon_sym_GT_LPAREN] = ACTIONS(7018), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6950), + [sym_word] = ACTIONS(7020), }, [3531] = { - [sym_file_descriptor] = ACTIONS(6952), - [sym__concat] = ACTIONS(6952), - [anon_sym_PIPE] = ACTIONS(7637), - [anon_sym_RPAREN] = ACTIONS(6952), - [anon_sym_PIPE_AMP] = ACTIONS(6952), - [anon_sym_AMP_AMP] = ACTIONS(6952), - [anon_sym_PIPE_PIPE] = ACTIONS(6952), - [anon_sym_EQ_TILDE] = ACTIONS(7637), - [anon_sym_LT] = ACTIONS(7637), - [anon_sym_GT] = ACTIONS(7637), - [anon_sym_GT_GT] = ACTIONS(6952), - [anon_sym_AMP_GT] = ACTIONS(7637), - [anon_sym_AMP_GT_GT] = ACTIONS(6952), - [anon_sym_LT_AMP] = ACTIONS(6952), - [anon_sym_GT_AMP] = ACTIONS(6952), - [anon_sym_LT_LT] = ACTIONS(7637), - [anon_sym_LT_LT_DASH] = ACTIONS(6952), - [anon_sym_LT_LT_LT] = ACTIONS(6952), - [sym__special_characters] = ACTIONS(7637), - [anon_sym_DQUOTE] = ACTIONS(6952), - [anon_sym_DOLLAR] = ACTIONS(7637), - [sym_raw_string] = ACTIONS(6952), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6952), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6952), - [anon_sym_BQUOTE] = ACTIONS(6952), - [anon_sym_LT_LPAREN] = ACTIONS(6952), - [anon_sym_GT_LPAREN] = ACTIONS(6952), + [sym_file_descriptor] = ACTIONS(7022), + [sym__concat] = ACTIONS(7022), + [anon_sym_PIPE] = ACTIONS(7711), + [anon_sym_RPAREN] = ACTIONS(7022), + [anon_sym_PIPE_AMP] = ACTIONS(7022), + [anon_sym_AMP_AMP] = ACTIONS(7022), + [anon_sym_PIPE_PIPE] = ACTIONS(7022), + [anon_sym_EQ_TILDE] = ACTIONS(7711), + [anon_sym_EQ_EQ] = ACTIONS(7711), + [anon_sym_LT] = ACTIONS(7711), + [anon_sym_GT] = ACTIONS(7711), + [anon_sym_GT_GT] = ACTIONS(7022), + [anon_sym_AMP_GT] = ACTIONS(7711), + [anon_sym_AMP_GT_GT] = ACTIONS(7022), + [anon_sym_LT_AMP] = ACTIONS(7022), + [anon_sym_GT_AMP] = ACTIONS(7022), + [anon_sym_LT_LT] = ACTIONS(7711), + [anon_sym_LT_LT_DASH] = ACTIONS(7022), + [anon_sym_LT_LT_LT] = ACTIONS(7022), + [sym__special_characters] = ACTIONS(7711), + [anon_sym_DQUOTE] = ACTIONS(7022), + [anon_sym_DOLLAR] = ACTIONS(7711), + [sym_raw_string] = ACTIONS(7022), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7022), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7022), + [anon_sym_BQUOTE] = ACTIONS(7022), + [anon_sym_LT_LPAREN] = ACTIONS(7022), + [anon_sym_GT_LPAREN] = ACTIONS(7022), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6954), + [sym_word] = ACTIONS(7024), }, [3532] = { - [sym_file_descriptor] = ACTIONS(6956), - [sym__concat] = ACTIONS(6956), - [anon_sym_PIPE] = ACTIONS(7639), - [anon_sym_RPAREN] = ACTIONS(6956), - [anon_sym_PIPE_AMP] = ACTIONS(6956), - [anon_sym_AMP_AMP] = ACTIONS(6956), - [anon_sym_PIPE_PIPE] = ACTIONS(6956), - [anon_sym_EQ_TILDE] = ACTIONS(7639), - [anon_sym_LT] = ACTIONS(7639), - [anon_sym_GT] = ACTIONS(7639), - [anon_sym_GT_GT] = ACTIONS(6956), - [anon_sym_AMP_GT] = ACTIONS(7639), - [anon_sym_AMP_GT_GT] = ACTIONS(6956), - [anon_sym_LT_AMP] = ACTIONS(6956), - [anon_sym_GT_AMP] = ACTIONS(6956), - [anon_sym_LT_LT] = ACTIONS(7639), - [anon_sym_LT_LT_DASH] = ACTIONS(6956), - [anon_sym_LT_LT_LT] = ACTIONS(6956), - [sym__special_characters] = ACTIONS(7639), - [anon_sym_DQUOTE] = ACTIONS(6956), - [anon_sym_DOLLAR] = ACTIONS(7639), - [sym_raw_string] = ACTIONS(6956), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6956), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6956), - [anon_sym_BQUOTE] = ACTIONS(6956), - [anon_sym_LT_LPAREN] = ACTIONS(6956), - [anon_sym_GT_LPAREN] = ACTIONS(6956), + [sym_file_descriptor] = ACTIONS(7026), + [sym__concat] = ACTIONS(7026), + [anon_sym_PIPE] = ACTIONS(7713), + [anon_sym_RPAREN] = ACTIONS(7026), + [anon_sym_PIPE_AMP] = ACTIONS(7026), + [anon_sym_AMP_AMP] = ACTIONS(7026), + [anon_sym_PIPE_PIPE] = ACTIONS(7026), + [anon_sym_EQ_TILDE] = ACTIONS(7713), + [anon_sym_EQ_EQ] = ACTIONS(7713), + [anon_sym_LT] = ACTIONS(7713), + [anon_sym_GT] = ACTIONS(7713), + [anon_sym_GT_GT] = ACTIONS(7026), + [anon_sym_AMP_GT] = ACTIONS(7713), + [anon_sym_AMP_GT_GT] = ACTIONS(7026), + [anon_sym_LT_AMP] = ACTIONS(7026), + [anon_sym_GT_AMP] = ACTIONS(7026), + [anon_sym_LT_LT] = ACTIONS(7713), + [anon_sym_LT_LT_DASH] = ACTIONS(7026), + [anon_sym_LT_LT_LT] = ACTIONS(7026), + [sym__special_characters] = ACTIONS(7713), + [anon_sym_DQUOTE] = ACTIONS(7026), + [anon_sym_DOLLAR] = ACTIONS(7713), + [sym_raw_string] = ACTIONS(7026), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7026), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7026), + [anon_sym_BQUOTE] = ACTIONS(7026), + [anon_sym_LT_LPAREN] = ACTIONS(7026), + [anon_sym_GT_LPAREN] = ACTIONS(7026), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6958), + [sym_word] = ACTIONS(7028), }, [3533] = { - [sym_file_descriptor] = ACTIONS(4728), - [sym__concat] = ACTIONS(4728), - [anon_sym_PIPE] = ACTIONS(5780), - [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(5780), - [anon_sym_GT] = ACTIONS(5780), - [anon_sym_GT_GT] = ACTIONS(4728), - [anon_sym_AMP_GT] = ACTIONS(5780), - [anon_sym_AMP_GT_GT] = ACTIONS(4728), - [anon_sym_LT_AMP] = ACTIONS(4728), - [anon_sym_GT_AMP] = ACTIONS(4728), - [anon_sym_LT_LT] = ACTIONS(5780), - [anon_sym_LT_LT_DASH] = ACTIONS(4728), - [anon_sym_LT_LT_LT] = ACTIONS(4728), + [sym_file_descriptor] = ACTIONS(4790), + [sym__concat] = ACTIONS(4790), + [anon_sym_PIPE] = ACTIONS(5844), + [anon_sym_RPAREN] = ACTIONS(4790), + [anon_sym_PIPE_AMP] = ACTIONS(4790), + [anon_sym_AMP_AMP] = ACTIONS(4790), + [anon_sym_PIPE_PIPE] = ACTIONS(4790), + [anon_sym_LT] = ACTIONS(5844), + [anon_sym_GT] = ACTIONS(5844), + [anon_sym_GT_GT] = ACTIONS(4790), + [anon_sym_AMP_GT] = ACTIONS(5844), + [anon_sym_AMP_GT_GT] = ACTIONS(4790), + [anon_sym_LT_AMP] = ACTIONS(4790), + [anon_sym_GT_AMP] = ACTIONS(4790), + [anon_sym_LT_LT] = ACTIONS(5844), + [anon_sym_LT_LT_DASH] = ACTIONS(4790), + [anon_sym_LT_LT_LT] = ACTIONS(4790), [sym_comment] = ACTIONS(56), }, [3534] = { - [sym_file_descriptor] = ACTIONS(4734), - [sym__concat] = ACTIONS(4734), - [anon_sym_PIPE] = ACTIONS(5782), - [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(5782), - [anon_sym_GT] = ACTIONS(5782), - [anon_sym_GT_GT] = ACTIONS(4734), - [anon_sym_AMP_GT] = ACTIONS(5782), - [anon_sym_AMP_GT_GT] = ACTIONS(4734), - [anon_sym_LT_AMP] = ACTIONS(4734), - [anon_sym_GT_AMP] = ACTIONS(4734), - [anon_sym_LT_LT] = ACTIONS(5782), - [anon_sym_LT_LT_DASH] = ACTIONS(4734), - [anon_sym_LT_LT_LT] = ACTIONS(4734), + [sym_file_descriptor] = ACTIONS(4796), + [sym__concat] = ACTIONS(4796), + [anon_sym_PIPE] = ACTIONS(5846), + [anon_sym_RPAREN] = ACTIONS(4796), + [anon_sym_PIPE_AMP] = ACTIONS(4796), + [anon_sym_AMP_AMP] = ACTIONS(4796), + [anon_sym_PIPE_PIPE] = ACTIONS(4796), + [anon_sym_LT] = ACTIONS(5846), + [anon_sym_GT] = ACTIONS(5846), + [anon_sym_GT_GT] = ACTIONS(4796), + [anon_sym_AMP_GT] = ACTIONS(5846), + [anon_sym_AMP_GT_GT] = ACTIONS(4796), + [anon_sym_LT_AMP] = ACTIONS(4796), + [anon_sym_GT_AMP] = ACTIONS(4796), + [anon_sym_LT_LT] = ACTIONS(5846), + [anon_sym_LT_LT_DASH] = ACTIONS(4796), + [anon_sym_LT_LT_LT] = ACTIONS(4796), [sym_comment] = ACTIONS(56), }, [3535] = { - [sym_file_descriptor] = ACTIONS(4797), - [sym__concat] = ACTIONS(4797), - [anon_sym_PIPE] = ACTIONS(5784), - [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(5784), - [anon_sym_GT] = ACTIONS(5784), - [anon_sym_GT_GT] = ACTIONS(4797), - [anon_sym_AMP_GT] = ACTIONS(5784), - [anon_sym_AMP_GT_GT] = ACTIONS(4797), - [anon_sym_LT_AMP] = ACTIONS(4797), - [anon_sym_GT_AMP] = ACTIONS(4797), - [anon_sym_LT_LT] = ACTIONS(5784), - [anon_sym_LT_LT_DASH] = ACTIONS(4797), - [anon_sym_LT_LT_LT] = ACTIONS(4797), + [sym_file_descriptor] = ACTIONS(4859), + [sym__concat] = ACTIONS(4859), + [anon_sym_PIPE] = ACTIONS(5848), + [anon_sym_RPAREN] = ACTIONS(4859), + [anon_sym_PIPE_AMP] = ACTIONS(4859), + [anon_sym_AMP_AMP] = ACTIONS(4859), + [anon_sym_PIPE_PIPE] = ACTIONS(4859), + [anon_sym_LT] = ACTIONS(5848), + [anon_sym_GT] = ACTIONS(5848), + [anon_sym_GT_GT] = ACTIONS(4859), + [anon_sym_AMP_GT] = ACTIONS(5848), + [anon_sym_AMP_GT_GT] = ACTIONS(4859), + [anon_sym_LT_AMP] = ACTIONS(4859), + [anon_sym_GT_AMP] = ACTIONS(4859), + [anon_sym_LT_LT] = ACTIONS(5848), + [anon_sym_LT_LT_DASH] = ACTIONS(4859), + [anon_sym_LT_LT_LT] = ACTIONS(4859), [sym_comment] = ACTIONS(56), }, [3536] = { @@ -88605,40 +88976,40 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7742), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7816), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3537] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(7744), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(7818), [sym_comment] = ACTIONS(56), }, [3538] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(7746), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(7820), [sym_comment] = ACTIONS(56), }, [3539] = { - [anon_sym_RBRACE] = ACTIONS(7746), + [anon_sym_RBRACE] = ACTIONS(7820), [sym_comment] = ACTIONS(56), }, [3540] = { @@ -88650,44 +89021,44 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3929), - [anon_sym_RBRACE] = ACTIONS(7748), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7822), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3541] = { - [sym_file_descriptor] = ACTIONS(4809), - [sym__concat] = ACTIONS(4809), - [anon_sym_PIPE] = ACTIONS(5794), - [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(5794), - [anon_sym_GT] = ACTIONS(5794), - [anon_sym_GT_GT] = ACTIONS(4809), - [anon_sym_AMP_GT] = ACTIONS(5794), - [anon_sym_AMP_GT_GT] = ACTIONS(4809), - [anon_sym_LT_AMP] = ACTIONS(4809), - [anon_sym_GT_AMP] = ACTIONS(4809), - [anon_sym_LT_LT] = ACTIONS(5794), - [anon_sym_LT_LT_DASH] = ACTIONS(4809), - [anon_sym_LT_LT_LT] = ACTIONS(4809), + [sym_file_descriptor] = ACTIONS(4871), + [sym__concat] = ACTIONS(4871), + [anon_sym_PIPE] = ACTIONS(5858), + [anon_sym_RPAREN] = ACTIONS(4871), + [anon_sym_PIPE_AMP] = ACTIONS(4871), + [anon_sym_AMP_AMP] = ACTIONS(4871), + [anon_sym_PIPE_PIPE] = ACTIONS(4871), + [anon_sym_LT] = ACTIONS(5858), + [anon_sym_GT] = ACTIONS(5858), + [anon_sym_GT_GT] = ACTIONS(4871), + [anon_sym_AMP_GT] = ACTIONS(5858), + [anon_sym_AMP_GT_GT] = ACTIONS(4871), + [anon_sym_LT_AMP] = ACTIONS(4871), + [anon_sym_GT_AMP] = ACTIONS(4871), + [anon_sym_LT_LT] = ACTIONS(5858), + [anon_sym_LT_LT_DASH] = ACTIONS(4871), + [anon_sym_LT_LT_LT] = ACTIONS(4871), [sym_comment] = ACTIONS(56), }, [3542] = { @@ -88699,44 +89070,44 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3931), - [anon_sym_RBRACE] = ACTIONS(7750), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7824), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3543] = { - [sym_file_descriptor] = ACTIONS(4815), - [sym__concat] = ACTIONS(4815), - [anon_sym_PIPE] = ACTIONS(5798), - [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(5798), - [anon_sym_GT] = ACTIONS(5798), - [anon_sym_GT_GT] = ACTIONS(4815), - [anon_sym_AMP_GT] = ACTIONS(5798), - [anon_sym_AMP_GT_GT] = ACTIONS(4815), - [anon_sym_LT_AMP] = ACTIONS(4815), - [anon_sym_GT_AMP] = ACTIONS(4815), - [anon_sym_LT_LT] = ACTIONS(5798), - [anon_sym_LT_LT_DASH] = ACTIONS(4815), - [anon_sym_LT_LT_LT] = ACTIONS(4815), + [sym_file_descriptor] = ACTIONS(4877), + [sym__concat] = ACTIONS(4877), + [anon_sym_PIPE] = ACTIONS(5862), + [anon_sym_RPAREN] = ACTIONS(4877), + [anon_sym_PIPE_AMP] = ACTIONS(4877), + [anon_sym_AMP_AMP] = ACTIONS(4877), + [anon_sym_PIPE_PIPE] = ACTIONS(4877), + [anon_sym_LT] = ACTIONS(5862), + [anon_sym_GT] = ACTIONS(5862), + [anon_sym_GT_GT] = ACTIONS(4877), + [anon_sym_AMP_GT] = ACTIONS(5862), + [anon_sym_AMP_GT_GT] = ACTIONS(4877), + [anon_sym_LT_AMP] = ACTIONS(4877), + [anon_sym_GT_AMP] = ACTIONS(4877), + [anon_sym_LT_LT] = ACTIONS(5862), + [anon_sym_LT_LT_DASH] = ACTIONS(4877), + [anon_sym_LT_LT_LT] = ACTIONS(4877), [sym_comment] = ACTIONS(56), }, [3544] = { @@ -88748,44 +89119,44 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3933), - [anon_sym_RBRACE] = ACTIONS(7752), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7826), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3545] = { - [sym_file_descriptor] = ACTIONS(4821), - [sym__concat] = ACTIONS(4821), - [anon_sym_PIPE] = ACTIONS(5802), - [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(5802), - [anon_sym_GT] = ACTIONS(5802), - [anon_sym_GT_GT] = ACTIONS(4821), - [anon_sym_AMP_GT] = ACTIONS(5802), - [anon_sym_AMP_GT_GT] = ACTIONS(4821), - [anon_sym_LT_AMP] = ACTIONS(4821), - [anon_sym_GT_AMP] = ACTIONS(4821), - [anon_sym_LT_LT] = ACTIONS(5802), - [anon_sym_LT_LT_DASH] = ACTIONS(4821), - [anon_sym_LT_LT_LT] = ACTIONS(4821), + [sym_file_descriptor] = ACTIONS(4883), + [sym__concat] = ACTIONS(4883), + [anon_sym_PIPE] = ACTIONS(5866), + [anon_sym_RPAREN] = ACTIONS(4883), + [anon_sym_PIPE_AMP] = ACTIONS(4883), + [anon_sym_AMP_AMP] = ACTIONS(4883), + [anon_sym_PIPE_PIPE] = ACTIONS(4883), + [anon_sym_LT] = ACTIONS(5866), + [anon_sym_GT] = ACTIONS(5866), + [anon_sym_GT_GT] = ACTIONS(4883), + [anon_sym_AMP_GT] = ACTIONS(5866), + [anon_sym_AMP_GT_GT] = ACTIONS(4883), + [anon_sym_LT_AMP] = ACTIONS(4883), + [anon_sym_GT_AMP] = ACTIONS(4883), + [anon_sym_LT_LT] = ACTIONS(5866), + [anon_sym_LT_LT_DASH] = ACTIONS(4883), + [anon_sym_LT_LT_LT] = ACTIONS(4883), [sym_comment] = ACTIONS(56), }, [3546] = { @@ -88797,44 +89168,44 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7754), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7828), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3547] = { - [sym_file_descriptor] = ACTIONS(4827), - [sym__concat] = ACTIONS(4827), - [anon_sym_PIPE] = ACTIONS(5806), - [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(5806), - [anon_sym_GT] = ACTIONS(5806), - [anon_sym_GT_GT] = ACTIONS(4827), - [anon_sym_AMP_GT] = ACTIONS(5806), - [anon_sym_AMP_GT_GT] = ACTIONS(4827), - [anon_sym_LT_AMP] = ACTIONS(4827), - [anon_sym_GT_AMP] = ACTIONS(4827), - [anon_sym_LT_LT] = ACTIONS(5806), - [anon_sym_LT_LT_DASH] = ACTIONS(4827), - [anon_sym_LT_LT_LT] = ACTIONS(4827), + [sym_file_descriptor] = ACTIONS(4889), + [sym__concat] = ACTIONS(4889), + [anon_sym_PIPE] = ACTIONS(5870), + [anon_sym_RPAREN] = ACTIONS(4889), + [anon_sym_PIPE_AMP] = ACTIONS(4889), + [anon_sym_AMP_AMP] = ACTIONS(4889), + [anon_sym_PIPE_PIPE] = ACTIONS(4889), + [anon_sym_LT] = ACTIONS(5870), + [anon_sym_GT] = ACTIONS(5870), + [anon_sym_GT_GT] = ACTIONS(4889), + [anon_sym_AMP_GT] = ACTIONS(5870), + [anon_sym_AMP_GT_GT] = ACTIONS(4889), + [anon_sym_LT_AMP] = ACTIONS(4889), + [anon_sym_GT_AMP] = ACTIONS(4889), + [anon_sym_LT_LT] = ACTIONS(5870), + [anon_sym_LT_LT_DASH] = ACTIONS(4889), + [anon_sym_LT_LT_LT] = ACTIONS(4889), [sym_comment] = ACTIONS(56), }, [3548] = { @@ -88846,106 +89217,106 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7756), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7830), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3549] = { - [sym_file_descriptor] = ACTIONS(4728), - [sym__concat] = ACTIONS(4728), - [sym_variable_name] = ACTIONS(4728), - [anon_sym_PIPE] = ACTIONS(5780), - [anon_sym_PIPE_AMP] = ACTIONS(4728), - [anon_sym_AMP_AMP] = ACTIONS(4728), - [anon_sym_PIPE_PIPE] = ACTIONS(4728), - [anon_sym_LT] = ACTIONS(5780), - [anon_sym_GT] = ACTIONS(5780), - [anon_sym_GT_GT] = ACTIONS(4728), - [anon_sym_AMP_GT] = ACTIONS(5780), - [anon_sym_AMP_GT_GT] = ACTIONS(4728), - [anon_sym_LT_AMP] = ACTIONS(4728), - [anon_sym_GT_AMP] = ACTIONS(4728), - [sym__special_characters] = ACTIONS(5780), - [anon_sym_DQUOTE] = ACTIONS(4728), - [anon_sym_DOLLAR] = ACTIONS(5780), - [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_file_descriptor] = ACTIONS(4790), + [sym__concat] = ACTIONS(4790), + [sym_variable_name] = ACTIONS(4790), + [anon_sym_PIPE] = ACTIONS(5844), + [anon_sym_PIPE_AMP] = ACTIONS(4790), + [anon_sym_AMP_AMP] = ACTIONS(4790), + [anon_sym_PIPE_PIPE] = ACTIONS(4790), + [anon_sym_LT] = ACTIONS(5844), + [anon_sym_GT] = ACTIONS(5844), + [anon_sym_GT_GT] = ACTIONS(4790), + [anon_sym_AMP_GT] = ACTIONS(5844), + [anon_sym_AMP_GT_GT] = ACTIONS(4790), + [anon_sym_LT_AMP] = ACTIONS(4790), + [anon_sym_GT_AMP] = ACTIONS(4790), + [sym__special_characters] = ACTIONS(5844), + [anon_sym_DQUOTE] = ACTIONS(4790), + [anon_sym_DOLLAR] = ACTIONS(5844), + [sym_raw_string] = ACTIONS(4790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4790), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4790), + [anon_sym_BQUOTE] = ACTIONS(4790), + [anon_sym_LT_LPAREN] = ACTIONS(4790), + [anon_sym_GT_LPAREN] = ACTIONS(4790), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5780), + [sym_word] = ACTIONS(5844), }, [3550] = { - [sym_file_descriptor] = ACTIONS(4734), - [sym__concat] = ACTIONS(4734), - [sym_variable_name] = ACTIONS(4734), - [anon_sym_PIPE] = ACTIONS(5782), - [anon_sym_PIPE_AMP] = ACTIONS(4734), - [anon_sym_AMP_AMP] = ACTIONS(4734), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [anon_sym_LT] = ACTIONS(5782), - [anon_sym_GT] = ACTIONS(5782), - [anon_sym_GT_GT] = ACTIONS(4734), - [anon_sym_AMP_GT] = ACTIONS(5782), - [anon_sym_AMP_GT_GT] = ACTIONS(4734), - [anon_sym_LT_AMP] = ACTIONS(4734), - [anon_sym_GT_AMP] = ACTIONS(4734), - [sym__special_characters] = ACTIONS(5782), - [anon_sym_DQUOTE] = ACTIONS(4734), - [anon_sym_DOLLAR] = ACTIONS(5782), - [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_file_descriptor] = ACTIONS(4796), + [sym__concat] = ACTIONS(4796), + [sym_variable_name] = ACTIONS(4796), + [anon_sym_PIPE] = ACTIONS(5846), + [anon_sym_PIPE_AMP] = ACTIONS(4796), + [anon_sym_AMP_AMP] = ACTIONS(4796), + [anon_sym_PIPE_PIPE] = ACTIONS(4796), + [anon_sym_LT] = ACTIONS(5846), + [anon_sym_GT] = ACTIONS(5846), + [anon_sym_GT_GT] = ACTIONS(4796), + [anon_sym_AMP_GT] = ACTIONS(5846), + [anon_sym_AMP_GT_GT] = ACTIONS(4796), + [anon_sym_LT_AMP] = ACTIONS(4796), + [anon_sym_GT_AMP] = ACTIONS(4796), + [sym__special_characters] = ACTIONS(5846), + [anon_sym_DQUOTE] = ACTIONS(4796), + [anon_sym_DOLLAR] = ACTIONS(5846), + [sym_raw_string] = ACTIONS(4796), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4796), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4796), + [anon_sym_BQUOTE] = ACTIONS(4796), + [anon_sym_LT_LPAREN] = ACTIONS(4796), + [anon_sym_GT_LPAREN] = ACTIONS(4796), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5782), + [sym_word] = ACTIONS(5846), }, [3551] = { - [sym_file_descriptor] = ACTIONS(4797), - [sym__concat] = ACTIONS(4797), - [sym_variable_name] = ACTIONS(4797), - [anon_sym_PIPE] = ACTIONS(5784), - [anon_sym_PIPE_AMP] = ACTIONS(4797), - [anon_sym_AMP_AMP] = ACTIONS(4797), - [anon_sym_PIPE_PIPE] = ACTIONS(4797), - [anon_sym_LT] = ACTIONS(5784), - [anon_sym_GT] = ACTIONS(5784), - [anon_sym_GT_GT] = ACTIONS(4797), - [anon_sym_AMP_GT] = ACTIONS(5784), - [anon_sym_AMP_GT_GT] = ACTIONS(4797), - [anon_sym_LT_AMP] = ACTIONS(4797), - [anon_sym_GT_AMP] = ACTIONS(4797), - [sym__special_characters] = ACTIONS(5784), - [anon_sym_DQUOTE] = ACTIONS(4797), - [anon_sym_DOLLAR] = ACTIONS(5784), - [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_file_descriptor] = ACTIONS(4859), + [sym__concat] = ACTIONS(4859), + [sym_variable_name] = ACTIONS(4859), + [anon_sym_PIPE] = ACTIONS(5848), + [anon_sym_PIPE_AMP] = ACTIONS(4859), + [anon_sym_AMP_AMP] = ACTIONS(4859), + [anon_sym_PIPE_PIPE] = ACTIONS(4859), + [anon_sym_LT] = ACTIONS(5848), + [anon_sym_GT] = ACTIONS(5848), + [anon_sym_GT_GT] = ACTIONS(4859), + [anon_sym_AMP_GT] = ACTIONS(5848), + [anon_sym_AMP_GT_GT] = ACTIONS(4859), + [anon_sym_LT_AMP] = ACTIONS(4859), + [anon_sym_GT_AMP] = ACTIONS(4859), + [sym__special_characters] = ACTIONS(5848), + [anon_sym_DQUOTE] = ACTIONS(4859), + [anon_sym_DOLLAR] = ACTIONS(5848), + [sym_raw_string] = ACTIONS(4859), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4859), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4859), + [anon_sym_BQUOTE] = ACTIONS(4859), + [anon_sym_LT_LPAREN] = ACTIONS(4859), + [anon_sym_GT_LPAREN] = ACTIONS(4859), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5784), + [sym_word] = ACTIONS(5848), }, [3552] = { [sym_concatenation] = STATE(451), @@ -88956,40 +89327,40 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7758), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7832), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3553] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(7760), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(7834), [sym_comment] = ACTIONS(56), }, [3554] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(7762), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(7836), [sym_comment] = ACTIONS(56), }, [3555] = { - [anon_sym_RBRACE] = ACTIONS(7762), + [anon_sym_RBRACE] = ACTIONS(7836), [sym_comment] = ACTIONS(56), }, [3556] = { @@ -89001,52 +89372,52 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3940), - [anon_sym_RBRACE] = ACTIONS(7764), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7838), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3557] = { - [sym_file_descriptor] = ACTIONS(4809), - [sym__concat] = ACTIONS(4809), - [sym_variable_name] = ACTIONS(4809), - [anon_sym_PIPE] = ACTIONS(5794), - [anon_sym_PIPE_AMP] = ACTIONS(4809), - [anon_sym_AMP_AMP] = ACTIONS(4809), - [anon_sym_PIPE_PIPE] = ACTIONS(4809), - [anon_sym_LT] = ACTIONS(5794), - [anon_sym_GT] = ACTIONS(5794), - [anon_sym_GT_GT] = ACTIONS(4809), - [anon_sym_AMP_GT] = ACTIONS(5794), - [anon_sym_AMP_GT_GT] = ACTIONS(4809), - [anon_sym_LT_AMP] = ACTIONS(4809), - [anon_sym_GT_AMP] = ACTIONS(4809), - [sym__special_characters] = ACTIONS(5794), - [anon_sym_DQUOTE] = ACTIONS(4809), - [anon_sym_DOLLAR] = ACTIONS(5794), - [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_file_descriptor] = ACTIONS(4871), + [sym__concat] = ACTIONS(4871), + [sym_variable_name] = ACTIONS(4871), + [anon_sym_PIPE] = ACTIONS(5858), + [anon_sym_PIPE_AMP] = ACTIONS(4871), + [anon_sym_AMP_AMP] = ACTIONS(4871), + [anon_sym_PIPE_PIPE] = ACTIONS(4871), + [anon_sym_LT] = ACTIONS(5858), + [anon_sym_GT] = ACTIONS(5858), + [anon_sym_GT_GT] = ACTIONS(4871), + [anon_sym_AMP_GT] = ACTIONS(5858), + [anon_sym_AMP_GT_GT] = ACTIONS(4871), + [anon_sym_LT_AMP] = ACTIONS(4871), + [anon_sym_GT_AMP] = ACTIONS(4871), + [sym__special_characters] = ACTIONS(5858), + [anon_sym_DQUOTE] = ACTIONS(4871), + [anon_sym_DOLLAR] = ACTIONS(5858), + [sym_raw_string] = ACTIONS(4871), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4871), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4871), + [anon_sym_BQUOTE] = ACTIONS(4871), + [anon_sym_LT_LPAREN] = ACTIONS(4871), + [anon_sym_GT_LPAREN] = ACTIONS(4871), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5794), + [sym_word] = ACTIONS(5858), }, [3558] = { [sym_concatenation] = STATE(451), @@ -89057,52 +89428,52 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3942), - [anon_sym_RBRACE] = ACTIONS(7766), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7840), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3559] = { - [sym_file_descriptor] = ACTIONS(4815), - [sym__concat] = ACTIONS(4815), - [sym_variable_name] = ACTIONS(4815), - [anon_sym_PIPE] = ACTIONS(5798), - [anon_sym_PIPE_AMP] = ACTIONS(4815), - [anon_sym_AMP_AMP] = ACTIONS(4815), - [anon_sym_PIPE_PIPE] = ACTIONS(4815), - [anon_sym_LT] = ACTIONS(5798), - [anon_sym_GT] = ACTIONS(5798), - [anon_sym_GT_GT] = ACTIONS(4815), - [anon_sym_AMP_GT] = ACTIONS(5798), - [anon_sym_AMP_GT_GT] = ACTIONS(4815), - [anon_sym_LT_AMP] = ACTIONS(4815), - [anon_sym_GT_AMP] = ACTIONS(4815), - [sym__special_characters] = ACTIONS(5798), - [anon_sym_DQUOTE] = ACTIONS(4815), - [anon_sym_DOLLAR] = ACTIONS(5798), - [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_file_descriptor] = ACTIONS(4877), + [sym__concat] = ACTIONS(4877), + [sym_variable_name] = ACTIONS(4877), + [anon_sym_PIPE] = ACTIONS(5862), + [anon_sym_PIPE_AMP] = ACTIONS(4877), + [anon_sym_AMP_AMP] = ACTIONS(4877), + [anon_sym_PIPE_PIPE] = ACTIONS(4877), + [anon_sym_LT] = ACTIONS(5862), + [anon_sym_GT] = ACTIONS(5862), + [anon_sym_GT_GT] = ACTIONS(4877), + [anon_sym_AMP_GT] = ACTIONS(5862), + [anon_sym_AMP_GT_GT] = ACTIONS(4877), + [anon_sym_LT_AMP] = ACTIONS(4877), + [anon_sym_GT_AMP] = ACTIONS(4877), + [sym__special_characters] = ACTIONS(5862), + [anon_sym_DQUOTE] = ACTIONS(4877), + [anon_sym_DOLLAR] = ACTIONS(5862), + [sym_raw_string] = ACTIONS(4877), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4877), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4877), + [anon_sym_BQUOTE] = ACTIONS(4877), + [anon_sym_LT_LPAREN] = ACTIONS(4877), + [anon_sym_GT_LPAREN] = ACTIONS(4877), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5798), + [sym_word] = ACTIONS(5862), }, [3560] = { [sym_concatenation] = STATE(451), @@ -89113,52 +89484,52 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3944), - [anon_sym_RBRACE] = ACTIONS(7768), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7842), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3561] = { - [sym_file_descriptor] = ACTIONS(4821), - [sym__concat] = ACTIONS(4821), - [sym_variable_name] = ACTIONS(4821), - [anon_sym_PIPE] = ACTIONS(5802), - [anon_sym_PIPE_AMP] = ACTIONS(4821), - [anon_sym_AMP_AMP] = ACTIONS(4821), - [anon_sym_PIPE_PIPE] = ACTIONS(4821), - [anon_sym_LT] = ACTIONS(5802), - [anon_sym_GT] = ACTIONS(5802), - [anon_sym_GT_GT] = ACTIONS(4821), - [anon_sym_AMP_GT] = ACTIONS(5802), - [anon_sym_AMP_GT_GT] = ACTIONS(4821), - [anon_sym_LT_AMP] = ACTIONS(4821), - [anon_sym_GT_AMP] = ACTIONS(4821), - [sym__special_characters] = ACTIONS(5802), - [anon_sym_DQUOTE] = ACTIONS(4821), - [anon_sym_DOLLAR] = ACTIONS(5802), - [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_file_descriptor] = ACTIONS(4883), + [sym__concat] = ACTIONS(4883), + [sym_variable_name] = ACTIONS(4883), + [anon_sym_PIPE] = ACTIONS(5866), + [anon_sym_PIPE_AMP] = ACTIONS(4883), + [anon_sym_AMP_AMP] = ACTIONS(4883), + [anon_sym_PIPE_PIPE] = ACTIONS(4883), + [anon_sym_LT] = ACTIONS(5866), + [anon_sym_GT] = ACTIONS(5866), + [anon_sym_GT_GT] = ACTIONS(4883), + [anon_sym_AMP_GT] = ACTIONS(5866), + [anon_sym_AMP_GT_GT] = ACTIONS(4883), + [anon_sym_LT_AMP] = ACTIONS(4883), + [anon_sym_GT_AMP] = ACTIONS(4883), + [sym__special_characters] = ACTIONS(5866), + [anon_sym_DQUOTE] = ACTIONS(4883), + [anon_sym_DOLLAR] = ACTIONS(5866), + [sym_raw_string] = ACTIONS(4883), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4883), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4883), + [anon_sym_BQUOTE] = ACTIONS(4883), + [anon_sym_LT_LPAREN] = ACTIONS(4883), + [anon_sym_GT_LPAREN] = ACTIONS(4883), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5802), + [sym_word] = ACTIONS(5866), }, [3562] = { [sym_concatenation] = STATE(451), @@ -89169,52 +89540,52 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7770), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7844), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3563] = { - [sym_file_descriptor] = ACTIONS(4827), - [sym__concat] = ACTIONS(4827), - [sym_variable_name] = ACTIONS(4827), - [anon_sym_PIPE] = ACTIONS(5806), - [anon_sym_PIPE_AMP] = ACTIONS(4827), - [anon_sym_AMP_AMP] = ACTIONS(4827), - [anon_sym_PIPE_PIPE] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(5806), - [anon_sym_GT] = ACTIONS(5806), - [anon_sym_GT_GT] = ACTIONS(4827), - [anon_sym_AMP_GT] = ACTIONS(5806), - [anon_sym_AMP_GT_GT] = ACTIONS(4827), - [anon_sym_LT_AMP] = ACTIONS(4827), - [anon_sym_GT_AMP] = ACTIONS(4827), - [sym__special_characters] = ACTIONS(5806), - [anon_sym_DQUOTE] = ACTIONS(4827), - [anon_sym_DOLLAR] = ACTIONS(5806), - [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_file_descriptor] = ACTIONS(4889), + [sym__concat] = ACTIONS(4889), + [sym_variable_name] = ACTIONS(4889), + [anon_sym_PIPE] = ACTIONS(5870), + [anon_sym_PIPE_AMP] = ACTIONS(4889), + [anon_sym_AMP_AMP] = ACTIONS(4889), + [anon_sym_PIPE_PIPE] = ACTIONS(4889), + [anon_sym_LT] = ACTIONS(5870), + [anon_sym_GT] = ACTIONS(5870), + [anon_sym_GT_GT] = ACTIONS(4889), + [anon_sym_AMP_GT] = ACTIONS(5870), + [anon_sym_AMP_GT_GT] = ACTIONS(4889), + [anon_sym_LT_AMP] = ACTIONS(4889), + [anon_sym_GT_AMP] = ACTIONS(4889), + [sym__special_characters] = ACTIONS(5870), + [anon_sym_DQUOTE] = ACTIONS(4889), + [anon_sym_DOLLAR] = ACTIONS(5870), + [sym_raw_string] = ACTIONS(4889), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4889), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4889), + [anon_sym_BQUOTE] = ACTIONS(4889), + [anon_sym_LT_LPAREN] = ACTIONS(4889), + [anon_sym_GT_LPAREN] = ACTIONS(4889), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5806), + [sym_word] = ACTIONS(5870), }, [3564] = { [sym_concatenation] = STATE(451), @@ -89225,52 +89596,52 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7772), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7846), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3565] = { - [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__concat] = ACTIONS(1886), + [anon_sym_PIPE] = ACTIONS(3056), + [anon_sym_PIPE_AMP] = ACTIONS(1886), + [anon_sym_AMP_AMP] = ACTIONS(1886), + [anon_sym_PIPE_PIPE] = ACTIONS(1886), + [anon_sym_BQUOTE] = ACTIONS(1886), [sym_comment] = ACTIONS(56), }, [3566] = { [aux_sym_concatenation_repeat1] = STATE(3566), - [sym__concat] = ACTIONS(7774), - [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__concat] = ACTIONS(7848), + [anon_sym_PIPE] = ACTIONS(3056), + [anon_sym_PIPE_AMP] = ACTIONS(1886), + [anon_sym_AMP_AMP] = ACTIONS(1886), + [anon_sym_PIPE_PIPE] = ACTIONS(1886), + [anon_sym_BQUOTE] = ACTIONS(1886), [sym_comment] = ACTIONS(56), }, [3567] = { - [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__concat] = ACTIONS(1923), + [anon_sym_PIPE] = ACTIONS(3061), + [anon_sym_PIPE_AMP] = ACTIONS(1923), + [anon_sym_AMP_AMP] = ACTIONS(1923), + [anon_sym_PIPE_PIPE] = ACTIONS(1923), + [anon_sym_BQUOTE] = ACTIONS(1923), [sym_comment] = ACTIONS(56), }, [3568] = { @@ -89281,31 +89652,31 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(3949), [sym_command_substitution] = STATE(3949), [sym_process_substitution] = STATE(3949), - [anon_sym_RBRACE] = ACTIONS(7777), - [sym__special_characters] = ACTIONS(7779), - [anon_sym_DQUOTE] = ACTIONS(1924), - [anon_sym_DOLLAR] = ACTIONS(1926), - [sym_raw_string] = ACTIONS(7781), - [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), + [anon_sym_RBRACE] = ACTIONS(7851), + [sym__special_characters] = ACTIONS(7853), + [anon_sym_DQUOTE] = ACTIONS(1952), + [anon_sym_DOLLAR] = ACTIONS(1954), + [sym_raw_string] = ACTIONS(7855), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), + [anon_sym_BQUOTE] = ACTIONS(1962), + [anon_sym_LT_LPAREN] = ACTIONS(1964), + [anon_sym_GT_LPAREN] = ACTIONS(1964), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7783), + [sym_word] = ACTIONS(7857), }, [3569] = { - [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__concat] = ACTIONS(1968), + [anon_sym_PIPE] = ACTIONS(3071), + [anon_sym_PIPE_AMP] = ACTIONS(1968), + [anon_sym_AMP_AMP] = ACTIONS(1968), + [anon_sym_PIPE_PIPE] = ACTIONS(1968), + [anon_sym_BQUOTE] = ACTIONS(1968), [sym_comment] = ACTIONS(56), }, [3570] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(7785), + [sym_regex_without_right_brace] = ACTIONS(7859), }, [3571] = { [sym_concatenation] = STATE(451), @@ -89316,29 +89687,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(7861), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3572] = { - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(7789), + [anon_sym_LBRACK] = ACTIONS(836), + [anon_sym_EQ] = ACTIONS(7863), [sym_comment] = ACTIONS(56), }, [3573] = { @@ -89350,26 +89721,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3956), - [anon_sym_RBRACE] = ACTIONS(7791), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_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(7793), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7865), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(7867), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3574] = { [sym_concatenation] = STATE(451), @@ -89380,26 +89751,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3959), - [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), - [aux_sym_SLASH] = ACTIONS(7797), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7869), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(7871), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3575] = { [sym_concatenation] = STATE(451), @@ -89410,39 +89781,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3961), - [anon_sym_RBRACE] = ACTIONS(7777), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_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(7799), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7851), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(7873), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3576] = { - [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__concat] = ACTIONS(2022), + [anon_sym_PIPE] = ACTIONS(3089), + [anon_sym_PIPE_AMP] = ACTIONS(2022), + [anon_sym_AMP_AMP] = ACTIONS(2022), + [anon_sym_PIPE_PIPE] = ACTIONS(2022), + [anon_sym_BQUOTE] = ACTIONS(2022), [sym_comment] = ACTIONS(56), }, [3577] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(7801), + [sym_regex_without_right_brace] = ACTIONS(7875), }, [3578] = { [sym_concatenation] = STATE(451), @@ -89453,38 +89824,38 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(7877), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3579] = { - [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__concat] = ACTIONS(2030), + [anon_sym_PIPE] = ACTIONS(3095), + [anon_sym_PIPE_AMP] = ACTIONS(2030), + [anon_sym_AMP_AMP] = ACTIONS(2030), + [anon_sym_PIPE_PIPE] = ACTIONS(2030), + [anon_sym_BQUOTE] = ACTIONS(2030), [sym_comment] = ACTIONS(56), }, [3580] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(7805), + [sym_regex_without_right_brace] = ACTIONS(7879), }, [3581] = { [sym_concatenation] = STATE(451), @@ -89495,123 +89866,123 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7777), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7851), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3582] = { - [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__concat] = ACTIONS(2190), + [anon_sym_PIPE] = ACTIONS(3099), + [anon_sym_PIPE_AMP] = ACTIONS(2190), + [anon_sym_AMP_AMP] = ACTIONS(2190), + [anon_sym_PIPE_PIPE] = ACTIONS(2190), + [anon_sym_BQUOTE] = ACTIONS(2190), [sym_comment] = ACTIONS(56), }, [3583] = { - [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__concat] = ACTIONS(2396), + [anon_sym_PIPE] = ACTIONS(3101), + [anon_sym_PIPE_AMP] = ACTIONS(2396), + [anon_sym_AMP_AMP] = ACTIONS(2396), + [anon_sym_PIPE_PIPE] = ACTIONS(2396), + [anon_sym_BQUOTE] = ACTIONS(2396), [sym_comment] = ACTIONS(56), }, [3584] = { - [sym__concat] = ACTIONS(5961), - [sym_variable_name] = ACTIONS(5961), - [anon_sym_PIPE] = ACTIONS(6846), - [anon_sym_PIPE_AMP] = ACTIONS(5961), - [anon_sym_AMP_AMP] = ACTIONS(5961), - [anon_sym_PIPE_PIPE] = ACTIONS(5961), - [sym__special_characters] = ACTIONS(6846), - [anon_sym_DQUOTE] = ACTIONS(5961), - [anon_sym_DOLLAR] = ACTIONS(6846), - [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__concat] = ACTIONS(6025), + [sym_variable_name] = ACTIONS(6025), + [anon_sym_PIPE] = ACTIONS(6916), + [anon_sym_PIPE_AMP] = ACTIONS(6025), + [anon_sym_AMP_AMP] = ACTIONS(6025), + [anon_sym_PIPE_PIPE] = ACTIONS(6025), + [sym__special_characters] = ACTIONS(6916), + [anon_sym_DQUOTE] = ACTIONS(6025), + [anon_sym_DOLLAR] = ACTIONS(6916), + [sym_raw_string] = ACTIONS(6025), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6025), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6025), + [anon_sym_BQUOTE] = ACTIONS(6025), + [anon_sym_LT_LPAREN] = ACTIONS(6025), + [anon_sym_GT_LPAREN] = ACTIONS(6025), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6846), - [sym_word] = ACTIONS(5963), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6916), + [sym_word] = ACTIONS(6027), }, [3585] = { - [sym__concat] = ACTIONS(5965), - [sym_variable_name] = ACTIONS(5965), - [anon_sym_PIPE] = ACTIONS(6848), - [anon_sym_PIPE_AMP] = ACTIONS(5965), - [anon_sym_AMP_AMP] = ACTIONS(5965), - [anon_sym_PIPE_PIPE] = ACTIONS(5965), - [sym__special_characters] = ACTIONS(6848), - [anon_sym_DQUOTE] = ACTIONS(5965), - [anon_sym_DOLLAR] = ACTIONS(6848), - [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__concat] = ACTIONS(6029), + [sym_variable_name] = ACTIONS(6029), + [anon_sym_PIPE] = ACTIONS(6918), + [anon_sym_PIPE_AMP] = ACTIONS(6029), + [anon_sym_AMP_AMP] = ACTIONS(6029), + [anon_sym_PIPE_PIPE] = ACTIONS(6029), + [sym__special_characters] = ACTIONS(6918), + [anon_sym_DQUOTE] = ACTIONS(6029), + [anon_sym_DOLLAR] = ACTIONS(6918), + [sym_raw_string] = ACTIONS(6029), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6029), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6029), + [anon_sym_BQUOTE] = ACTIONS(6029), + [anon_sym_LT_LPAREN] = ACTIONS(6029), + [anon_sym_GT_LPAREN] = ACTIONS(6029), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6848), - [sym_word] = ACTIONS(5967), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6918), + [sym_word] = ACTIONS(6031), }, [3586] = { - [sym__concat] = ACTIONS(5969), - [sym_variable_name] = ACTIONS(5969), - [anon_sym_PIPE] = ACTIONS(6850), - [anon_sym_PIPE_AMP] = ACTIONS(5969), - [anon_sym_AMP_AMP] = ACTIONS(5969), - [anon_sym_PIPE_PIPE] = ACTIONS(5969), - [sym__special_characters] = ACTIONS(6850), - [anon_sym_DQUOTE] = ACTIONS(5969), - [anon_sym_DOLLAR] = ACTIONS(6850), - [sym_raw_string] = ACTIONS(5969), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5969), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5969), - [anon_sym_BQUOTE] = ACTIONS(5969), - [anon_sym_LT_LPAREN] = ACTIONS(5969), - [anon_sym_GT_LPAREN] = ACTIONS(5969), + [sym__concat] = ACTIONS(6033), + [sym_variable_name] = ACTIONS(6033), + [anon_sym_PIPE] = ACTIONS(6920), + [anon_sym_PIPE_AMP] = ACTIONS(6033), + [anon_sym_AMP_AMP] = ACTIONS(6033), + [anon_sym_PIPE_PIPE] = ACTIONS(6033), + [sym__special_characters] = ACTIONS(6920), + [anon_sym_DQUOTE] = ACTIONS(6033), + [anon_sym_DOLLAR] = ACTIONS(6920), + [sym_raw_string] = ACTIONS(6033), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6033), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6033), + [anon_sym_BQUOTE] = ACTIONS(6033), + [anon_sym_LT_LPAREN] = ACTIONS(6033), + [anon_sym_GT_LPAREN] = ACTIONS(6033), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6850), - [sym_word] = ACTIONS(5971), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6920), + [sym_word] = ACTIONS(6035), }, [3587] = { - [sym__concat] = ACTIONS(5973), - [sym_variable_name] = ACTIONS(5973), - [anon_sym_PIPE] = ACTIONS(6852), - [anon_sym_PIPE_AMP] = ACTIONS(5973), - [anon_sym_AMP_AMP] = ACTIONS(5973), - [anon_sym_PIPE_PIPE] = ACTIONS(5973), - [sym__special_characters] = ACTIONS(6852), - [anon_sym_DQUOTE] = ACTIONS(5973), - [anon_sym_DOLLAR] = ACTIONS(6852), - [sym_raw_string] = ACTIONS(5973), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5973), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5973), - [anon_sym_BQUOTE] = ACTIONS(5973), - [anon_sym_LT_LPAREN] = ACTIONS(5973), - [anon_sym_GT_LPAREN] = ACTIONS(5973), + [sym__concat] = ACTIONS(6037), + [sym_variable_name] = ACTIONS(6037), + [anon_sym_PIPE] = ACTIONS(6922), + [anon_sym_PIPE_AMP] = ACTIONS(6037), + [anon_sym_AMP_AMP] = ACTIONS(6037), + [anon_sym_PIPE_PIPE] = ACTIONS(6037), + [sym__special_characters] = ACTIONS(6922), + [anon_sym_DQUOTE] = ACTIONS(6037), + [anon_sym_DOLLAR] = ACTIONS(6922), + [sym_raw_string] = ACTIONS(6037), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6037), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6037), + [anon_sym_BQUOTE] = ACTIONS(6037), + [anon_sym_LT_LPAREN] = ACTIONS(6037), + [anon_sym_GT_LPAREN] = ACTIONS(6037), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6852), - [sym_word] = ACTIONS(5975), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6922), + [sym_word] = ACTIONS(6039), }, [3588] = { [sym_concatenation] = STATE(451), @@ -89622,45 +89993,45 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7807), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7881), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3589] = { - [sym__concat] = ACTIONS(5979), - [sym_variable_name] = ACTIONS(5979), - [anon_sym_PIPE] = ACTIONS(6856), - [anon_sym_PIPE_AMP] = ACTIONS(5979), - [anon_sym_AMP_AMP] = ACTIONS(5979), - [anon_sym_PIPE_PIPE] = ACTIONS(5979), - [sym__special_characters] = ACTIONS(6856), - [anon_sym_DQUOTE] = ACTIONS(5979), - [anon_sym_DOLLAR] = ACTIONS(6856), - [sym_raw_string] = ACTIONS(5979), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5979), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5979), - [anon_sym_BQUOTE] = ACTIONS(5979), - [anon_sym_LT_LPAREN] = ACTIONS(5979), - [anon_sym_GT_LPAREN] = ACTIONS(5979), + [sym__concat] = ACTIONS(6043), + [sym_variable_name] = ACTIONS(6043), + [anon_sym_PIPE] = ACTIONS(6926), + [anon_sym_PIPE_AMP] = ACTIONS(6043), + [anon_sym_AMP_AMP] = ACTIONS(6043), + [anon_sym_PIPE_PIPE] = ACTIONS(6043), + [sym__special_characters] = ACTIONS(6926), + [anon_sym_DQUOTE] = ACTIONS(6043), + [anon_sym_DOLLAR] = ACTIONS(6926), + [sym_raw_string] = ACTIONS(6043), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6043), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6043), + [anon_sym_BQUOTE] = ACTIONS(6043), + [anon_sym_LT_LPAREN] = ACTIONS(6043), + [anon_sym_GT_LPAREN] = ACTIONS(6043), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6856), - [sym_word] = ACTIONS(5981), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6926), + [sym_word] = ACTIONS(6045), }, [3590] = { [sym_concatenation] = STATE(451), @@ -89671,45 +90042,45 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [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), + [anon_sym_RBRACE] = ACTIONS(7883), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3591] = { - [sym__concat] = ACTIONS(5985), - [sym_variable_name] = ACTIONS(5985), - [anon_sym_PIPE] = ACTIONS(6860), - [anon_sym_PIPE_AMP] = ACTIONS(5985), - [anon_sym_AMP_AMP] = ACTIONS(5985), - [anon_sym_PIPE_PIPE] = ACTIONS(5985), - [sym__special_characters] = ACTIONS(6860), - [anon_sym_DQUOTE] = ACTIONS(5985), - [anon_sym_DOLLAR] = ACTIONS(6860), - [sym_raw_string] = ACTIONS(5985), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5985), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5985), - [anon_sym_BQUOTE] = ACTIONS(5985), - [anon_sym_LT_LPAREN] = ACTIONS(5985), - [anon_sym_GT_LPAREN] = ACTIONS(5985), + [sym__concat] = ACTIONS(6049), + [sym_variable_name] = ACTIONS(6049), + [anon_sym_PIPE] = ACTIONS(6930), + [anon_sym_PIPE_AMP] = ACTIONS(6049), + [anon_sym_AMP_AMP] = ACTIONS(6049), + [anon_sym_PIPE_PIPE] = ACTIONS(6049), + [sym__special_characters] = ACTIONS(6930), + [anon_sym_DQUOTE] = ACTIONS(6049), + [anon_sym_DOLLAR] = ACTIONS(6930), + [sym_raw_string] = ACTIONS(6049), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6049), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6049), + [anon_sym_BQUOTE] = ACTIONS(6049), + [anon_sym_LT_LPAREN] = ACTIONS(6049), + [anon_sym_GT_LPAREN] = ACTIONS(6049), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6860), - [sym_word] = ACTIONS(5987), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6930), + [sym_word] = ACTIONS(6051), }, [3592] = { [sym_concatenation] = STATE(451), @@ -89720,141 +90091,141 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [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), + [anon_sym_RBRACE] = ACTIONS(7885), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3593] = { - [sym__concat] = ACTIONS(5991), - [sym_variable_name] = ACTIONS(5991), - [anon_sym_PIPE] = ACTIONS(6864), - [anon_sym_PIPE_AMP] = ACTIONS(5991), - [anon_sym_AMP_AMP] = ACTIONS(5991), - [anon_sym_PIPE_PIPE] = ACTIONS(5991), - [sym__special_characters] = ACTIONS(6864), - [anon_sym_DQUOTE] = ACTIONS(5991), - [anon_sym_DOLLAR] = ACTIONS(6864), - [sym_raw_string] = ACTIONS(5991), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5991), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5991), - [anon_sym_BQUOTE] = ACTIONS(5991), - [anon_sym_LT_LPAREN] = ACTIONS(5991), - [anon_sym_GT_LPAREN] = ACTIONS(5991), + [sym__concat] = ACTIONS(6055), + [sym_variable_name] = ACTIONS(6055), + [anon_sym_PIPE] = ACTIONS(6934), + [anon_sym_PIPE_AMP] = ACTIONS(6055), + [anon_sym_AMP_AMP] = ACTIONS(6055), + [anon_sym_PIPE_PIPE] = ACTIONS(6055), + [sym__special_characters] = ACTIONS(6934), + [anon_sym_DQUOTE] = ACTIONS(6055), + [anon_sym_DOLLAR] = ACTIONS(6934), + [sym_raw_string] = ACTIONS(6055), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6055), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6055), + [anon_sym_BQUOTE] = ACTIONS(6055), + [anon_sym_LT_LPAREN] = ACTIONS(6055), + [anon_sym_GT_LPAREN] = ACTIONS(6055), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6864), - [sym_word] = ACTIONS(5993), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6934), + [sym_word] = ACTIONS(6057), }, [3594] = { - [sym__concat] = ACTIONS(5995), - [sym_variable_name] = ACTIONS(5995), - [anon_sym_PIPE] = ACTIONS(6866), - [anon_sym_PIPE_AMP] = ACTIONS(5995), - [anon_sym_AMP_AMP] = ACTIONS(5995), - [anon_sym_PIPE_PIPE] = ACTIONS(5995), - [sym__special_characters] = ACTIONS(6866), - [anon_sym_DQUOTE] = ACTIONS(5995), - [anon_sym_DOLLAR] = ACTIONS(6866), - [sym_raw_string] = ACTIONS(5995), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5995), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5995), - [anon_sym_BQUOTE] = ACTIONS(5995), - [anon_sym_LT_LPAREN] = ACTIONS(5995), - [anon_sym_GT_LPAREN] = ACTIONS(5995), + [sym__concat] = ACTIONS(6059), + [sym_variable_name] = ACTIONS(6059), + [anon_sym_PIPE] = ACTIONS(6936), + [anon_sym_PIPE_AMP] = ACTIONS(6059), + [anon_sym_AMP_AMP] = ACTIONS(6059), + [anon_sym_PIPE_PIPE] = ACTIONS(6059), + [sym__special_characters] = ACTIONS(6936), + [anon_sym_DQUOTE] = ACTIONS(6059), + [anon_sym_DOLLAR] = ACTIONS(6936), + [sym_raw_string] = ACTIONS(6059), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6059), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6059), + [anon_sym_BQUOTE] = ACTIONS(6059), + [anon_sym_LT_LPAREN] = ACTIONS(6059), + [anon_sym_GT_LPAREN] = ACTIONS(6059), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6866), - [sym_word] = ACTIONS(5997), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6936), + [sym_word] = ACTIONS(6061), }, [3595] = { - [sym__concat] = ACTIONS(5961), - [anon_sym_PIPE] = ACTIONS(6846), - [anon_sym_PIPE_AMP] = ACTIONS(5961), - [anon_sym_AMP_AMP] = ACTIONS(5961), - [anon_sym_PIPE_PIPE] = ACTIONS(5961), - [sym__special_characters] = ACTIONS(6846), - [anon_sym_DQUOTE] = ACTIONS(5961), - [anon_sym_DOLLAR] = ACTIONS(6846), - [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__concat] = ACTIONS(6025), + [anon_sym_PIPE] = ACTIONS(6916), + [anon_sym_PIPE_AMP] = ACTIONS(6025), + [anon_sym_AMP_AMP] = ACTIONS(6025), + [anon_sym_PIPE_PIPE] = ACTIONS(6025), + [sym__special_characters] = ACTIONS(6916), + [anon_sym_DQUOTE] = ACTIONS(6025), + [anon_sym_DOLLAR] = ACTIONS(6916), + [sym_raw_string] = ACTIONS(6025), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6025), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6025), + [anon_sym_BQUOTE] = ACTIONS(6025), + [anon_sym_LT_LPAREN] = ACTIONS(6025), + [anon_sym_GT_LPAREN] = ACTIONS(6025), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6846), - [sym_word] = ACTIONS(5963), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6916), + [sym_word] = ACTIONS(6027), }, [3596] = { - [sym__concat] = ACTIONS(5965), - [anon_sym_PIPE] = ACTIONS(6848), - [anon_sym_PIPE_AMP] = ACTIONS(5965), - [anon_sym_AMP_AMP] = ACTIONS(5965), - [anon_sym_PIPE_PIPE] = ACTIONS(5965), - [sym__special_characters] = ACTIONS(6848), - [anon_sym_DQUOTE] = ACTIONS(5965), - [anon_sym_DOLLAR] = ACTIONS(6848), - [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__concat] = ACTIONS(6029), + [anon_sym_PIPE] = ACTIONS(6918), + [anon_sym_PIPE_AMP] = ACTIONS(6029), + [anon_sym_AMP_AMP] = ACTIONS(6029), + [anon_sym_PIPE_PIPE] = ACTIONS(6029), + [sym__special_characters] = ACTIONS(6918), + [anon_sym_DQUOTE] = ACTIONS(6029), + [anon_sym_DOLLAR] = ACTIONS(6918), + [sym_raw_string] = ACTIONS(6029), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6029), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6029), + [anon_sym_BQUOTE] = ACTIONS(6029), + [anon_sym_LT_LPAREN] = ACTIONS(6029), + [anon_sym_GT_LPAREN] = ACTIONS(6029), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6848), - [sym_word] = ACTIONS(5967), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6918), + [sym_word] = ACTIONS(6031), }, [3597] = { - [sym__concat] = ACTIONS(5969), - [anon_sym_PIPE] = ACTIONS(6850), - [anon_sym_PIPE_AMP] = ACTIONS(5969), - [anon_sym_AMP_AMP] = ACTIONS(5969), - [anon_sym_PIPE_PIPE] = ACTIONS(5969), - [sym__special_characters] = ACTIONS(6850), - [anon_sym_DQUOTE] = ACTIONS(5969), - [anon_sym_DOLLAR] = ACTIONS(6850), - [sym_raw_string] = ACTIONS(5969), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5969), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5969), - [anon_sym_BQUOTE] = ACTIONS(5969), - [anon_sym_LT_LPAREN] = ACTIONS(5969), - [anon_sym_GT_LPAREN] = ACTIONS(5969), + [sym__concat] = ACTIONS(6033), + [anon_sym_PIPE] = ACTIONS(6920), + [anon_sym_PIPE_AMP] = ACTIONS(6033), + [anon_sym_AMP_AMP] = ACTIONS(6033), + [anon_sym_PIPE_PIPE] = ACTIONS(6033), + [sym__special_characters] = ACTIONS(6920), + [anon_sym_DQUOTE] = ACTIONS(6033), + [anon_sym_DOLLAR] = ACTIONS(6920), + [sym_raw_string] = ACTIONS(6033), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6033), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6033), + [anon_sym_BQUOTE] = ACTIONS(6033), + [anon_sym_LT_LPAREN] = ACTIONS(6033), + [anon_sym_GT_LPAREN] = ACTIONS(6033), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6850), - [sym_word] = ACTIONS(5971), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6920), + [sym_word] = ACTIONS(6035), }, [3598] = { - [sym__concat] = ACTIONS(5973), - [anon_sym_PIPE] = ACTIONS(6852), - [anon_sym_PIPE_AMP] = ACTIONS(5973), - [anon_sym_AMP_AMP] = ACTIONS(5973), - [anon_sym_PIPE_PIPE] = ACTIONS(5973), - [sym__special_characters] = ACTIONS(6852), - [anon_sym_DQUOTE] = ACTIONS(5973), - [anon_sym_DOLLAR] = ACTIONS(6852), - [sym_raw_string] = ACTIONS(5973), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5973), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5973), - [anon_sym_BQUOTE] = ACTIONS(5973), - [anon_sym_LT_LPAREN] = ACTIONS(5973), - [anon_sym_GT_LPAREN] = ACTIONS(5973), + [sym__concat] = ACTIONS(6037), + [anon_sym_PIPE] = ACTIONS(6922), + [anon_sym_PIPE_AMP] = ACTIONS(6037), + [anon_sym_AMP_AMP] = ACTIONS(6037), + [anon_sym_PIPE_PIPE] = ACTIONS(6037), + [sym__special_characters] = ACTIONS(6922), + [anon_sym_DQUOTE] = ACTIONS(6037), + [anon_sym_DOLLAR] = ACTIONS(6922), + [sym_raw_string] = ACTIONS(6037), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6037), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6037), + [anon_sym_BQUOTE] = ACTIONS(6037), + [anon_sym_LT_LPAREN] = ACTIONS(6037), + [anon_sym_GT_LPAREN] = ACTIONS(6037), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6852), - [sym_word] = ACTIONS(5975), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6922), + [sym_word] = ACTIONS(6039), }, [3599] = { [sym_concatenation] = STATE(451), @@ -89865,44 +90236,44 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [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), + [anon_sym_RBRACE] = ACTIONS(7887), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3600] = { - [sym__concat] = ACTIONS(5979), - [anon_sym_PIPE] = ACTIONS(6856), - [anon_sym_PIPE_AMP] = ACTIONS(5979), - [anon_sym_AMP_AMP] = ACTIONS(5979), - [anon_sym_PIPE_PIPE] = ACTIONS(5979), - [sym__special_characters] = ACTIONS(6856), - [anon_sym_DQUOTE] = ACTIONS(5979), - [anon_sym_DOLLAR] = ACTIONS(6856), - [sym_raw_string] = ACTIONS(5979), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5979), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5979), - [anon_sym_BQUOTE] = ACTIONS(5979), - [anon_sym_LT_LPAREN] = ACTIONS(5979), - [anon_sym_GT_LPAREN] = ACTIONS(5979), + [sym__concat] = ACTIONS(6043), + [anon_sym_PIPE] = ACTIONS(6926), + [anon_sym_PIPE_AMP] = ACTIONS(6043), + [anon_sym_AMP_AMP] = ACTIONS(6043), + [anon_sym_PIPE_PIPE] = ACTIONS(6043), + [sym__special_characters] = ACTIONS(6926), + [anon_sym_DQUOTE] = ACTIONS(6043), + [anon_sym_DOLLAR] = ACTIONS(6926), + [sym_raw_string] = ACTIONS(6043), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6043), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6043), + [anon_sym_BQUOTE] = ACTIONS(6043), + [anon_sym_LT_LPAREN] = ACTIONS(6043), + [anon_sym_GT_LPAREN] = ACTIONS(6043), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6856), - [sym_word] = ACTIONS(5981), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6926), + [sym_word] = ACTIONS(6045), }, [3601] = { [sym_concatenation] = STATE(451), @@ -89913,44 +90284,44 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(7889), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3602] = { - [sym__concat] = ACTIONS(5985), - [anon_sym_PIPE] = ACTIONS(6860), - [anon_sym_PIPE_AMP] = ACTIONS(5985), - [anon_sym_AMP_AMP] = ACTIONS(5985), - [anon_sym_PIPE_PIPE] = ACTIONS(5985), - [sym__special_characters] = ACTIONS(6860), - [anon_sym_DQUOTE] = ACTIONS(5985), - [anon_sym_DOLLAR] = ACTIONS(6860), - [sym_raw_string] = ACTIONS(5985), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5985), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5985), - [anon_sym_BQUOTE] = ACTIONS(5985), - [anon_sym_LT_LPAREN] = ACTIONS(5985), - [anon_sym_GT_LPAREN] = ACTIONS(5985), + [sym__concat] = ACTIONS(6049), + [anon_sym_PIPE] = ACTIONS(6930), + [anon_sym_PIPE_AMP] = ACTIONS(6049), + [anon_sym_AMP_AMP] = ACTIONS(6049), + [anon_sym_PIPE_PIPE] = ACTIONS(6049), + [sym__special_characters] = ACTIONS(6930), + [anon_sym_DQUOTE] = ACTIONS(6049), + [anon_sym_DOLLAR] = ACTIONS(6930), + [sym_raw_string] = ACTIONS(6049), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6049), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6049), + [anon_sym_BQUOTE] = ACTIONS(6049), + [anon_sym_LT_LPAREN] = ACTIONS(6049), + [anon_sym_GT_LPAREN] = ACTIONS(6049), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6860), - [sym_word] = ACTIONS(5987), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6930), + [sym_word] = ACTIONS(6051), }, [3603] = { [sym_concatenation] = STATE(451), @@ -89961,212 +90332,215 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(7891), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3604] = { - [sym__concat] = ACTIONS(5991), - [anon_sym_PIPE] = ACTIONS(6864), - [anon_sym_PIPE_AMP] = ACTIONS(5991), - [anon_sym_AMP_AMP] = ACTIONS(5991), - [anon_sym_PIPE_PIPE] = ACTIONS(5991), - [sym__special_characters] = ACTIONS(6864), - [anon_sym_DQUOTE] = ACTIONS(5991), - [anon_sym_DOLLAR] = ACTIONS(6864), - [sym_raw_string] = ACTIONS(5991), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5991), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5991), - [anon_sym_BQUOTE] = ACTIONS(5991), - [anon_sym_LT_LPAREN] = ACTIONS(5991), - [anon_sym_GT_LPAREN] = ACTIONS(5991), + [sym__concat] = ACTIONS(6055), + [anon_sym_PIPE] = ACTIONS(6934), + [anon_sym_PIPE_AMP] = ACTIONS(6055), + [anon_sym_AMP_AMP] = ACTIONS(6055), + [anon_sym_PIPE_PIPE] = ACTIONS(6055), + [sym__special_characters] = ACTIONS(6934), + [anon_sym_DQUOTE] = ACTIONS(6055), + [anon_sym_DOLLAR] = ACTIONS(6934), + [sym_raw_string] = ACTIONS(6055), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6055), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6055), + [anon_sym_BQUOTE] = ACTIONS(6055), + [anon_sym_LT_LPAREN] = ACTIONS(6055), + [anon_sym_GT_LPAREN] = ACTIONS(6055), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6864), - [sym_word] = ACTIONS(5993), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6934), + [sym_word] = ACTIONS(6057), }, [3605] = { - [sym__concat] = ACTIONS(5995), - [anon_sym_PIPE] = ACTIONS(6866), - [anon_sym_PIPE_AMP] = ACTIONS(5995), - [anon_sym_AMP_AMP] = ACTIONS(5995), - [anon_sym_PIPE_PIPE] = ACTIONS(5995), - [sym__special_characters] = ACTIONS(6866), - [anon_sym_DQUOTE] = ACTIONS(5995), - [anon_sym_DOLLAR] = ACTIONS(6866), - [sym_raw_string] = ACTIONS(5995), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5995), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5995), - [anon_sym_BQUOTE] = ACTIONS(5995), - [anon_sym_LT_LPAREN] = ACTIONS(5995), - [anon_sym_GT_LPAREN] = ACTIONS(5995), + [sym__concat] = ACTIONS(6059), + [anon_sym_PIPE] = ACTIONS(6936), + [anon_sym_PIPE_AMP] = ACTIONS(6059), + [anon_sym_AMP_AMP] = ACTIONS(6059), + [anon_sym_PIPE_PIPE] = ACTIONS(6059), + [sym__special_characters] = ACTIONS(6936), + [anon_sym_DQUOTE] = ACTIONS(6059), + [anon_sym_DOLLAR] = ACTIONS(6936), + [sym_raw_string] = ACTIONS(6059), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6059), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6059), + [anon_sym_BQUOTE] = ACTIONS(6059), + [anon_sym_LT_LPAREN] = ACTIONS(6059), + [anon_sym_GT_LPAREN] = ACTIONS(6059), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6866), - [sym_word] = ACTIONS(5997), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6936), + [sym_word] = ACTIONS(6061), }, [3606] = { - [sym_file_descriptor] = ACTIONS(6948), - [sym__concat] = ACTIONS(6948), - [anon_sym_PIPE] = ACTIONS(7635), - [anon_sym_PIPE_AMP] = ACTIONS(6948), - [anon_sym_AMP_AMP] = ACTIONS(6948), - [anon_sym_PIPE_PIPE] = ACTIONS(6948), - [anon_sym_EQ_TILDE] = ACTIONS(7635), - [anon_sym_LT] = ACTIONS(7635), - [anon_sym_GT] = ACTIONS(7635), - [anon_sym_GT_GT] = ACTIONS(6948), - [anon_sym_AMP_GT] = ACTIONS(7635), - [anon_sym_AMP_GT_GT] = ACTIONS(6948), - [anon_sym_LT_AMP] = ACTIONS(6948), - [anon_sym_GT_AMP] = ACTIONS(6948), - [anon_sym_LT_LT] = ACTIONS(7635), - [anon_sym_LT_LT_DASH] = ACTIONS(6948), - [anon_sym_LT_LT_LT] = ACTIONS(6948), - [sym__special_characters] = ACTIONS(7635), - [anon_sym_DQUOTE] = ACTIONS(6948), - [anon_sym_DOLLAR] = ACTIONS(7635), - [sym_raw_string] = ACTIONS(6948), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6948), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6948), - [anon_sym_BQUOTE] = ACTIONS(6948), - [anon_sym_LT_LPAREN] = ACTIONS(6948), - [anon_sym_GT_LPAREN] = ACTIONS(6948), + [sym_file_descriptor] = ACTIONS(7018), + [sym__concat] = ACTIONS(7018), + [anon_sym_PIPE] = ACTIONS(7709), + [anon_sym_PIPE_AMP] = ACTIONS(7018), + [anon_sym_AMP_AMP] = ACTIONS(7018), + [anon_sym_PIPE_PIPE] = ACTIONS(7018), + [anon_sym_EQ_TILDE] = ACTIONS(7709), + [anon_sym_EQ_EQ] = ACTIONS(7709), + [anon_sym_LT] = ACTIONS(7709), + [anon_sym_GT] = ACTIONS(7709), + [anon_sym_GT_GT] = ACTIONS(7018), + [anon_sym_AMP_GT] = ACTIONS(7709), + [anon_sym_AMP_GT_GT] = ACTIONS(7018), + [anon_sym_LT_AMP] = ACTIONS(7018), + [anon_sym_GT_AMP] = ACTIONS(7018), + [anon_sym_LT_LT] = ACTIONS(7709), + [anon_sym_LT_LT_DASH] = ACTIONS(7018), + [anon_sym_LT_LT_LT] = ACTIONS(7018), + [sym__special_characters] = ACTIONS(7709), + [anon_sym_DQUOTE] = ACTIONS(7018), + [anon_sym_DOLLAR] = ACTIONS(7709), + [sym_raw_string] = ACTIONS(7018), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7018), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7018), + [anon_sym_BQUOTE] = ACTIONS(7018), + [anon_sym_LT_LPAREN] = ACTIONS(7018), + [anon_sym_GT_LPAREN] = ACTIONS(7018), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6950), + [sym_word] = ACTIONS(7020), }, [3607] = { - [sym_file_descriptor] = ACTIONS(6952), - [sym__concat] = ACTIONS(6952), - [anon_sym_PIPE] = ACTIONS(7637), - [anon_sym_PIPE_AMP] = ACTIONS(6952), - [anon_sym_AMP_AMP] = ACTIONS(6952), - [anon_sym_PIPE_PIPE] = ACTIONS(6952), - [anon_sym_EQ_TILDE] = ACTIONS(7637), - [anon_sym_LT] = ACTIONS(7637), - [anon_sym_GT] = ACTIONS(7637), - [anon_sym_GT_GT] = ACTIONS(6952), - [anon_sym_AMP_GT] = ACTIONS(7637), - [anon_sym_AMP_GT_GT] = ACTIONS(6952), - [anon_sym_LT_AMP] = ACTIONS(6952), - [anon_sym_GT_AMP] = ACTIONS(6952), - [anon_sym_LT_LT] = ACTIONS(7637), - [anon_sym_LT_LT_DASH] = ACTIONS(6952), - [anon_sym_LT_LT_LT] = ACTIONS(6952), - [sym__special_characters] = ACTIONS(7637), - [anon_sym_DQUOTE] = ACTIONS(6952), - [anon_sym_DOLLAR] = ACTIONS(7637), - [sym_raw_string] = ACTIONS(6952), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6952), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6952), - [anon_sym_BQUOTE] = ACTIONS(6952), - [anon_sym_LT_LPAREN] = ACTIONS(6952), - [anon_sym_GT_LPAREN] = ACTIONS(6952), + [sym_file_descriptor] = ACTIONS(7022), + [sym__concat] = ACTIONS(7022), + [anon_sym_PIPE] = ACTIONS(7711), + [anon_sym_PIPE_AMP] = ACTIONS(7022), + [anon_sym_AMP_AMP] = ACTIONS(7022), + [anon_sym_PIPE_PIPE] = ACTIONS(7022), + [anon_sym_EQ_TILDE] = ACTIONS(7711), + [anon_sym_EQ_EQ] = ACTIONS(7711), + [anon_sym_LT] = ACTIONS(7711), + [anon_sym_GT] = ACTIONS(7711), + [anon_sym_GT_GT] = ACTIONS(7022), + [anon_sym_AMP_GT] = ACTIONS(7711), + [anon_sym_AMP_GT_GT] = ACTIONS(7022), + [anon_sym_LT_AMP] = ACTIONS(7022), + [anon_sym_GT_AMP] = ACTIONS(7022), + [anon_sym_LT_LT] = ACTIONS(7711), + [anon_sym_LT_LT_DASH] = ACTIONS(7022), + [anon_sym_LT_LT_LT] = ACTIONS(7022), + [sym__special_characters] = ACTIONS(7711), + [anon_sym_DQUOTE] = ACTIONS(7022), + [anon_sym_DOLLAR] = ACTIONS(7711), + [sym_raw_string] = ACTIONS(7022), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7022), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7022), + [anon_sym_BQUOTE] = ACTIONS(7022), + [anon_sym_LT_LPAREN] = ACTIONS(7022), + [anon_sym_GT_LPAREN] = ACTIONS(7022), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6954), + [sym_word] = ACTIONS(7024), }, [3608] = { - [sym_file_descriptor] = ACTIONS(6956), - [sym__concat] = ACTIONS(6956), - [anon_sym_PIPE] = ACTIONS(7639), - [anon_sym_PIPE_AMP] = ACTIONS(6956), - [anon_sym_AMP_AMP] = ACTIONS(6956), - [anon_sym_PIPE_PIPE] = ACTIONS(6956), - [anon_sym_EQ_TILDE] = ACTIONS(7639), - [anon_sym_LT] = ACTIONS(7639), - [anon_sym_GT] = ACTIONS(7639), - [anon_sym_GT_GT] = ACTIONS(6956), - [anon_sym_AMP_GT] = ACTIONS(7639), - [anon_sym_AMP_GT_GT] = ACTIONS(6956), - [anon_sym_LT_AMP] = ACTIONS(6956), - [anon_sym_GT_AMP] = ACTIONS(6956), - [anon_sym_LT_LT] = ACTIONS(7639), - [anon_sym_LT_LT_DASH] = ACTIONS(6956), - [anon_sym_LT_LT_LT] = ACTIONS(6956), - [sym__special_characters] = ACTIONS(7639), - [anon_sym_DQUOTE] = ACTIONS(6956), - [anon_sym_DOLLAR] = ACTIONS(7639), - [sym_raw_string] = ACTIONS(6956), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6956), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6956), - [anon_sym_BQUOTE] = ACTIONS(6956), - [anon_sym_LT_LPAREN] = ACTIONS(6956), - [anon_sym_GT_LPAREN] = ACTIONS(6956), + [sym_file_descriptor] = ACTIONS(7026), + [sym__concat] = ACTIONS(7026), + [anon_sym_PIPE] = ACTIONS(7713), + [anon_sym_PIPE_AMP] = ACTIONS(7026), + [anon_sym_AMP_AMP] = ACTIONS(7026), + [anon_sym_PIPE_PIPE] = ACTIONS(7026), + [anon_sym_EQ_TILDE] = ACTIONS(7713), + [anon_sym_EQ_EQ] = ACTIONS(7713), + [anon_sym_LT] = ACTIONS(7713), + [anon_sym_GT] = ACTIONS(7713), + [anon_sym_GT_GT] = ACTIONS(7026), + [anon_sym_AMP_GT] = ACTIONS(7713), + [anon_sym_AMP_GT_GT] = ACTIONS(7026), + [anon_sym_LT_AMP] = ACTIONS(7026), + [anon_sym_GT_AMP] = ACTIONS(7026), + [anon_sym_LT_LT] = ACTIONS(7713), + [anon_sym_LT_LT_DASH] = ACTIONS(7026), + [anon_sym_LT_LT_LT] = ACTIONS(7026), + [sym__special_characters] = ACTIONS(7713), + [anon_sym_DQUOTE] = ACTIONS(7026), + [anon_sym_DOLLAR] = ACTIONS(7713), + [sym_raw_string] = ACTIONS(7026), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7026), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7026), + [anon_sym_BQUOTE] = ACTIONS(7026), + [anon_sym_LT_LPAREN] = ACTIONS(7026), + [anon_sym_GT_LPAREN] = ACTIONS(7026), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6958), + [sym_word] = ACTIONS(7028), }, [3609] = { - [sym_file_descriptor] = ACTIONS(4728), - [sym__concat] = ACTIONS(4728), - [anon_sym_PIPE] = ACTIONS(5780), - [anon_sym_PIPE_AMP] = ACTIONS(4728), - [anon_sym_AMP_AMP] = ACTIONS(4728), - [anon_sym_PIPE_PIPE] = ACTIONS(4728), - [anon_sym_LT] = ACTIONS(5780), - [anon_sym_GT] = ACTIONS(5780), - [anon_sym_GT_GT] = ACTIONS(4728), - [anon_sym_AMP_GT] = ACTIONS(5780), - [anon_sym_AMP_GT_GT] = ACTIONS(4728), - [anon_sym_LT_AMP] = ACTIONS(4728), - [anon_sym_GT_AMP] = ACTIONS(4728), - [anon_sym_LT_LT] = ACTIONS(5780), - [anon_sym_LT_LT_DASH] = ACTIONS(4728), - [anon_sym_LT_LT_LT] = ACTIONS(4728), - [anon_sym_BQUOTE] = ACTIONS(4728), + [sym_file_descriptor] = ACTIONS(4790), + [sym__concat] = ACTIONS(4790), + [anon_sym_PIPE] = ACTIONS(5844), + [anon_sym_PIPE_AMP] = ACTIONS(4790), + [anon_sym_AMP_AMP] = ACTIONS(4790), + [anon_sym_PIPE_PIPE] = ACTIONS(4790), + [anon_sym_LT] = ACTIONS(5844), + [anon_sym_GT] = ACTIONS(5844), + [anon_sym_GT_GT] = ACTIONS(4790), + [anon_sym_AMP_GT] = ACTIONS(5844), + [anon_sym_AMP_GT_GT] = ACTIONS(4790), + [anon_sym_LT_AMP] = ACTIONS(4790), + [anon_sym_GT_AMP] = ACTIONS(4790), + [anon_sym_LT_LT] = ACTIONS(5844), + [anon_sym_LT_LT_DASH] = ACTIONS(4790), + [anon_sym_LT_LT_LT] = ACTIONS(4790), + [anon_sym_BQUOTE] = ACTIONS(4790), [sym_comment] = ACTIONS(56), }, [3610] = { - [sym_file_descriptor] = ACTIONS(4734), - [sym__concat] = ACTIONS(4734), - [anon_sym_PIPE] = ACTIONS(5782), - [anon_sym_PIPE_AMP] = ACTIONS(4734), - [anon_sym_AMP_AMP] = ACTIONS(4734), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [anon_sym_LT] = ACTIONS(5782), - [anon_sym_GT] = ACTIONS(5782), - [anon_sym_GT_GT] = ACTIONS(4734), - [anon_sym_AMP_GT] = ACTIONS(5782), - [anon_sym_AMP_GT_GT] = ACTIONS(4734), - [anon_sym_LT_AMP] = ACTIONS(4734), - [anon_sym_GT_AMP] = ACTIONS(4734), - [anon_sym_LT_LT] = ACTIONS(5782), - [anon_sym_LT_LT_DASH] = ACTIONS(4734), - [anon_sym_LT_LT_LT] = ACTIONS(4734), - [anon_sym_BQUOTE] = ACTIONS(4734), + [sym_file_descriptor] = ACTIONS(4796), + [sym__concat] = ACTIONS(4796), + [anon_sym_PIPE] = ACTIONS(5846), + [anon_sym_PIPE_AMP] = ACTIONS(4796), + [anon_sym_AMP_AMP] = ACTIONS(4796), + [anon_sym_PIPE_PIPE] = ACTIONS(4796), + [anon_sym_LT] = ACTIONS(5846), + [anon_sym_GT] = ACTIONS(5846), + [anon_sym_GT_GT] = ACTIONS(4796), + [anon_sym_AMP_GT] = ACTIONS(5846), + [anon_sym_AMP_GT_GT] = ACTIONS(4796), + [anon_sym_LT_AMP] = ACTIONS(4796), + [anon_sym_GT_AMP] = ACTIONS(4796), + [anon_sym_LT_LT] = ACTIONS(5846), + [anon_sym_LT_LT_DASH] = ACTIONS(4796), + [anon_sym_LT_LT_LT] = ACTIONS(4796), + [anon_sym_BQUOTE] = ACTIONS(4796), [sym_comment] = ACTIONS(56), }, [3611] = { - [sym_file_descriptor] = ACTIONS(4797), - [sym__concat] = ACTIONS(4797), - [anon_sym_PIPE] = ACTIONS(5784), - [anon_sym_PIPE_AMP] = ACTIONS(4797), - [anon_sym_AMP_AMP] = ACTIONS(4797), - [anon_sym_PIPE_PIPE] = ACTIONS(4797), - [anon_sym_LT] = ACTIONS(5784), - [anon_sym_GT] = ACTIONS(5784), - [anon_sym_GT_GT] = ACTIONS(4797), - [anon_sym_AMP_GT] = ACTIONS(5784), - [anon_sym_AMP_GT_GT] = ACTIONS(4797), - [anon_sym_LT_AMP] = ACTIONS(4797), - [anon_sym_GT_AMP] = ACTIONS(4797), - [anon_sym_LT_LT] = ACTIONS(5784), - [anon_sym_LT_LT_DASH] = ACTIONS(4797), - [anon_sym_LT_LT_LT] = ACTIONS(4797), - [anon_sym_BQUOTE] = ACTIONS(4797), + [sym_file_descriptor] = ACTIONS(4859), + [sym__concat] = ACTIONS(4859), + [anon_sym_PIPE] = ACTIONS(5848), + [anon_sym_PIPE_AMP] = ACTIONS(4859), + [anon_sym_AMP_AMP] = ACTIONS(4859), + [anon_sym_PIPE_PIPE] = ACTIONS(4859), + [anon_sym_LT] = ACTIONS(5848), + [anon_sym_GT] = ACTIONS(5848), + [anon_sym_GT_GT] = ACTIONS(4859), + [anon_sym_AMP_GT] = ACTIONS(5848), + [anon_sym_AMP_GT_GT] = ACTIONS(4859), + [anon_sym_LT_AMP] = ACTIONS(4859), + [anon_sym_GT_AMP] = ACTIONS(4859), + [anon_sym_LT_LT] = ACTIONS(5848), + [anon_sym_LT_LT_DASH] = ACTIONS(4859), + [anon_sym_LT_LT_LT] = ACTIONS(4859), + [anon_sym_BQUOTE] = ACTIONS(4859), [sym_comment] = ACTIONS(56), }, [3612] = { @@ -90178,40 +90552,40 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(7893), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3613] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(7821), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(7895), [sym_comment] = ACTIONS(56), }, [3614] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(7823), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(7897), [sym_comment] = ACTIONS(56), }, [3615] = { - [anon_sym_RBRACE] = ACTIONS(7823), + [anon_sym_RBRACE] = ACTIONS(7897), [sym_comment] = ACTIONS(56), }, [3616] = { @@ -90223,44 +90597,44 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3975), - [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), + [anon_sym_RBRACE] = ACTIONS(7899), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3617] = { - [sym_file_descriptor] = ACTIONS(4809), - [sym__concat] = ACTIONS(4809), - [anon_sym_PIPE] = ACTIONS(5794), - [anon_sym_PIPE_AMP] = ACTIONS(4809), - [anon_sym_AMP_AMP] = ACTIONS(4809), - [anon_sym_PIPE_PIPE] = ACTIONS(4809), - [anon_sym_LT] = ACTIONS(5794), - [anon_sym_GT] = ACTIONS(5794), - [anon_sym_GT_GT] = ACTIONS(4809), - [anon_sym_AMP_GT] = ACTIONS(5794), - [anon_sym_AMP_GT_GT] = ACTIONS(4809), - [anon_sym_LT_AMP] = ACTIONS(4809), - [anon_sym_GT_AMP] = ACTIONS(4809), - [anon_sym_LT_LT] = ACTIONS(5794), - [anon_sym_LT_LT_DASH] = ACTIONS(4809), - [anon_sym_LT_LT_LT] = ACTIONS(4809), - [anon_sym_BQUOTE] = ACTIONS(4809), + [sym_file_descriptor] = ACTIONS(4871), + [sym__concat] = ACTIONS(4871), + [anon_sym_PIPE] = ACTIONS(5858), + [anon_sym_PIPE_AMP] = ACTIONS(4871), + [anon_sym_AMP_AMP] = ACTIONS(4871), + [anon_sym_PIPE_PIPE] = ACTIONS(4871), + [anon_sym_LT] = ACTIONS(5858), + [anon_sym_GT] = ACTIONS(5858), + [anon_sym_GT_GT] = ACTIONS(4871), + [anon_sym_AMP_GT] = ACTIONS(5858), + [anon_sym_AMP_GT_GT] = ACTIONS(4871), + [anon_sym_LT_AMP] = ACTIONS(4871), + [anon_sym_GT_AMP] = ACTIONS(4871), + [anon_sym_LT_LT] = ACTIONS(5858), + [anon_sym_LT_LT_DASH] = ACTIONS(4871), + [anon_sym_LT_LT_LT] = ACTIONS(4871), + [anon_sym_BQUOTE] = ACTIONS(4871), [sym_comment] = ACTIONS(56), }, [3618] = { @@ -90272,44 +90646,44 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3977), - [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), + [anon_sym_RBRACE] = ACTIONS(7901), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3619] = { - [sym_file_descriptor] = ACTIONS(4815), - [sym__concat] = ACTIONS(4815), - [anon_sym_PIPE] = ACTIONS(5798), - [anon_sym_PIPE_AMP] = ACTIONS(4815), - [anon_sym_AMP_AMP] = ACTIONS(4815), - [anon_sym_PIPE_PIPE] = ACTIONS(4815), - [anon_sym_LT] = ACTIONS(5798), - [anon_sym_GT] = ACTIONS(5798), - [anon_sym_GT_GT] = ACTIONS(4815), - [anon_sym_AMP_GT] = ACTIONS(5798), - [anon_sym_AMP_GT_GT] = ACTIONS(4815), - [anon_sym_LT_AMP] = ACTIONS(4815), - [anon_sym_GT_AMP] = ACTIONS(4815), - [anon_sym_LT_LT] = ACTIONS(5798), - [anon_sym_LT_LT_DASH] = ACTIONS(4815), - [anon_sym_LT_LT_LT] = ACTIONS(4815), - [anon_sym_BQUOTE] = ACTIONS(4815), + [sym_file_descriptor] = ACTIONS(4877), + [sym__concat] = ACTIONS(4877), + [anon_sym_PIPE] = ACTIONS(5862), + [anon_sym_PIPE_AMP] = ACTIONS(4877), + [anon_sym_AMP_AMP] = ACTIONS(4877), + [anon_sym_PIPE_PIPE] = ACTIONS(4877), + [anon_sym_LT] = ACTIONS(5862), + [anon_sym_GT] = ACTIONS(5862), + [anon_sym_GT_GT] = ACTIONS(4877), + [anon_sym_AMP_GT] = ACTIONS(5862), + [anon_sym_AMP_GT_GT] = ACTIONS(4877), + [anon_sym_LT_AMP] = ACTIONS(4877), + [anon_sym_GT_AMP] = ACTIONS(4877), + [anon_sym_LT_LT] = ACTIONS(5862), + [anon_sym_LT_LT_DASH] = ACTIONS(4877), + [anon_sym_LT_LT_LT] = ACTIONS(4877), + [anon_sym_BQUOTE] = ACTIONS(4877), [sym_comment] = ACTIONS(56), }, [3620] = { @@ -90321,44 +90695,44 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3979), - [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), + [anon_sym_RBRACE] = ACTIONS(7903), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3621] = { - [sym_file_descriptor] = ACTIONS(4821), - [sym__concat] = ACTIONS(4821), - [anon_sym_PIPE] = ACTIONS(5802), - [anon_sym_PIPE_AMP] = ACTIONS(4821), - [anon_sym_AMP_AMP] = ACTIONS(4821), - [anon_sym_PIPE_PIPE] = ACTIONS(4821), - [anon_sym_LT] = ACTIONS(5802), - [anon_sym_GT] = ACTIONS(5802), - [anon_sym_GT_GT] = ACTIONS(4821), - [anon_sym_AMP_GT] = ACTIONS(5802), - [anon_sym_AMP_GT_GT] = ACTIONS(4821), - [anon_sym_LT_AMP] = ACTIONS(4821), - [anon_sym_GT_AMP] = ACTIONS(4821), - [anon_sym_LT_LT] = ACTIONS(5802), - [anon_sym_LT_LT_DASH] = ACTIONS(4821), - [anon_sym_LT_LT_LT] = ACTIONS(4821), - [anon_sym_BQUOTE] = ACTIONS(4821), + [sym_file_descriptor] = ACTIONS(4883), + [sym__concat] = ACTIONS(4883), + [anon_sym_PIPE] = ACTIONS(5866), + [anon_sym_PIPE_AMP] = ACTIONS(4883), + [anon_sym_AMP_AMP] = ACTIONS(4883), + [anon_sym_PIPE_PIPE] = ACTIONS(4883), + [anon_sym_LT] = ACTIONS(5866), + [anon_sym_GT] = ACTIONS(5866), + [anon_sym_GT_GT] = ACTIONS(4883), + [anon_sym_AMP_GT] = ACTIONS(5866), + [anon_sym_AMP_GT_GT] = ACTIONS(4883), + [anon_sym_LT_AMP] = ACTIONS(4883), + [anon_sym_GT_AMP] = ACTIONS(4883), + [anon_sym_LT_LT] = ACTIONS(5866), + [anon_sym_LT_LT_DASH] = ACTIONS(4883), + [anon_sym_LT_LT_LT] = ACTIONS(4883), + [anon_sym_BQUOTE] = ACTIONS(4883), [sym_comment] = ACTIONS(56), }, [3622] = { @@ -90370,44 +90744,44 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(7905), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3623] = { - [sym_file_descriptor] = ACTIONS(4827), - [sym__concat] = ACTIONS(4827), - [anon_sym_PIPE] = ACTIONS(5806), - [anon_sym_PIPE_AMP] = ACTIONS(4827), - [anon_sym_AMP_AMP] = ACTIONS(4827), - [anon_sym_PIPE_PIPE] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(5806), - [anon_sym_GT] = ACTIONS(5806), - [anon_sym_GT_GT] = ACTIONS(4827), - [anon_sym_AMP_GT] = ACTIONS(5806), - [anon_sym_AMP_GT_GT] = ACTIONS(4827), - [anon_sym_LT_AMP] = ACTIONS(4827), - [anon_sym_GT_AMP] = ACTIONS(4827), - [anon_sym_LT_LT] = ACTIONS(5806), - [anon_sym_LT_LT_DASH] = ACTIONS(4827), - [anon_sym_LT_LT_LT] = ACTIONS(4827), - [anon_sym_BQUOTE] = ACTIONS(4827), + [sym_file_descriptor] = ACTIONS(4889), + [sym__concat] = ACTIONS(4889), + [anon_sym_PIPE] = ACTIONS(5870), + [anon_sym_PIPE_AMP] = ACTIONS(4889), + [anon_sym_AMP_AMP] = ACTIONS(4889), + [anon_sym_PIPE_PIPE] = ACTIONS(4889), + [anon_sym_LT] = ACTIONS(5870), + [anon_sym_GT] = ACTIONS(5870), + [anon_sym_GT_GT] = ACTIONS(4889), + [anon_sym_AMP_GT] = ACTIONS(5870), + [anon_sym_AMP_GT_GT] = ACTIONS(4889), + [anon_sym_LT_AMP] = ACTIONS(4889), + [anon_sym_GT_AMP] = ACTIONS(4889), + [anon_sym_LT_LT] = ACTIONS(5870), + [anon_sym_LT_LT_DASH] = ACTIONS(4889), + [anon_sym_LT_LT_LT] = ACTIONS(4889), + [anon_sym_BQUOTE] = ACTIONS(4889), [sym_comment] = ACTIONS(56), }, [3624] = { @@ -90419,117 +90793,117 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(7907), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3625] = { - [sym_file_descriptor] = ACTIONS(5961), - [sym__concat] = ACTIONS(5961), - [anon_sym_PIPE] = ACTIONS(5963), - [anon_sym_SEMI_SEMI] = ACTIONS(5963), - [anon_sym_PIPE_AMP] = ACTIONS(5963), - [anon_sym_AMP_AMP] = ACTIONS(5963), - [anon_sym_PIPE_PIPE] = ACTIONS(5963), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_GT] = ACTIONS(5963), - [anon_sym_GT_GT] = ACTIONS(5963), - [anon_sym_AMP_GT] = ACTIONS(5963), - [anon_sym_AMP_GT_GT] = ACTIONS(5963), - [anon_sym_LT_AMP] = ACTIONS(5963), - [anon_sym_GT_AMP] = ACTIONS(5963), - [anon_sym_LT_LT] = ACTIONS(5963), - [anon_sym_LT_LT_DASH] = ACTIONS(5963), - [anon_sym_LT_LT_LT] = ACTIONS(5963), + [sym_file_descriptor] = ACTIONS(6025), + [sym__concat] = ACTIONS(6025), + [anon_sym_PIPE] = ACTIONS(6027), + [anon_sym_SEMI_SEMI] = ACTIONS(6027), + [anon_sym_PIPE_AMP] = ACTIONS(6027), + [anon_sym_AMP_AMP] = ACTIONS(6027), + [anon_sym_PIPE_PIPE] = ACTIONS(6027), + [anon_sym_LT] = ACTIONS(6027), + [anon_sym_GT] = ACTIONS(6027), + [anon_sym_GT_GT] = ACTIONS(6027), + [anon_sym_AMP_GT] = ACTIONS(6027), + [anon_sym_AMP_GT_GT] = ACTIONS(6027), + [anon_sym_LT_AMP] = ACTIONS(6027), + [anon_sym_GT_AMP] = ACTIONS(6027), + [anon_sym_LT_LT] = ACTIONS(6027), + [anon_sym_LT_LT_DASH] = ACTIONS(6027), + [anon_sym_LT_LT_LT] = ACTIONS(6027), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(5963), - [anon_sym_LF] = ACTIONS(5963), - [anon_sym_AMP] = ACTIONS(5963), + [anon_sym_SEMI] = ACTIONS(6027), + [anon_sym_LF] = ACTIONS(6027), + [anon_sym_AMP] = ACTIONS(6027), }, [3626] = { - [sym_file_descriptor] = ACTIONS(5965), - [sym__concat] = ACTIONS(5965), - [anon_sym_PIPE] = ACTIONS(5967), - [anon_sym_SEMI_SEMI] = ACTIONS(5967), - [anon_sym_PIPE_AMP] = ACTIONS(5967), - [anon_sym_AMP_AMP] = ACTIONS(5967), - [anon_sym_PIPE_PIPE] = ACTIONS(5967), - [anon_sym_LT] = ACTIONS(5967), - [anon_sym_GT] = ACTIONS(5967), - [anon_sym_GT_GT] = ACTIONS(5967), - [anon_sym_AMP_GT] = ACTIONS(5967), - [anon_sym_AMP_GT_GT] = ACTIONS(5967), - [anon_sym_LT_AMP] = ACTIONS(5967), - [anon_sym_GT_AMP] = ACTIONS(5967), - [anon_sym_LT_LT] = ACTIONS(5967), - [anon_sym_LT_LT_DASH] = ACTIONS(5967), - [anon_sym_LT_LT_LT] = ACTIONS(5967), + [sym_file_descriptor] = ACTIONS(6029), + [sym__concat] = ACTIONS(6029), + [anon_sym_PIPE] = ACTIONS(6031), + [anon_sym_SEMI_SEMI] = ACTIONS(6031), + [anon_sym_PIPE_AMP] = ACTIONS(6031), + [anon_sym_AMP_AMP] = ACTIONS(6031), + [anon_sym_PIPE_PIPE] = ACTIONS(6031), + [anon_sym_LT] = ACTIONS(6031), + [anon_sym_GT] = ACTIONS(6031), + [anon_sym_GT_GT] = ACTIONS(6031), + [anon_sym_AMP_GT] = ACTIONS(6031), + [anon_sym_AMP_GT_GT] = ACTIONS(6031), + [anon_sym_LT_AMP] = ACTIONS(6031), + [anon_sym_GT_AMP] = ACTIONS(6031), + [anon_sym_LT_LT] = ACTIONS(6031), + [anon_sym_LT_LT_DASH] = ACTIONS(6031), + [anon_sym_LT_LT_LT] = ACTIONS(6031), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(5967), - [anon_sym_LF] = ACTIONS(5967), - [anon_sym_AMP] = ACTIONS(5967), + [anon_sym_SEMI] = ACTIONS(6031), + [anon_sym_LF] = ACTIONS(6031), + [anon_sym_AMP] = ACTIONS(6031), }, [3627] = { - [sym_file_descriptor] = ACTIONS(5969), - [sym__concat] = ACTIONS(5969), - [anon_sym_PIPE] = ACTIONS(5971), - [anon_sym_SEMI_SEMI] = ACTIONS(5971), - [anon_sym_PIPE_AMP] = ACTIONS(5971), - [anon_sym_AMP_AMP] = ACTIONS(5971), - [anon_sym_PIPE_PIPE] = ACTIONS(5971), - [anon_sym_LT] = ACTIONS(5971), - [anon_sym_GT] = ACTIONS(5971), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_AMP_GT] = ACTIONS(5971), - [anon_sym_AMP_GT_GT] = ACTIONS(5971), - [anon_sym_LT_AMP] = ACTIONS(5971), - [anon_sym_GT_AMP] = ACTIONS(5971), - [anon_sym_LT_LT] = ACTIONS(5971), - [anon_sym_LT_LT_DASH] = ACTIONS(5971), - [anon_sym_LT_LT_LT] = ACTIONS(5971), + [sym_file_descriptor] = ACTIONS(6033), + [sym__concat] = ACTIONS(6033), + [anon_sym_PIPE] = ACTIONS(6035), + [anon_sym_SEMI_SEMI] = ACTIONS(6035), + [anon_sym_PIPE_AMP] = ACTIONS(6035), + [anon_sym_AMP_AMP] = ACTIONS(6035), + [anon_sym_PIPE_PIPE] = ACTIONS(6035), + [anon_sym_LT] = ACTIONS(6035), + [anon_sym_GT] = ACTIONS(6035), + [anon_sym_GT_GT] = ACTIONS(6035), + [anon_sym_AMP_GT] = ACTIONS(6035), + [anon_sym_AMP_GT_GT] = ACTIONS(6035), + [anon_sym_LT_AMP] = ACTIONS(6035), + [anon_sym_GT_AMP] = ACTIONS(6035), + [anon_sym_LT_LT] = ACTIONS(6035), + [anon_sym_LT_LT_DASH] = ACTIONS(6035), + [anon_sym_LT_LT_LT] = ACTIONS(6035), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(5971), - [anon_sym_LF] = ACTIONS(5971), - [anon_sym_AMP] = ACTIONS(5971), + [anon_sym_SEMI] = ACTIONS(6035), + [anon_sym_LF] = ACTIONS(6035), + [anon_sym_AMP] = ACTIONS(6035), }, [3628] = { - [sym_file_descriptor] = ACTIONS(5973), - [sym__concat] = ACTIONS(5973), - [anon_sym_PIPE] = ACTIONS(5975), - [anon_sym_SEMI_SEMI] = ACTIONS(5975), - [anon_sym_PIPE_AMP] = ACTIONS(5975), - [anon_sym_AMP_AMP] = ACTIONS(5975), - [anon_sym_PIPE_PIPE] = ACTIONS(5975), - [anon_sym_LT] = ACTIONS(5975), - [anon_sym_GT] = ACTIONS(5975), - [anon_sym_GT_GT] = ACTIONS(5975), - [anon_sym_AMP_GT] = ACTIONS(5975), - [anon_sym_AMP_GT_GT] = ACTIONS(5975), - [anon_sym_LT_AMP] = ACTIONS(5975), - [anon_sym_GT_AMP] = ACTIONS(5975), - [anon_sym_LT_LT] = ACTIONS(5975), - [anon_sym_LT_LT_DASH] = ACTIONS(5975), - [anon_sym_LT_LT_LT] = ACTIONS(5975), + [sym_file_descriptor] = ACTIONS(6037), + [sym__concat] = ACTIONS(6037), + [anon_sym_PIPE] = ACTIONS(6039), + [anon_sym_SEMI_SEMI] = ACTIONS(6039), + [anon_sym_PIPE_AMP] = ACTIONS(6039), + [anon_sym_AMP_AMP] = ACTIONS(6039), + [anon_sym_PIPE_PIPE] = ACTIONS(6039), + [anon_sym_LT] = ACTIONS(6039), + [anon_sym_GT] = ACTIONS(6039), + [anon_sym_GT_GT] = ACTIONS(6039), + [anon_sym_AMP_GT] = ACTIONS(6039), + [anon_sym_AMP_GT_GT] = ACTIONS(6039), + [anon_sym_LT_AMP] = ACTIONS(6039), + [anon_sym_GT_AMP] = ACTIONS(6039), + [anon_sym_LT_LT] = ACTIONS(6039), + [anon_sym_LT_LT_DASH] = ACTIONS(6039), + [anon_sym_LT_LT_LT] = ACTIONS(6039), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(5975), - [anon_sym_LF] = ACTIONS(5975), - [anon_sym_AMP] = ACTIONS(5975), + [anon_sym_SEMI] = ACTIONS(6039), + [anon_sym_LF] = ACTIONS(6039), + [anon_sym_AMP] = ACTIONS(6039), }, [3629] = { [sym_concatenation] = STATE(451), @@ -90540,48 +90914,48 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(7909), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3630] = { - [sym_file_descriptor] = ACTIONS(5979), - [sym__concat] = ACTIONS(5979), - [anon_sym_PIPE] = ACTIONS(5981), - [anon_sym_SEMI_SEMI] = ACTIONS(5981), - [anon_sym_PIPE_AMP] = ACTIONS(5981), - [anon_sym_AMP_AMP] = ACTIONS(5981), - [anon_sym_PIPE_PIPE] = ACTIONS(5981), - [anon_sym_LT] = ACTIONS(5981), - [anon_sym_GT] = ACTIONS(5981), - [anon_sym_GT_GT] = ACTIONS(5981), - [anon_sym_AMP_GT] = ACTIONS(5981), - [anon_sym_AMP_GT_GT] = ACTIONS(5981), - [anon_sym_LT_AMP] = ACTIONS(5981), - [anon_sym_GT_AMP] = ACTIONS(5981), - [anon_sym_LT_LT] = ACTIONS(5981), - [anon_sym_LT_LT_DASH] = ACTIONS(5981), - [anon_sym_LT_LT_LT] = ACTIONS(5981), + [sym_file_descriptor] = ACTIONS(6043), + [sym__concat] = ACTIONS(6043), + [anon_sym_PIPE] = ACTIONS(6045), + [anon_sym_SEMI_SEMI] = ACTIONS(6045), + [anon_sym_PIPE_AMP] = ACTIONS(6045), + [anon_sym_AMP_AMP] = ACTIONS(6045), + [anon_sym_PIPE_PIPE] = ACTIONS(6045), + [anon_sym_LT] = ACTIONS(6045), + [anon_sym_GT] = ACTIONS(6045), + [anon_sym_GT_GT] = ACTIONS(6045), + [anon_sym_AMP_GT] = ACTIONS(6045), + [anon_sym_AMP_GT_GT] = ACTIONS(6045), + [anon_sym_LT_AMP] = ACTIONS(6045), + [anon_sym_GT_AMP] = ACTIONS(6045), + [anon_sym_LT_LT] = ACTIONS(6045), + [anon_sym_LT_LT_DASH] = ACTIONS(6045), + [anon_sym_LT_LT_LT] = ACTIONS(6045), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(5981), - [anon_sym_LF] = ACTIONS(5981), - [anon_sym_AMP] = ACTIONS(5981), + [anon_sym_SEMI] = ACTIONS(6045), + [anon_sym_LF] = ACTIONS(6045), + [anon_sym_AMP] = ACTIONS(6045), }, [3631] = { [sym_concatenation] = STATE(451), @@ -90592,48 +90966,48 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(7911), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3632] = { - [sym_file_descriptor] = ACTIONS(5985), - [sym__concat] = ACTIONS(5985), - [anon_sym_PIPE] = ACTIONS(5987), - [anon_sym_SEMI_SEMI] = ACTIONS(5987), - [anon_sym_PIPE_AMP] = ACTIONS(5987), - [anon_sym_AMP_AMP] = ACTIONS(5987), - [anon_sym_PIPE_PIPE] = ACTIONS(5987), - [anon_sym_LT] = ACTIONS(5987), - [anon_sym_GT] = ACTIONS(5987), - [anon_sym_GT_GT] = ACTIONS(5987), - [anon_sym_AMP_GT] = ACTIONS(5987), - [anon_sym_AMP_GT_GT] = ACTIONS(5987), - [anon_sym_LT_AMP] = ACTIONS(5987), - [anon_sym_GT_AMP] = ACTIONS(5987), - [anon_sym_LT_LT] = ACTIONS(5987), - [anon_sym_LT_LT_DASH] = ACTIONS(5987), - [anon_sym_LT_LT_LT] = ACTIONS(5987), + [sym_file_descriptor] = ACTIONS(6049), + [sym__concat] = ACTIONS(6049), + [anon_sym_PIPE] = ACTIONS(6051), + [anon_sym_SEMI_SEMI] = ACTIONS(6051), + [anon_sym_PIPE_AMP] = ACTIONS(6051), + [anon_sym_AMP_AMP] = ACTIONS(6051), + [anon_sym_PIPE_PIPE] = ACTIONS(6051), + [anon_sym_LT] = ACTIONS(6051), + [anon_sym_GT] = ACTIONS(6051), + [anon_sym_GT_GT] = ACTIONS(6051), + [anon_sym_AMP_GT] = ACTIONS(6051), + [anon_sym_AMP_GT_GT] = ACTIONS(6051), + [anon_sym_LT_AMP] = ACTIONS(6051), + [anon_sym_GT_AMP] = ACTIONS(6051), + [anon_sym_LT_LT] = ACTIONS(6051), + [anon_sym_LT_LT_DASH] = ACTIONS(6051), + [anon_sym_LT_LT_LT] = ACTIONS(6051), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(5987), - [anon_sym_LF] = ACTIONS(5987), - [anon_sym_AMP] = ACTIONS(5987), + [anon_sym_SEMI] = ACTIONS(6051), + [anon_sym_LF] = ACTIONS(6051), + [anon_sym_AMP] = ACTIONS(6051), }, [3633] = { [sym_concatenation] = STATE(451), @@ -90644,91 +91018,91 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(7913), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3634] = { - [sym_file_descriptor] = ACTIONS(5991), - [sym__concat] = ACTIONS(5991), - [anon_sym_PIPE] = ACTIONS(5993), - [anon_sym_SEMI_SEMI] = ACTIONS(5993), - [anon_sym_PIPE_AMP] = ACTIONS(5993), - [anon_sym_AMP_AMP] = ACTIONS(5993), - [anon_sym_PIPE_PIPE] = ACTIONS(5993), - [anon_sym_LT] = ACTIONS(5993), - [anon_sym_GT] = ACTIONS(5993), - [anon_sym_GT_GT] = ACTIONS(5993), - [anon_sym_AMP_GT] = ACTIONS(5993), - [anon_sym_AMP_GT_GT] = ACTIONS(5993), - [anon_sym_LT_AMP] = ACTIONS(5993), - [anon_sym_GT_AMP] = ACTIONS(5993), - [anon_sym_LT_LT] = ACTIONS(5993), - [anon_sym_LT_LT_DASH] = ACTIONS(5993), - [anon_sym_LT_LT_LT] = ACTIONS(5993), + [sym_file_descriptor] = ACTIONS(6055), + [sym__concat] = ACTIONS(6055), + [anon_sym_PIPE] = ACTIONS(6057), + [anon_sym_SEMI_SEMI] = ACTIONS(6057), + [anon_sym_PIPE_AMP] = ACTIONS(6057), + [anon_sym_AMP_AMP] = ACTIONS(6057), + [anon_sym_PIPE_PIPE] = ACTIONS(6057), + [anon_sym_LT] = ACTIONS(6057), + [anon_sym_GT] = ACTIONS(6057), + [anon_sym_GT_GT] = ACTIONS(6057), + [anon_sym_AMP_GT] = ACTIONS(6057), + [anon_sym_AMP_GT_GT] = ACTIONS(6057), + [anon_sym_LT_AMP] = ACTIONS(6057), + [anon_sym_GT_AMP] = ACTIONS(6057), + [anon_sym_LT_LT] = ACTIONS(6057), + [anon_sym_LT_LT_DASH] = ACTIONS(6057), + [anon_sym_LT_LT_LT] = ACTIONS(6057), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(5993), - [anon_sym_LF] = ACTIONS(5993), - [anon_sym_AMP] = ACTIONS(5993), + [anon_sym_SEMI] = ACTIONS(6057), + [anon_sym_LF] = ACTIONS(6057), + [anon_sym_AMP] = ACTIONS(6057), }, [3635] = { - [sym_file_descriptor] = ACTIONS(5995), - [sym__concat] = ACTIONS(5995), - [anon_sym_PIPE] = ACTIONS(5997), - [anon_sym_SEMI_SEMI] = ACTIONS(5997), - [anon_sym_PIPE_AMP] = ACTIONS(5997), - [anon_sym_AMP_AMP] = ACTIONS(5997), - [anon_sym_PIPE_PIPE] = ACTIONS(5997), - [anon_sym_LT] = ACTIONS(5997), - [anon_sym_GT] = ACTIONS(5997), - [anon_sym_GT_GT] = ACTIONS(5997), - [anon_sym_AMP_GT] = ACTIONS(5997), - [anon_sym_AMP_GT_GT] = ACTIONS(5997), - [anon_sym_LT_AMP] = ACTIONS(5997), - [anon_sym_GT_AMP] = ACTIONS(5997), - [anon_sym_LT_LT] = ACTIONS(5997), - [anon_sym_LT_LT_DASH] = ACTIONS(5997), - [anon_sym_LT_LT_LT] = ACTIONS(5997), + [sym_file_descriptor] = ACTIONS(6059), + [sym__concat] = ACTIONS(6059), + [anon_sym_PIPE] = ACTIONS(6061), + [anon_sym_SEMI_SEMI] = ACTIONS(6061), + [anon_sym_PIPE_AMP] = ACTIONS(6061), + [anon_sym_AMP_AMP] = ACTIONS(6061), + [anon_sym_PIPE_PIPE] = ACTIONS(6061), + [anon_sym_LT] = ACTIONS(6061), + [anon_sym_GT] = ACTIONS(6061), + [anon_sym_GT_GT] = ACTIONS(6061), + [anon_sym_AMP_GT] = ACTIONS(6061), + [anon_sym_AMP_GT_GT] = ACTIONS(6061), + [anon_sym_LT_AMP] = ACTIONS(6061), + [anon_sym_GT_AMP] = ACTIONS(6061), + [anon_sym_LT_LT] = ACTIONS(6061), + [anon_sym_LT_LT_DASH] = ACTIONS(6061), + [anon_sym_LT_LT_LT] = ACTIONS(6061), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(5997), - [anon_sym_LF] = ACTIONS(5997), - [anon_sym_AMP] = ACTIONS(5997), + [anon_sym_SEMI] = ACTIONS(6061), + [anon_sym_LF] = ACTIONS(6061), + [anon_sym_AMP] = ACTIONS(6061), }, [3636] = { - [sym__heredoc_middle] = ACTIONS(4728), - [sym__heredoc_end] = ACTIONS(4728), - [anon_sym_DOLLAR] = ACTIONS(5780), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4728), + [sym__heredoc_middle] = ACTIONS(4790), + [sym__heredoc_end] = ACTIONS(4790), + [anon_sym_DOLLAR] = ACTIONS(5844), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4790), [sym_comment] = ACTIONS(56), }, [3637] = { - [sym__heredoc_middle] = ACTIONS(4734), - [sym__heredoc_end] = ACTIONS(4734), - [anon_sym_DOLLAR] = ACTIONS(5782), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4734), + [sym__heredoc_middle] = ACTIONS(4796), + [sym__heredoc_end] = ACTIONS(4796), + [anon_sym_DOLLAR] = ACTIONS(5846), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4796), [sym_comment] = ACTIONS(56), }, [3638] = { - [sym__heredoc_middle] = ACTIONS(4797), - [sym__heredoc_end] = ACTIONS(4797), - [anon_sym_DOLLAR] = ACTIONS(5784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4797), + [sym__heredoc_middle] = ACTIONS(4859), + [sym__heredoc_end] = ACTIONS(4859), + [anon_sym_DOLLAR] = ACTIONS(5848), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4859), [sym_comment] = ACTIONS(56), }, [3639] = { @@ -90740,40 +91114,40 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(7915), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3640] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(7843), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(7917), [sym_comment] = ACTIONS(56), }, [3641] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(7845), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(7919), [sym_comment] = ACTIONS(56), }, [3642] = { - [anon_sym_RBRACE] = ACTIONS(7845), + [anon_sym_RBRACE] = ACTIONS(7919), [sym_comment] = ACTIONS(56), }, [3643] = { @@ -90785,31 +91159,31 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3989), - [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), + [anon_sym_RBRACE] = ACTIONS(7921), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3644] = { - [sym__heredoc_middle] = ACTIONS(4809), - [sym__heredoc_end] = ACTIONS(4809), - [anon_sym_DOLLAR] = ACTIONS(5794), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4809), + [sym__heredoc_middle] = ACTIONS(4871), + [sym__heredoc_end] = ACTIONS(4871), + [anon_sym_DOLLAR] = ACTIONS(5858), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4871), [sym_comment] = ACTIONS(56), }, [3645] = { @@ -90821,31 +91195,31 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3991), - [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), + [anon_sym_RBRACE] = ACTIONS(7923), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3646] = { - [sym__heredoc_middle] = ACTIONS(4815), - [sym__heredoc_end] = ACTIONS(4815), - [anon_sym_DOLLAR] = ACTIONS(5798), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4815), + [sym__heredoc_middle] = ACTIONS(4877), + [sym__heredoc_end] = ACTIONS(4877), + [anon_sym_DOLLAR] = ACTIONS(5862), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4877), [sym_comment] = ACTIONS(56), }, [3647] = { @@ -90857,31 +91231,31 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(3993), - [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), + [anon_sym_RBRACE] = ACTIONS(7925), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3648] = { - [sym__heredoc_middle] = ACTIONS(4821), - [sym__heredoc_end] = ACTIONS(4821), - [anon_sym_DOLLAR] = ACTIONS(5802), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4821), + [sym__heredoc_middle] = ACTIONS(4883), + [sym__heredoc_end] = ACTIONS(4883), + [anon_sym_DOLLAR] = ACTIONS(5866), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4883), [sym_comment] = ACTIONS(56), }, [3649] = { @@ -90893,31 +91267,31 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7853), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7927), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3650] = { - [sym__heredoc_middle] = ACTIONS(4827), - [sym__heredoc_end] = ACTIONS(4827), - [anon_sym_DOLLAR] = ACTIONS(5806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4827), + [sym__heredoc_middle] = ACTIONS(4889), + [sym__heredoc_end] = ACTIONS(4889), + [anon_sym_DOLLAR] = ACTIONS(5870), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4889), [sym_comment] = ACTIONS(56), }, [3651] = { @@ -90929,100 +91303,100 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7855), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7929), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3652] = { - [sym__concat] = ACTIONS(6948), - [anon_sym_RBRACK] = ACTIONS(6948), + [sym__concat] = ACTIONS(7018), + [anon_sym_RBRACK] = ACTIONS(7018), [sym_comment] = ACTIONS(56), }, [3653] = { - [sym__concat] = ACTIONS(6952), - [anon_sym_RBRACK] = ACTIONS(6952), + [sym__concat] = ACTIONS(7022), + [anon_sym_RBRACK] = ACTIONS(7022), [sym_comment] = ACTIONS(56), }, [3654] = { - [sym__concat] = ACTIONS(6956), - [anon_sym_RBRACK] = ACTIONS(6956), + [sym__concat] = ACTIONS(7026), + [anon_sym_RBRACK] = ACTIONS(7026), [sym_comment] = ACTIONS(56), }, [3655] = { - [sym__concat] = ACTIONS(5961), - [anon_sym_RPAREN] = ACTIONS(5961), - [sym__special_characters] = ACTIONS(6846), - [anon_sym_DQUOTE] = ACTIONS(5961), - [anon_sym_DOLLAR] = ACTIONS(6846), - [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__concat] = ACTIONS(6025), + [anon_sym_RPAREN] = ACTIONS(6025), + [sym__special_characters] = ACTIONS(6916), + [anon_sym_DQUOTE] = ACTIONS(6025), + [anon_sym_DOLLAR] = ACTIONS(6916), + [sym_raw_string] = ACTIONS(6025), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6025), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6025), + [anon_sym_BQUOTE] = ACTIONS(6025), + [anon_sym_LT_LPAREN] = ACTIONS(6025), + [anon_sym_GT_LPAREN] = ACTIONS(6025), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6846), + [sym_word] = ACTIONS(6916), }, [3656] = { - [sym__concat] = ACTIONS(5965), - [anon_sym_RPAREN] = ACTIONS(5965), - [sym__special_characters] = ACTIONS(6848), - [anon_sym_DQUOTE] = ACTIONS(5965), - [anon_sym_DOLLAR] = ACTIONS(6848), - [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__concat] = ACTIONS(6029), + [anon_sym_RPAREN] = ACTIONS(6029), + [sym__special_characters] = ACTIONS(6918), + [anon_sym_DQUOTE] = ACTIONS(6029), + [anon_sym_DOLLAR] = ACTIONS(6918), + [sym_raw_string] = ACTIONS(6029), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6029), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6029), + [anon_sym_BQUOTE] = ACTIONS(6029), + [anon_sym_LT_LPAREN] = ACTIONS(6029), + [anon_sym_GT_LPAREN] = ACTIONS(6029), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6848), + [sym_word] = ACTIONS(6918), }, [3657] = { - [sym__concat] = ACTIONS(5969), - [anon_sym_RPAREN] = ACTIONS(5969), - [sym__special_characters] = ACTIONS(6850), - [anon_sym_DQUOTE] = ACTIONS(5969), - [anon_sym_DOLLAR] = ACTIONS(6850), - [sym_raw_string] = ACTIONS(5969), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5969), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5969), - [anon_sym_BQUOTE] = ACTIONS(5969), - [anon_sym_LT_LPAREN] = ACTIONS(5969), - [anon_sym_GT_LPAREN] = ACTIONS(5969), + [sym__concat] = ACTIONS(6033), + [anon_sym_RPAREN] = ACTIONS(6033), + [sym__special_characters] = ACTIONS(6920), + [anon_sym_DQUOTE] = ACTIONS(6033), + [anon_sym_DOLLAR] = ACTIONS(6920), + [sym_raw_string] = ACTIONS(6033), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6033), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6033), + [anon_sym_BQUOTE] = ACTIONS(6033), + [anon_sym_LT_LPAREN] = ACTIONS(6033), + [anon_sym_GT_LPAREN] = ACTIONS(6033), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6850), + [sym_word] = ACTIONS(6920), }, [3658] = { - [sym__concat] = ACTIONS(5973), - [anon_sym_RPAREN] = ACTIONS(5973), - [sym__special_characters] = ACTIONS(6852), - [anon_sym_DQUOTE] = ACTIONS(5973), - [anon_sym_DOLLAR] = ACTIONS(6852), - [sym_raw_string] = ACTIONS(5973), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5973), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5973), - [anon_sym_BQUOTE] = ACTIONS(5973), - [anon_sym_LT_LPAREN] = ACTIONS(5973), - [anon_sym_GT_LPAREN] = ACTIONS(5973), + [sym__concat] = ACTIONS(6037), + [anon_sym_RPAREN] = ACTIONS(6037), + [sym__special_characters] = ACTIONS(6922), + [anon_sym_DQUOTE] = ACTIONS(6037), + [anon_sym_DOLLAR] = ACTIONS(6922), + [sym_raw_string] = ACTIONS(6037), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6037), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6037), + [anon_sym_BQUOTE] = ACTIONS(6037), + [anon_sym_LT_LPAREN] = ACTIONS(6037), + [anon_sym_GT_LPAREN] = ACTIONS(6037), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6852), + [sym_word] = ACTIONS(6922), }, [3659] = { [sym_concatenation] = STATE(451), @@ -91033,40 +91407,40 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7857), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7931), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3660] = { - [sym__concat] = ACTIONS(5979), - [anon_sym_RPAREN] = ACTIONS(5979), - [sym__special_characters] = ACTIONS(6856), - [anon_sym_DQUOTE] = ACTIONS(5979), - [anon_sym_DOLLAR] = ACTIONS(6856), - [sym_raw_string] = ACTIONS(5979), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5979), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5979), - [anon_sym_BQUOTE] = ACTIONS(5979), - [anon_sym_LT_LPAREN] = ACTIONS(5979), - [anon_sym_GT_LPAREN] = ACTIONS(5979), + [sym__concat] = ACTIONS(6043), + [anon_sym_RPAREN] = ACTIONS(6043), + [sym__special_characters] = ACTIONS(6926), + [anon_sym_DQUOTE] = ACTIONS(6043), + [anon_sym_DOLLAR] = ACTIONS(6926), + [sym_raw_string] = ACTIONS(6043), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6043), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6043), + [anon_sym_BQUOTE] = ACTIONS(6043), + [anon_sym_LT_LPAREN] = ACTIONS(6043), + [anon_sym_GT_LPAREN] = ACTIONS(6043), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6856), + [sym_word] = ACTIONS(6926), }, [3661] = { [sym_concatenation] = STATE(451), @@ -91077,40 +91451,40 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7859), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7933), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3662] = { - [sym__concat] = ACTIONS(5985), - [anon_sym_RPAREN] = ACTIONS(5985), - [sym__special_characters] = ACTIONS(6860), - [anon_sym_DQUOTE] = ACTIONS(5985), - [anon_sym_DOLLAR] = ACTIONS(6860), - [sym_raw_string] = ACTIONS(5985), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5985), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5985), - [anon_sym_BQUOTE] = ACTIONS(5985), - [anon_sym_LT_LPAREN] = ACTIONS(5985), - [anon_sym_GT_LPAREN] = ACTIONS(5985), + [sym__concat] = ACTIONS(6049), + [anon_sym_RPAREN] = ACTIONS(6049), + [sym__special_characters] = ACTIONS(6930), + [anon_sym_DQUOTE] = ACTIONS(6049), + [anon_sym_DOLLAR] = ACTIONS(6930), + [sym_raw_string] = ACTIONS(6049), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6049), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6049), + [anon_sym_BQUOTE] = ACTIONS(6049), + [anon_sym_LT_LPAREN] = ACTIONS(6049), + [anon_sym_GT_LPAREN] = ACTIONS(6049), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6860), + [sym_word] = ACTIONS(6930), }, [3663] = { [sym_concatenation] = STATE(451), @@ -91121,220 +91495,220 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7861), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7935), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3664] = { - [sym__concat] = ACTIONS(5991), - [anon_sym_RPAREN] = ACTIONS(5991), - [sym__special_characters] = ACTIONS(6864), - [anon_sym_DQUOTE] = ACTIONS(5991), - [anon_sym_DOLLAR] = ACTIONS(6864), - [sym_raw_string] = ACTIONS(5991), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5991), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5991), - [anon_sym_BQUOTE] = ACTIONS(5991), - [anon_sym_LT_LPAREN] = ACTIONS(5991), - [anon_sym_GT_LPAREN] = ACTIONS(5991), + [sym__concat] = ACTIONS(6055), + [anon_sym_RPAREN] = ACTIONS(6055), + [sym__special_characters] = ACTIONS(6934), + [anon_sym_DQUOTE] = ACTIONS(6055), + [anon_sym_DOLLAR] = ACTIONS(6934), + [sym_raw_string] = ACTIONS(6055), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6055), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6055), + [anon_sym_BQUOTE] = ACTIONS(6055), + [anon_sym_LT_LPAREN] = ACTIONS(6055), + [anon_sym_GT_LPAREN] = ACTIONS(6055), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6864), + [sym_word] = ACTIONS(6934), }, [3665] = { - [sym__concat] = ACTIONS(5995), - [anon_sym_RPAREN] = ACTIONS(5995), - [sym__special_characters] = ACTIONS(6866), - [anon_sym_DQUOTE] = ACTIONS(5995), - [anon_sym_DOLLAR] = ACTIONS(6866), - [sym_raw_string] = ACTIONS(5995), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5995), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5995), - [anon_sym_BQUOTE] = ACTIONS(5995), - [anon_sym_LT_LPAREN] = ACTIONS(5995), - [anon_sym_GT_LPAREN] = ACTIONS(5995), + [sym__concat] = ACTIONS(6059), + [anon_sym_RPAREN] = ACTIONS(6059), + [sym__special_characters] = ACTIONS(6936), + [anon_sym_DQUOTE] = ACTIONS(6059), + [anon_sym_DOLLAR] = ACTIONS(6936), + [sym_raw_string] = ACTIONS(6059), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6059), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6059), + [anon_sym_BQUOTE] = ACTIONS(6059), + [anon_sym_LT_LPAREN] = ACTIONS(6059), + [anon_sym_GT_LPAREN] = ACTIONS(6059), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6866), + [sym_word] = ACTIONS(6936), }, [3666] = { - [sym_file_descriptor] = ACTIONS(6948), - [sym__concat] = ACTIONS(6948), - [sym_variable_name] = ACTIONS(6948), - [anon_sym_PIPE] = ACTIONS(6950), - [anon_sym_SEMI_SEMI] = ACTIONS(6950), - [anon_sym_PIPE_AMP] = ACTIONS(6950), - [anon_sym_AMP_AMP] = ACTIONS(6950), - [anon_sym_PIPE_PIPE] = ACTIONS(6950), - [anon_sym_LT] = ACTIONS(6950), - [anon_sym_GT] = ACTIONS(6950), - [anon_sym_GT_GT] = ACTIONS(6950), - [anon_sym_AMP_GT] = ACTIONS(6950), - [anon_sym_AMP_GT_GT] = ACTIONS(6950), - [anon_sym_LT_AMP] = ACTIONS(6950), - [anon_sym_GT_AMP] = ACTIONS(6950), - [sym__special_characters] = ACTIONS(6950), - [anon_sym_DQUOTE] = ACTIONS(6950), - [anon_sym_DOLLAR] = ACTIONS(6950), - [sym_raw_string] = ACTIONS(6950), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6950), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6950), - [anon_sym_BQUOTE] = ACTIONS(6950), - [anon_sym_LT_LPAREN] = ACTIONS(6950), - [anon_sym_GT_LPAREN] = ACTIONS(6950), + [sym_file_descriptor] = ACTIONS(7018), + [sym__concat] = ACTIONS(7018), + [sym_variable_name] = ACTIONS(7018), + [anon_sym_PIPE] = ACTIONS(7020), + [anon_sym_SEMI_SEMI] = ACTIONS(7020), + [anon_sym_PIPE_AMP] = ACTIONS(7020), + [anon_sym_AMP_AMP] = ACTIONS(7020), + [anon_sym_PIPE_PIPE] = ACTIONS(7020), + [anon_sym_LT] = ACTIONS(7020), + [anon_sym_GT] = ACTIONS(7020), + [anon_sym_GT_GT] = ACTIONS(7020), + [anon_sym_AMP_GT] = ACTIONS(7020), + [anon_sym_AMP_GT_GT] = ACTIONS(7020), + [anon_sym_LT_AMP] = ACTIONS(7020), + [anon_sym_GT_AMP] = ACTIONS(7020), + [sym__special_characters] = ACTIONS(7020), + [anon_sym_DQUOTE] = ACTIONS(7020), + [anon_sym_DOLLAR] = ACTIONS(7020), + [sym_raw_string] = ACTIONS(7020), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7020), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7020), + [anon_sym_BQUOTE] = ACTIONS(7020), + [anon_sym_LT_LPAREN] = ACTIONS(7020), + [anon_sym_GT_LPAREN] = ACTIONS(7020), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6950), - [anon_sym_SEMI] = ACTIONS(6950), - [anon_sym_LF] = ACTIONS(6950), - [anon_sym_AMP] = ACTIONS(6950), + [sym_word] = ACTIONS(7020), + [anon_sym_SEMI] = ACTIONS(7020), + [anon_sym_LF] = ACTIONS(7020), + [anon_sym_AMP] = ACTIONS(7020), }, [3667] = { - [sym_file_descriptor] = ACTIONS(6952), - [sym__concat] = ACTIONS(6952), - [sym_variable_name] = ACTIONS(6952), - [anon_sym_PIPE] = ACTIONS(6954), - [anon_sym_SEMI_SEMI] = ACTIONS(6954), - [anon_sym_PIPE_AMP] = ACTIONS(6954), - [anon_sym_AMP_AMP] = ACTIONS(6954), - [anon_sym_PIPE_PIPE] = ACTIONS(6954), - [anon_sym_LT] = ACTIONS(6954), - [anon_sym_GT] = ACTIONS(6954), - [anon_sym_GT_GT] = ACTIONS(6954), - [anon_sym_AMP_GT] = ACTIONS(6954), - [anon_sym_AMP_GT_GT] = ACTIONS(6954), - [anon_sym_LT_AMP] = ACTIONS(6954), - [anon_sym_GT_AMP] = ACTIONS(6954), - [sym__special_characters] = ACTIONS(6954), - [anon_sym_DQUOTE] = ACTIONS(6954), - [anon_sym_DOLLAR] = ACTIONS(6954), - [sym_raw_string] = ACTIONS(6954), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6954), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6954), - [anon_sym_BQUOTE] = ACTIONS(6954), - [anon_sym_LT_LPAREN] = ACTIONS(6954), - [anon_sym_GT_LPAREN] = ACTIONS(6954), + [sym_file_descriptor] = ACTIONS(7022), + [sym__concat] = ACTIONS(7022), + [sym_variable_name] = ACTIONS(7022), + [anon_sym_PIPE] = ACTIONS(7024), + [anon_sym_SEMI_SEMI] = ACTIONS(7024), + [anon_sym_PIPE_AMP] = ACTIONS(7024), + [anon_sym_AMP_AMP] = ACTIONS(7024), + [anon_sym_PIPE_PIPE] = ACTIONS(7024), + [anon_sym_LT] = ACTIONS(7024), + [anon_sym_GT] = ACTIONS(7024), + [anon_sym_GT_GT] = ACTIONS(7024), + [anon_sym_AMP_GT] = ACTIONS(7024), + [anon_sym_AMP_GT_GT] = ACTIONS(7024), + [anon_sym_LT_AMP] = ACTIONS(7024), + [anon_sym_GT_AMP] = ACTIONS(7024), + [sym__special_characters] = ACTIONS(7024), + [anon_sym_DQUOTE] = ACTIONS(7024), + [anon_sym_DOLLAR] = ACTIONS(7024), + [sym_raw_string] = ACTIONS(7024), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7024), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7024), + [anon_sym_BQUOTE] = ACTIONS(7024), + [anon_sym_LT_LPAREN] = ACTIONS(7024), + [anon_sym_GT_LPAREN] = ACTIONS(7024), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6954), - [anon_sym_SEMI] = ACTIONS(6954), - [anon_sym_LF] = ACTIONS(6954), - [anon_sym_AMP] = ACTIONS(6954), + [sym_word] = ACTIONS(7024), + [anon_sym_SEMI] = ACTIONS(7024), + [anon_sym_LF] = ACTIONS(7024), + [anon_sym_AMP] = ACTIONS(7024), }, [3668] = { - [sym_file_descriptor] = ACTIONS(6956), - [sym__concat] = ACTIONS(6956), - [sym_variable_name] = ACTIONS(6956), - [anon_sym_PIPE] = ACTIONS(6958), - [anon_sym_SEMI_SEMI] = ACTIONS(6958), - [anon_sym_PIPE_AMP] = ACTIONS(6958), - [anon_sym_AMP_AMP] = ACTIONS(6958), - [anon_sym_PIPE_PIPE] = ACTIONS(6958), - [anon_sym_LT] = ACTIONS(6958), - [anon_sym_GT] = ACTIONS(6958), - [anon_sym_GT_GT] = ACTIONS(6958), - [anon_sym_AMP_GT] = ACTIONS(6958), - [anon_sym_AMP_GT_GT] = ACTIONS(6958), - [anon_sym_LT_AMP] = ACTIONS(6958), - [anon_sym_GT_AMP] = ACTIONS(6958), - [sym__special_characters] = ACTIONS(6958), - [anon_sym_DQUOTE] = ACTIONS(6958), - [anon_sym_DOLLAR] = ACTIONS(6958), - [sym_raw_string] = ACTIONS(6958), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6958), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6958), - [anon_sym_BQUOTE] = ACTIONS(6958), - [anon_sym_LT_LPAREN] = ACTIONS(6958), - [anon_sym_GT_LPAREN] = ACTIONS(6958), + [sym_file_descriptor] = ACTIONS(7026), + [sym__concat] = ACTIONS(7026), + [sym_variable_name] = ACTIONS(7026), + [anon_sym_PIPE] = ACTIONS(7028), + [anon_sym_SEMI_SEMI] = ACTIONS(7028), + [anon_sym_PIPE_AMP] = ACTIONS(7028), + [anon_sym_AMP_AMP] = ACTIONS(7028), + [anon_sym_PIPE_PIPE] = ACTIONS(7028), + [anon_sym_LT] = ACTIONS(7028), + [anon_sym_GT] = ACTIONS(7028), + [anon_sym_GT_GT] = ACTIONS(7028), + [anon_sym_AMP_GT] = ACTIONS(7028), + [anon_sym_AMP_GT_GT] = ACTIONS(7028), + [anon_sym_LT_AMP] = ACTIONS(7028), + [anon_sym_GT_AMP] = ACTIONS(7028), + [sym__special_characters] = ACTIONS(7028), + [anon_sym_DQUOTE] = ACTIONS(7028), + [anon_sym_DOLLAR] = ACTIONS(7028), + [sym_raw_string] = ACTIONS(7028), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7028), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7028), + [anon_sym_BQUOTE] = ACTIONS(7028), + [anon_sym_LT_LPAREN] = ACTIONS(7028), + [anon_sym_GT_LPAREN] = ACTIONS(7028), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6958), - [anon_sym_SEMI] = ACTIONS(6958), - [anon_sym_LF] = ACTIONS(6958), - [anon_sym_AMP] = ACTIONS(6958), + [sym_word] = ACTIONS(7028), + [anon_sym_SEMI] = ACTIONS(7028), + [anon_sym_LF] = ACTIONS(7028), + [anon_sym_AMP] = ACTIONS(7028), }, [3669] = { - [sym__concat] = ACTIONS(5961), - [anon_sym_SEMI_SEMI] = ACTIONS(5963), - [sym__special_characters] = ACTIONS(5963), - [anon_sym_DQUOTE] = ACTIONS(5963), - [anon_sym_DOLLAR] = ACTIONS(5963), - [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__concat] = ACTIONS(6025), + [anon_sym_SEMI_SEMI] = ACTIONS(6027), + [sym__special_characters] = ACTIONS(6027), + [anon_sym_DQUOTE] = ACTIONS(6027), + [anon_sym_DOLLAR] = ACTIONS(6027), + [sym_raw_string] = ACTIONS(6027), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6027), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6027), + [anon_sym_BQUOTE] = ACTIONS(6027), + [anon_sym_LT_LPAREN] = ACTIONS(6027), + [anon_sym_GT_LPAREN] = ACTIONS(6027), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(5963), - [anon_sym_SEMI] = ACTIONS(5963), - [anon_sym_LF] = ACTIONS(5963), - [anon_sym_AMP] = ACTIONS(5963), + [sym_word] = ACTIONS(6027), + [anon_sym_SEMI] = ACTIONS(6027), + [anon_sym_LF] = ACTIONS(6027), + [anon_sym_AMP] = ACTIONS(6027), }, [3670] = { - [sym__concat] = ACTIONS(5965), - [anon_sym_SEMI_SEMI] = ACTIONS(5967), - [sym__special_characters] = ACTIONS(5967), - [anon_sym_DQUOTE] = ACTIONS(5967), - [anon_sym_DOLLAR] = ACTIONS(5967), - [sym_raw_string] = ACTIONS(5967), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5967), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5967), - [anon_sym_BQUOTE] = ACTIONS(5967), - [anon_sym_LT_LPAREN] = ACTIONS(5967), - [anon_sym_GT_LPAREN] = ACTIONS(5967), + [sym__concat] = ACTIONS(6029), + [anon_sym_SEMI_SEMI] = ACTIONS(6031), + [sym__special_characters] = ACTIONS(6031), + [anon_sym_DQUOTE] = ACTIONS(6031), + [anon_sym_DOLLAR] = ACTIONS(6031), + [sym_raw_string] = ACTIONS(6031), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6031), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6031), + [anon_sym_BQUOTE] = ACTIONS(6031), + [anon_sym_LT_LPAREN] = ACTIONS(6031), + [anon_sym_GT_LPAREN] = ACTIONS(6031), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(5967), - [anon_sym_SEMI] = ACTIONS(5967), - [anon_sym_LF] = ACTIONS(5967), - [anon_sym_AMP] = ACTIONS(5967), + [sym_word] = ACTIONS(6031), + [anon_sym_SEMI] = ACTIONS(6031), + [anon_sym_LF] = ACTIONS(6031), + [anon_sym_AMP] = ACTIONS(6031), }, [3671] = { - [sym__concat] = ACTIONS(5969), - [anon_sym_SEMI_SEMI] = ACTIONS(5971), - [sym__special_characters] = ACTIONS(5971), - [anon_sym_DQUOTE] = ACTIONS(5971), - [anon_sym_DOLLAR] = ACTIONS(5971), - [sym_raw_string] = ACTIONS(5971), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5971), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5971), - [anon_sym_BQUOTE] = ACTIONS(5971), - [anon_sym_LT_LPAREN] = ACTIONS(5971), - [anon_sym_GT_LPAREN] = ACTIONS(5971), + [sym__concat] = ACTIONS(6033), + [anon_sym_SEMI_SEMI] = ACTIONS(6035), + [sym__special_characters] = ACTIONS(6035), + [anon_sym_DQUOTE] = ACTIONS(6035), + [anon_sym_DOLLAR] = ACTIONS(6035), + [sym_raw_string] = ACTIONS(6035), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6035), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6035), + [anon_sym_BQUOTE] = ACTIONS(6035), + [anon_sym_LT_LPAREN] = ACTIONS(6035), + [anon_sym_GT_LPAREN] = ACTIONS(6035), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(5971), - [anon_sym_SEMI] = ACTIONS(5971), - [anon_sym_LF] = ACTIONS(5971), - [anon_sym_AMP] = ACTIONS(5971), + [sym_word] = ACTIONS(6035), + [anon_sym_SEMI] = ACTIONS(6035), + [anon_sym_LF] = ACTIONS(6035), + [anon_sym_AMP] = ACTIONS(6035), }, [3672] = { - [sym__concat] = ACTIONS(5973), - [anon_sym_SEMI_SEMI] = ACTIONS(5975), - [sym__special_characters] = ACTIONS(5975), - [anon_sym_DQUOTE] = ACTIONS(5975), - [anon_sym_DOLLAR] = ACTIONS(5975), - [sym_raw_string] = ACTIONS(5975), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5975), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5975), - [anon_sym_BQUOTE] = ACTIONS(5975), - [anon_sym_LT_LPAREN] = ACTIONS(5975), - [anon_sym_GT_LPAREN] = ACTIONS(5975), + [sym__concat] = ACTIONS(6037), + [anon_sym_SEMI_SEMI] = ACTIONS(6039), + [sym__special_characters] = ACTIONS(6039), + [anon_sym_DQUOTE] = ACTIONS(6039), + [anon_sym_DOLLAR] = ACTIONS(6039), + [sym_raw_string] = ACTIONS(6039), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6039), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6039), + [anon_sym_BQUOTE] = ACTIONS(6039), + [anon_sym_LT_LPAREN] = ACTIONS(6039), + [anon_sym_GT_LPAREN] = ACTIONS(6039), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(5975), - [anon_sym_SEMI] = ACTIONS(5975), - [anon_sym_LF] = ACTIONS(5975), - [anon_sym_AMP] = ACTIONS(5975), + [sym_word] = ACTIONS(6039), + [anon_sym_SEMI] = ACTIONS(6039), + [anon_sym_LF] = ACTIONS(6039), + [anon_sym_AMP] = ACTIONS(6039), }, [3673] = { [sym_concatenation] = STATE(451), @@ -91345,43 +91719,43 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7863), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7937), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3674] = { - [sym__concat] = ACTIONS(5979), - [anon_sym_SEMI_SEMI] = ACTIONS(5981), - [sym__special_characters] = ACTIONS(5981), - [anon_sym_DQUOTE] = ACTIONS(5981), - [anon_sym_DOLLAR] = ACTIONS(5981), - [sym_raw_string] = ACTIONS(5981), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5981), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5981), - [anon_sym_BQUOTE] = ACTIONS(5981), - [anon_sym_LT_LPAREN] = ACTIONS(5981), - [anon_sym_GT_LPAREN] = ACTIONS(5981), + [sym__concat] = ACTIONS(6043), + [anon_sym_SEMI_SEMI] = ACTIONS(6045), + [sym__special_characters] = ACTIONS(6045), + [anon_sym_DQUOTE] = ACTIONS(6045), + [anon_sym_DOLLAR] = ACTIONS(6045), + [sym_raw_string] = ACTIONS(6045), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6045), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6045), + [anon_sym_BQUOTE] = ACTIONS(6045), + [anon_sym_LT_LPAREN] = ACTIONS(6045), + [anon_sym_GT_LPAREN] = ACTIONS(6045), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(5981), - [anon_sym_SEMI] = ACTIONS(5981), - [anon_sym_LF] = ACTIONS(5981), - [anon_sym_AMP] = ACTIONS(5981), + [sym_word] = ACTIONS(6045), + [anon_sym_SEMI] = ACTIONS(6045), + [anon_sym_LF] = ACTIONS(6045), + [anon_sym_AMP] = ACTIONS(6045), }, [3675] = { [sym_concatenation] = STATE(451), @@ -91392,43 +91766,43 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7865), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7939), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3676] = { - [sym__concat] = ACTIONS(5985), - [anon_sym_SEMI_SEMI] = ACTIONS(5987), - [sym__special_characters] = ACTIONS(5987), - [anon_sym_DQUOTE] = ACTIONS(5987), - [anon_sym_DOLLAR] = ACTIONS(5987), - [sym_raw_string] = ACTIONS(5987), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5987), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5987), - [anon_sym_BQUOTE] = ACTIONS(5987), - [anon_sym_LT_LPAREN] = ACTIONS(5987), - [anon_sym_GT_LPAREN] = ACTIONS(5987), + [sym__concat] = ACTIONS(6049), + [anon_sym_SEMI_SEMI] = ACTIONS(6051), + [sym__special_characters] = ACTIONS(6051), + [anon_sym_DQUOTE] = ACTIONS(6051), + [anon_sym_DOLLAR] = ACTIONS(6051), + [sym_raw_string] = ACTIONS(6051), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6051), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6051), + [anon_sym_BQUOTE] = ACTIONS(6051), + [anon_sym_LT_LPAREN] = ACTIONS(6051), + [anon_sym_GT_LPAREN] = ACTIONS(6051), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(5987), - [anon_sym_SEMI] = ACTIONS(5987), - [anon_sym_LF] = ACTIONS(5987), - [anon_sym_AMP] = ACTIONS(5987), + [sym_word] = ACTIONS(6051), + [anon_sym_SEMI] = ACTIONS(6051), + [anon_sym_LF] = ACTIONS(6051), + [anon_sym_AMP] = ACTIONS(6051), }, [3677] = { [sym_concatenation] = STATE(451), @@ -91439,92 +91813,92 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7867), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(7941), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3678] = { - [sym__concat] = ACTIONS(5991), - [anon_sym_SEMI_SEMI] = ACTIONS(5993), - [sym__special_characters] = ACTIONS(5993), - [anon_sym_DQUOTE] = ACTIONS(5993), - [anon_sym_DOLLAR] = ACTIONS(5993), - [sym_raw_string] = ACTIONS(5993), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5993), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5993), - [anon_sym_BQUOTE] = ACTIONS(5993), - [anon_sym_LT_LPAREN] = ACTIONS(5993), - [anon_sym_GT_LPAREN] = ACTIONS(5993), + [sym__concat] = ACTIONS(6055), + [anon_sym_SEMI_SEMI] = ACTIONS(6057), + [sym__special_characters] = ACTIONS(6057), + [anon_sym_DQUOTE] = ACTIONS(6057), + [anon_sym_DOLLAR] = ACTIONS(6057), + [sym_raw_string] = ACTIONS(6057), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6057), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6057), + [anon_sym_BQUOTE] = ACTIONS(6057), + [anon_sym_LT_LPAREN] = ACTIONS(6057), + [anon_sym_GT_LPAREN] = ACTIONS(6057), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(5993), - [anon_sym_SEMI] = ACTIONS(5993), - [anon_sym_LF] = ACTIONS(5993), - [anon_sym_AMP] = ACTIONS(5993), + [sym_word] = ACTIONS(6057), + [anon_sym_SEMI] = ACTIONS(6057), + [anon_sym_LF] = ACTIONS(6057), + [anon_sym_AMP] = ACTIONS(6057), }, [3679] = { - [sym__concat] = ACTIONS(5995), - [anon_sym_SEMI_SEMI] = ACTIONS(5997), - [sym__special_characters] = ACTIONS(5997), - [anon_sym_DQUOTE] = ACTIONS(5997), - [anon_sym_DOLLAR] = ACTIONS(5997), - [sym_raw_string] = ACTIONS(5997), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5997), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5997), - [anon_sym_BQUOTE] = ACTIONS(5997), - [anon_sym_LT_LPAREN] = ACTIONS(5997), - [anon_sym_GT_LPAREN] = ACTIONS(5997), + [sym__concat] = ACTIONS(6059), + [anon_sym_SEMI_SEMI] = ACTIONS(6061), + [sym__special_characters] = ACTIONS(6061), + [anon_sym_DQUOTE] = ACTIONS(6061), + [anon_sym_DOLLAR] = ACTIONS(6061), + [sym_raw_string] = ACTIONS(6061), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6061), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6061), + [anon_sym_BQUOTE] = ACTIONS(6061), + [anon_sym_LT_LPAREN] = ACTIONS(6061), + [anon_sym_GT_LPAREN] = ACTIONS(6061), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(5997), - [anon_sym_SEMI] = ACTIONS(5997), - [anon_sym_LF] = ACTIONS(5997), - [anon_sym_AMP] = ACTIONS(5997), + [sym_word] = ACTIONS(6061), + [anon_sym_SEMI] = ACTIONS(6061), + [anon_sym_LF] = ACTIONS(6061), + [anon_sym_AMP] = ACTIONS(6061), }, [3680] = { - [sym_file_descriptor] = ACTIONS(1255), - [sym_variable_name] = ACTIONS(1255), - [anon_sym_esac] = ACTIONS(1257), - [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_file_descriptor] = ACTIONS(1277), + [sym_variable_name] = ACTIONS(1277), + [anon_sym_esac] = ACTIONS(1279), + [anon_sym_PIPE] = ACTIONS(1279), + [anon_sym_SEMI_SEMI] = ACTIONS(1279), + [anon_sym_PIPE_AMP] = ACTIONS(1279), + [anon_sym_AMP_AMP] = ACTIONS(1279), + [anon_sym_PIPE_PIPE] = ACTIONS(1279), + [anon_sym_LT] = ACTIONS(1279), + [anon_sym_GT] = ACTIONS(1279), + [anon_sym_GT_GT] = ACTIONS(1279), + [anon_sym_AMP_GT] = ACTIONS(1279), + [anon_sym_AMP_GT_GT] = ACTIONS(1279), + [anon_sym_LT_AMP] = ACTIONS(1279), + [anon_sym_GT_AMP] = ACTIONS(1279), + [sym__special_characters] = ACTIONS(1279), + [anon_sym_DQUOTE] = ACTIONS(1279), + [anon_sym_DOLLAR] = ACTIONS(1279), + [sym_raw_string] = ACTIONS(1279), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1279), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1279), + [anon_sym_BQUOTE] = ACTIONS(1279), + [anon_sym_LT_LPAREN] = ACTIONS(1279), + [anon_sym_GT_LPAREN] = ACTIONS(1279), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1257), - [anon_sym_SEMI] = ACTIONS(1257), - [anon_sym_LF] = ACTIONS(1257), - [anon_sym_AMP] = ACTIONS(1257), + [sym_word] = ACTIONS(1279), + [anon_sym_SEMI] = ACTIONS(1279), + [anon_sym_LF] = ACTIONS(1279), + [anon_sym_AMP] = ACTIONS(1279), }, [3681] = { [sym_concatenation] = STATE(660), @@ -91535,58 +91909,58 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(655), [sym_process_substitution] = STATE(655), [aux_sym_for_statement_repeat1] = STATE(4003), - [anon_sym_RPAREN] = ACTIONS(7869), - [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), + [anon_sym_RPAREN] = ACTIONS(7943), + [sym__special_characters] = ACTIONS(1283), + [anon_sym_DQUOTE] = ACTIONS(1285), + [anon_sym_DOLLAR] = ACTIONS(1287), + [sym_raw_string] = ACTIONS(1289), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1291), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1293), + [anon_sym_BQUOTE] = ACTIONS(1295), + [anon_sym_LT_LPAREN] = ACTIONS(1297), + [anon_sym_GT_LPAREN] = ACTIONS(1297), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1277), + [sym_word] = ACTIONS(1299), }, [3682] = { [aux_sym_concatenation_repeat1] = STATE(4005), - [sym_file_descriptor] = ACTIONS(1279), - [sym__concat] = ACTIONS(7871), - [sym_variable_name] = ACTIONS(1279), - [anon_sym_esac] = ACTIONS(1283), - [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_file_descriptor] = ACTIONS(1301), + [sym__concat] = ACTIONS(7945), + [sym_variable_name] = ACTIONS(1301), + [anon_sym_esac] = ACTIONS(1305), + [anon_sym_PIPE] = ACTIONS(1305), + [anon_sym_SEMI_SEMI] = ACTIONS(1305), + [anon_sym_PIPE_AMP] = ACTIONS(1305), + [anon_sym_AMP_AMP] = ACTIONS(1305), + [anon_sym_PIPE_PIPE] = ACTIONS(1305), + [anon_sym_LT] = ACTIONS(1305), + [anon_sym_GT] = ACTIONS(1305), + [anon_sym_GT_GT] = ACTIONS(1305), + [anon_sym_AMP_GT] = ACTIONS(1305), + [anon_sym_AMP_GT_GT] = ACTIONS(1305), + [anon_sym_LT_AMP] = ACTIONS(1305), + [anon_sym_GT_AMP] = ACTIONS(1305), + [sym__special_characters] = ACTIONS(1305), + [anon_sym_DQUOTE] = ACTIONS(1305), + [anon_sym_DOLLAR] = ACTIONS(1305), + [sym_raw_string] = ACTIONS(1305), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1305), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1305), + [anon_sym_BQUOTE] = ACTIONS(1305), + [anon_sym_LT_LPAREN] = ACTIONS(1305), + [anon_sym_GT_LPAREN] = ACTIONS(1305), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1283), - [anon_sym_SEMI] = ACTIONS(1283), - [anon_sym_LF] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1283), + [sym_word] = ACTIONS(1305), + [anon_sym_SEMI] = ACTIONS(1305), + [anon_sym_LF] = ACTIONS(1305), + [anon_sym_AMP] = ACTIONS(1305), }, [3683] = { [sym_simple_expansion] = STATE(134), [sym_expansion] = STATE(134), [sym_command_substitution] = STATE(134), [aux_sym_string_repeat1] = STATE(4007), - [anon_sym_DQUOTE] = ACTIONS(7873), + [anon_sym_DQUOTE] = ACTIONS(7947), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -91595,65 +91969,66 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(182), }, [3684] = { - [sym_string] = STATE(4010), - [anon_sym_DQUOTE] = ACTIONS(7332), - [anon_sym_DOLLAR] = ACTIONS(7875), - [anon_sym_POUND] = ACTIONS(7875), - [anon_sym_DASH] = ACTIONS(7875), + [sym_string] = STATE(4009), + [anon_sym_DQUOTE] = ACTIONS(7402), + [anon_sym_DOLLAR] = ACTIONS(7949), + [sym_raw_string] = ACTIONS(7951), + [anon_sym_POUND] = ACTIONS(7949), + [anon_sym_DASH] = ACTIONS(7949), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7877), - [anon_sym_STAR] = ACTIONS(7875), - [anon_sym_AT] = ACTIONS(7875), - [anon_sym_QMARK] = ACTIONS(7875), - [anon_sym_0] = ACTIONS(7879), - [anon_sym__] = ACTIONS(7879), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7953), + [anon_sym_STAR] = ACTIONS(7949), + [anon_sym_AT] = ACTIONS(7949), + [anon_sym_QMARK] = ACTIONS(7949), + [anon_sym_0] = ACTIONS(7955), + [anon_sym__] = ACTIONS(7955), }, [3685] = { [aux_sym_concatenation_repeat1] = STATE(4005), - [sym_file_descriptor] = ACTIONS(1255), - [sym__concat] = ACTIONS(7871), - [sym_variable_name] = ACTIONS(1255), - [anon_sym_esac] = ACTIONS(1257), - [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_file_descriptor] = ACTIONS(1277), + [sym__concat] = ACTIONS(7945), + [sym_variable_name] = ACTIONS(1277), + [anon_sym_esac] = ACTIONS(1279), + [anon_sym_PIPE] = ACTIONS(1279), + [anon_sym_SEMI_SEMI] = ACTIONS(1279), + [anon_sym_PIPE_AMP] = ACTIONS(1279), + [anon_sym_AMP_AMP] = ACTIONS(1279), + [anon_sym_PIPE_PIPE] = ACTIONS(1279), + [anon_sym_LT] = ACTIONS(1279), + [anon_sym_GT] = ACTIONS(1279), + [anon_sym_GT_GT] = ACTIONS(1279), + [anon_sym_AMP_GT] = ACTIONS(1279), + [anon_sym_AMP_GT_GT] = ACTIONS(1279), + [anon_sym_LT_AMP] = ACTIONS(1279), + [anon_sym_GT_AMP] = ACTIONS(1279), + [sym__special_characters] = ACTIONS(1279), + [anon_sym_DQUOTE] = ACTIONS(1279), + [anon_sym_DOLLAR] = ACTIONS(1279), + [sym_raw_string] = ACTIONS(1279), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1279), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1279), + [anon_sym_BQUOTE] = ACTIONS(1279), + [anon_sym_LT_LPAREN] = ACTIONS(1279), + [anon_sym_GT_LPAREN] = ACTIONS(1279), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1257), - [anon_sym_SEMI] = ACTIONS(1257), - [anon_sym_LF] = ACTIONS(1257), - [anon_sym_AMP] = ACTIONS(1257), + [sym_word] = ACTIONS(1279), + [anon_sym_SEMI] = ACTIONS(1279), + [anon_sym_LF] = ACTIONS(1279), + [anon_sym_AMP] = ACTIONS(1279), }, [3686] = { [sym_subscript] = STATE(4015), - [sym_variable_name] = ACTIONS(7881), - [anon_sym_DOLLAR] = ACTIONS(7883), - [anon_sym_POUND] = ACTIONS(7885), - [anon_sym_DASH] = ACTIONS(7883), + [sym_variable_name] = ACTIONS(7957), + [anon_sym_DOLLAR] = ACTIONS(7959), + [anon_sym_POUND] = ACTIONS(7961), + [anon_sym_DASH] = ACTIONS(7959), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7887), - [anon_sym_STAR] = ACTIONS(7883), - [anon_sym_AT] = ACTIONS(7883), - [anon_sym_QMARK] = ACTIONS(7883), - [anon_sym_0] = ACTIONS(7889), - [anon_sym__] = ACTIONS(7889), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7963), + [anon_sym_STAR] = ACTIONS(7959), + [anon_sym_AT] = ACTIONS(7959), + [anon_sym_QMARK] = ACTIONS(7959), + [anon_sym_0] = ACTIONS(7965), + [anon_sym__] = ACTIONS(7965), }, [3687] = { [sym_for_statement] = STATE(4016), @@ -91681,22 +92056,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(264), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(268), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -91704,17 +92079,17 @@ 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(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__special_characters] = ACTIONS(286), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(300), + [sym_word] = ACTIONS(302), }, [3688] = { [sym_for_statement] = STATE(4018), @@ -91742,22 +92117,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(304), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(306), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(308), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_LBRACK_LBRACK] = ACTIONS(312), + [anon_sym_declare] = ACTIONS(314), + [anon_sym_typeset] = ACTIONS(314), + [anon_sym_export] = ACTIONS(314), + [anon_sym_readonly] = ACTIONS(314), + [anon_sym_local] = ACTIONS(314), + [anon_sym_unset] = ACTIONS(316), + [anon_sym_unsetenv] = ACTIONS(316), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -91765,17 +92140,17 @@ 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(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__special_characters] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [anon_sym_DOLLAR] = ACTIONS(322), + [sym_raw_string] = ACTIONS(324), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), + [anon_sym_BQUOTE] = ACTIONS(330), + [anon_sym_LT_LPAREN] = ACTIONS(332), + [anon_sym_GT_LPAREN] = ACTIONS(332), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(332), + [sym_word] = ACTIONS(334), }, [3689] = { [sym_for_statement] = STATE(4020), @@ -91803,22 +92178,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(264), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(268), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -91826,96 +92201,96 @@ 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(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__special_characters] = ACTIONS(286), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(300), + [sym_word] = ACTIONS(302), }, [3690] = { [sym_file_redirect] = STATE(207), [sym_heredoc_redirect] = STATE(207), [sym_herestring_redirect] = STATE(207), [aux_sym_while_statement_repeat1] = STATE(4022), - [sym_file_descriptor] = ACTIONS(6593), - [anon_sym_esac] = ACTIONS(1323), - [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(6597), - [anon_sym_GT] = ACTIONS(6597), - [anon_sym_GT_GT] = ACTIONS(6597), - [anon_sym_AMP_GT] = ACTIONS(6597), - [anon_sym_AMP_GT_GT] = ACTIONS(6597), - [anon_sym_LT_AMP] = ACTIONS(6597), - [anon_sym_GT_AMP] = ACTIONS(6597), - [anon_sym_LT_LT] = ACTIONS(358), - [anon_sym_LT_LT_DASH] = ACTIONS(358), - [anon_sym_LT_LT_LT] = ACTIONS(6599), + [sym_file_descriptor] = ACTIONS(6663), + [anon_sym_esac] = ACTIONS(1347), + [anon_sym_PIPE] = ACTIONS(1347), + [anon_sym_SEMI_SEMI] = ACTIONS(1347), + [anon_sym_PIPE_AMP] = ACTIONS(1347), + [anon_sym_AMP_AMP] = ACTIONS(1347), + [anon_sym_PIPE_PIPE] = ACTIONS(1347), + [anon_sym_LT] = ACTIONS(6667), + [anon_sym_GT] = ACTIONS(6667), + [anon_sym_GT_GT] = ACTIONS(6667), + [anon_sym_AMP_GT] = ACTIONS(6667), + [anon_sym_AMP_GT_GT] = ACTIONS(6667), + [anon_sym_LT_AMP] = ACTIONS(6667), + [anon_sym_GT_AMP] = ACTIONS(6667), + [anon_sym_LT_LT] = ACTIONS(360), + [anon_sym_LT_LT_DASH] = ACTIONS(360), + [anon_sym_LT_LT_LT] = ACTIONS(6669), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1323), - [anon_sym_LF] = ACTIONS(1323), - [anon_sym_AMP] = ACTIONS(1323), + [anon_sym_SEMI] = ACTIONS(1347), + [anon_sym_LF] = ACTIONS(1347), + [anon_sym_AMP] = ACTIONS(1347), }, [3691] = { - [anon_sym_RPAREN] = ACTIONS(7891), + [anon_sym_RPAREN] = ACTIONS(7967), [sym_comment] = ACTIONS(56), }, [3692] = { [sym_file_redirect] = STATE(737), - [sym_file_descriptor] = ACTIONS(7893), - [anon_sym_esac] = ACTIONS(1377), - [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(7895), - [anon_sym_GT] = ACTIONS(7895), - [anon_sym_GT_GT] = ACTIONS(7895), - [anon_sym_AMP_GT] = ACTIONS(7895), - [anon_sym_AMP_GT_GT] = ACTIONS(7895), - [anon_sym_LT_AMP] = ACTIONS(7895), - [anon_sym_GT_AMP] = ACTIONS(7895), + [sym_file_descriptor] = ACTIONS(7969), + [anon_sym_esac] = ACTIONS(1401), + [anon_sym_PIPE] = ACTIONS(1401), + [anon_sym_SEMI_SEMI] = ACTIONS(1401), + [anon_sym_PIPE_AMP] = ACTIONS(1401), + [anon_sym_AMP_AMP] = ACTIONS(1401), + [anon_sym_PIPE_PIPE] = ACTIONS(1401), + [anon_sym_LT] = ACTIONS(7971), + [anon_sym_GT] = ACTIONS(7971), + [anon_sym_GT_GT] = ACTIONS(7971), + [anon_sym_AMP_GT] = ACTIONS(7971), + [anon_sym_AMP_GT_GT] = ACTIONS(7971), + [anon_sym_LT_AMP] = ACTIONS(7971), + [anon_sym_GT_AMP] = ACTIONS(7971), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1377), - [anon_sym_LF] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1377), + [anon_sym_SEMI] = ACTIONS(1401), + [anon_sym_LF] = ACTIONS(1401), + [anon_sym_AMP] = ACTIONS(1401), }, [3693] = { [sym_file_redirect] = STATE(207), [sym_heredoc_redirect] = STATE(207), [sym_herestring_redirect] = STATE(207), [aux_sym_while_statement_repeat1] = STATE(4026), - [sym_file_descriptor] = ACTIONS(6593), - [anon_sym_esac] = ACTIONS(1577), - [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(6597), - [anon_sym_GT] = ACTIONS(6597), - [anon_sym_GT_GT] = ACTIONS(6597), - [anon_sym_AMP_GT] = ACTIONS(6597), - [anon_sym_AMP_GT_GT] = ACTIONS(6597), - [anon_sym_LT_AMP] = ACTIONS(6597), - [anon_sym_GT_AMP] = ACTIONS(6597), - [anon_sym_LT_LT] = ACTIONS(358), - [anon_sym_LT_LT_DASH] = ACTIONS(358), - [anon_sym_LT_LT_LT] = ACTIONS(6599), + [sym_file_descriptor] = ACTIONS(6663), + [anon_sym_esac] = ACTIONS(1605), + [anon_sym_PIPE] = ACTIONS(1605), + [anon_sym_SEMI_SEMI] = ACTIONS(1605), + [anon_sym_PIPE_AMP] = ACTIONS(1605), + [anon_sym_AMP_AMP] = ACTIONS(1605), + [anon_sym_PIPE_PIPE] = ACTIONS(1605), + [anon_sym_LT] = ACTIONS(6667), + [anon_sym_GT] = ACTIONS(6667), + [anon_sym_GT_GT] = ACTIONS(6667), + [anon_sym_AMP_GT] = ACTIONS(6667), + [anon_sym_AMP_GT_GT] = ACTIONS(6667), + [anon_sym_LT_AMP] = ACTIONS(6667), + [anon_sym_GT_AMP] = ACTIONS(6667), + [anon_sym_LT_LT] = ACTIONS(360), + [anon_sym_LT_LT_DASH] = ACTIONS(360), + [anon_sym_LT_LT_LT] = ACTIONS(6669), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1577), - [anon_sym_LF] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), + [anon_sym_SEMI] = ACTIONS(1605), + [anon_sym_LF] = ACTIONS(1605), + [anon_sym_AMP] = ACTIONS(1605), }, [3694] = { [sym_concatenation] = STATE(4027), @@ -91926,43 +92301,43 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(4030), [sym_command_substitution] = STATE(4030), [sym_process_substitution] = STATE(4030), - [sym__empty_value] = ACTIONS(7897), - [anon_sym_LPAREN] = ACTIONS(7899), - [sym__special_characters] = ACTIONS(7901), - [anon_sym_DQUOTE] = ACTIONS(7358), - [anon_sym_DOLLAR] = ACTIONS(7903), - [sym_raw_string] = ACTIONS(7905), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7907), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7909), - [anon_sym_BQUOTE] = ACTIONS(7911), - [anon_sym_LT_LPAREN] = ACTIONS(7913), - [anon_sym_GT_LPAREN] = ACTIONS(7913), + [sym__empty_value] = ACTIONS(7973), + [anon_sym_LPAREN] = ACTIONS(7975), + [sym__special_characters] = ACTIONS(7977), + [anon_sym_DQUOTE] = ACTIONS(7428), + [anon_sym_DOLLAR] = ACTIONS(7979), + [sym_raw_string] = ACTIONS(7981), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7983), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7985), + [anon_sym_BQUOTE] = ACTIONS(7987), + [anon_sym_LT_LPAREN] = ACTIONS(7989), + [anon_sym_GT_LPAREN] = ACTIONS(7989), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7915), + [sym_word] = ACTIONS(7991), }, [3695] = { - [sym_variable_name] = ACTIONS(438), - [anon_sym_esac] = ACTIONS(440), - [anon_sym_PIPE] = 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_variable_name] = ACTIONS(440), + [anon_sym_esac] = ACTIONS(442), + [anon_sym_PIPE] = ACTIONS(442), + [anon_sym_SEMI_SEMI] = ACTIONS(442), + [anon_sym_PIPE_AMP] = ACTIONS(442), + [anon_sym_AMP_AMP] = ACTIONS(442), + [anon_sym_PIPE_PIPE] = ACTIONS(442), + [sym__special_characters] = ACTIONS(442), + [anon_sym_DQUOTE] = ACTIONS(442), + [anon_sym_DOLLAR] = ACTIONS(442), + [sym_raw_string] = ACTIONS(442), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(442), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(442), + [anon_sym_BQUOTE] = ACTIONS(442), + [anon_sym_LT_LPAREN] = ACTIONS(442), + [anon_sym_GT_LPAREN] = ACTIONS(442), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(440), - [sym_word] = ACTIONS(440), - [anon_sym_SEMI] = ACTIONS(440), - [anon_sym_LF] = ACTIONS(440), - [anon_sym_AMP] = ACTIONS(440), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(442), + [sym_word] = ACTIONS(442), + [anon_sym_SEMI] = ACTIONS(442), + [anon_sym_LF] = ACTIONS(442), + [anon_sym_AMP] = ACTIONS(442), }, [3696] = { [sym_string] = STATE(4031), @@ -91971,75 +92346,75 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(4031), [sym_command_substitution] = STATE(4031), [sym_process_substitution] = STATE(4031), - [sym__special_characters] = ACTIONS(7917), - [anon_sym_DQUOTE] = ACTIONS(7358), - [anon_sym_DOLLAR] = ACTIONS(7903), - [sym_raw_string] = ACTIONS(7919), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7907), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7909), - [anon_sym_BQUOTE] = ACTIONS(7911), - [anon_sym_LT_LPAREN] = ACTIONS(7913), - [anon_sym_GT_LPAREN] = ACTIONS(7913), + [sym__special_characters] = ACTIONS(7993), + [anon_sym_DQUOTE] = ACTIONS(7428), + [anon_sym_DOLLAR] = ACTIONS(7979), + [sym_raw_string] = ACTIONS(7995), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7983), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7985), + [anon_sym_BQUOTE] = ACTIONS(7987), + [anon_sym_LT_LPAREN] = ACTIONS(7989), + [anon_sym_GT_LPAREN] = ACTIONS(7989), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7917), + [sym_word] = ACTIONS(7993), }, [3697] = { [aux_sym_concatenation_repeat1] = STATE(4032), - [sym__concat] = ACTIONS(7354), - [sym_variable_name] = ACTIONS(772), - [anon_sym_esac] = ACTIONS(774), - [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__concat] = ACTIONS(7424), + [sym_variable_name] = ACTIONS(788), + [anon_sym_esac] = ACTIONS(790), + [anon_sym_PIPE] = ACTIONS(790), + [anon_sym_SEMI_SEMI] = ACTIONS(790), + [anon_sym_PIPE_AMP] = ACTIONS(790), + [anon_sym_AMP_AMP] = ACTIONS(790), + [anon_sym_PIPE_PIPE] = ACTIONS(790), + [sym__special_characters] = ACTIONS(790), + [anon_sym_DQUOTE] = ACTIONS(790), + [anon_sym_DOLLAR] = ACTIONS(790), + [sym_raw_string] = ACTIONS(790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(790), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(790), + [anon_sym_BQUOTE] = ACTIONS(790), + [anon_sym_LT_LPAREN] = ACTIONS(790), + [anon_sym_GT_LPAREN] = ACTIONS(790), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(774), - [sym_word] = ACTIONS(774), - [anon_sym_SEMI] = ACTIONS(774), - [anon_sym_LF] = ACTIONS(774), - [anon_sym_AMP] = ACTIONS(774), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(790), + [sym_word] = ACTIONS(790), + [anon_sym_SEMI] = ACTIONS(790), + [anon_sym_LF] = ACTIONS(790), + [anon_sym_AMP] = ACTIONS(790), }, [3698] = { - [sym__concat] = ACTIONS(776), - [sym_variable_name] = ACTIONS(776), - [anon_sym_esac] = ACTIONS(778), - [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__concat] = ACTIONS(792), + [sym_variable_name] = ACTIONS(792), + [anon_sym_esac] = ACTIONS(794), + [anon_sym_PIPE] = ACTIONS(794), + [anon_sym_SEMI_SEMI] = ACTIONS(794), + [anon_sym_PIPE_AMP] = ACTIONS(794), + [anon_sym_AMP_AMP] = ACTIONS(794), + [anon_sym_PIPE_PIPE] = ACTIONS(794), + [sym__special_characters] = ACTIONS(794), + [anon_sym_DQUOTE] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(794), + [sym_raw_string] = ACTIONS(794), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(794), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(794), + [anon_sym_BQUOTE] = ACTIONS(794), + [anon_sym_LT_LPAREN] = ACTIONS(794), + [anon_sym_GT_LPAREN] = ACTIONS(794), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(778), - [sym_word] = ACTIONS(778), - [anon_sym_SEMI] = ACTIONS(778), - [anon_sym_LF] = ACTIONS(778), - [anon_sym_AMP] = ACTIONS(778), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(794), + [sym_word] = ACTIONS(794), + [anon_sym_SEMI] = ACTIONS(794), + [anon_sym_LF] = ACTIONS(794), + [anon_sym_AMP] = ACTIONS(794), }, [3699] = { [sym_simple_expansion] = STATE(134), [sym_expansion] = STATE(134), [sym_command_substitution] = STATE(134), [aux_sym_string_repeat1] = STATE(447), - [anon_sym_DQUOTE] = ACTIONS(7921), + [anon_sym_DQUOTE] = ACTIONS(7997), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -92048,83 +92423,83 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(182), }, [3700] = { - [sym__concat] = ACTIONS(808), - [sym_variable_name] = ACTIONS(808), - [anon_sym_esac] = ACTIONS(810), - [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__concat] = ACTIONS(824), + [sym_variable_name] = ACTIONS(824), + [anon_sym_esac] = ACTIONS(826), + [anon_sym_PIPE] = ACTIONS(826), + [anon_sym_SEMI_SEMI] = ACTIONS(826), + [anon_sym_PIPE_AMP] = ACTIONS(826), + [anon_sym_AMP_AMP] = ACTIONS(826), + [anon_sym_PIPE_PIPE] = ACTIONS(826), + [sym__special_characters] = ACTIONS(826), + [anon_sym_DQUOTE] = ACTIONS(826), + [anon_sym_DOLLAR] = ACTIONS(826), + [sym_raw_string] = ACTIONS(826), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(826), + [anon_sym_BQUOTE] = ACTIONS(826), + [anon_sym_LT_LPAREN] = ACTIONS(826), + [anon_sym_GT_LPAREN] = ACTIONS(826), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(810), - [sym_word] = ACTIONS(810), - [anon_sym_SEMI] = ACTIONS(810), - [anon_sym_LF] = ACTIONS(810), - [anon_sym_AMP] = ACTIONS(810), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(826), + [sym_word] = ACTIONS(826), + [anon_sym_SEMI] = ACTIONS(826), + [anon_sym_LF] = ACTIONS(826), + [anon_sym_AMP] = ACTIONS(826), }, [3701] = { - [sym__concat] = ACTIONS(812), - [sym_variable_name] = ACTIONS(812), - [anon_sym_esac] = ACTIONS(814), - [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__concat] = ACTIONS(828), + [sym_variable_name] = ACTIONS(828), + [anon_sym_esac] = ACTIONS(830), + [anon_sym_PIPE] = ACTIONS(830), + [anon_sym_SEMI_SEMI] = ACTIONS(830), + [anon_sym_PIPE_AMP] = ACTIONS(830), + [anon_sym_AMP_AMP] = ACTIONS(830), + [anon_sym_PIPE_PIPE] = ACTIONS(830), + [sym__special_characters] = ACTIONS(830), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(830), + [sym_raw_string] = ACTIONS(830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(830), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_LT_LPAREN] = ACTIONS(830), + [anon_sym_GT_LPAREN] = ACTIONS(830), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(814), - [sym_word] = ACTIONS(814), - [anon_sym_SEMI] = ACTIONS(814), - [anon_sym_LF] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(814), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(830), + [sym_word] = ACTIONS(830), + [anon_sym_SEMI] = ACTIONS(830), + [anon_sym_LF] = ACTIONS(830), + [anon_sym_AMP] = ACTIONS(830), }, [3702] = { - [sym__concat] = ACTIONS(816), - [sym_variable_name] = ACTIONS(816), - [anon_sym_esac] = ACTIONS(818), - [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__concat] = ACTIONS(832), + [sym_variable_name] = ACTIONS(832), + [anon_sym_esac] = ACTIONS(834), + [anon_sym_PIPE] = ACTIONS(834), + [anon_sym_SEMI_SEMI] = ACTIONS(834), + [anon_sym_PIPE_AMP] = ACTIONS(834), + [anon_sym_AMP_AMP] = ACTIONS(834), + [anon_sym_PIPE_PIPE] = ACTIONS(834), + [sym__special_characters] = ACTIONS(834), + [anon_sym_DQUOTE] = ACTIONS(834), + [anon_sym_DOLLAR] = ACTIONS(834), + [sym_raw_string] = ACTIONS(834), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(834), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(834), + [anon_sym_BQUOTE] = ACTIONS(834), + [anon_sym_LT_LPAREN] = ACTIONS(834), + [anon_sym_GT_LPAREN] = ACTIONS(834), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(818), - [sym_word] = ACTIONS(818), - [anon_sym_SEMI] = ACTIONS(818), - [anon_sym_LF] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(818), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(834), + [sym_word] = ACTIONS(834), + [anon_sym_SEMI] = ACTIONS(834), + [anon_sym_LF] = ACTIONS(834), + [anon_sym_AMP] = ACTIONS(834), }, [3703] = { - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(7923), + [anon_sym_LBRACK] = ACTIONS(836), + [anon_sym_EQ] = ACTIONS(7999), [sym_comment] = ACTIONS(56), }, [3704] = { @@ -92136,39 +92511,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(4037), - [anon_sym_RBRACE] = ACTIONS(7925), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_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(7927), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8001), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(8003), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3705] = { [sym_subscript] = STATE(4041), - [sym_variable_name] = ACTIONS(7929), - [anon_sym_DOLLAR] = ACTIONS(7931), - [anon_sym_DASH] = ACTIONS(7931), + [sym_variable_name] = ACTIONS(8005), + [anon_sym_DOLLAR] = ACTIONS(8007), + [anon_sym_DASH] = ACTIONS(8007), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7933), - [anon_sym_STAR] = ACTIONS(7931), - [anon_sym_AT] = ACTIONS(7931), - [anon_sym_QMARK] = ACTIONS(7931), - [anon_sym_0] = ACTIONS(7935), - [anon_sym__] = ACTIONS(7935), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(8009), + [anon_sym_STAR] = ACTIONS(8007), + [anon_sym_AT] = ACTIONS(8007), + [anon_sym_QMARK] = ACTIONS(8007), + [anon_sym_0] = ACTIONS(8011), + [anon_sym__] = ACTIONS(8011), }, [3706] = { [sym_concatenation] = STATE(451), @@ -92179,26 +92554,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(4044), - [anon_sym_RBRACE] = ACTIONS(7937), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_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(7939), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8013), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(8015), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3707] = { [sym_concatenation] = STATE(451), @@ -92209,130 +92584,130 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(4047), - [anon_sym_RBRACE] = ACTIONS(7941), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_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(7943), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8017), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(8019), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3708] = { - [anon_sym_PIPE] = ACTIONS(954), - [anon_sym_RPAREN] = ACTIONS(7945), - [anon_sym_PIPE_AMP] = ACTIONS(958), - [anon_sym_AMP_AMP] = ACTIONS(960), - [anon_sym_PIPE_PIPE] = ACTIONS(960), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(8021), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), [sym_comment] = ACTIONS(56), }, [3709] = { - [sym_file_descriptor] = ACTIONS(378), - [sym_variable_name] = ACTIONS(378), - [anon_sym_PIPE] = ACTIONS(954), - [anon_sym_RPAREN] = ACTIONS(7945), - [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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(8021), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [3710] = { - [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(7945), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_PIPE_AMP] = ACTIONS(1072), + [anon_sym_AMP_AMP] = ACTIONS(1074), + [anon_sym_PIPE_PIPE] = ACTIONS(1074), + [anon_sym_BQUOTE] = ACTIONS(8021), [sym_comment] = ACTIONS(56), }, [3711] = { - [sym_file_descriptor] = ACTIONS(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(7945), - [anon_sym_LT_LPAREN] = ACTIONS(378), - [anon_sym_GT_LPAREN] = ACTIONS(378), + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_PIPE_AMP] = ACTIONS(1072), + [anon_sym_AMP_AMP] = ACTIONS(1074), + [anon_sym_PIPE_PIPE] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(8021), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [3712] = { - [anon_sym_PIPE] = ACTIONS(954), - [anon_sym_RPAREN] = ACTIONS(7947), - [anon_sym_PIPE_AMP] = ACTIONS(958), - [anon_sym_AMP_AMP] = ACTIONS(960), - [anon_sym_PIPE_PIPE] = ACTIONS(960), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(8023), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), [sym_comment] = ACTIONS(56), }, [3713] = { - [sym_file_descriptor] = ACTIONS(378), - [sym_variable_name] = ACTIONS(378), - [anon_sym_PIPE] = ACTIONS(954), - [anon_sym_RPAREN] = ACTIONS(7947), - [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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(8023), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [3714] = { [sym_variable_assignment] = STATE(3243), @@ -92345,28 +92720,28 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(3237), [sym_process_substitution] = STATE(3237), [aux_sym_declaration_command_repeat1] = STATE(3714), - [sym_variable_name] = ACTIONS(7949), - [anon_sym_esac] = ACTIONS(1726), - [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(7952), - [anon_sym_DQUOTE] = ACTIONS(7955), - [anon_sym_DOLLAR] = ACTIONS(7958), - [sym_raw_string] = ACTIONS(7961), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7964), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7967), - [anon_sym_BQUOTE] = ACTIONS(7970), - [anon_sym_LT_LPAREN] = ACTIONS(7973), - [anon_sym_GT_LPAREN] = ACTIONS(7973), + [sym_variable_name] = ACTIONS(8025), + [anon_sym_esac] = ACTIONS(1754), + [anon_sym_PIPE] = ACTIONS(1754), + [anon_sym_SEMI_SEMI] = ACTIONS(1754), + [anon_sym_PIPE_AMP] = ACTIONS(1754), + [anon_sym_AMP_AMP] = ACTIONS(1754), + [anon_sym_PIPE_PIPE] = ACTIONS(1754), + [sym__special_characters] = ACTIONS(8028), + [anon_sym_DQUOTE] = ACTIONS(8031), + [anon_sym_DOLLAR] = ACTIONS(8034), + [sym_raw_string] = ACTIONS(8037), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8040), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8043), + [anon_sym_BQUOTE] = ACTIONS(8046), + [anon_sym_LT_LPAREN] = ACTIONS(8049), + [anon_sym_GT_LPAREN] = ACTIONS(8049), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7976), - [sym_word] = ACTIONS(7961), - [anon_sym_SEMI] = ACTIONS(1726), - [anon_sym_LF] = ACTIONS(1726), - [anon_sym_AMP] = ACTIONS(1726), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(8052), + [sym_word] = ACTIONS(8037), + [anon_sym_SEMI] = ACTIONS(1754), + [anon_sym_LF] = ACTIONS(1754), + [anon_sym_AMP] = ACTIONS(1754), }, [3715] = { [sym_string] = STATE(4050), @@ -92375,73 +92750,73 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(4050), [sym_command_substitution] = STATE(4050), [sym_process_substitution] = STATE(4050), - [sym__special_characters] = ACTIONS(7979), - [anon_sym_DQUOTE] = ACTIONS(7380), - [anon_sym_DOLLAR] = ACTIONS(7981), - [sym_raw_string] = ACTIONS(7983), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7985), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7987), - [anon_sym_BQUOTE] = ACTIONS(7989), - [anon_sym_LT_LPAREN] = ACTIONS(7991), - [anon_sym_GT_LPAREN] = ACTIONS(7991), + [sym__special_characters] = ACTIONS(8055), + [anon_sym_DQUOTE] = ACTIONS(7452), + [anon_sym_DOLLAR] = ACTIONS(8057), + [sym_raw_string] = ACTIONS(8059), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8061), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8063), + [anon_sym_BQUOTE] = ACTIONS(8065), + [anon_sym_LT_LPAREN] = ACTIONS(8067), + [anon_sym_GT_LPAREN] = ACTIONS(8067), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7979), + [sym_word] = ACTIONS(8055), }, [3716] = { [aux_sym_concatenation_repeat1] = STATE(4051), - [sym__concat] = ACTIONS(7376), - [anon_sym_esac] = ACTIONS(774), - [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__concat] = ACTIONS(7448), + [anon_sym_esac] = ACTIONS(790), + [anon_sym_PIPE] = ACTIONS(790), + [anon_sym_SEMI_SEMI] = ACTIONS(790), + [anon_sym_PIPE_AMP] = ACTIONS(790), + [anon_sym_AMP_AMP] = ACTIONS(790), + [anon_sym_PIPE_PIPE] = ACTIONS(790), + [sym__special_characters] = ACTIONS(790), + [anon_sym_DQUOTE] = ACTIONS(790), + [anon_sym_DOLLAR] = ACTIONS(790), + [sym_raw_string] = ACTIONS(790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(790), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(790), + [anon_sym_BQUOTE] = ACTIONS(790), + [anon_sym_LT_LPAREN] = ACTIONS(790), + [anon_sym_GT_LPAREN] = ACTIONS(790), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(774), - [sym_word] = ACTIONS(774), - [anon_sym_SEMI] = ACTIONS(774), - [anon_sym_LF] = ACTIONS(774), - [anon_sym_AMP] = ACTIONS(774), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(790), + [sym_word] = ACTIONS(790), + [anon_sym_SEMI] = ACTIONS(790), + [anon_sym_LF] = ACTIONS(790), + [anon_sym_AMP] = ACTIONS(790), }, [3717] = { - [sym__concat] = ACTIONS(776), - [anon_sym_esac] = ACTIONS(778), - [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__concat] = ACTIONS(792), + [anon_sym_esac] = ACTIONS(794), + [anon_sym_PIPE] = ACTIONS(794), + [anon_sym_SEMI_SEMI] = ACTIONS(794), + [anon_sym_PIPE_AMP] = ACTIONS(794), + [anon_sym_AMP_AMP] = ACTIONS(794), + [anon_sym_PIPE_PIPE] = ACTIONS(794), + [sym__special_characters] = ACTIONS(794), + [anon_sym_DQUOTE] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(794), + [sym_raw_string] = ACTIONS(794), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(794), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(794), + [anon_sym_BQUOTE] = ACTIONS(794), + [anon_sym_LT_LPAREN] = ACTIONS(794), + [anon_sym_GT_LPAREN] = ACTIONS(794), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(778), - [sym_word] = ACTIONS(778), - [anon_sym_SEMI] = ACTIONS(778), - [anon_sym_LF] = ACTIONS(778), - [anon_sym_AMP] = ACTIONS(778), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(794), + [sym_word] = ACTIONS(794), + [anon_sym_SEMI] = ACTIONS(794), + [anon_sym_LF] = ACTIONS(794), + [anon_sym_AMP] = ACTIONS(794), }, [3718] = { [sym_simple_expansion] = STATE(134), [sym_expansion] = STATE(134), [sym_command_substitution] = STATE(134), [aux_sym_string_repeat1] = STATE(447), - [anon_sym_DQUOTE] = ACTIONS(7993), + [anon_sym_DQUOTE] = ACTIONS(8069), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -92450,80 +92825,80 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(182), }, [3719] = { - [sym__concat] = ACTIONS(808), - [anon_sym_esac] = ACTIONS(810), - [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__concat] = ACTIONS(824), + [anon_sym_esac] = ACTIONS(826), + [anon_sym_PIPE] = ACTIONS(826), + [anon_sym_SEMI_SEMI] = ACTIONS(826), + [anon_sym_PIPE_AMP] = ACTIONS(826), + [anon_sym_AMP_AMP] = ACTIONS(826), + [anon_sym_PIPE_PIPE] = ACTIONS(826), + [sym__special_characters] = ACTIONS(826), + [anon_sym_DQUOTE] = ACTIONS(826), + [anon_sym_DOLLAR] = ACTIONS(826), + [sym_raw_string] = ACTIONS(826), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(826), + [anon_sym_BQUOTE] = ACTIONS(826), + [anon_sym_LT_LPAREN] = ACTIONS(826), + [anon_sym_GT_LPAREN] = ACTIONS(826), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(810), - [sym_word] = ACTIONS(810), - [anon_sym_SEMI] = ACTIONS(810), - [anon_sym_LF] = ACTIONS(810), - [anon_sym_AMP] = ACTIONS(810), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(826), + [sym_word] = ACTIONS(826), + [anon_sym_SEMI] = ACTIONS(826), + [anon_sym_LF] = ACTIONS(826), + [anon_sym_AMP] = ACTIONS(826), }, [3720] = { - [sym__concat] = ACTIONS(812), - [anon_sym_esac] = ACTIONS(814), - [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__concat] = ACTIONS(828), + [anon_sym_esac] = ACTIONS(830), + [anon_sym_PIPE] = ACTIONS(830), + [anon_sym_SEMI_SEMI] = ACTIONS(830), + [anon_sym_PIPE_AMP] = ACTIONS(830), + [anon_sym_AMP_AMP] = ACTIONS(830), + [anon_sym_PIPE_PIPE] = ACTIONS(830), + [sym__special_characters] = ACTIONS(830), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(830), + [sym_raw_string] = ACTIONS(830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(830), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_LT_LPAREN] = ACTIONS(830), + [anon_sym_GT_LPAREN] = ACTIONS(830), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(814), - [sym_word] = ACTIONS(814), - [anon_sym_SEMI] = ACTIONS(814), - [anon_sym_LF] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(814), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(830), + [sym_word] = ACTIONS(830), + [anon_sym_SEMI] = ACTIONS(830), + [anon_sym_LF] = ACTIONS(830), + [anon_sym_AMP] = ACTIONS(830), }, [3721] = { - [sym__concat] = ACTIONS(816), - [anon_sym_esac] = ACTIONS(818), - [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__concat] = ACTIONS(832), + [anon_sym_esac] = ACTIONS(834), + [anon_sym_PIPE] = ACTIONS(834), + [anon_sym_SEMI_SEMI] = ACTIONS(834), + [anon_sym_PIPE_AMP] = ACTIONS(834), + [anon_sym_AMP_AMP] = ACTIONS(834), + [anon_sym_PIPE_PIPE] = ACTIONS(834), + [sym__special_characters] = ACTIONS(834), + [anon_sym_DQUOTE] = ACTIONS(834), + [anon_sym_DOLLAR] = ACTIONS(834), + [sym_raw_string] = ACTIONS(834), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(834), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(834), + [anon_sym_BQUOTE] = ACTIONS(834), + [anon_sym_LT_LPAREN] = ACTIONS(834), + [anon_sym_GT_LPAREN] = ACTIONS(834), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(818), - [sym_word] = ACTIONS(818), - [anon_sym_SEMI] = ACTIONS(818), - [anon_sym_LF] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(818), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(834), + [sym_word] = ACTIONS(834), + [anon_sym_SEMI] = ACTIONS(834), + [anon_sym_LF] = ACTIONS(834), + [anon_sym_AMP] = ACTIONS(834), }, [3722] = { - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(7995), + [anon_sym_LBRACK] = ACTIONS(836), + [anon_sym_EQ] = ACTIONS(8071), [sym_comment] = ACTIONS(56), }, [3723] = { @@ -92535,39 +92910,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(4056), - [anon_sym_RBRACE] = ACTIONS(7997), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_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(7999), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8073), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(8075), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3724] = { [sym_subscript] = STATE(4060), - [sym_variable_name] = ACTIONS(8001), - [anon_sym_DOLLAR] = ACTIONS(8003), - [anon_sym_DASH] = ACTIONS(8003), + [sym_variable_name] = ACTIONS(8077), + [anon_sym_DOLLAR] = ACTIONS(8079), + [anon_sym_DASH] = ACTIONS(8079), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(8005), - [anon_sym_STAR] = ACTIONS(8003), - [anon_sym_AT] = ACTIONS(8003), - [anon_sym_QMARK] = ACTIONS(8003), - [anon_sym_0] = ACTIONS(8007), - [anon_sym__] = ACTIONS(8007), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(8081), + [anon_sym_STAR] = ACTIONS(8079), + [anon_sym_AT] = ACTIONS(8079), + [anon_sym_QMARK] = ACTIONS(8079), + [anon_sym_0] = ACTIONS(8083), + [anon_sym__] = ACTIONS(8083), }, [3725] = { [sym_concatenation] = STATE(451), @@ -92578,26 +92953,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(4063), - [anon_sym_RBRACE] = ACTIONS(8009), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_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(8011), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8085), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(8087), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3726] = { [sym_concatenation] = STATE(451), @@ -92608,130 +92983,130 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(4066), - [anon_sym_RBRACE] = ACTIONS(8013), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_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(8015), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8089), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(8091), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3727] = { - [anon_sym_PIPE] = ACTIONS(954), - [anon_sym_RPAREN] = ACTIONS(8017), - [anon_sym_PIPE_AMP] = ACTIONS(958), - [anon_sym_AMP_AMP] = ACTIONS(960), - [anon_sym_PIPE_PIPE] = ACTIONS(960), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(8093), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), [sym_comment] = ACTIONS(56), }, [3728] = { - [sym_file_descriptor] = ACTIONS(378), - [sym_variable_name] = ACTIONS(378), - [anon_sym_PIPE] = ACTIONS(954), - [anon_sym_RPAREN] = ACTIONS(8017), - [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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(8093), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [3729] = { - [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(8017), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_PIPE_AMP] = ACTIONS(1072), + [anon_sym_AMP_AMP] = ACTIONS(1074), + [anon_sym_PIPE_PIPE] = ACTIONS(1074), + [anon_sym_BQUOTE] = ACTIONS(8093), [sym_comment] = ACTIONS(56), }, [3730] = { - [sym_file_descriptor] = ACTIONS(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(8017), - [anon_sym_LT_LPAREN] = ACTIONS(378), - [anon_sym_GT_LPAREN] = ACTIONS(378), + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_PIPE_AMP] = ACTIONS(1072), + [anon_sym_AMP_AMP] = ACTIONS(1074), + [anon_sym_PIPE_PIPE] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(8093), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [3731] = { - [anon_sym_PIPE] = ACTIONS(954), - [anon_sym_RPAREN] = ACTIONS(8019), - [anon_sym_PIPE_AMP] = ACTIONS(958), - [anon_sym_AMP_AMP] = ACTIONS(960), - [anon_sym_PIPE_PIPE] = ACTIONS(960), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(8095), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), [sym_comment] = ACTIONS(56), }, [3732] = { - [sym_file_descriptor] = ACTIONS(378), - [sym_variable_name] = ACTIONS(378), - [anon_sym_PIPE] = ACTIONS(954), - [anon_sym_RPAREN] = ACTIONS(8019), - [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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(8095), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [3733] = { [sym_concatenation] = STATE(3255), @@ -92742,133 +93117,136 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(3249), [sym_process_substitution] = STATE(3249), [aux_sym_unset_command_repeat1] = STATE(3733), - [anon_sym_esac] = ACTIONS(1797), - [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(8021), - [anon_sym_DQUOTE] = ACTIONS(8024), - [anon_sym_DOLLAR] = ACTIONS(8027), - [sym_raw_string] = ACTIONS(8030), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(8033), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(8036), - [anon_sym_BQUOTE] = ACTIONS(8039), - [anon_sym_LT_LPAREN] = ACTIONS(8042), - [anon_sym_GT_LPAREN] = ACTIONS(8042), + [anon_sym_esac] = ACTIONS(1825), + [anon_sym_PIPE] = ACTIONS(1825), + [anon_sym_SEMI_SEMI] = ACTIONS(1825), + [anon_sym_PIPE_AMP] = ACTIONS(1825), + [anon_sym_AMP_AMP] = ACTIONS(1825), + [anon_sym_PIPE_PIPE] = ACTIONS(1825), + [sym__special_characters] = ACTIONS(8097), + [anon_sym_DQUOTE] = ACTIONS(8100), + [anon_sym_DOLLAR] = ACTIONS(8103), + [sym_raw_string] = ACTIONS(8106), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8109), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8112), + [anon_sym_BQUOTE] = ACTIONS(8115), + [anon_sym_LT_LPAREN] = ACTIONS(8118), + [anon_sym_GT_LPAREN] = ACTIONS(8118), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(8045), - [sym_word] = ACTIONS(8030), - [anon_sym_SEMI] = ACTIONS(1797), - [anon_sym_LF] = ACTIONS(1797), - [anon_sym_AMP] = ACTIONS(1797), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(8121), + [sym_word] = ACTIONS(8106), + [anon_sym_SEMI] = ACTIONS(1825), + [anon_sym_LF] = ACTIONS(1825), + [anon_sym_AMP] = ACTIONS(1825), }, [3734] = { - [sym_file_descriptor] = ACTIONS(1858), - [sym__concat] = ACTIONS(1858), - [anon_sym_esac] = ACTIONS(1860), - [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_file_descriptor] = ACTIONS(1886), + [sym__concat] = ACTIONS(1886), + [anon_sym_esac] = ACTIONS(1888), + [anon_sym_PIPE] = ACTIONS(1888), + [anon_sym_SEMI_SEMI] = ACTIONS(1888), + [anon_sym_PIPE_AMP] = ACTIONS(1888), + [anon_sym_AMP_AMP] = ACTIONS(1888), + [anon_sym_PIPE_PIPE] = ACTIONS(1888), + [anon_sym_EQ_TILDE] = ACTIONS(1888), + [anon_sym_EQ_EQ] = ACTIONS(1888), + [anon_sym_LT] = ACTIONS(1888), + [anon_sym_GT] = ACTIONS(1888), + [anon_sym_GT_GT] = ACTIONS(1888), + [anon_sym_AMP_GT] = ACTIONS(1888), + [anon_sym_AMP_GT_GT] = ACTIONS(1888), + [anon_sym_LT_AMP] = ACTIONS(1888), + [anon_sym_GT_AMP] = ACTIONS(1888), + [anon_sym_LT_LT] = ACTIONS(1888), + [anon_sym_LT_LT_DASH] = ACTIONS(1888), + [anon_sym_LT_LT_LT] = ACTIONS(1888), + [sym__special_characters] = ACTIONS(1888), + [anon_sym_DQUOTE] = ACTIONS(1888), + [anon_sym_DOLLAR] = ACTIONS(1888), + [sym_raw_string] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1888), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1888), + [anon_sym_BQUOTE] = ACTIONS(1888), + [anon_sym_LT_LPAREN] = ACTIONS(1888), + [anon_sym_GT_LPAREN] = ACTIONS(1888), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1860), - [anon_sym_SEMI] = ACTIONS(1860), - [anon_sym_LF] = ACTIONS(1860), - [anon_sym_AMP] = ACTIONS(1860), + [sym_word] = ACTIONS(1888), + [anon_sym_SEMI] = ACTIONS(1888), + [anon_sym_LF] = ACTIONS(1888), + [anon_sym_AMP] = ACTIONS(1888), }, [3735] = { [aux_sym_concatenation_repeat1] = STATE(3735), - [sym_file_descriptor] = ACTIONS(1858), - [sym__concat] = ACTIONS(8048), - [anon_sym_esac] = ACTIONS(1860), - [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_file_descriptor] = ACTIONS(1886), + [sym__concat] = ACTIONS(8124), + [anon_sym_esac] = ACTIONS(1888), + [anon_sym_PIPE] = ACTIONS(1888), + [anon_sym_SEMI_SEMI] = ACTIONS(1888), + [anon_sym_PIPE_AMP] = ACTIONS(1888), + [anon_sym_AMP_AMP] = ACTIONS(1888), + [anon_sym_PIPE_PIPE] = ACTIONS(1888), + [anon_sym_EQ_TILDE] = ACTIONS(1888), + [anon_sym_EQ_EQ] = ACTIONS(1888), + [anon_sym_LT] = ACTIONS(1888), + [anon_sym_GT] = ACTIONS(1888), + [anon_sym_GT_GT] = ACTIONS(1888), + [anon_sym_AMP_GT] = ACTIONS(1888), + [anon_sym_AMP_GT_GT] = ACTIONS(1888), + [anon_sym_LT_AMP] = ACTIONS(1888), + [anon_sym_GT_AMP] = ACTIONS(1888), + [anon_sym_LT_LT] = ACTIONS(1888), + [anon_sym_LT_LT_DASH] = ACTIONS(1888), + [anon_sym_LT_LT_LT] = ACTIONS(1888), + [sym__special_characters] = ACTIONS(1888), + [anon_sym_DQUOTE] = ACTIONS(1888), + [anon_sym_DOLLAR] = ACTIONS(1888), + [sym_raw_string] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1888), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1888), + [anon_sym_BQUOTE] = ACTIONS(1888), + [anon_sym_LT_LPAREN] = ACTIONS(1888), + [anon_sym_GT_LPAREN] = ACTIONS(1888), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1860), - [anon_sym_SEMI] = ACTIONS(1860), - [anon_sym_LF] = ACTIONS(1860), - [anon_sym_AMP] = ACTIONS(1860), + [sym_word] = ACTIONS(1888), + [anon_sym_SEMI] = ACTIONS(1888), + [anon_sym_LF] = ACTIONS(1888), + [anon_sym_AMP] = ACTIONS(1888), }, [3736] = { - [sym_file_descriptor] = ACTIONS(1895), - [sym__concat] = ACTIONS(1895), - [anon_sym_esac] = ACTIONS(1897), - [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_file_descriptor] = ACTIONS(1923), + [sym__concat] = ACTIONS(1923), + [anon_sym_esac] = ACTIONS(1925), + [anon_sym_PIPE] = ACTIONS(1925), + [anon_sym_SEMI_SEMI] = ACTIONS(1925), + [anon_sym_PIPE_AMP] = ACTIONS(1925), + [anon_sym_AMP_AMP] = ACTIONS(1925), + [anon_sym_PIPE_PIPE] = ACTIONS(1925), + [anon_sym_EQ_TILDE] = ACTIONS(1925), + [anon_sym_EQ_EQ] = ACTIONS(1925), + [anon_sym_LT] = ACTIONS(1925), + [anon_sym_GT] = ACTIONS(1925), + [anon_sym_GT_GT] = ACTIONS(1925), + [anon_sym_AMP_GT] = ACTIONS(1925), + [anon_sym_AMP_GT_GT] = ACTIONS(1925), + [anon_sym_LT_AMP] = ACTIONS(1925), + [anon_sym_GT_AMP] = ACTIONS(1925), + [anon_sym_LT_LT] = ACTIONS(1925), + [anon_sym_LT_LT_DASH] = ACTIONS(1925), + [anon_sym_LT_LT_LT] = ACTIONS(1925), + [sym__special_characters] = ACTIONS(1925), + [anon_sym_DQUOTE] = ACTIONS(1925), + [anon_sym_DOLLAR] = ACTIONS(1925), + [sym_raw_string] = ACTIONS(1925), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1925), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1925), + [anon_sym_BQUOTE] = ACTIONS(1925), + [anon_sym_LT_LPAREN] = ACTIONS(1925), + [anon_sym_GT_LPAREN] = ACTIONS(1925), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1897), - [anon_sym_SEMI] = ACTIONS(1897), - [anon_sym_LF] = ACTIONS(1897), - [anon_sym_AMP] = ACTIONS(1897), + [sym_word] = ACTIONS(1925), + [anon_sym_SEMI] = ACTIONS(1925), + [anon_sym_LF] = ACTIONS(1925), + [anon_sym_AMP] = ACTIONS(1925), }, [3737] = { [sym_concatenation] = STATE(4072), @@ -92878,57 +93256,58 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(4071), [sym_command_substitution] = STATE(4071), [sym_process_substitution] = STATE(4071), - [anon_sym_RBRACE] = ACTIONS(8051), - [sym__special_characters] = ACTIONS(8053), - [anon_sym_DQUOTE] = ACTIONS(1924), - [anon_sym_DOLLAR] = ACTIONS(1926), - [sym_raw_string] = ACTIONS(8055), - [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), + [anon_sym_RBRACE] = ACTIONS(8127), + [sym__special_characters] = ACTIONS(8129), + [anon_sym_DQUOTE] = ACTIONS(1952), + [anon_sym_DOLLAR] = ACTIONS(1954), + [sym_raw_string] = ACTIONS(8131), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), + [anon_sym_BQUOTE] = ACTIONS(1962), + [anon_sym_LT_LPAREN] = ACTIONS(1964), + [anon_sym_GT_LPAREN] = ACTIONS(1964), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(8057), + [sym_word] = ACTIONS(8133), }, [3738] = { - [sym_file_descriptor] = ACTIONS(1940), - [sym__concat] = ACTIONS(1940), - [anon_sym_esac] = ACTIONS(1942), - [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_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_file_descriptor] = ACTIONS(1968), + [sym__concat] = ACTIONS(1968), + [anon_sym_esac] = ACTIONS(1970), + [anon_sym_PIPE] = ACTIONS(1970), + [anon_sym_SEMI_SEMI] = ACTIONS(1970), + [anon_sym_PIPE_AMP] = ACTIONS(1970), + [anon_sym_AMP_AMP] = ACTIONS(1970), + [anon_sym_PIPE_PIPE] = ACTIONS(1970), + [anon_sym_EQ_TILDE] = ACTIONS(1970), + [anon_sym_EQ_EQ] = ACTIONS(1970), + [anon_sym_LT] = ACTIONS(1970), + [anon_sym_GT] = ACTIONS(1970), + [anon_sym_GT_GT] = ACTIONS(1970), + [anon_sym_AMP_GT] = ACTIONS(1970), + [anon_sym_AMP_GT_GT] = ACTIONS(1970), + [anon_sym_LT_AMP] = ACTIONS(1970), + [anon_sym_GT_AMP] = ACTIONS(1970), + [anon_sym_LT_LT] = ACTIONS(1970), + [anon_sym_LT_LT_DASH] = ACTIONS(1970), + [anon_sym_LT_LT_LT] = ACTIONS(1970), + [sym__special_characters] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1970), + [anon_sym_DOLLAR] = ACTIONS(1970), + [sym_raw_string] = ACTIONS(1970), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1970), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1970), + [anon_sym_BQUOTE] = ACTIONS(1970), + [anon_sym_LT_LPAREN] = ACTIONS(1970), + [anon_sym_GT_LPAREN] = ACTIONS(1970), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1942), - [anon_sym_SEMI] = ACTIONS(1942), - [anon_sym_LF] = ACTIONS(1942), - [anon_sym_AMP] = ACTIONS(1942), + [sym_word] = ACTIONS(1970), + [anon_sym_SEMI] = ACTIONS(1970), + [anon_sym_LF] = ACTIONS(1970), + [anon_sym_AMP] = ACTIONS(1970), }, [3739] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8059), + [sym_regex_without_right_brace] = ACTIONS(8135), }, [3740] = { [sym_concatenation] = STATE(451), @@ -92939,29 +93318,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8061), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8137), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3741] = { - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(8063), + [anon_sym_LBRACK] = ACTIONS(836), + [anon_sym_EQ] = ACTIONS(8139), [sym_comment] = ACTIONS(56), }, [3742] = { @@ -92973,26 +93352,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(4078), - [anon_sym_RBRACE] = ACTIONS(8065), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_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(8067), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8141), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(8143), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3743] = { [sym_concatenation] = STATE(451), @@ -93003,26 +93382,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(4081), - [anon_sym_RBRACE] = ACTIONS(8069), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_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(8071), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8145), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(8147), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3744] = { [sym_concatenation] = STATE(451), @@ -93033,65 +93412,66 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(4083), - [anon_sym_RBRACE] = ACTIONS(8051), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_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(8073), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8127), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(8149), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3745] = { - [sym_file_descriptor] = ACTIONS(1992), - [sym__concat] = ACTIONS(1992), - [anon_sym_esac] = ACTIONS(1994), - [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_file_descriptor] = ACTIONS(2022), + [sym__concat] = ACTIONS(2022), + [anon_sym_esac] = ACTIONS(2024), + [anon_sym_PIPE] = ACTIONS(2024), + [anon_sym_SEMI_SEMI] = ACTIONS(2024), + [anon_sym_PIPE_AMP] = ACTIONS(2024), + [anon_sym_AMP_AMP] = ACTIONS(2024), + [anon_sym_PIPE_PIPE] = ACTIONS(2024), + [anon_sym_EQ_TILDE] = ACTIONS(2024), + [anon_sym_EQ_EQ] = ACTIONS(2024), + [anon_sym_LT] = ACTIONS(2024), + [anon_sym_GT] = ACTIONS(2024), + [anon_sym_GT_GT] = ACTIONS(2024), + [anon_sym_AMP_GT] = ACTIONS(2024), + [anon_sym_AMP_GT_GT] = ACTIONS(2024), + [anon_sym_LT_AMP] = ACTIONS(2024), + [anon_sym_GT_AMP] = ACTIONS(2024), + [anon_sym_LT_LT] = ACTIONS(2024), + [anon_sym_LT_LT_DASH] = ACTIONS(2024), + [anon_sym_LT_LT_LT] = ACTIONS(2024), + [sym__special_characters] = ACTIONS(2024), + [anon_sym_DQUOTE] = ACTIONS(2024), + [anon_sym_DOLLAR] = ACTIONS(2024), + [sym_raw_string] = ACTIONS(2024), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2024), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2024), + [anon_sym_BQUOTE] = ACTIONS(2024), + [anon_sym_LT_LPAREN] = ACTIONS(2024), + [anon_sym_GT_LPAREN] = ACTIONS(2024), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1994), - [anon_sym_SEMI] = ACTIONS(1994), - [anon_sym_LF] = ACTIONS(1994), - [anon_sym_AMP] = ACTIONS(1994), + [sym_word] = ACTIONS(2024), + [anon_sym_SEMI] = ACTIONS(2024), + [anon_sym_LF] = ACTIONS(2024), + [anon_sym_AMP] = ACTIONS(2024), }, [3746] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8075), + [sym_regex_without_right_brace] = ACTIONS(8151), }, [3747] = { [sym_concatenation] = STATE(451), @@ -93102,64 +93482,65 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8077), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8153), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3748] = { - [sym_file_descriptor] = ACTIONS(2000), - [sym__concat] = ACTIONS(2000), - [anon_sym_esac] = ACTIONS(2002), - [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_file_descriptor] = ACTIONS(2030), + [sym__concat] = ACTIONS(2030), + [anon_sym_esac] = ACTIONS(2032), + [anon_sym_PIPE] = ACTIONS(2032), + [anon_sym_SEMI_SEMI] = ACTIONS(2032), + [anon_sym_PIPE_AMP] = ACTIONS(2032), + [anon_sym_AMP_AMP] = ACTIONS(2032), + [anon_sym_PIPE_PIPE] = ACTIONS(2032), + [anon_sym_EQ_TILDE] = ACTIONS(2032), + [anon_sym_EQ_EQ] = ACTIONS(2032), + [anon_sym_LT] = ACTIONS(2032), + [anon_sym_GT] = ACTIONS(2032), + [anon_sym_GT_GT] = ACTIONS(2032), + [anon_sym_AMP_GT] = ACTIONS(2032), + [anon_sym_AMP_GT_GT] = ACTIONS(2032), + [anon_sym_LT_AMP] = ACTIONS(2032), + [anon_sym_GT_AMP] = ACTIONS(2032), + [anon_sym_LT_LT] = ACTIONS(2032), + [anon_sym_LT_LT_DASH] = ACTIONS(2032), + [anon_sym_LT_LT_LT] = ACTIONS(2032), + [sym__special_characters] = ACTIONS(2032), + [anon_sym_DQUOTE] = ACTIONS(2032), + [anon_sym_DOLLAR] = ACTIONS(2032), + [sym_raw_string] = ACTIONS(2032), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2032), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2032), + [anon_sym_BQUOTE] = ACTIONS(2032), + [anon_sym_LT_LPAREN] = ACTIONS(2032), + [anon_sym_GT_LPAREN] = ACTIONS(2032), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2002), - [anon_sym_SEMI] = ACTIONS(2002), - [anon_sym_LF] = ACTIONS(2002), - [anon_sym_AMP] = ACTIONS(2002), + [sym_word] = ACTIONS(2032), + [anon_sym_SEMI] = ACTIONS(2032), + [anon_sym_LF] = ACTIONS(2032), + [anon_sym_AMP] = ACTIONS(2032), }, [3749] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8079), + [sym_regex_without_right_brace] = ACTIONS(8155), }, [3750] = { [sym_concatenation] = STATE(451), @@ -93170,174 +93551,176 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8051), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8127), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3751] = { - [sym_file_descriptor] = ACTIONS(2156), - [sym__concat] = ACTIONS(2156), - [anon_sym_esac] = ACTIONS(2158), - [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_file_descriptor] = ACTIONS(2190), + [sym__concat] = ACTIONS(2190), + [anon_sym_esac] = ACTIONS(2192), + [anon_sym_PIPE] = ACTIONS(2192), + [anon_sym_SEMI_SEMI] = ACTIONS(2192), + [anon_sym_PIPE_AMP] = ACTIONS(2192), + [anon_sym_AMP_AMP] = ACTIONS(2192), + [anon_sym_PIPE_PIPE] = ACTIONS(2192), + [anon_sym_EQ_TILDE] = ACTIONS(2192), + [anon_sym_EQ_EQ] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(2192), + [anon_sym_GT] = ACTIONS(2192), + [anon_sym_GT_GT] = ACTIONS(2192), + [anon_sym_AMP_GT] = ACTIONS(2192), + [anon_sym_AMP_GT_GT] = ACTIONS(2192), + [anon_sym_LT_AMP] = ACTIONS(2192), + [anon_sym_GT_AMP] = ACTIONS(2192), + [anon_sym_LT_LT] = ACTIONS(2192), + [anon_sym_LT_LT_DASH] = ACTIONS(2192), + [anon_sym_LT_LT_LT] = ACTIONS(2192), + [sym__special_characters] = ACTIONS(2192), + [anon_sym_DQUOTE] = ACTIONS(2192), + [anon_sym_DOLLAR] = ACTIONS(2192), + [sym_raw_string] = ACTIONS(2192), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2192), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2192), + [anon_sym_BQUOTE] = ACTIONS(2192), + [anon_sym_LT_LPAREN] = ACTIONS(2192), + [anon_sym_GT_LPAREN] = ACTIONS(2192), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2158), - [anon_sym_SEMI] = ACTIONS(2158), - [anon_sym_LF] = ACTIONS(2158), - [anon_sym_AMP] = ACTIONS(2158), + [sym_word] = ACTIONS(2192), + [anon_sym_SEMI] = ACTIONS(2192), + [anon_sym_LF] = ACTIONS(2192), + [anon_sym_AMP] = ACTIONS(2192), }, [3752] = { - [sym_file_descriptor] = ACTIONS(2358), - [sym__concat] = ACTIONS(2358), - [anon_sym_esac] = ACTIONS(2360), - [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_file_descriptor] = ACTIONS(2396), + [sym__concat] = ACTIONS(2396), + [anon_sym_esac] = ACTIONS(2398), + [anon_sym_PIPE] = ACTIONS(2398), + [anon_sym_SEMI_SEMI] = ACTIONS(2398), + [anon_sym_PIPE_AMP] = ACTIONS(2398), + [anon_sym_AMP_AMP] = ACTIONS(2398), + [anon_sym_PIPE_PIPE] = ACTIONS(2398), + [anon_sym_EQ_TILDE] = ACTIONS(2398), + [anon_sym_EQ_EQ] = ACTIONS(2398), + [anon_sym_LT] = ACTIONS(2398), + [anon_sym_GT] = ACTIONS(2398), + [anon_sym_GT_GT] = ACTIONS(2398), + [anon_sym_AMP_GT] = ACTIONS(2398), + [anon_sym_AMP_GT_GT] = ACTIONS(2398), + [anon_sym_LT_AMP] = ACTIONS(2398), + [anon_sym_GT_AMP] = ACTIONS(2398), + [anon_sym_LT_LT] = ACTIONS(2398), + [anon_sym_LT_LT_DASH] = ACTIONS(2398), + [anon_sym_LT_LT_LT] = ACTIONS(2398), + [sym__special_characters] = ACTIONS(2398), + [anon_sym_DQUOTE] = ACTIONS(2398), + [anon_sym_DOLLAR] = ACTIONS(2398), + [sym_raw_string] = ACTIONS(2398), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2398), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2398), + [anon_sym_BQUOTE] = ACTIONS(2398), + [anon_sym_LT_LPAREN] = ACTIONS(2398), + [anon_sym_GT_LPAREN] = ACTIONS(2398), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2360), - [anon_sym_SEMI] = ACTIONS(2360), - [anon_sym_LF] = ACTIONS(2360), - [anon_sym_AMP] = ACTIONS(2360), + [sym_word] = ACTIONS(2398), + [anon_sym_SEMI] = ACTIONS(2398), + [anon_sym_LF] = ACTIONS(2398), + [anon_sym_AMP] = ACTIONS(2398), }, [3753] = { [sym_compound_statement] = STATE(4087), - [anon_sym_LBRACE] = ACTIONS(480), + [anon_sym_LBRACE] = ACTIONS(484), [sym_comment] = ACTIONS(56), }, [3754] = { - [sym_file_descriptor] = ACTIONS(378), - [sym_variable_name] = ACTIONS(378), - [anon_sym_esac] = ACTIONS(2362), - [anon_sym_PIPE] = 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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_esac] = ACTIONS(2400), + [anon_sym_PIPE] = ACTIONS(2400), + [anon_sym_SEMI_SEMI] = ACTIONS(2400), + [anon_sym_PIPE_AMP] = ACTIONS(2400), + [anon_sym_AMP_AMP] = ACTIONS(2400), + [anon_sym_PIPE_PIPE] = ACTIONS(2400), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(382), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(382), + [anon_sym_LT_AMP] = ACTIONS(382), + [anon_sym_GT_AMP] = ACTIONS(382), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(382), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(382), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(382), + [anon_sym_BQUOTE] = ACTIONS(382), + [anon_sym_LT_LPAREN] = ACTIONS(382), + [anon_sym_GT_LPAREN] = ACTIONS(382), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(380), - [anon_sym_SEMI] = ACTIONS(2362), - [anon_sym_LF] = ACTIONS(2362), - [anon_sym_AMP] = ACTIONS(2362), + [sym_word] = ACTIONS(382), + [anon_sym_SEMI] = ACTIONS(2400), + [anon_sym_LF] = ACTIONS(2400), + [anon_sym_AMP] = ACTIONS(2400), }, [3755] = { - [anon_sym_esac] = ACTIONS(2364), - [anon_sym_PIPE] = ACTIONS(6585), - [anon_sym_SEMI_SEMI] = ACTIONS(2364), - [anon_sym_PIPE_AMP] = ACTIONS(6585), - [anon_sym_AMP_AMP] = ACTIONS(2364), - [anon_sym_PIPE_PIPE] = ACTIONS(2364), + [anon_sym_esac] = ACTIONS(2402), + [anon_sym_PIPE] = ACTIONS(6655), + [anon_sym_SEMI_SEMI] = ACTIONS(2402), + [anon_sym_PIPE_AMP] = ACTIONS(6655), + [anon_sym_AMP_AMP] = ACTIONS(2402), + [anon_sym_PIPE_PIPE] = ACTIONS(2402), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2364), - [anon_sym_LF] = ACTIONS(2364), - [anon_sym_AMP] = ACTIONS(2364), + [anon_sym_SEMI] = ACTIONS(2402), + [anon_sym_LF] = ACTIONS(2402), + [anon_sym_AMP] = ACTIONS(2402), }, [3756] = { - [sym_file_descriptor] = ACTIONS(378), - [sym_variable_name] = ACTIONS(378), - [anon_sym_esac] = ACTIONS(2364), - [anon_sym_PIPE] = ACTIONS(6585), - [anon_sym_SEMI_SEMI] = ACTIONS(2364), - [anon_sym_PIPE_AMP] = ACTIONS(6585), - [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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_esac] = ACTIONS(2402), + [anon_sym_PIPE] = ACTIONS(6655), + [anon_sym_SEMI_SEMI] = ACTIONS(2402), + [anon_sym_PIPE_AMP] = ACTIONS(6655), + [anon_sym_AMP_AMP] = ACTIONS(2402), + [anon_sym_PIPE_PIPE] = ACTIONS(2402), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(382), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(382), + [anon_sym_LT_AMP] = ACTIONS(382), + [anon_sym_GT_AMP] = ACTIONS(382), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(382), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(382), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(382), + [anon_sym_BQUOTE] = ACTIONS(382), + [anon_sym_LT_LPAREN] = ACTIONS(382), + [anon_sym_GT_LPAREN] = ACTIONS(382), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(380), - [anon_sym_SEMI] = ACTIONS(2364), - [anon_sym_LF] = ACTIONS(2364), - [anon_sym_AMP] = ACTIONS(2364), + [sym_word] = ACTIONS(382), + [anon_sym_SEMI] = ACTIONS(2402), + [anon_sym_LF] = ACTIONS(2402), + [anon_sym_AMP] = ACTIONS(2402), }, [3757] = { [sym_concatenation] = STATE(1199), @@ -93347,155 +93730,158 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(4089), [sym_command_substitution] = STATE(4089), [sym_process_substitution] = STATE(4089), - [sym__special_characters] = ACTIONS(8081), - [anon_sym_DQUOTE] = ACTIONS(7452), - [anon_sym_DOLLAR] = ACTIONS(7454), - [sym_raw_string] = ACTIONS(8083), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7458), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7460), - [anon_sym_BQUOTE] = ACTIONS(7462), - [anon_sym_LT_LPAREN] = ACTIONS(7464), - [anon_sym_GT_LPAREN] = ACTIONS(7464), + [sym__special_characters] = ACTIONS(8157), + [anon_sym_DQUOTE] = ACTIONS(7526), + [anon_sym_DOLLAR] = ACTIONS(7528), + [sym_raw_string] = ACTIONS(8159), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7532), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7534), + [anon_sym_BQUOTE] = ACTIONS(7536), + [anon_sym_LT_LPAREN] = ACTIONS(7538), + [anon_sym_GT_LPAREN] = ACTIONS(7538), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(8085), + [sym_word] = ACTIONS(8161), }, [3758] = { [aux_sym_concatenation_repeat1] = STATE(3258), - [sym_file_descriptor] = ACTIONS(1525), - [sym__concat] = ACTIONS(6561), - [anon_sym_esac] = ACTIONS(1527), - [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_file_descriptor] = ACTIONS(1553), + [sym__concat] = ACTIONS(6629), + [anon_sym_esac] = ACTIONS(1555), + [anon_sym_PIPE] = ACTIONS(1555), + [anon_sym_SEMI_SEMI] = ACTIONS(1555), + [anon_sym_PIPE_AMP] = ACTIONS(1555), + [anon_sym_AMP_AMP] = ACTIONS(1555), + [anon_sym_PIPE_PIPE] = ACTIONS(1555), + [anon_sym_EQ_TILDE] = ACTIONS(1555), + [anon_sym_EQ_EQ] = ACTIONS(1555), + [anon_sym_LT] = ACTIONS(1555), + [anon_sym_GT] = ACTIONS(1555), + [anon_sym_GT_GT] = ACTIONS(1555), + [anon_sym_AMP_GT] = ACTIONS(1555), + [anon_sym_AMP_GT_GT] = ACTIONS(1555), + [anon_sym_LT_AMP] = ACTIONS(1555), + [anon_sym_GT_AMP] = ACTIONS(1555), + [anon_sym_LT_LT] = ACTIONS(1555), + [anon_sym_LT_LT_DASH] = ACTIONS(1555), + [anon_sym_LT_LT_LT] = ACTIONS(1555), + [sym__special_characters] = ACTIONS(1555), + [anon_sym_DQUOTE] = ACTIONS(1555), + [anon_sym_DOLLAR] = ACTIONS(1555), + [sym_raw_string] = ACTIONS(1555), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1555), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1555), + [anon_sym_BQUOTE] = ACTIONS(1555), + [anon_sym_LT_LPAREN] = ACTIONS(1555), + [anon_sym_GT_LPAREN] = ACTIONS(1555), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1527), - [anon_sym_SEMI] = ACTIONS(1527), - [anon_sym_LF] = ACTIONS(1527), - [anon_sym_AMP] = ACTIONS(1527), + [sym_word] = ACTIONS(1555), + [anon_sym_SEMI] = ACTIONS(1555), + [anon_sym_LF] = ACTIONS(1555), + [anon_sym_AMP] = ACTIONS(1555), }, [3759] = { [aux_sym_concatenation_repeat1] = STATE(3258), - [sym_file_descriptor] = ACTIONS(1531), - [sym__concat] = ACTIONS(6561), - [anon_sym_esac] = ACTIONS(1533), - [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_file_descriptor] = ACTIONS(1559), + [sym__concat] = ACTIONS(6629), + [anon_sym_esac] = ACTIONS(1561), + [anon_sym_PIPE] = ACTIONS(1561), + [anon_sym_SEMI_SEMI] = ACTIONS(1561), + [anon_sym_PIPE_AMP] = ACTIONS(1561), + [anon_sym_AMP_AMP] = ACTIONS(1561), + [anon_sym_PIPE_PIPE] = ACTIONS(1561), + [anon_sym_EQ_TILDE] = ACTIONS(1561), + [anon_sym_EQ_EQ] = ACTIONS(1561), + [anon_sym_LT] = ACTIONS(1561), + [anon_sym_GT] = ACTIONS(1561), + [anon_sym_GT_GT] = ACTIONS(1561), + [anon_sym_AMP_GT] = ACTIONS(1561), + [anon_sym_AMP_GT_GT] = ACTIONS(1561), + [anon_sym_LT_AMP] = ACTIONS(1561), + [anon_sym_GT_AMP] = ACTIONS(1561), + [anon_sym_LT_LT] = ACTIONS(1561), + [anon_sym_LT_LT_DASH] = ACTIONS(1561), + [anon_sym_LT_LT_LT] = ACTIONS(1561), + [sym__special_characters] = ACTIONS(1561), + [anon_sym_DQUOTE] = ACTIONS(1561), + [anon_sym_DOLLAR] = ACTIONS(1561), + [sym_raw_string] = ACTIONS(1561), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1561), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1561), + [anon_sym_BQUOTE] = ACTIONS(1561), + [anon_sym_LT_LPAREN] = ACTIONS(1561), + [anon_sym_GT_LPAREN] = ACTIONS(1561), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1533), - [anon_sym_LF] = ACTIONS(1533), - [anon_sym_AMP] = ACTIONS(1533), + [sym_word] = ACTIONS(1561), + [anon_sym_SEMI] = ACTIONS(1561), + [anon_sym_LF] = ACTIONS(1561), + [anon_sym_AMP] = ACTIONS(1561), }, [3760] = { - [sym_file_descriptor] = ACTIONS(1531), - [anon_sym_esac] = ACTIONS(1533), - [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_file_descriptor] = ACTIONS(1559), + [anon_sym_esac] = ACTIONS(1561), + [anon_sym_PIPE] = ACTIONS(1561), + [anon_sym_SEMI_SEMI] = ACTIONS(1561), + [anon_sym_PIPE_AMP] = ACTIONS(1561), + [anon_sym_AMP_AMP] = ACTIONS(1561), + [anon_sym_PIPE_PIPE] = ACTIONS(1561), + [anon_sym_EQ_TILDE] = ACTIONS(1561), + [anon_sym_EQ_EQ] = ACTIONS(1561), + [anon_sym_LT] = ACTIONS(1561), + [anon_sym_GT] = ACTIONS(1561), + [anon_sym_GT_GT] = ACTIONS(1561), + [anon_sym_AMP_GT] = ACTIONS(1561), + [anon_sym_AMP_GT_GT] = ACTIONS(1561), + [anon_sym_LT_AMP] = ACTIONS(1561), + [anon_sym_GT_AMP] = ACTIONS(1561), + [anon_sym_LT_LT] = ACTIONS(1561), + [anon_sym_LT_LT_DASH] = ACTIONS(1561), + [anon_sym_LT_LT_LT] = ACTIONS(1561), + [sym__special_characters] = ACTIONS(1561), + [anon_sym_DQUOTE] = ACTIONS(1561), + [anon_sym_DOLLAR] = ACTIONS(1561), + [sym_raw_string] = ACTIONS(1561), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1561), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1561), + [anon_sym_BQUOTE] = ACTIONS(1561), + [anon_sym_LT_LPAREN] = ACTIONS(1561), + [anon_sym_GT_LPAREN] = ACTIONS(1561), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1533), - [anon_sym_LF] = ACTIONS(1533), - [anon_sym_AMP] = ACTIONS(1533), + [sym_word] = ACTIONS(1561), + [anon_sym_SEMI] = ACTIONS(1561), + [anon_sym_LF] = ACTIONS(1561), + [anon_sym_AMP] = ACTIONS(1561), }, [3761] = { [aux_sym_concatenation_repeat1] = STATE(4091), - [sym_file_descriptor] = ACTIONS(740), - [sym__concat] = ACTIONS(8087), - [anon_sym_esac] = ACTIONS(2374), - [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_file_descriptor] = ACTIONS(754), + [sym__concat] = ACTIONS(8163), + [anon_sym_esac] = ACTIONS(2412), + [anon_sym_PIPE] = ACTIONS(2412), + [anon_sym_SEMI_SEMI] = ACTIONS(2412), + [anon_sym_PIPE_AMP] = ACTIONS(2412), + [anon_sym_AMP_AMP] = ACTIONS(2412), + [anon_sym_PIPE_PIPE] = ACTIONS(2412), + [anon_sym_LT] = ACTIONS(2412), + [anon_sym_GT] = ACTIONS(2412), + [anon_sym_GT_GT] = ACTIONS(2412), + [anon_sym_AMP_GT] = ACTIONS(2412), + [anon_sym_AMP_GT_GT] = ACTIONS(2412), + [anon_sym_LT_AMP] = ACTIONS(2412), + [anon_sym_GT_AMP] = ACTIONS(2412), + [anon_sym_LT_LT] = ACTIONS(2412), + [anon_sym_LT_LT_DASH] = ACTIONS(2412), + [anon_sym_LT_LT_LT] = ACTIONS(2412), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2374), - [anon_sym_LF] = ACTIONS(2374), - [anon_sym_AMP] = ACTIONS(2374), + [anon_sym_SEMI] = ACTIONS(2412), + [anon_sym_LF] = ACTIONS(2412), + [anon_sym_AMP] = ACTIONS(2412), }, [3762] = { [sym_simple_expansion] = STATE(134), [sym_expansion] = STATE(134), [sym_command_substitution] = STATE(134), [aux_sym_string_repeat1] = STATE(4093), - [anon_sym_DQUOTE] = ACTIONS(8089), + [anon_sym_DQUOTE] = ACTIONS(8165), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -93504,57 +93890,58 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(182), }, [3763] = { - [sym_string] = STATE(4096), - [anon_sym_DQUOTE] = ACTIONS(7452), - [anon_sym_DOLLAR] = ACTIONS(8091), - [anon_sym_POUND] = ACTIONS(8091), - [anon_sym_DASH] = ACTIONS(8091), + [sym_string] = STATE(4095), + [anon_sym_DQUOTE] = ACTIONS(7526), + [anon_sym_DOLLAR] = ACTIONS(8167), + [sym_raw_string] = ACTIONS(8169), + [anon_sym_POUND] = ACTIONS(8167), + [anon_sym_DASH] = ACTIONS(8167), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(8093), - [anon_sym_STAR] = ACTIONS(8091), - [anon_sym_AT] = ACTIONS(8091), - [anon_sym_QMARK] = ACTIONS(8091), - [anon_sym_0] = ACTIONS(8095), - [anon_sym__] = ACTIONS(8095), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(8171), + [anon_sym_STAR] = ACTIONS(8167), + [anon_sym_AT] = ACTIONS(8167), + [anon_sym_QMARK] = ACTIONS(8167), + [anon_sym_0] = ACTIONS(8173), + [anon_sym__] = ACTIONS(8173), }, [3764] = { [aux_sym_concatenation_repeat1] = STATE(4091), - [sym_file_descriptor] = ACTIONS(754), - [sym__concat] = ACTIONS(8087), - [anon_sym_esac] = ACTIONS(2384), - [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_file_descriptor] = ACTIONS(770), + [sym__concat] = ACTIONS(8163), + [anon_sym_esac] = ACTIONS(2424), + [anon_sym_PIPE] = ACTIONS(2424), + [anon_sym_SEMI_SEMI] = ACTIONS(2424), + [anon_sym_PIPE_AMP] = ACTIONS(2424), + [anon_sym_AMP_AMP] = ACTIONS(2424), + [anon_sym_PIPE_PIPE] = ACTIONS(2424), + [anon_sym_LT] = ACTIONS(2424), + [anon_sym_GT] = ACTIONS(2424), + [anon_sym_GT_GT] = ACTIONS(2424), + [anon_sym_AMP_GT] = ACTIONS(2424), + [anon_sym_AMP_GT_GT] = ACTIONS(2424), + [anon_sym_LT_AMP] = ACTIONS(2424), + [anon_sym_GT_AMP] = ACTIONS(2424), + [anon_sym_LT_LT] = ACTIONS(2424), + [anon_sym_LT_LT_DASH] = ACTIONS(2424), + [anon_sym_LT_LT_LT] = ACTIONS(2424), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2384), - [anon_sym_LF] = ACTIONS(2384), - [anon_sym_AMP] = ACTIONS(2384), + [anon_sym_SEMI] = ACTIONS(2424), + [anon_sym_LF] = ACTIONS(2424), + [anon_sym_AMP] = ACTIONS(2424), }, [3765] = { [sym_subscript] = STATE(4101), - [sym_variable_name] = ACTIONS(8097), - [anon_sym_DOLLAR] = ACTIONS(8099), - [anon_sym_POUND] = ACTIONS(8101), - [anon_sym_DASH] = ACTIONS(8099), + [sym_variable_name] = ACTIONS(8175), + [anon_sym_DOLLAR] = ACTIONS(8177), + [anon_sym_POUND] = ACTIONS(8179), + [anon_sym_DASH] = ACTIONS(8177), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(8103), - [anon_sym_STAR] = ACTIONS(8099), - [anon_sym_AT] = ACTIONS(8099), - [anon_sym_QMARK] = ACTIONS(8099), - [anon_sym_0] = ACTIONS(8105), - [anon_sym__] = ACTIONS(8105), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(8181), + [anon_sym_STAR] = ACTIONS(8177), + [anon_sym_AT] = ACTIONS(8177), + [anon_sym_QMARK] = ACTIONS(8177), + [anon_sym_0] = ACTIONS(8183), + [anon_sym__] = ACTIONS(8183), }, [3766] = { [sym_for_statement] = STATE(4102), @@ -93582,22 +93969,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(264), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(268), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -93605,17 +93992,17 @@ 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(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__special_characters] = ACTIONS(286), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(300), + [sym_word] = ACTIONS(302), }, [3767] = { [sym_for_statement] = STATE(4104), @@ -93643,22 +94030,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(304), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(306), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(308), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_LBRACK_LBRACK] = ACTIONS(312), + [anon_sym_declare] = ACTIONS(314), + [anon_sym_typeset] = ACTIONS(314), + [anon_sym_export] = ACTIONS(314), + [anon_sym_readonly] = ACTIONS(314), + [anon_sym_local] = ACTIONS(314), + [anon_sym_unset] = ACTIONS(316), + [anon_sym_unsetenv] = ACTIONS(316), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -93666,17 +94053,17 @@ 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(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__special_characters] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [anon_sym_DOLLAR] = ACTIONS(322), + [sym_raw_string] = ACTIONS(324), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), + [anon_sym_BQUOTE] = ACTIONS(330), + [anon_sym_LT_LPAREN] = ACTIONS(332), + [anon_sym_GT_LPAREN] = ACTIONS(332), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(332), + [sym_word] = ACTIONS(334), }, [3768] = { [sym_for_statement] = STATE(4106), @@ -93704,22 +94091,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(264), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(268), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -93727,121 +94114,121 @@ 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(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__special_characters] = ACTIONS(286), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(300), + [sym_word] = ACTIONS(302), }, [3769] = { [aux_sym_concatenation_repeat1] = STATE(4091), - [sym_file_descriptor] = ACTIONS(2412), - [sym__concat] = ACTIONS(8087), - [anon_sym_esac] = ACTIONS(2414), - [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_file_descriptor] = ACTIONS(2452), + [sym__concat] = ACTIONS(8163), + [anon_sym_esac] = ACTIONS(2454), + [anon_sym_PIPE] = ACTIONS(2454), + [anon_sym_SEMI_SEMI] = ACTIONS(2454), + [anon_sym_PIPE_AMP] = ACTIONS(2454), + [anon_sym_AMP_AMP] = ACTIONS(2454), + [anon_sym_PIPE_PIPE] = ACTIONS(2454), + [anon_sym_LT] = ACTIONS(2454), + [anon_sym_GT] = ACTIONS(2454), + [anon_sym_GT_GT] = ACTIONS(2454), + [anon_sym_AMP_GT] = ACTIONS(2454), + [anon_sym_AMP_GT_GT] = ACTIONS(2454), + [anon_sym_LT_AMP] = ACTIONS(2454), + [anon_sym_GT_AMP] = ACTIONS(2454), + [anon_sym_LT_LT] = ACTIONS(2454), + [anon_sym_LT_LT_DASH] = ACTIONS(2454), + [anon_sym_LT_LT_LT] = ACTIONS(2454), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2414), - [anon_sym_LF] = ACTIONS(2414), - [anon_sym_AMP] = ACTIONS(2414), + [anon_sym_SEMI] = ACTIONS(2454), + [anon_sym_LF] = ACTIONS(2454), + [anon_sym_AMP] = ACTIONS(2454), }, [3770] = { [aux_sym_concatenation_repeat1] = STATE(4091), - [sym_file_descriptor] = ACTIONS(2416), - [sym__concat] = ACTIONS(8087), - [anon_sym_esac] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_SEMI_SEMI] = ACTIONS(2418), - [anon_sym_PIPE_AMP] = ACTIONS(2418), - [anon_sym_AMP_AMP] = ACTIONS(2418), - [anon_sym_PIPE_PIPE] = ACTIONS(2418), - [anon_sym_LT] = ACTIONS(2418), - [anon_sym_GT] = ACTIONS(2418), - [anon_sym_GT_GT] = ACTIONS(2418), - [anon_sym_AMP_GT] = ACTIONS(2418), - [anon_sym_AMP_GT_GT] = ACTIONS(2418), - [anon_sym_LT_AMP] = ACTIONS(2418), - [anon_sym_GT_AMP] = ACTIONS(2418), - [anon_sym_LT_LT] = ACTIONS(2418), - [anon_sym_LT_LT_DASH] = ACTIONS(2418), - [anon_sym_LT_LT_LT] = ACTIONS(2418), + [sym_file_descriptor] = ACTIONS(2456), + [sym__concat] = ACTIONS(8163), + [anon_sym_esac] = ACTIONS(2458), + [anon_sym_PIPE] = ACTIONS(2458), + [anon_sym_SEMI_SEMI] = ACTIONS(2458), + [anon_sym_PIPE_AMP] = ACTIONS(2458), + [anon_sym_AMP_AMP] = ACTIONS(2458), + [anon_sym_PIPE_PIPE] = ACTIONS(2458), + [anon_sym_LT] = ACTIONS(2458), + [anon_sym_GT] = ACTIONS(2458), + [anon_sym_GT_GT] = ACTIONS(2458), + [anon_sym_AMP_GT] = ACTIONS(2458), + [anon_sym_AMP_GT_GT] = ACTIONS(2458), + [anon_sym_LT_AMP] = ACTIONS(2458), + [anon_sym_GT_AMP] = ACTIONS(2458), + [anon_sym_LT_LT] = ACTIONS(2458), + [anon_sym_LT_LT_DASH] = ACTIONS(2458), + [anon_sym_LT_LT_LT] = ACTIONS(2458), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_LF] = ACTIONS(2418), - [anon_sym_AMP] = ACTIONS(2418), + [anon_sym_SEMI] = ACTIONS(2458), + [anon_sym_LF] = ACTIONS(2458), + [anon_sym_AMP] = ACTIONS(2458), }, [3771] = { [sym_file_redirect] = STATE(207), [sym_heredoc_redirect] = STATE(207), [sym_herestring_redirect] = STATE(207), [aux_sym_while_statement_repeat1] = STATE(3771), - [sym_file_descriptor] = ACTIONS(8107), - [anon_sym_esac] = ACTIONS(2423), - [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(8110), - [anon_sym_GT] = ACTIONS(8110), - [anon_sym_GT_GT] = ACTIONS(8110), - [anon_sym_AMP_GT] = ACTIONS(8110), - [anon_sym_AMP_GT_GT] = ACTIONS(8110), - [anon_sym_LT_AMP] = ACTIONS(8110), - [anon_sym_GT_AMP] = ACTIONS(8110), - [anon_sym_LT_LT] = ACTIONS(2428), - [anon_sym_LT_LT_DASH] = ACTIONS(2428), - [anon_sym_LT_LT_LT] = ACTIONS(8113), + [sym_file_descriptor] = ACTIONS(8185), + [anon_sym_esac] = ACTIONS(2463), + [anon_sym_PIPE] = ACTIONS(2463), + [anon_sym_SEMI_SEMI] = ACTIONS(2463), + [anon_sym_PIPE_AMP] = ACTIONS(2463), + [anon_sym_AMP_AMP] = ACTIONS(2463), + [anon_sym_PIPE_PIPE] = ACTIONS(2463), + [anon_sym_LT] = ACTIONS(8188), + [anon_sym_GT] = ACTIONS(8188), + [anon_sym_GT_GT] = ACTIONS(8188), + [anon_sym_AMP_GT] = ACTIONS(8188), + [anon_sym_AMP_GT_GT] = ACTIONS(8188), + [anon_sym_LT_AMP] = ACTIONS(8188), + [anon_sym_GT_AMP] = ACTIONS(8188), + [anon_sym_LT_LT] = ACTIONS(2468), + [anon_sym_LT_LT_DASH] = ACTIONS(2468), + [anon_sym_LT_LT_LT] = ACTIONS(8191), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2423), - [anon_sym_LF] = ACTIONS(2423), - [anon_sym_AMP] = ACTIONS(2423), + [anon_sym_SEMI] = ACTIONS(2463), + [anon_sym_LF] = ACTIONS(2463), + [anon_sym_AMP] = ACTIONS(2463), }, [3772] = { [sym_file_redirect] = STATE(207), [sym_heredoc_redirect] = STATE(207), [sym_herestring_redirect] = STATE(207), [aux_sym_while_statement_repeat1] = STATE(3771), - [sym_file_descriptor] = ACTIONS(6593), - [anon_sym_esac] = ACTIONS(2434), - [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(6597), - [anon_sym_GT] = ACTIONS(6597), - [anon_sym_GT_GT] = ACTIONS(6597), - [anon_sym_AMP_GT] = ACTIONS(6597), - [anon_sym_AMP_GT_GT] = ACTIONS(6597), - [anon_sym_LT_AMP] = ACTIONS(6597), - [anon_sym_GT_AMP] = ACTIONS(6597), - [anon_sym_LT_LT] = ACTIONS(358), - [anon_sym_LT_LT_DASH] = ACTIONS(358), - [anon_sym_LT_LT_LT] = ACTIONS(6599), + [sym_file_descriptor] = ACTIONS(6663), + [anon_sym_esac] = ACTIONS(2474), + [anon_sym_PIPE] = ACTIONS(2474), + [anon_sym_SEMI_SEMI] = ACTIONS(2474), + [anon_sym_PIPE_AMP] = ACTIONS(2474), + [anon_sym_AMP_AMP] = ACTIONS(2474), + [anon_sym_PIPE_PIPE] = ACTIONS(2474), + [anon_sym_LT] = ACTIONS(6667), + [anon_sym_GT] = ACTIONS(6667), + [anon_sym_GT_GT] = ACTIONS(6667), + [anon_sym_AMP_GT] = ACTIONS(6667), + [anon_sym_AMP_GT_GT] = ACTIONS(6667), + [anon_sym_LT_AMP] = ACTIONS(6667), + [anon_sym_GT_AMP] = ACTIONS(6667), + [anon_sym_LT_LT] = ACTIONS(360), + [anon_sym_LT_LT_DASH] = ACTIONS(360), + [anon_sym_LT_LT_LT] = ACTIONS(6669), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2434), - [anon_sym_LF] = ACTIONS(2434), - [anon_sym_AMP] = ACTIONS(2434), + [anon_sym_SEMI] = ACTIONS(2474), + [anon_sym_LF] = ACTIONS(2474), + [anon_sym_AMP] = ACTIONS(2474), }, [3773] = { [sym_concatenation] = STATE(3286), @@ -93852,118 +94239,119 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(3285), [sym_process_substitution] = STATE(3285), [aux_sym_command_repeat2] = STATE(3773), - [sym_file_descriptor] = ACTIONS(1531), - [anon_sym_esac] = ACTIONS(1533), - [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(8116), - [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(8119), - [anon_sym_DQUOTE] = ACTIONS(8122), - [anon_sym_DOLLAR] = ACTIONS(8125), - [sym_raw_string] = ACTIONS(8128), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(8131), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(8134), - [anon_sym_BQUOTE] = ACTIONS(8137), - [anon_sym_LT_LPAREN] = ACTIONS(8140), - [anon_sym_GT_LPAREN] = ACTIONS(8140), + [sym_file_descriptor] = ACTIONS(1559), + [anon_sym_esac] = ACTIONS(1561), + [anon_sym_PIPE] = ACTIONS(1561), + [anon_sym_SEMI_SEMI] = ACTIONS(1561), + [anon_sym_PIPE_AMP] = ACTIONS(1561), + [anon_sym_AMP_AMP] = ACTIONS(1561), + [anon_sym_PIPE_PIPE] = ACTIONS(1561), + [anon_sym_EQ_TILDE] = ACTIONS(8194), + [anon_sym_EQ_EQ] = ACTIONS(8194), + [anon_sym_LT] = ACTIONS(1561), + [anon_sym_GT] = ACTIONS(1561), + [anon_sym_GT_GT] = ACTIONS(1561), + [anon_sym_AMP_GT] = ACTIONS(1561), + [anon_sym_AMP_GT_GT] = ACTIONS(1561), + [anon_sym_LT_AMP] = ACTIONS(1561), + [anon_sym_GT_AMP] = ACTIONS(1561), + [anon_sym_LT_LT] = ACTIONS(1561), + [anon_sym_LT_LT_DASH] = ACTIONS(1561), + [anon_sym_LT_LT_LT] = ACTIONS(1561), + [sym__special_characters] = ACTIONS(8197), + [anon_sym_DQUOTE] = ACTIONS(8200), + [anon_sym_DOLLAR] = ACTIONS(8203), + [sym_raw_string] = ACTIONS(8206), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8209), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8212), + [anon_sym_BQUOTE] = ACTIONS(8215), + [anon_sym_LT_LPAREN] = ACTIONS(8218), + [anon_sym_GT_LPAREN] = ACTIONS(8218), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(8128), - [anon_sym_SEMI] = ACTIONS(1533), - [anon_sym_LF] = ACTIONS(1533), - [anon_sym_AMP] = ACTIONS(1533), + [sym_word] = ACTIONS(8206), + [anon_sym_SEMI] = ACTIONS(1561), + [anon_sym_LF] = ACTIONS(1561), + [anon_sym_AMP] = ACTIONS(1561), }, [3774] = { - [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(8143), - [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(8145), - [anon_sym_DQUOTE] = ACTIONS(8147), - [anon_sym_DOLLAR] = ACTIONS(8149), - [sym_raw_string] = ACTIONS(8147), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(8147), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(8147), - [anon_sym_BQUOTE] = ACTIONS(8147), - [anon_sym_LT_LPAREN] = ACTIONS(8147), - [anon_sym_GT_LPAREN] = ACTIONS(8147), + [sym_file_descriptor] = ACTIONS(1100), + [sym_variable_name] = ACTIONS(1100), + [anon_sym_for] = ACTIONS(1102), + [anon_sym_while] = ACTIONS(1102), + [anon_sym_if] = ACTIONS(1102), + [anon_sym_case] = ACTIONS(1102), + [anon_sym_esac] = ACTIONS(8221), + [anon_sym_SEMI_SEMI] = ACTIONS(1100), + [anon_sym_function] = ACTIONS(1102), + [anon_sym_LPAREN] = ACTIONS(1100), + [anon_sym_LBRACK] = ACTIONS(1102), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1100), + [anon_sym_declare] = ACTIONS(1102), + [anon_sym_typeset] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(1102), + [anon_sym_readonly] = ACTIONS(1102), + [anon_sym_local] = ACTIONS(1102), + [anon_sym_unset] = ACTIONS(1102), + [anon_sym_unsetenv] = ACTIONS(1102), + [anon_sym_LT] = ACTIONS(1102), + [anon_sym_GT] = ACTIONS(1102), + [anon_sym_GT_GT] = ACTIONS(1100), + [anon_sym_AMP_GT] = ACTIONS(1102), + [anon_sym_AMP_GT_GT] = ACTIONS(1100), + [anon_sym_LT_AMP] = ACTIONS(1100), + [anon_sym_GT_AMP] = ACTIONS(1100), + [sym__special_characters] = ACTIONS(8223), + [anon_sym_DQUOTE] = ACTIONS(8225), + [anon_sym_DOLLAR] = ACTIONS(8227), + [sym_raw_string] = ACTIONS(8225), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8225), + [anon_sym_BQUOTE] = ACTIONS(8225), + [anon_sym_LT_LPAREN] = ACTIONS(8225), + [anon_sym_GT_LPAREN] = ACTIONS(8225), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(8145), + [sym_word] = ACTIONS(8223), }, [3775] = { - [anon_sym_PIPE] = ACTIONS(344), - [anon_sym_SEMI_SEMI] = ACTIONS(6591), - [anon_sym_PIPE_AMP] = ACTIONS(344), - [anon_sym_AMP_AMP] = ACTIONS(348), - [anon_sym_PIPE_PIPE] = ACTIONS(348), + [anon_sym_PIPE] = ACTIONS(346), + [anon_sym_SEMI_SEMI] = ACTIONS(6661), + [anon_sym_PIPE_AMP] = ACTIONS(346), + [anon_sym_AMP_AMP] = ACTIONS(350), + [anon_sym_PIPE_PIPE] = ACTIONS(350), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6591), - [anon_sym_LF] = ACTIONS(6591), - [anon_sym_AMP] = ACTIONS(6591), + [anon_sym_SEMI] = ACTIONS(6661), + [anon_sym_LF] = ACTIONS(6661), + [anon_sym_AMP] = ACTIONS(6661), }, [3776] = { - [sym_file_descriptor] = ACTIONS(378), - [sym_variable_name] = ACTIONS(378), - [anon_sym_PIPE] = ACTIONS(344), - [anon_sym_SEMI_SEMI] = ACTIONS(6591), - [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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(346), + [anon_sym_SEMI_SEMI] = ACTIONS(6661), + [anon_sym_PIPE_AMP] = ACTIONS(346), + [anon_sym_AMP_AMP] = ACTIONS(350), + [anon_sym_PIPE_PIPE] = ACTIONS(350), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(382), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(382), + [anon_sym_LT_AMP] = ACTIONS(382), + [anon_sym_GT_AMP] = ACTIONS(382), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(382), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(382), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(382), + [anon_sym_BQUOTE] = ACTIONS(382), + [anon_sym_LT_LPAREN] = ACTIONS(382), + [anon_sym_GT_LPAREN] = ACTIONS(382), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(380), - [anon_sym_SEMI] = ACTIONS(6591), - [anon_sym_LF] = ACTIONS(6591), - [anon_sym_AMP] = ACTIONS(6591), + [sym_word] = ACTIONS(382), + [anon_sym_SEMI] = ACTIONS(6661), + [anon_sym_LF] = ACTIONS(6661), + [anon_sym_AMP] = ACTIONS(6661), }, [3777] = { [sym_file_redirect] = STATE(207), @@ -93978,208 +94366,209 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_process_substitution] = STATE(3285), [aux_sym_while_statement_repeat1] = STATE(4108), [aux_sym_command_repeat2] = STATE(3773), - [sym_file_descriptor] = ACTIONS(6593), - [anon_sym_esac] = ACTIONS(2434), - [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(6595), - [anon_sym_LT] = ACTIONS(6597), - [anon_sym_GT] = ACTIONS(6597), - [anon_sym_GT_GT] = ACTIONS(6597), - [anon_sym_AMP_GT] = ACTIONS(6597), - [anon_sym_AMP_GT_GT] = ACTIONS(6597), - [anon_sym_LT_AMP] = ACTIONS(6597), - [anon_sym_GT_AMP] = ACTIONS(6597), - [anon_sym_LT_LT] = ACTIONS(358), - [anon_sym_LT_LT_DASH] = ACTIONS(358), - [anon_sym_LT_LT_LT] = ACTIONS(6599), - [sym__special_characters] = ACTIONS(6601), - [anon_sym_DQUOTE] = ACTIONS(6603), - [anon_sym_DOLLAR] = ACTIONS(6605), - [sym_raw_string] = ACTIONS(6607), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6609), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6611), - [anon_sym_BQUOTE] = ACTIONS(6613), - [anon_sym_LT_LPAREN] = ACTIONS(6615), - [anon_sym_GT_LPAREN] = ACTIONS(6615), + [sym_file_descriptor] = ACTIONS(6663), + [anon_sym_esac] = ACTIONS(2474), + [anon_sym_PIPE] = ACTIONS(2474), + [anon_sym_SEMI_SEMI] = ACTIONS(2474), + [anon_sym_PIPE_AMP] = ACTIONS(2474), + [anon_sym_AMP_AMP] = ACTIONS(2474), + [anon_sym_PIPE_PIPE] = ACTIONS(2474), + [anon_sym_EQ_TILDE] = ACTIONS(6665), + [anon_sym_EQ_EQ] = ACTIONS(6665), + [anon_sym_LT] = ACTIONS(6667), + [anon_sym_GT] = ACTIONS(6667), + [anon_sym_GT_GT] = ACTIONS(6667), + [anon_sym_AMP_GT] = ACTIONS(6667), + [anon_sym_AMP_GT_GT] = ACTIONS(6667), + [anon_sym_LT_AMP] = ACTIONS(6667), + [anon_sym_GT_AMP] = ACTIONS(6667), + [anon_sym_LT_LT] = ACTIONS(360), + [anon_sym_LT_LT_DASH] = ACTIONS(360), + [anon_sym_LT_LT_LT] = ACTIONS(6669), + [sym__special_characters] = ACTIONS(6671), + [anon_sym_DQUOTE] = ACTIONS(6673), + [anon_sym_DOLLAR] = ACTIONS(6675), + [sym_raw_string] = ACTIONS(6677), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6679), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6681), + [anon_sym_BQUOTE] = ACTIONS(6683), + [anon_sym_LT_LPAREN] = ACTIONS(6685), + [anon_sym_GT_LPAREN] = ACTIONS(6685), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6607), - [anon_sym_SEMI] = ACTIONS(2434), - [anon_sym_LF] = ACTIONS(2434), - [anon_sym_AMP] = ACTIONS(2434), + [sym_word] = ACTIONS(6677), + [anon_sym_SEMI] = ACTIONS(2474), + [anon_sym_LF] = ACTIONS(2474), + [anon_sym_AMP] = ACTIONS(2474), }, [3778] = { - [anon_sym_esac] = ACTIONS(8143), - [sym__special_characters] = ACTIONS(8149), - [anon_sym_DQUOTE] = ACTIONS(8147), - [anon_sym_DOLLAR] = ACTIONS(8149), - [sym_raw_string] = ACTIONS(8147), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(8147), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(8147), - [anon_sym_BQUOTE] = ACTIONS(8147), - [anon_sym_LT_LPAREN] = ACTIONS(8147), - [anon_sym_GT_LPAREN] = ACTIONS(8147), + [anon_sym_esac] = ACTIONS(8221), + [sym__special_characters] = ACTIONS(8227), + [anon_sym_DQUOTE] = ACTIONS(8225), + [anon_sym_DOLLAR] = ACTIONS(8227), + [sym_raw_string] = ACTIONS(8225), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8225), + [anon_sym_BQUOTE] = ACTIONS(8225), + [anon_sym_LT_LPAREN] = ACTIONS(8225), + [anon_sym_GT_LPAREN] = ACTIONS(8225), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(8145), + [sym_word] = ACTIONS(8223), }, [3779] = { - [anon_sym_esac] = ACTIONS(8151), - [anon_sym_PIPE] = ACTIONS(6585), - [anon_sym_SEMI_SEMI] = ACTIONS(8153), - [anon_sym_PIPE_AMP] = ACTIONS(6585), - [anon_sym_AMP_AMP] = ACTIONS(6589), - [anon_sym_PIPE_PIPE] = ACTIONS(6589), + [anon_sym_esac] = ACTIONS(8229), + [anon_sym_PIPE] = ACTIONS(6655), + [anon_sym_SEMI_SEMI] = ACTIONS(8231), + [anon_sym_PIPE_AMP] = ACTIONS(6655), + [anon_sym_AMP_AMP] = ACTIONS(6659), + [anon_sym_PIPE_PIPE] = ACTIONS(6659), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6591), - [anon_sym_LF] = ACTIONS(6591), - [anon_sym_AMP] = ACTIONS(6591), + [anon_sym_SEMI] = ACTIONS(6661), + [anon_sym_LF] = ACTIONS(6661), + [anon_sym_AMP] = ACTIONS(6661), }, [3780] = { - [sym_file_descriptor] = ACTIONS(378), - [sym_variable_name] = ACTIONS(378), - [anon_sym_esac] = ACTIONS(8151), - [anon_sym_PIPE] = ACTIONS(6585), - [anon_sym_SEMI_SEMI] = ACTIONS(8153), - [anon_sym_PIPE_AMP] = ACTIONS(6585), - [anon_sym_AMP_AMP] = ACTIONS(6589), - [anon_sym_PIPE_PIPE] = ACTIONS(6589), - [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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_esac] = ACTIONS(8229), + [anon_sym_PIPE] = ACTIONS(6655), + [anon_sym_SEMI_SEMI] = ACTIONS(8231), + [anon_sym_PIPE_AMP] = ACTIONS(6655), + [anon_sym_AMP_AMP] = ACTIONS(6659), + [anon_sym_PIPE_PIPE] = ACTIONS(6659), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(382), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(382), + [anon_sym_LT_AMP] = ACTIONS(382), + [anon_sym_GT_AMP] = ACTIONS(382), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(382), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(382), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(382), + [anon_sym_BQUOTE] = ACTIONS(382), + [anon_sym_LT_LPAREN] = ACTIONS(382), + [anon_sym_GT_LPAREN] = ACTIONS(382), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(380), - [anon_sym_SEMI] = ACTIONS(6591), - [anon_sym_LF] = ACTIONS(6591), - [anon_sym_AMP] = ACTIONS(6591), + [sym_word] = ACTIONS(382), + [anon_sym_SEMI] = ACTIONS(6661), + [anon_sym_LF] = ACTIONS(6661), + [anon_sym_AMP] = ACTIONS(6661), }, [3781] = { - [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(8155), - [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(8157), - [anon_sym_DQUOTE] = ACTIONS(8159), - [anon_sym_DOLLAR] = ACTIONS(8161), - [sym_raw_string] = ACTIONS(8159), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(8159), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(8159), - [anon_sym_BQUOTE] = ACTIONS(8159), - [anon_sym_LT_LPAREN] = ACTIONS(8159), - [anon_sym_GT_LPAREN] = ACTIONS(8159), + [sym_file_descriptor] = ACTIONS(1100), + [sym_variable_name] = ACTIONS(1100), + [anon_sym_for] = ACTIONS(1102), + [anon_sym_while] = ACTIONS(1102), + [anon_sym_if] = ACTIONS(1102), + [anon_sym_case] = ACTIONS(1102), + [anon_sym_esac] = ACTIONS(8233), + [anon_sym_SEMI_SEMI] = ACTIONS(1100), + [anon_sym_function] = ACTIONS(1102), + [anon_sym_LPAREN] = ACTIONS(1100), + [anon_sym_LBRACK] = ACTIONS(1102), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1100), + [anon_sym_declare] = ACTIONS(1102), + [anon_sym_typeset] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(1102), + [anon_sym_readonly] = ACTIONS(1102), + [anon_sym_local] = ACTIONS(1102), + [anon_sym_unset] = ACTIONS(1102), + [anon_sym_unsetenv] = ACTIONS(1102), + [anon_sym_LT] = ACTIONS(1102), + [anon_sym_GT] = ACTIONS(1102), + [anon_sym_GT_GT] = ACTIONS(1100), + [anon_sym_AMP_GT] = ACTIONS(1102), + [anon_sym_AMP_GT_GT] = ACTIONS(1100), + [anon_sym_LT_AMP] = ACTIONS(1100), + [anon_sym_GT_AMP] = ACTIONS(1100), + [sym__special_characters] = ACTIONS(8235), + [anon_sym_DQUOTE] = ACTIONS(8237), + [anon_sym_DOLLAR] = ACTIONS(8239), + [sym_raw_string] = ACTIONS(8237), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8237), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8237), + [anon_sym_BQUOTE] = ACTIONS(8237), + [anon_sym_LT_LPAREN] = ACTIONS(8237), + [anon_sym_GT_LPAREN] = ACTIONS(8237), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(8157), + [sym_word] = ACTIONS(8235), }, [3782] = { - [anon_sym_esac] = ACTIONS(8155), - [sym__special_characters] = ACTIONS(8161), - [anon_sym_DQUOTE] = ACTIONS(8159), - [anon_sym_DOLLAR] = ACTIONS(8161), - [sym_raw_string] = ACTIONS(8159), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(8159), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(8159), - [anon_sym_BQUOTE] = ACTIONS(8159), - [anon_sym_LT_LPAREN] = ACTIONS(8159), - [anon_sym_GT_LPAREN] = ACTIONS(8159), + [anon_sym_esac] = ACTIONS(8233), + [sym__special_characters] = ACTIONS(8239), + [anon_sym_DQUOTE] = ACTIONS(8237), + [anon_sym_DOLLAR] = ACTIONS(8239), + [sym_raw_string] = ACTIONS(8237), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8237), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8237), + [anon_sym_BQUOTE] = ACTIONS(8237), + [anon_sym_LT_LPAREN] = ACTIONS(8237), + [anon_sym_GT_LPAREN] = ACTIONS(8237), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(8157), + [sym_word] = ACTIONS(8235), }, [3783] = { - [anon_sym_esac] = ACTIONS(8163), - [anon_sym_PIPE] = ACTIONS(6585), - [anon_sym_SEMI_SEMI] = ACTIONS(8165), - [anon_sym_PIPE_AMP] = ACTIONS(6585), - [anon_sym_AMP_AMP] = ACTIONS(6589), - [anon_sym_PIPE_PIPE] = ACTIONS(6589), + [anon_sym_esac] = ACTIONS(8241), + [anon_sym_PIPE] = ACTIONS(6655), + [anon_sym_SEMI_SEMI] = ACTIONS(8243), + [anon_sym_PIPE_AMP] = ACTIONS(6655), + [anon_sym_AMP_AMP] = ACTIONS(6659), + [anon_sym_PIPE_PIPE] = ACTIONS(6659), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6591), - [anon_sym_LF] = ACTIONS(6591), - [anon_sym_AMP] = ACTIONS(6591), + [anon_sym_SEMI] = ACTIONS(6661), + [anon_sym_LF] = ACTIONS(6661), + [anon_sym_AMP] = ACTIONS(6661), }, [3784] = { - [sym_file_descriptor] = ACTIONS(378), - [sym_variable_name] = ACTIONS(378), - [anon_sym_esac] = ACTIONS(8163), - [anon_sym_PIPE] = ACTIONS(6585), - [anon_sym_SEMI_SEMI] = ACTIONS(8165), - [anon_sym_PIPE_AMP] = ACTIONS(6585), - [anon_sym_AMP_AMP] = ACTIONS(6589), - [anon_sym_PIPE_PIPE] = ACTIONS(6589), - [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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_esac] = ACTIONS(8241), + [anon_sym_PIPE] = ACTIONS(6655), + [anon_sym_SEMI_SEMI] = ACTIONS(8243), + [anon_sym_PIPE_AMP] = ACTIONS(6655), + [anon_sym_AMP_AMP] = ACTIONS(6659), + [anon_sym_PIPE_PIPE] = ACTIONS(6659), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(382), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(382), + [anon_sym_LT_AMP] = ACTIONS(382), + [anon_sym_GT_AMP] = ACTIONS(382), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(382), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(382), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(382), + [anon_sym_BQUOTE] = ACTIONS(382), + [anon_sym_LT_LPAREN] = ACTIONS(382), + [anon_sym_GT_LPAREN] = ACTIONS(382), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(380), - [anon_sym_SEMI] = ACTIONS(6591), - [anon_sym_LF] = ACTIONS(6591), - [anon_sym_AMP] = ACTIONS(6591), + [sym_word] = ACTIONS(382), + [anon_sym_SEMI] = ACTIONS(6661), + [anon_sym_LF] = ACTIONS(6661), + [anon_sym_AMP] = ACTIONS(6661), }, [3785] = { - [sym__concat] = ACTIONS(4728), - [anon_sym_PIPE] = ACTIONS(4728), - [anon_sym_RPAREN] = ACTIONS(4728), + [sym__concat] = ACTIONS(4790), + [anon_sym_PIPE] = ACTIONS(4790), + [anon_sym_RPAREN] = ACTIONS(4790), [sym_comment] = ACTIONS(56), }, [3786] = { - [sym__concat] = ACTIONS(4734), - [anon_sym_PIPE] = ACTIONS(4734), - [anon_sym_RPAREN] = ACTIONS(4734), + [sym__concat] = ACTIONS(4796), + [anon_sym_PIPE] = ACTIONS(4796), + [anon_sym_RPAREN] = ACTIONS(4796), [sym_comment] = ACTIONS(56), }, [3787] = { - [sym__concat] = ACTIONS(4797), - [anon_sym_PIPE] = ACTIONS(4797), - [anon_sym_RPAREN] = ACTIONS(4797), + [sym__concat] = ACTIONS(4859), + [anon_sym_PIPE] = ACTIONS(4859), + [anon_sym_RPAREN] = ACTIONS(4859), [sym_comment] = ACTIONS(56), }, [3788] = { @@ -94191,40 +94580,40 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8167), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8245), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3789] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(8169), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(8247), [sym_comment] = ACTIONS(56), }, [3790] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(8171), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(8249), [sym_comment] = ACTIONS(56), }, [3791] = { - [anon_sym_RBRACE] = ACTIONS(8171), + [anon_sym_RBRACE] = ACTIONS(8249), [sym_comment] = ACTIONS(56), }, [3792] = { @@ -94236,30 +94625,30 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(4115), - [anon_sym_RBRACE] = ACTIONS(8173), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8251), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3793] = { - [sym__concat] = ACTIONS(4809), - [anon_sym_PIPE] = ACTIONS(4809), - [anon_sym_RPAREN] = ACTIONS(4809), + [sym__concat] = ACTIONS(4871), + [anon_sym_PIPE] = ACTIONS(4871), + [anon_sym_RPAREN] = ACTIONS(4871), [sym_comment] = ACTIONS(56), }, [3794] = { @@ -94271,30 +94660,30 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(4117), - [anon_sym_RBRACE] = ACTIONS(8175), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8253), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3795] = { - [sym__concat] = ACTIONS(4815), - [anon_sym_PIPE] = ACTIONS(4815), - [anon_sym_RPAREN] = ACTIONS(4815), + [sym__concat] = ACTIONS(4877), + [anon_sym_PIPE] = ACTIONS(4877), + [anon_sym_RPAREN] = ACTIONS(4877), [sym_comment] = ACTIONS(56), }, [3796] = { @@ -94306,30 +94695,30 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(4119), - [anon_sym_RBRACE] = ACTIONS(8177), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8255), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3797] = { - [sym__concat] = ACTIONS(4821), - [anon_sym_PIPE] = ACTIONS(4821), - [anon_sym_RPAREN] = ACTIONS(4821), + [sym__concat] = ACTIONS(4883), + [anon_sym_PIPE] = ACTIONS(4883), + [anon_sym_RPAREN] = ACTIONS(4883), [sym_comment] = ACTIONS(56), }, [3798] = { @@ -94341,30 +94730,30 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8179), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8257), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3799] = { - [sym__concat] = ACTIONS(4827), - [anon_sym_PIPE] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(4827), + [sym__concat] = ACTIONS(4889), + [anon_sym_PIPE] = ACTIONS(4889), + [anon_sym_RPAREN] = ACTIONS(4889), [sym_comment] = ACTIONS(56), }, [3800] = { @@ -94376,79 +94765,79 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8181), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8259), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3801] = { - [sym__special_characters] = ACTIONS(6515), - [anon_sym_DQUOTE] = ACTIONS(6517), - [anon_sym_DOLLAR] = ACTIONS(6515), - [sym_raw_string] = ACTIONS(6517), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6517), - [anon_sym_BQUOTE] = ACTIONS(6517), - [anon_sym_LT_LPAREN] = ACTIONS(6517), - [anon_sym_GT_LPAREN] = ACTIONS(6517), + [sym__special_characters] = ACTIONS(6583), + [anon_sym_DQUOTE] = ACTIONS(6585), + [anon_sym_DOLLAR] = ACTIONS(6583), + [sym_raw_string] = ACTIONS(6585), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6585), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6585), + [anon_sym_BQUOTE] = ACTIONS(6585), + [anon_sym_LT_LPAREN] = ACTIONS(6585), + [anon_sym_GT_LPAREN] = ACTIONS(6585), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6515), + [sym_word] = ACTIONS(6583), }, [3802] = { - [anon_sym_PIPE] = ACTIONS(344), - [anon_sym_SEMI_SEMI] = ACTIONS(8183), - [anon_sym_PIPE_AMP] = ACTIONS(344), - [anon_sym_AMP_AMP] = ACTIONS(348), - [anon_sym_PIPE_PIPE] = ACTIONS(348), + [anon_sym_PIPE] = ACTIONS(346), + [anon_sym_SEMI_SEMI] = ACTIONS(8261), + [anon_sym_PIPE_AMP] = ACTIONS(346), + [anon_sym_AMP_AMP] = ACTIONS(350), + [anon_sym_PIPE_PIPE] = ACTIONS(350), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(346), - [anon_sym_LF] = ACTIONS(346), - [anon_sym_AMP] = ACTIONS(346), + [anon_sym_SEMI] = ACTIONS(348), + [anon_sym_LF] = ACTIONS(348), + [anon_sym_AMP] = ACTIONS(348), }, [3803] = { - [sym_file_descriptor] = ACTIONS(378), - [sym_variable_name] = ACTIONS(378), - [anon_sym_PIPE] = ACTIONS(344), - [anon_sym_SEMI_SEMI] = ACTIONS(8183), - [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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(346), + [anon_sym_SEMI_SEMI] = ACTIONS(8261), + [anon_sym_PIPE_AMP] = ACTIONS(346), + [anon_sym_AMP_AMP] = ACTIONS(350), + [anon_sym_PIPE_PIPE] = ACTIONS(350), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(382), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(382), + [anon_sym_LT_AMP] = ACTIONS(382), + [anon_sym_GT_AMP] = ACTIONS(382), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(382), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(382), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(382), + [anon_sym_BQUOTE] = ACTIONS(382), + [anon_sym_LT_LPAREN] = ACTIONS(382), + [anon_sym_GT_LPAREN] = ACTIONS(382), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(380), - [anon_sym_SEMI] = ACTIONS(346), - [anon_sym_LF] = ACTIONS(346), - [anon_sym_AMP] = ACTIONS(346), + [sym_word] = ACTIONS(382), + [anon_sym_SEMI] = ACTIONS(348), + [anon_sym_LF] = ACTIONS(348), + [anon_sym_AMP] = ACTIONS(348), }, [3804] = { [sym__terminated_statement] = STATE(25), @@ -94483,7 +94872,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(18), [anon_sym_if] = ACTIONS(20), [anon_sym_case] = ACTIONS(22), - [anon_sym_SEMI_SEMI] = ACTIONS(8185), + [anon_sym_SEMI_SEMI] = ACTIONS(8263), [anon_sym_function] = ACTIONS(24), [anon_sym_LPAREN] = ACTIONS(26), [anon_sym_LBRACK] = ACTIONS(28), @@ -94547,7 +94936,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(18), [anon_sym_if] = ACTIONS(20), [anon_sym_case] = ACTIONS(22), - [anon_sym_SEMI_SEMI] = ACTIONS(8185), + [anon_sym_SEMI_SEMI] = ACTIONS(8263), [anon_sym_function] = ACTIONS(24), [anon_sym_LPAREN] = ACTIONS(26), [anon_sym_LBRACK] = ACTIONS(28), @@ -94579,58 +94968,58 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(58), }, [3806] = { - [sym__special_characters] = ACTIONS(6631), - [anon_sym_DQUOTE] = ACTIONS(6633), - [anon_sym_DOLLAR] = ACTIONS(6631), - [sym_raw_string] = ACTIONS(6633), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6633), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6633), - [anon_sym_BQUOTE] = ACTIONS(6633), - [anon_sym_LT_LPAREN] = ACTIONS(6633), - [anon_sym_GT_LPAREN] = ACTIONS(6633), + [sym__special_characters] = ACTIONS(6701), + [anon_sym_DQUOTE] = ACTIONS(6703), + [anon_sym_DOLLAR] = ACTIONS(6701), + [sym_raw_string] = ACTIONS(6703), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6703), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6703), + [anon_sym_BQUOTE] = ACTIONS(6703), + [anon_sym_LT_LPAREN] = ACTIONS(6703), + [anon_sym_GT_LPAREN] = ACTIONS(6703), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6631), + [sym_word] = ACTIONS(6701), }, [3807] = { - [anon_sym_PIPE] = ACTIONS(344), - [anon_sym_SEMI_SEMI] = ACTIONS(8187), - [anon_sym_PIPE_AMP] = ACTIONS(344), - [anon_sym_AMP_AMP] = ACTIONS(348), - [anon_sym_PIPE_PIPE] = ACTIONS(348), + [anon_sym_PIPE] = ACTIONS(346), + [anon_sym_SEMI_SEMI] = ACTIONS(8265), + [anon_sym_PIPE_AMP] = ACTIONS(346), + [anon_sym_AMP_AMP] = ACTIONS(350), + [anon_sym_PIPE_PIPE] = ACTIONS(350), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(346), - [anon_sym_LF] = ACTIONS(346), - [anon_sym_AMP] = ACTIONS(346), + [anon_sym_SEMI] = ACTIONS(348), + [anon_sym_LF] = ACTIONS(348), + [anon_sym_AMP] = ACTIONS(348), }, [3808] = { - [sym_file_descriptor] = ACTIONS(378), - [sym_variable_name] = ACTIONS(378), - [anon_sym_PIPE] = ACTIONS(344), - [anon_sym_SEMI_SEMI] = ACTIONS(8187), - [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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(346), + [anon_sym_SEMI_SEMI] = ACTIONS(8265), + [anon_sym_PIPE_AMP] = ACTIONS(346), + [anon_sym_AMP_AMP] = ACTIONS(350), + [anon_sym_PIPE_PIPE] = ACTIONS(350), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(382), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(382), + [anon_sym_LT_AMP] = ACTIONS(382), + [anon_sym_GT_AMP] = ACTIONS(382), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(382), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(382), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(382), + [anon_sym_BQUOTE] = ACTIONS(382), + [anon_sym_LT_LPAREN] = ACTIONS(382), + [anon_sym_GT_LPAREN] = ACTIONS(382), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(380), - [anon_sym_SEMI] = ACTIONS(346), - [anon_sym_LF] = ACTIONS(346), - [anon_sym_AMP] = ACTIONS(346), + [sym_word] = ACTIONS(382), + [anon_sym_SEMI] = ACTIONS(348), + [anon_sym_LF] = ACTIONS(348), + [anon_sym_AMP] = ACTIONS(348), }, [3809] = { [sym__terminated_statement] = STATE(25), @@ -94665,7 +95054,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(18), [anon_sym_if] = ACTIONS(20), [anon_sym_case] = ACTIONS(22), - [anon_sym_SEMI_SEMI] = ACTIONS(8189), + [anon_sym_SEMI_SEMI] = ACTIONS(8267), [anon_sym_function] = ACTIONS(24), [anon_sym_LPAREN] = ACTIONS(26), [anon_sym_LBRACK] = ACTIONS(28), @@ -94729,7 +95118,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(18), [anon_sym_if] = ACTIONS(20), [anon_sym_case] = ACTIONS(22), - [anon_sym_SEMI_SEMI] = ACTIONS(8189), + [anon_sym_SEMI_SEMI] = ACTIONS(8267), [anon_sym_function] = ACTIONS(24), [anon_sym_LPAREN] = ACTIONS(26), [anon_sym_LBRACK] = ACTIONS(28), @@ -94761,40 +95150,40 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(58), }, [3811] = { - [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__concat] = ACTIONS(4790), + [anon_sym_PIPE] = ACTIONS(4792), + [anon_sym_SEMI_SEMI] = ACTIONS(4792), + [anon_sym_PIPE_AMP] = ACTIONS(4792), + [anon_sym_AMP_AMP] = ACTIONS(4792), + [anon_sym_PIPE_PIPE] = ACTIONS(4792), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4730), - [anon_sym_LF] = ACTIONS(4730), - [anon_sym_AMP] = ACTIONS(4730), + [anon_sym_SEMI] = ACTIONS(4792), + [anon_sym_LF] = ACTIONS(4792), + [anon_sym_AMP] = ACTIONS(4792), }, [3812] = { - [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__concat] = ACTIONS(4796), + [anon_sym_PIPE] = ACTIONS(4798), + [anon_sym_SEMI_SEMI] = ACTIONS(4798), + [anon_sym_PIPE_AMP] = ACTIONS(4798), + [anon_sym_AMP_AMP] = ACTIONS(4798), + [anon_sym_PIPE_PIPE] = ACTIONS(4798), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4736), - [anon_sym_LF] = ACTIONS(4736), - [anon_sym_AMP] = ACTIONS(4736), + [anon_sym_SEMI] = ACTIONS(4798), + [anon_sym_LF] = ACTIONS(4798), + [anon_sym_AMP] = ACTIONS(4798), }, [3813] = { - [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__concat] = ACTIONS(4859), + [anon_sym_PIPE] = ACTIONS(4861), + [anon_sym_SEMI_SEMI] = ACTIONS(4861), + [anon_sym_PIPE_AMP] = ACTIONS(4861), + [anon_sym_AMP_AMP] = ACTIONS(4861), + [anon_sym_PIPE_PIPE] = ACTIONS(4861), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4799), - [anon_sym_LF] = ACTIONS(4799), - [anon_sym_AMP] = ACTIONS(4799), + [anon_sym_SEMI] = ACTIONS(4861), + [anon_sym_LF] = ACTIONS(4861), + [anon_sym_AMP] = ACTIONS(4861), }, [3814] = { [sym_concatenation] = STATE(451), @@ -94805,40 +95194,40 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8191), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8269), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3815] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(8193), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(8271), [sym_comment] = ACTIONS(56), }, [3816] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(8195), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(8273), [sym_comment] = ACTIONS(56), }, [3817] = { - [anon_sym_RBRACE] = ACTIONS(8195), + [anon_sym_RBRACE] = ACTIONS(8273), [sym_comment] = ACTIONS(56), }, [3818] = { @@ -94850,37 +95239,37 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(4137), - [anon_sym_RBRACE] = ACTIONS(8197), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8275), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3819] = { - [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__concat] = ACTIONS(4871), + [anon_sym_PIPE] = ACTIONS(4873), + [anon_sym_SEMI_SEMI] = ACTIONS(4873), + [anon_sym_PIPE_AMP] = ACTIONS(4873), + [anon_sym_AMP_AMP] = ACTIONS(4873), + [anon_sym_PIPE_PIPE] = ACTIONS(4873), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4811), - [anon_sym_LF] = ACTIONS(4811), - [anon_sym_AMP] = ACTIONS(4811), + [anon_sym_SEMI] = ACTIONS(4873), + [anon_sym_LF] = ACTIONS(4873), + [anon_sym_AMP] = ACTIONS(4873), }, [3820] = { [sym_concatenation] = STATE(451), @@ -94891,37 +95280,37 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(4139), - [anon_sym_RBRACE] = ACTIONS(8199), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8277), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3821] = { - [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__concat] = ACTIONS(4877), + [anon_sym_PIPE] = ACTIONS(4879), + [anon_sym_SEMI_SEMI] = ACTIONS(4879), + [anon_sym_PIPE_AMP] = ACTIONS(4879), + [anon_sym_AMP_AMP] = ACTIONS(4879), + [anon_sym_PIPE_PIPE] = ACTIONS(4879), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4817), - [anon_sym_LF] = ACTIONS(4817), - [anon_sym_AMP] = ACTIONS(4817), + [anon_sym_SEMI] = ACTIONS(4879), + [anon_sym_LF] = ACTIONS(4879), + [anon_sym_AMP] = ACTIONS(4879), }, [3822] = { [sym_concatenation] = STATE(451), @@ -94932,37 +95321,37 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(4141), - [anon_sym_RBRACE] = ACTIONS(8201), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8279), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3823] = { - [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__concat] = ACTIONS(4883), + [anon_sym_PIPE] = ACTIONS(4885), + [anon_sym_SEMI_SEMI] = ACTIONS(4885), + [anon_sym_PIPE_AMP] = ACTIONS(4885), + [anon_sym_AMP_AMP] = ACTIONS(4885), + [anon_sym_PIPE_PIPE] = ACTIONS(4885), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4823), - [anon_sym_LF] = ACTIONS(4823), - [anon_sym_AMP] = ACTIONS(4823), + [anon_sym_SEMI] = ACTIONS(4885), + [anon_sym_LF] = ACTIONS(4885), + [anon_sym_AMP] = ACTIONS(4885), }, [3824] = { [sym_concatenation] = STATE(451), @@ -94973,37 +95362,37 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8203), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8281), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3825] = { - [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__concat] = ACTIONS(4889), + [anon_sym_PIPE] = ACTIONS(4891), + [anon_sym_SEMI_SEMI] = ACTIONS(4891), + [anon_sym_PIPE_AMP] = ACTIONS(4891), + [anon_sym_AMP_AMP] = ACTIONS(4891), + [anon_sym_PIPE_PIPE] = ACTIONS(4891), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4829), - [anon_sym_LF] = ACTIONS(4829), - [anon_sym_AMP] = ACTIONS(4829), + [anon_sym_SEMI] = ACTIONS(4891), + [anon_sym_LF] = ACTIONS(4891), + [anon_sym_AMP] = ACTIONS(4891), }, [3826] = { [sym_concatenation] = STATE(451), @@ -95014,153 +95403,153 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8205), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8283), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3827] = { - [sym_file_descriptor] = ACTIONS(5961), - [sym__concat] = ACTIONS(5961), - [sym_variable_name] = ACTIONS(5961), - [anon_sym_PIPE] = ACTIONS(5963), - [anon_sym_RPAREN] = ACTIONS(5963), - [anon_sym_SEMI_SEMI] = ACTIONS(5963), - [anon_sym_PIPE_AMP] = ACTIONS(5963), - [anon_sym_AMP_AMP] = ACTIONS(5963), - [anon_sym_PIPE_PIPE] = ACTIONS(5963), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_GT] = ACTIONS(5963), - [anon_sym_GT_GT] = ACTIONS(5963), - [anon_sym_AMP_GT] = ACTIONS(5963), - [anon_sym_AMP_GT_GT] = ACTIONS(5963), - [anon_sym_LT_AMP] = ACTIONS(5963), - [anon_sym_GT_AMP] = ACTIONS(5963), - [sym__special_characters] = ACTIONS(5963), - [anon_sym_DQUOTE] = ACTIONS(5963), - [anon_sym_DOLLAR] = ACTIONS(5963), - [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_file_descriptor] = ACTIONS(6025), + [sym__concat] = ACTIONS(6025), + [sym_variable_name] = ACTIONS(6025), + [anon_sym_PIPE] = ACTIONS(6027), + [anon_sym_RPAREN] = ACTIONS(6027), + [anon_sym_SEMI_SEMI] = ACTIONS(6027), + [anon_sym_PIPE_AMP] = ACTIONS(6027), + [anon_sym_AMP_AMP] = ACTIONS(6027), + [anon_sym_PIPE_PIPE] = ACTIONS(6027), + [anon_sym_LT] = ACTIONS(6027), + [anon_sym_GT] = ACTIONS(6027), + [anon_sym_GT_GT] = ACTIONS(6027), + [anon_sym_AMP_GT] = ACTIONS(6027), + [anon_sym_AMP_GT_GT] = ACTIONS(6027), + [anon_sym_LT_AMP] = ACTIONS(6027), + [anon_sym_GT_AMP] = ACTIONS(6027), + [sym__special_characters] = ACTIONS(6027), + [anon_sym_DQUOTE] = ACTIONS(6027), + [anon_sym_DOLLAR] = ACTIONS(6027), + [sym_raw_string] = ACTIONS(6027), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6027), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6027), + [anon_sym_BQUOTE] = ACTIONS(6027), + [anon_sym_LT_LPAREN] = ACTIONS(6027), + [anon_sym_GT_LPAREN] = ACTIONS(6027), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(5963), - [anon_sym_SEMI] = ACTIONS(5963), - [anon_sym_LF] = ACTIONS(5963), - [anon_sym_AMP] = ACTIONS(5963), + [sym_word] = ACTIONS(6027), + [anon_sym_SEMI] = ACTIONS(6027), + [anon_sym_LF] = ACTIONS(6027), + [anon_sym_AMP] = ACTIONS(6027), }, [3828] = { - [sym_file_descriptor] = ACTIONS(5965), - [sym__concat] = ACTIONS(5965), - [sym_variable_name] = ACTIONS(5965), - [anon_sym_PIPE] = ACTIONS(5967), - [anon_sym_RPAREN] = ACTIONS(5967), - [anon_sym_SEMI_SEMI] = ACTIONS(5967), - [anon_sym_PIPE_AMP] = ACTIONS(5967), - [anon_sym_AMP_AMP] = ACTIONS(5967), - [anon_sym_PIPE_PIPE] = ACTIONS(5967), - [anon_sym_LT] = ACTIONS(5967), - [anon_sym_GT] = ACTIONS(5967), - [anon_sym_GT_GT] = ACTIONS(5967), - [anon_sym_AMP_GT] = ACTIONS(5967), - [anon_sym_AMP_GT_GT] = ACTIONS(5967), - [anon_sym_LT_AMP] = ACTIONS(5967), - [anon_sym_GT_AMP] = ACTIONS(5967), - [sym__special_characters] = ACTIONS(5967), - [anon_sym_DQUOTE] = ACTIONS(5967), - [anon_sym_DOLLAR] = ACTIONS(5967), - [sym_raw_string] = ACTIONS(5967), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5967), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5967), - [anon_sym_BQUOTE] = ACTIONS(5967), - [anon_sym_LT_LPAREN] = ACTIONS(5967), - [anon_sym_GT_LPAREN] = ACTIONS(5967), + [sym_file_descriptor] = ACTIONS(6029), + [sym__concat] = ACTIONS(6029), + [sym_variable_name] = ACTIONS(6029), + [anon_sym_PIPE] = ACTIONS(6031), + [anon_sym_RPAREN] = ACTIONS(6031), + [anon_sym_SEMI_SEMI] = ACTIONS(6031), + [anon_sym_PIPE_AMP] = ACTIONS(6031), + [anon_sym_AMP_AMP] = ACTIONS(6031), + [anon_sym_PIPE_PIPE] = ACTIONS(6031), + [anon_sym_LT] = ACTIONS(6031), + [anon_sym_GT] = ACTIONS(6031), + [anon_sym_GT_GT] = ACTIONS(6031), + [anon_sym_AMP_GT] = ACTIONS(6031), + [anon_sym_AMP_GT_GT] = ACTIONS(6031), + [anon_sym_LT_AMP] = ACTIONS(6031), + [anon_sym_GT_AMP] = ACTIONS(6031), + [sym__special_characters] = ACTIONS(6031), + [anon_sym_DQUOTE] = ACTIONS(6031), + [anon_sym_DOLLAR] = ACTIONS(6031), + [sym_raw_string] = ACTIONS(6031), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6031), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6031), + [anon_sym_BQUOTE] = ACTIONS(6031), + [anon_sym_LT_LPAREN] = ACTIONS(6031), + [anon_sym_GT_LPAREN] = ACTIONS(6031), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(5967), - [anon_sym_SEMI] = ACTIONS(5967), - [anon_sym_LF] = ACTIONS(5967), - [anon_sym_AMP] = ACTIONS(5967), + [sym_word] = ACTIONS(6031), + [anon_sym_SEMI] = ACTIONS(6031), + [anon_sym_LF] = ACTIONS(6031), + [anon_sym_AMP] = ACTIONS(6031), }, [3829] = { - [sym_file_descriptor] = ACTIONS(5969), - [sym__concat] = ACTIONS(5969), - [sym_variable_name] = ACTIONS(5969), - [anon_sym_PIPE] = ACTIONS(5971), - [anon_sym_RPAREN] = ACTIONS(5971), - [anon_sym_SEMI_SEMI] = ACTIONS(5971), - [anon_sym_PIPE_AMP] = ACTIONS(5971), - [anon_sym_AMP_AMP] = ACTIONS(5971), - [anon_sym_PIPE_PIPE] = ACTIONS(5971), - [anon_sym_LT] = ACTIONS(5971), - [anon_sym_GT] = ACTIONS(5971), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_AMP_GT] = ACTIONS(5971), - [anon_sym_AMP_GT_GT] = ACTIONS(5971), - [anon_sym_LT_AMP] = ACTIONS(5971), - [anon_sym_GT_AMP] = ACTIONS(5971), - [sym__special_characters] = ACTIONS(5971), - [anon_sym_DQUOTE] = ACTIONS(5971), - [anon_sym_DOLLAR] = ACTIONS(5971), - [sym_raw_string] = ACTIONS(5971), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5971), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5971), - [anon_sym_BQUOTE] = ACTIONS(5971), - [anon_sym_LT_LPAREN] = ACTIONS(5971), - [anon_sym_GT_LPAREN] = ACTIONS(5971), + [sym_file_descriptor] = ACTIONS(6033), + [sym__concat] = ACTIONS(6033), + [sym_variable_name] = ACTIONS(6033), + [anon_sym_PIPE] = ACTIONS(6035), + [anon_sym_RPAREN] = ACTIONS(6035), + [anon_sym_SEMI_SEMI] = ACTIONS(6035), + [anon_sym_PIPE_AMP] = ACTIONS(6035), + [anon_sym_AMP_AMP] = ACTIONS(6035), + [anon_sym_PIPE_PIPE] = ACTIONS(6035), + [anon_sym_LT] = ACTIONS(6035), + [anon_sym_GT] = ACTIONS(6035), + [anon_sym_GT_GT] = ACTIONS(6035), + [anon_sym_AMP_GT] = ACTIONS(6035), + [anon_sym_AMP_GT_GT] = ACTIONS(6035), + [anon_sym_LT_AMP] = ACTIONS(6035), + [anon_sym_GT_AMP] = ACTIONS(6035), + [sym__special_characters] = ACTIONS(6035), + [anon_sym_DQUOTE] = ACTIONS(6035), + [anon_sym_DOLLAR] = ACTIONS(6035), + [sym_raw_string] = ACTIONS(6035), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6035), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6035), + [anon_sym_BQUOTE] = ACTIONS(6035), + [anon_sym_LT_LPAREN] = ACTIONS(6035), + [anon_sym_GT_LPAREN] = ACTIONS(6035), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(5971), - [anon_sym_SEMI] = ACTIONS(5971), - [anon_sym_LF] = ACTIONS(5971), - [anon_sym_AMP] = ACTIONS(5971), + [sym_word] = ACTIONS(6035), + [anon_sym_SEMI] = ACTIONS(6035), + [anon_sym_LF] = ACTIONS(6035), + [anon_sym_AMP] = ACTIONS(6035), }, [3830] = { - [sym_file_descriptor] = ACTIONS(5973), - [sym__concat] = ACTIONS(5973), - [sym_variable_name] = ACTIONS(5973), - [anon_sym_PIPE] = ACTIONS(5975), - [anon_sym_RPAREN] = ACTIONS(5975), - [anon_sym_SEMI_SEMI] = ACTIONS(5975), - [anon_sym_PIPE_AMP] = ACTIONS(5975), - [anon_sym_AMP_AMP] = ACTIONS(5975), - [anon_sym_PIPE_PIPE] = ACTIONS(5975), - [anon_sym_LT] = ACTIONS(5975), - [anon_sym_GT] = ACTIONS(5975), - [anon_sym_GT_GT] = ACTIONS(5975), - [anon_sym_AMP_GT] = ACTIONS(5975), - [anon_sym_AMP_GT_GT] = ACTIONS(5975), - [anon_sym_LT_AMP] = ACTIONS(5975), - [anon_sym_GT_AMP] = ACTIONS(5975), - [sym__special_characters] = ACTIONS(5975), - [anon_sym_DQUOTE] = ACTIONS(5975), - [anon_sym_DOLLAR] = ACTIONS(5975), - [sym_raw_string] = ACTIONS(5975), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5975), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5975), - [anon_sym_BQUOTE] = ACTIONS(5975), - [anon_sym_LT_LPAREN] = ACTIONS(5975), - [anon_sym_GT_LPAREN] = ACTIONS(5975), + [sym_file_descriptor] = ACTIONS(6037), + [sym__concat] = ACTIONS(6037), + [sym_variable_name] = ACTIONS(6037), + [anon_sym_PIPE] = ACTIONS(6039), + [anon_sym_RPAREN] = ACTIONS(6039), + [anon_sym_SEMI_SEMI] = ACTIONS(6039), + [anon_sym_PIPE_AMP] = ACTIONS(6039), + [anon_sym_AMP_AMP] = ACTIONS(6039), + [anon_sym_PIPE_PIPE] = ACTIONS(6039), + [anon_sym_LT] = ACTIONS(6039), + [anon_sym_GT] = ACTIONS(6039), + [anon_sym_GT_GT] = ACTIONS(6039), + [anon_sym_AMP_GT] = ACTIONS(6039), + [anon_sym_AMP_GT_GT] = ACTIONS(6039), + [anon_sym_LT_AMP] = ACTIONS(6039), + [anon_sym_GT_AMP] = ACTIONS(6039), + [sym__special_characters] = ACTIONS(6039), + [anon_sym_DQUOTE] = ACTIONS(6039), + [anon_sym_DOLLAR] = ACTIONS(6039), + [sym_raw_string] = ACTIONS(6039), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6039), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6039), + [anon_sym_BQUOTE] = ACTIONS(6039), + [anon_sym_LT_LPAREN] = ACTIONS(6039), + [anon_sym_GT_LPAREN] = ACTIONS(6039), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(5975), - [anon_sym_SEMI] = ACTIONS(5975), - [anon_sym_LF] = ACTIONS(5975), - [anon_sym_AMP] = ACTIONS(5975), + [sym_word] = ACTIONS(6039), + [anon_sym_SEMI] = ACTIONS(6039), + [anon_sym_LF] = ACTIONS(6039), + [anon_sym_AMP] = ACTIONS(6039), }, [3831] = { [sym_concatenation] = STATE(451), @@ -95171,57 +95560,57 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8207), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8285), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3832] = { - [sym_file_descriptor] = ACTIONS(5979), - [sym__concat] = ACTIONS(5979), - [sym_variable_name] = ACTIONS(5979), - [anon_sym_PIPE] = ACTIONS(5981), - [anon_sym_RPAREN] = ACTIONS(5981), - [anon_sym_SEMI_SEMI] = ACTIONS(5981), - [anon_sym_PIPE_AMP] = ACTIONS(5981), - [anon_sym_AMP_AMP] = ACTIONS(5981), - [anon_sym_PIPE_PIPE] = ACTIONS(5981), - [anon_sym_LT] = ACTIONS(5981), - [anon_sym_GT] = ACTIONS(5981), - [anon_sym_GT_GT] = ACTIONS(5981), - [anon_sym_AMP_GT] = ACTIONS(5981), - [anon_sym_AMP_GT_GT] = ACTIONS(5981), - [anon_sym_LT_AMP] = ACTIONS(5981), - [anon_sym_GT_AMP] = ACTIONS(5981), - [sym__special_characters] = ACTIONS(5981), - [anon_sym_DQUOTE] = ACTIONS(5981), - [anon_sym_DOLLAR] = ACTIONS(5981), - [sym_raw_string] = ACTIONS(5981), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5981), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5981), - [anon_sym_BQUOTE] = ACTIONS(5981), - [anon_sym_LT_LPAREN] = ACTIONS(5981), - [anon_sym_GT_LPAREN] = ACTIONS(5981), + [sym_file_descriptor] = ACTIONS(6043), + [sym__concat] = ACTIONS(6043), + [sym_variable_name] = ACTIONS(6043), + [anon_sym_PIPE] = ACTIONS(6045), + [anon_sym_RPAREN] = ACTIONS(6045), + [anon_sym_SEMI_SEMI] = ACTIONS(6045), + [anon_sym_PIPE_AMP] = ACTIONS(6045), + [anon_sym_AMP_AMP] = ACTIONS(6045), + [anon_sym_PIPE_PIPE] = ACTIONS(6045), + [anon_sym_LT] = ACTIONS(6045), + [anon_sym_GT] = ACTIONS(6045), + [anon_sym_GT_GT] = ACTIONS(6045), + [anon_sym_AMP_GT] = ACTIONS(6045), + [anon_sym_AMP_GT_GT] = ACTIONS(6045), + [anon_sym_LT_AMP] = ACTIONS(6045), + [anon_sym_GT_AMP] = ACTIONS(6045), + [sym__special_characters] = ACTIONS(6045), + [anon_sym_DQUOTE] = ACTIONS(6045), + [anon_sym_DOLLAR] = ACTIONS(6045), + [sym_raw_string] = ACTIONS(6045), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6045), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6045), + [anon_sym_BQUOTE] = ACTIONS(6045), + [anon_sym_LT_LPAREN] = ACTIONS(6045), + [anon_sym_GT_LPAREN] = ACTIONS(6045), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(5981), - [anon_sym_SEMI] = ACTIONS(5981), - [anon_sym_LF] = ACTIONS(5981), - [anon_sym_AMP] = ACTIONS(5981), + [sym_word] = ACTIONS(6045), + [anon_sym_SEMI] = ACTIONS(6045), + [anon_sym_LF] = ACTIONS(6045), + [anon_sym_AMP] = ACTIONS(6045), }, [3833] = { [sym_concatenation] = STATE(451), @@ -95232,57 +95621,57 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8209), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8287), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3834] = { - [sym_file_descriptor] = ACTIONS(5985), - [sym__concat] = ACTIONS(5985), - [sym_variable_name] = ACTIONS(5985), - [anon_sym_PIPE] = ACTIONS(5987), - [anon_sym_RPAREN] = ACTIONS(5987), - [anon_sym_SEMI_SEMI] = ACTIONS(5987), - [anon_sym_PIPE_AMP] = ACTIONS(5987), - [anon_sym_AMP_AMP] = ACTIONS(5987), - [anon_sym_PIPE_PIPE] = ACTIONS(5987), - [anon_sym_LT] = ACTIONS(5987), - [anon_sym_GT] = ACTIONS(5987), - [anon_sym_GT_GT] = ACTIONS(5987), - [anon_sym_AMP_GT] = ACTIONS(5987), - [anon_sym_AMP_GT_GT] = ACTIONS(5987), - [anon_sym_LT_AMP] = ACTIONS(5987), - [anon_sym_GT_AMP] = ACTIONS(5987), - [sym__special_characters] = ACTIONS(5987), - [anon_sym_DQUOTE] = ACTIONS(5987), - [anon_sym_DOLLAR] = ACTIONS(5987), - [sym_raw_string] = ACTIONS(5987), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5987), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5987), - [anon_sym_BQUOTE] = ACTIONS(5987), - [anon_sym_LT_LPAREN] = ACTIONS(5987), - [anon_sym_GT_LPAREN] = ACTIONS(5987), + [sym_file_descriptor] = ACTIONS(6049), + [sym__concat] = ACTIONS(6049), + [sym_variable_name] = ACTIONS(6049), + [anon_sym_PIPE] = ACTIONS(6051), + [anon_sym_RPAREN] = ACTIONS(6051), + [anon_sym_SEMI_SEMI] = ACTIONS(6051), + [anon_sym_PIPE_AMP] = ACTIONS(6051), + [anon_sym_AMP_AMP] = ACTIONS(6051), + [anon_sym_PIPE_PIPE] = ACTIONS(6051), + [anon_sym_LT] = ACTIONS(6051), + [anon_sym_GT] = ACTIONS(6051), + [anon_sym_GT_GT] = ACTIONS(6051), + [anon_sym_AMP_GT] = ACTIONS(6051), + [anon_sym_AMP_GT_GT] = ACTIONS(6051), + [anon_sym_LT_AMP] = ACTIONS(6051), + [anon_sym_GT_AMP] = ACTIONS(6051), + [sym__special_characters] = ACTIONS(6051), + [anon_sym_DQUOTE] = ACTIONS(6051), + [anon_sym_DOLLAR] = ACTIONS(6051), + [sym_raw_string] = ACTIONS(6051), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6051), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6051), + [anon_sym_BQUOTE] = ACTIONS(6051), + [anon_sym_LT_LPAREN] = ACTIONS(6051), + [anon_sym_GT_LPAREN] = ACTIONS(6051), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(5987), - [anon_sym_SEMI] = ACTIONS(5987), - [anon_sym_LF] = ACTIONS(5987), - [anon_sym_AMP] = ACTIONS(5987), + [sym_word] = ACTIONS(6051), + [anon_sym_SEMI] = ACTIONS(6051), + [anon_sym_LF] = ACTIONS(6051), + [anon_sym_AMP] = ACTIONS(6051), }, [3835] = { [sym_concatenation] = STATE(451), @@ -95293,117 +95682,117 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8211), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8289), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3836] = { - [sym_file_descriptor] = ACTIONS(5991), - [sym__concat] = ACTIONS(5991), - [sym_variable_name] = ACTIONS(5991), - [anon_sym_PIPE] = ACTIONS(5993), - [anon_sym_RPAREN] = ACTIONS(5993), - [anon_sym_SEMI_SEMI] = ACTIONS(5993), - [anon_sym_PIPE_AMP] = ACTIONS(5993), - [anon_sym_AMP_AMP] = ACTIONS(5993), - [anon_sym_PIPE_PIPE] = ACTIONS(5993), - [anon_sym_LT] = ACTIONS(5993), - [anon_sym_GT] = ACTIONS(5993), - [anon_sym_GT_GT] = ACTIONS(5993), - [anon_sym_AMP_GT] = ACTIONS(5993), - [anon_sym_AMP_GT_GT] = ACTIONS(5993), - [anon_sym_LT_AMP] = ACTIONS(5993), - [anon_sym_GT_AMP] = ACTIONS(5993), - [sym__special_characters] = ACTIONS(5993), - [anon_sym_DQUOTE] = ACTIONS(5993), - [anon_sym_DOLLAR] = ACTIONS(5993), - [sym_raw_string] = ACTIONS(5993), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5993), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5993), - [anon_sym_BQUOTE] = ACTIONS(5993), - [anon_sym_LT_LPAREN] = ACTIONS(5993), - [anon_sym_GT_LPAREN] = ACTIONS(5993), + [sym_file_descriptor] = ACTIONS(6055), + [sym__concat] = ACTIONS(6055), + [sym_variable_name] = ACTIONS(6055), + [anon_sym_PIPE] = ACTIONS(6057), + [anon_sym_RPAREN] = ACTIONS(6057), + [anon_sym_SEMI_SEMI] = ACTIONS(6057), + [anon_sym_PIPE_AMP] = ACTIONS(6057), + [anon_sym_AMP_AMP] = ACTIONS(6057), + [anon_sym_PIPE_PIPE] = ACTIONS(6057), + [anon_sym_LT] = ACTIONS(6057), + [anon_sym_GT] = ACTIONS(6057), + [anon_sym_GT_GT] = ACTIONS(6057), + [anon_sym_AMP_GT] = ACTIONS(6057), + [anon_sym_AMP_GT_GT] = ACTIONS(6057), + [anon_sym_LT_AMP] = ACTIONS(6057), + [anon_sym_GT_AMP] = ACTIONS(6057), + [sym__special_characters] = ACTIONS(6057), + [anon_sym_DQUOTE] = ACTIONS(6057), + [anon_sym_DOLLAR] = ACTIONS(6057), + [sym_raw_string] = ACTIONS(6057), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6057), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6057), + [anon_sym_BQUOTE] = ACTIONS(6057), + [anon_sym_LT_LPAREN] = ACTIONS(6057), + [anon_sym_GT_LPAREN] = ACTIONS(6057), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(5993), - [anon_sym_SEMI] = ACTIONS(5993), - [anon_sym_LF] = ACTIONS(5993), - [anon_sym_AMP] = ACTIONS(5993), + [sym_word] = ACTIONS(6057), + [anon_sym_SEMI] = ACTIONS(6057), + [anon_sym_LF] = ACTIONS(6057), + [anon_sym_AMP] = ACTIONS(6057), }, [3837] = { - [sym_file_descriptor] = ACTIONS(5995), - [sym__concat] = ACTIONS(5995), - [sym_variable_name] = ACTIONS(5995), - [anon_sym_PIPE] = ACTIONS(5997), - [anon_sym_RPAREN] = ACTIONS(5997), - [anon_sym_SEMI_SEMI] = ACTIONS(5997), - [anon_sym_PIPE_AMP] = ACTIONS(5997), - [anon_sym_AMP_AMP] = ACTIONS(5997), - [anon_sym_PIPE_PIPE] = ACTIONS(5997), - [anon_sym_LT] = ACTIONS(5997), - [anon_sym_GT] = ACTIONS(5997), - [anon_sym_GT_GT] = ACTIONS(5997), - [anon_sym_AMP_GT] = ACTIONS(5997), - [anon_sym_AMP_GT_GT] = ACTIONS(5997), - [anon_sym_LT_AMP] = ACTIONS(5997), - [anon_sym_GT_AMP] = ACTIONS(5997), - [sym__special_characters] = ACTIONS(5997), - [anon_sym_DQUOTE] = ACTIONS(5997), - [anon_sym_DOLLAR] = ACTIONS(5997), - [sym_raw_string] = ACTIONS(5997), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5997), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5997), - [anon_sym_BQUOTE] = ACTIONS(5997), - [anon_sym_LT_LPAREN] = ACTIONS(5997), - [anon_sym_GT_LPAREN] = ACTIONS(5997), + [sym_file_descriptor] = ACTIONS(6059), + [sym__concat] = ACTIONS(6059), + [sym_variable_name] = ACTIONS(6059), + [anon_sym_PIPE] = ACTIONS(6061), + [anon_sym_RPAREN] = ACTIONS(6061), + [anon_sym_SEMI_SEMI] = ACTIONS(6061), + [anon_sym_PIPE_AMP] = ACTIONS(6061), + [anon_sym_AMP_AMP] = ACTIONS(6061), + [anon_sym_PIPE_PIPE] = ACTIONS(6061), + [anon_sym_LT] = ACTIONS(6061), + [anon_sym_GT] = ACTIONS(6061), + [anon_sym_GT_GT] = ACTIONS(6061), + [anon_sym_AMP_GT] = ACTIONS(6061), + [anon_sym_AMP_GT_GT] = ACTIONS(6061), + [anon_sym_LT_AMP] = ACTIONS(6061), + [anon_sym_GT_AMP] = ACTIONS(6061), + [sym__special_characters] = ACTIONS(6061), + [anon_sym_DQUOTE] = ACTIONS(6061), + [anon_sym_DOLLAR] = ACTIONS(6061), + [sym_raw_string] = ACTIONS(6061), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6061), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6061), + [anon_sym_BQUOTE] = ACTIONS(6061), + [anon_sym_LT_LPAREN] = ACTIONS(6061), + [anon_sym_GT_LPAREN] = ACTIONS(6061), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(5997), - [anon_sym_SEMI] = ACTIONS(5997), - [anon_sym_LF] = ACTIONS(5997), - [anon_sym_AMP] = ACTIONS(5997), + [sym_word] = ACTIONS(6061), + [anon_sym_SEMI] = ACTIONS(6061), + [anon_sym_LF] = ACTIONS(6061), + [anon_sym_AMP] = ACTIONS(6061), }, [3838] = { - [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__concat] = ACTIONS(3283), + [anon_sym_PIPE] = ACTIONS(3285), + [anon_sym_RPAREN] = ACTIONS(3285), + [anon_sym_SEMI_SEMI] = ACTIONS(3285), + [anon_sym_PIPE_AMP] = ACTIONS(3285), + [anon_sym_AMP_AMP] = ACTIONS(3285), + [anon_sym_PIPE_PIPE] = ACTIONS(3285), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3237), - [anon_sym_LF] = ACTIONS(3237), - [anon_sym_AMP] = ACTIONS(3237), + [anon_sym_SEMI] = ACTIONS(3285), + [anon_sym_LF] = ACTIONS(3285), + [anon_sym_AMP] = ACTIONS(3285), }, [3839] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(8213), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(8291), [sym_comment] = ACTIONS(56), }, [3840] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(8215), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(8293), [sym_comment] = ACTIONS(56), }, [3841] = { - [anon_sym_RBRACE] = ACTIONS(8215), + [anon_sym_RBRACE] = ACTIONS(8293), [sym_comment] = ACTIONS(56), }, [3842] = { @@ -95415,38 +95804,38 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(4150), - [anon_sym_RBRACE] = ACTIONS(8217), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8295), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3843] = { - [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__concat] = ACTIONS(3347), + [anon_sym_PIPE] = ACTIONS(3349), + [anon_sym_RPAREN] = ACTIONS(3349), + [anon_sym_SEMI_SEMI] = ACTIONS(3349), + [anon_sym_PIPE_AMP] = ACTIONS(3349), + [anon_sym_AMP_AMP] = ACTIONS(3349), + [anon_sym_PIPE_PIPE] = ACTIONS(3349), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3299), - [anon_sym_LF] = ACTIONS(3299), - [anon_sym_AMP] = ACTIONS(3299), + [anon_sym_SEMI] = ACTIONS(3349), + [anon_sym_LF] = ACTIONS(3349), + [anon_sym_AMP] = ACTIONS(3349), }, [3844] = { [sym_concatenation] = STATE(4153), @@ -95456,35 +95845,35 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(4152), [sym_command_substitution] = STATE(4152), [sym_process_substitution] = STATE(4152), - [anon_sym_RBRACE] = ACTIONS(8215), - [sym__special_characters] = ACTIONS(8219), - [anon_sym_DQUOTE] = ACTIONS(1924), - [anon_sym_DOLLAR] = ACTIONS(1926), - [sym_raw_string] = ACTIONS(8221), - [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), + [anon_sym_RBRACE] = ACTIONS(8293), + [sym__special_characters] = ACTIONS(8297), + [anon_sym_DQUOTE] = ACTIONS(1952), + [anon_sym_DOLLAR] = ACTIONS(1954), + [sym_raw_string] = ACTIONS(8299), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), + [anon_sym_BQUOTE] = ACTIONS(1962), + [anon_sym_LT_LPAREN] = ACTIONS(1964), + [anon_sym_GT_LPAREN] = ACTIONS(1964), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(8223), + [sym_word] = ACTIONS(8301), }, [3845] = { - [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__concat] = ACTIONS(3392), + [anon_sym_PIPE] = ACTIONS(3394), + [anon_sym_RPAREN] = ACTIONS(3394), + [anon_sym_SEMI_SEMI] = ACTIONS(3394), + [anon_sym_PIPE_AMP] = ACTIONS(3394), + [anon_sym_AMP_AMP] = ACTIONS(3394), + [anon_sym_PIPE_PIPE] = ACTIONS(3394), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3344), - [anon_sym_LF] = ACTIONS(3344), - [anon_sym_AMP] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(3394), + [anon_sym_LF] = ACTIONS(3394), + [anon_sym_AMP] = ACTIONS(3394), }, [3846] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8225), + [sym_regex_without_right_brace] = ACTIONS(8303), }, [3847] = { [sym_concatenation] = STATE(451), @@ -95495,42 +95884,42 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8227), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8305), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3848] = { - [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__concat] = ACTIONS(3400), + [anon_sym_PIPE] = ACTIONS(3402), + [anon_sym_RPAREN] = ACTIONS(3402), + [anon_sym_SEMI_SEMI] = ACTIONS(3402), + [anon_sym_PIPE_AMP] = ACTIONS(3402), + [anon_sym_AMP_AMP] = ACTIONS(3402), + [anon_sym_PIPE_PIPE] = ACTIONS(3402), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3352), - [anon_sym_LF] = ACTIONS(3352), - [anon_sym_AMP] = ACTIONS(3352), + [anon_sym_SEMI] = ACTIONS(3402), + [anon_sym_LF] = ACTIONS(3402), + [anon_sym_AMP] = ACTIONS(3402), }, [3849] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8229), + [sym_regex_without_right_brace] = ACTIONS(8307), }, [3850] = { [sym_concatenation] = STATE(451), @@ -95541,29 +95930,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8231), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8309), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3851] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8233), + [sym_regex_without_right_brace] = ACTIONS(8311), }, [3852] = { [sym_concatenation] = STATE(451), @@ -95574,25 +95963,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8215), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8293), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3853] = { [sym_concatenation] = STATE(451), @@ -95603,38 +95992,38 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(4160), - [anon_sym_RBRACE] = ACTIONS(8235), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8313), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3854] = { - [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__concat] = ACTIONS(3412), + [anon_sym_PIPE] = ACTIONS(3414), + [anon_sym_RPAREN] = ACTIONS(3414), + [anon_sym_SEMI_SEMI] = ACTIONS(3414), + [anon_sym_PIPE_AMP] = ACTIONS(3414), + [anon_sym_AMP_AMP] = ACTIONS(3414), + [anon_sym_PIPE_PIPE] = ACTIONS(3414), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3364), - [anon_sym_LF] = ACTIONS(3364), - [anon_sym_AMP] = ACTIONS(3364), + [anon_sym_SEMI] = ACTIONS(3414), + [anon_sym_LF] = ACTIONS(3414), + [anon_sym_AMP] = ACTIONS(3414), }, [3855] = { [sym_concatenation] = STATE(451), @@ -95645,268 +96034,268 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(4162), - [anon_sym_RBRACE] = ACTIONS(8237), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8315), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3856] = { - [sym__concat] = ACTIONS(6948), - [sym_variable_name] = ACTIONS(6948), - [anon_sym_PIPE] = ACTIONS(6950), - [anon_sym_RPAREN] = ACTIONS(6950), - [anon_sym_SEMI_SEMI] = ACTIONS(6950), - [anon_sym_PIPE_AMP] = ACTIONS(6950), - [anon_sym_AMP_AMP] = ACTIONS(6950), - [anon_sym_PIPE_PIPE] = ACTIONS(6950), - [sym__special_characters] = ACTIONS(6950), - [anon_sym_DQUOTE] = ACTIONS(6950), - [anon_sym_DOLLAR] = ACTIONS(6950), - [sym_raw_string] = ACTIONS(6950), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6950), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6950), - [anon_sym_BQUOTE] = ACTIONS(6950), - [anon_sym_LT_LPAREN] = ACTIONS(6950), - [anon_sym_GT_LPAREN] = ACTIONS(6950), + [sym__concat] = ACTIONS(7018), + [sym_variable_name] = ACTIONS(7018), + [anon_sym_PIPE] = ACTIONS(7020), + [anon_sym_RPAREN] = ACTIONS(7020), + [anon_sym_SEMI_SEMI] = ACTIONS(7020), + [anon_sym_PIPE_AMP] = ACTIONS(7020), + [anon_sym_AMP_AMP] = ACTIONS(7020), + [anon_sym_PIPE_PIPE] = ACTIONS(7020), + [sym__special_characters] = ACTIONS(7020), + [anon_sym_DQUOTE] = ACTIONS(7020), + [anon_sym_DOLLAR] = ACTIONS(7020), + [sym_raw_string] = ACTIONS(7020), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7020), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7020), + [anon_sym_BQUOTE] = ACTIONS(7020), + [anon_sym_LT_LPAREN] = ACTIONS(7020), + [anon_sym_GT_LPAREN] = ACTIONS(7020), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6950), - [sym_word] = ACTIONS(6950), - [anon_sym_SEMI] = ACTIONS(6950), - [anon_sym_LF] = ACTIONS(6950), - [anon_sym_AMP] = ACTIONS(6950), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7020), + [sym_word] = ACTIONS(7020), + [anon_sym_SEMI] = ACTIONS(7020), + [anon_sym_LF] = ACTIONS(7020), + [anon_sym_AMP] = ACTIONS(7020), }, [3857] = { - [sym__concat] = ACTIONS(6952), - [sym_variable_name] = ACTIONS(6952), - [anon_sym_PIPE] = ACTIONS(6954), - [anon_sym_RPAREN] = ACTIONS(6954), - [anon_sym_SEMI_SEMI] = ACTIONS(6954), - [anon_sym_PIPE_AMP] = ACTIONS(6954), - [anon_sym_AMP_AMP] = ACTIONS(6954), - [anon_sym_PIPE_PIPE] = ACTIONS(6954), - [sym__special_characters] = ACTIONS(6954), - [anon_sym_DQUOTE] = ACTIONS(6954), - [anon_sym_DOLLAR] = ACTIONS(6954), - [sym_raw_string] = ACTIONS(6954), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6954), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6954), - [anon_sym_BQUOTE] = ACTIONS(6954), - [anon_sym_LT_LPAREN] = ACTIONS(6954), - [anon_sym_GT_LPAREN] = ACTIONS(6954), + [sym__concat] = ACTIONS(7022), + [sym_variable_name] = ACTIONS(7022), + [anon_sym_PIPE] = ACTIONS(7024), + [anon_sym_RPAREN] = ACTIONS(7024), + [anon_sym_SEMI_SEMI] = ACTIONS(7024), + [anon_sym_PIPE_AMP] = ACTIONS(7024), + [anon_sym_AMP_AMP] = ACTIONS(7024), + [anon_sym_PIPE_PIPE] = ACTIONS(7024), + [sym__special_characters] = ACTIONS(7024), + [anon_sym_DQUOTE] = ACTIONS(7024), + [anon_sym_DOLLAR] = ACTIONS(7024), + [sym_raw_string] = ACTIONS(7024), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7024), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7024), + [anon_sym_BQUOTE] = ACTIONS(7024), + [anon_sym_LT_LPAREN] = ACTIONS(7024), + [anon_sym_GT_LPAREN] = ACTIONS(7024), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6954), - [sym_word] = ACTIONS(6954), - [anon_sym_SEMI] = ACTIONS(6954), - [anon_sym_LF] = ACTIONS(6954), - [anon_sym_AMP] = ACTIONS(6954), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7024), + [sym_word] = ACTIONS(7024), + [anon_sym_SEMI] = ACTIONS(7024), + [anon_sym_LF] = ACTIONS(7024), + [anon_sym_AMP] = ACTIONS(7024), }, [3858] = { - [sym__concat] = ACTIONS(6956), - [sym_variable_name] = ACTIONS(6956), - [anon_sym_PIPE] = ACTIONS(6958), - [anon_sym_RPAREN] = ACTIONS(6958), - [anon_sym_SEMI_SEMI] = ACTIONS(6958), - [anon_sym_PIPE_AMP] = ACTIONS(6958), - [anon_sym_AMP_AMP] = ACTIONS(6958), - [anon_sym_PIPE_PIPE] = ACTIONS(6958), - [sym__special_characters] = ACTIONS(6958), - [anon_sym_DQUOTE] = ACTIONS(6958), - [anon_sym_DOLLAR] = ACTIONS(6958), - [sym_raw_string] = ACTIONS(6958), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6958), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6958), - [anon_sym_BQUOTE] = ACTIONS(6958), - [anon_sym_LT_LPAREN] = ACTIONS(6958), - [anon_sym_GT_LPAREN] = ACTIONS(6958), + [sym__concat] = ACTIONS(7026), + [sym_variable_name] = ACTIONS(7026), + [anon_sym_PIPE] = ACTIONS(7028), + [anon_sym_RPAREN] = ACTIONS(7028), + [anon_sym_SEMI_SEMI] = ACTIONS(7028), + [anon_sym_PIPE_AMP] = ACTIONS(7028), + [anon_sym_AMP_AMP] = ACTIONS(7028), + [anon_sym_PIPE_PIPE] = ACTIONS(7028), + [sym__special_characters] = ACTIONS(7028), + [anon_sym_DQUOTE] = ACTIONS(7028), + [anon_sym_DOLLAR] = ACTIONS(7028), + [sym_raw_string] = ACTIONS(7028), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7028), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7028), + [anon_sym_BQUOTE] = ACTIONS(7028), + [anon_sym_LT_LPAREN] = ACTIONS(7028), + [anon_sym_GT_LPAREN] = ACTIONS(7028), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6958), - [sym_word] = ACTIONS(6958), - [anon_sym_SEMI] = ACTIONS(6958), - [anon_sym_LF] = ACTIONS(6958), - [anon_sym_AMP] = ACTIONS(6958), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7028), + [sym_word] = ACTIONS(7028), + [anon_sym_SEMI] = ACTIONS(7028), + [anon_sym_LF] = ACTIONS(7028), + [anon_sym_AMP] = ACTIONS(7028), }, [3859] = { - [sym__concat] = ACTIONS(6948), - [anon_sym_PIPE] = ACTIONS(6950), - [anon_sym_RPAREN] = ACTIONS(6950), - [anon_sym_SEMI_SEMI] = ACTIONS(6950), - [anon_sym_PIPE_AMP] = ACTIONS(6950), - [anon_sym_AMP_AMP] = ACTIONS(6950), - [anon_sym_PIPE_PIPE] = ACTIONS(6950), - [sym__special_characters] = ACTIONS(6950), - [anon_sym_DQUOTE] = ACTIONS(6950), - [anon_sym_DOLLAR] = ACTIONS(6950), - [sym_raw_string] = ACTIONS(6950), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6950), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6950), - [anon_sym_BQUOTE] = ACTIONS(6950), - [anon_sym_LT_LPAREN] = ACTIONS(6950), - [anon_sym_GT_LPAREN] = ACTIONS(6950), + [sym__concat] = ACTIONS(7018), + [anon_sym_PIPE] = ACTIONS(7020), + [anon_sym_RPAREN] = ACTIONS(7020), + [anon_sym_SEMI_SEMI] = ACTIONS(7020), + [anon_sym_PIPE_AMP] = ACTIONS(7020), + [anon_sym_AMP_AMP] = ACTIONS(7020), + [anon_sym_PIPE_PIPE] = ACTIONS(7020), + [sym__special_characters] = ACTIONS(7020), + [anon_sym_DQUOTE] = ACTIONS(7020), + [anon_sym_DOLLAR] = ACTIONS(7020), + [sym_raw_string] = ACTIONS(7020), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7020), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7020), + [anon_sym_BQUOTE] = ACTIONS(7020), + [anon_sym_LT_LPAREN] = ACTIONS(7020), + [anon_sym_GT_LPAREN] = ACTIONS(7020), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6950), - [sym_word] = ACTIONS(6950), - [anon_sym_SEMI] = ACTIONS(6950), - [anon_sym_LF] = ACTIONS(6950), - [anon_sym_AMP] = ACTIONS(6950), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7020), + [sym_word] = ACTIONS(7020), + [anon_sym_SEMI] = ACTIONS(7020), + [anon_sym_LF] = ACTIONS(7020), + [anon_sym_AMP] = ACTIONS(7020), }, [3860] = { - [sym__concat] = ACTIONS(6952), - [anon_sym_PIPE] = ACTIONS(6954), - [anon_sym_RPAREN] = ACTIONS(6954), - [anon_sym_SEMI_SEMI] = ACTIONS(6954), - [anon_sym_PIPE_AMP] = ACTIONS(6954), - [anon_sym_AMP_AMP] = ACTIONS(6954), - [anon_sym_PIPE_PIPE] = ACTIONS(6954), - [sym__special_characters] = ACTIONS(6954), - [anon_sym_DQUOTE] = ACTIONS(6954), - [anon_sym_DOLLAR] = ACTIONS(6954), - [sym_raw_string] = ACTIONS(6954), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6954), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6954), - [anon_sym_BQUOTE] = ACTIONS(6954), - [anon_sym_LT_LPAREN] = ACTIONS(6954), - [anon_sym_GT_LPAREN] = ACTIONS(6954), + [sym__concat] = ACTIONS(7022), + [anon_sym_PIPE] = ACTIONS(7024), + [anon_sym_RPAREN] = ACTIONS(7024), + [anon_sym_SEMI_SEMI] = ACTIONS(7024), + [anon_sym_PIPE_AMP] = ACTIONS(7024), + [anon_sym_AMP_AMP] = ACTIONS(7024), + [anon_sym_PIPE_PIPE] = ACTIONS(7024), + [sym__special_characters] = ACTIONS(7024), + [anon_sym_DQUOTE] = ACTIONS(7024), + [anon_sym_DOLLAR] = ACTIONS(7024), + [sym_raw_string] = ACTIONS(7024), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7024), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7024), + [anon_sym_BQUOTE] = ACTIONS(7024), + [anon_sym_LT_LPAREN] = ACTIONS(7024), + [anon_sym_GT_LPAREN] = ACTIONS(7024), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6954), - [sym_word] = ACTIONS(6954), - [anon_sym_SEMI] = ACTIONS(6954), - [anon_sym_LF] = ACTIONS(6954), - [anon_sym_AMP] = ACTIONS(6954), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7024), + [sym_word] = ACTIONS(7024), + [anon_sym_SEMI] = ACTIONS(7024), + [anon_sym_LF] = ACTIONS(7024), + [anon_sym_AMP] = ACTIONS(7024), }, [3861] = { - [sym__concat] = ACTIONS(6956), - [anon_sym_PIPE] = ACTIONS(6958), - [anon_sym_RPAREN] = ACTIONS(6958), - [anon_sym_SEMI_SEMI] = ACTIONS(6958), - [anon_sym_PIPE_AMP] = ACTIONS(6958), - [anon_sym_AMP_AMP] = ACTIONS(6958), - [anon_sym_PIPE_PIPE] = ACTIONS(6958), - [sym__special_characters] = ACTIONS(6958), - [anon_sym_DQUOTE] = ACTIONS(6958), - [anon_sym_DOLLAR] = ACTIONS(6958), - [sym_raw_string] = ACTIONS(6958), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6958), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6958), - [anon_sym_BQUOTE] = ACTIONS(6958), - [anon_sym_LT_LPAREN] = ACTIONS(6958), - [anon_sym_GT_LPAREN] = ACTIONS(6958), + [sym__concat] = ACTIONS(7026), + [anon_sym_PIPE] = ACTIONS(7028), + [anon_sym_RPAREN] = ACTIONS(7028), + [anon_sym_SEMI_SEMI] = ACTIONS(7028), + [anon_sym_PIPE_AMP] = ACTIONS(7028), + [anon_sym_AMP_AMP] = ACTIONS(7028), + [anon_sym_PIPE_PIPE] = ACTIONS(7028), + [sym__special_characters] = ACTIONS(7028), + [anon_sym_DQUOTE] = ACTIONS(7028), + [anon_sym_DOLLAR] = ACTIONS(7028), + [sym_raw_string] = ACTIONS(7028), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7028), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7028), + [anon_sym_BQUOTE] = ACTIONS(7028), + [anon_sym_LT_LPAREN] = ACTIONS(7028), + [anon_sym_GT_LPAREN] = ACTIONS(7028), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6958), - [sym_word] = ACTIONS(6958), - [anon_sym_SEMI] = ACTIONS(6958), - [anon_sym_LF] = ACTIONS(6958), - [anon_sym_AMP] = ACTIONS(6958), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7028), + [sym_word] = ACTIONS(7028), + [anon_sym_SEMI] = ACTIONS(7028), + [anon_sym_LF] = ACTIONS(7028), + [anon_sym_AMP] = ACTIONS(7028), }, [3862] = { - [sym_file_descriptor] = ACTIONS(5961), - [sym__concat] = ACTIONS(5961), - [anon_sym_PIPE] = ACTIONS(5963), - [anon_sym_RPAREN] = ACTIONS(5963), - [anon_sym_SEMI_SEMI] = ACTIONS(5963), - [anon_sym_PIPE_AMP] = ACTIONS(5963), - [anon_sym_AMP_AMP] = ACTIONS(5963), - [anon_sym_PIPE_PIPE] = ACTIONS(5963), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_GT] = ACTIONS(5963), - [anon_sym_GT_GT] = ACTIONS(5963), - [anon_sym_AMP_GT] = ACTIONS(5963), - [anon_sym_AMP_GT_GT] = ACTIONS(5963), - [anon_sym_LT_AMP] = ACTIONS(5963), - [anon_sym_GT_AMP] = ACTIONS(5963), - [anon_sym_LT_LT] = ACTIONS(5963), - [anon_sym_LT_LT_DASH] = ACTIONS(5963), - [anon_sym_LT_LT_LT] = ACTIONS(5963), + [sym_file_descriptor] = ACTIONS(6025), + [sym__concat] = ACTIONS(6025), + [anon_sym_PIPE] = ACTIONS(6027), + [anon_sym_RPAREN] = ACTIONS(6027), + [anon_sym_SEMI_SEMI] = ACTIONS(6027), + [anon_sym_PIPE_AMP] = ACTIONS(6027), + [anon_sym_AMP_AMP] = ACTIONS(6027), + [anon_sym_PIPE_PIPE] = ACTIONS(6027), + [anon_sym_LT] = ACTIONS(6027), + [anon_sym_GT] = ACTIONS(6027), + [anon_sym_GT_GT] = ACTIONS(6027), + [anon_sym_AMP_GT] = ACTIONS(6027), + [anon_sym_AMP_GT_GT] = ACTIONS(6027), + [anon_sym_LT_AMP] = ACTIONS(6027), + [anon_sym_GT_AMP] = ACTIONS(6027), + [anon_sym_LT_LT] = ACTIONS(6027), + [anon_sym_LT_LT_DASH] = ACTIONS(6027), + [anon_sym_LT_LT_LT] = ACTIONS(6027), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(5963), - [anon_sym_LF] = ACTIONS(5963), - [anon_sym_AMP] = ACTIONS(5963), + [anon_sym_SEMI] = ACTIONS(6027), + [anon_sym_LF] = ACTIONS(6027), + [anon_sym_AMP] = ACTIONS(6027), }, [3863] = { - [sym_file_descriptor] = ACTIONS(5965), - [sym__concat] = ACTIONS(5965), - [anon_sym_PIPE] = ACTIONS(5967), - [anon_sym_RPAREN] = ACTIONS(5967), - [anon_sym_SEMI_SEMI] = ACTIONS(5967), - [anon_sym_PIPE_AMP] = ACTIONS(5967), - [anon_sym_AMP_AMP] = ACTIONS(5967), - [anon_sym_PIPE_PIPE] = ACTIONS(5967), - [anon_sym_LT] = ACTIONS(5967), - [anon_sym_GT] = ACTIONS(5967), - [anon_sym_GT_GT] = ACTIONS(5967), - [anon_sym_AMP_GT] = ACTIONS(5967), - [anon_sym_AMP_GT_GT] = ACTIONS(5967), - [anon_sym_LT_AMP] = ACTIONS(5967), - [anon_sym_GT_AMP] = ACTIONS(5967), - [anon_sym_LT_LT] = ACTIONS(5967), - [anon_sym_LT_LT_DASH] = ACTIONS(5967), - [anon_sym_LT_LT_LT] = ACTIONS(5967), + [sym_file_descriptor] = ACTIONS(6029), + [sym__concat] = ACTIONS(6029), + [anon_sym_PIPE] = ACTIONS(6031), + [anon_sym_RPAREN] = ACTIONS(6031), + [anon_sym_SEMI_SEMI] = ACTIONS(6031), + [anon_sym_PIPE_AMP] = ACTIONS(6031), + [anon_sym_AMP_AMP] = ACTIONS(6031), + [anon_sym_PIPE_PIPE] = ACTIONS(6031), + [anon_sym_LT] = ACTIONS(6031), + [anon_sym_GT] = ACTIONS(6031), + [anon_sym_GT_GT] = ACTIONS(6031), + [anon_sym_AMP_GT] = ACTIONS(6031), + [anon_sym_AMP_GT_GT] = ACTIONS(6031), + [anon_sym_LT_AMP] = ACTIONS(6031), + [anon_sym_GT_AMP] = ACTIONS(6031), + [anon_sym_LT_LT] = ACTIONS(6031), + [anon_sym_LT_LT_DASH] = ACTIONS(6031), + [anon_sym_LT_LT_LT] = ACTIONS(6031), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(5967), - [anon_sym_LF] = ACTIONS(5967), - [anon_sym_AMP] = ACTIONS(5967), + [anon_sym_SEMI] = ACTIONS(6031), + [anon_sym_LF] = ACTIONS(6031), + [anon_sym_AMP] = ACTIONS(6031), }, [3864] = { - [sym_file_descriptor] = ACTIONS(5969), - [sym__concat] = ACTIONS(5969), - [anon_sym_PIPE] = ACTIONS(5971), - [anon_sym_RPAREN] = ACTIONS(5971), - [anon_sym_SEMI_SEMI] = ACTIONS(5971), - [anon_sym_PIPE_AMP] = ACTIONS(5971), - [anon_sym_AMP_AMP] = ACTIONS(5971), - [anon_sym_PIPE_PIPE] = ACTIONS(5971), - [anon_sym_LT] = ACTIONS(5971), - [anon_sym_GT] = ACTIONS(5971), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_AMP_GT] = ACTIONS(5971), - [anon_sym_AMP_GT_GT] = ACTIONS(5971), - [anon_sym_LT_AMP] = ACTIONS(5971), - [anon_sym_GT_AMP] = ACTIONS(5971), - [anon_sym_LT_LT] = ACTIONS(5971), - [anon_sym_LT_LT_DASH] = ACTIONS(5971), - [anon_sym_LT_LT_LT] = ACTIONS(5971), + [sym_file_descriptor] = ACTIONS(6033), + [sym__concat] = ACTIONS(6033), + [anon_sym_PIPE] = ACTIONS(6035), + [anon_sym_RPAREN] = ACTIONS(6035), + [anon_sym_SEMI_SEMI] = ACTIONS(6035), + [anon_sym_PIPE_AMP] = ACTIONS(6035), + [anon_sym_AMP_AMP] = ACTIONS(6035), + [anon_sym_PIPE_PIPE] = ACTIONS(6035), + [anon_sym_LT] = ACTIONS(6035), + [anon_sym_GT] = ACTIONS(6035), + [anon_sym_GT_GT] = ACTIONS(6035), + [anon_sym_AMP_GT] = ACTIONS(6035), + [anon_sym_AMP_GT_GT] = ACTIONS(6035), + [anon_sym_LT_AMP] = ACTIONS(6035), + [anon_sym_GT_AMP] = ACTIONS(6035), + [anon_sym_LT_LT] = ACTIONS(6035), + [anon_sym_LT_LT_DASH] = ACTIONS(6035), + [anon_sym_LT_LT_LT] = ACTIONS(6035), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(5971), - [anon_sym_LF] = ACTIONS(5971), - [anon_sym_AMP] = ACTIONS(5971), + [anon_sym_SEMI] = ACTIONS(6035), + [anon_sym_LF] = ACTIONS(6035), + [anon_sym_AMP] = ACTIONS(6035), }, [3865] = { - [sym_file_descriptor] = ACTIONS(5973), - [sym__concat] = ACTIONS(5973), - [anon_sym_PIPE] = ACTIONS(5975), - [anon_sym_RPAREN] = ACTIONS(5975), - [anon_sym_SEMI_SEMI] = ACTIONS(5975), - [anon_sym_PIPE_AMP] = ACTIONS(5975), - [anon_sym_AMP_AMP] = ACTIONS(5975), - [anon_sym_PIPE_PIPE] = ACTIONS(5975), - [anon_sym_LT] = ACTIONS(5975), - [anon_sym_GT] = ACTIONS(5975), - [anon_sym_GT_GT] = ACTIONS(5975), - [anon_sym_AMP_GT] = ACTIONS(5975), - [anon_sym_AMP_GT_GT] = ACTIONS(5975), - [anon_sym_LT_AMP] = ACTIONS(5975), - [anon_sym_GT_AMP] = ACTIONS(5975), - [anon_sym_LT_LT] = ACTIONS(5975), - [anon_sym_LT_LT_DASH] = ACTIONS(5975), - [anon_sym_LT_LT_LT] = ACTIONS(5975), + [sym_file_descriptor] = ACTIONS(6037), + [sym__concat] = ACTIONS(6037), + [anon_sym_PIPE] = ACTIONS(6039), + [anon_sym_RPAREN] = ACTIONS(6039), + [anon_sym_SEMI_SEMI] = ACTIONS(6039), + [anon_sym_PIPE_AMP] = ACTIONS(6039), + [anon_sym_AMP_AMP] = ACTIONS(6039), + [anon_sym_PIPE_PIPE] = ACTIONS(6039), + [anon_sym_LT] = ACTIONS(6039), + [anon_sym_GT] = ACTIONS(6039), + [anon_sym_GT_GT] = ACTIONS(6039), + [anon_sym_AMP_GT] = ACTIONS(6039), + [anon_sym_AMP_GT_GT] = ACTIONS(6039), + [anon_sym_LT_AMP] = ACTIONS(6039), + [anon_sym_GT_AMP] = ACTIONS(6039), + [anon_sym_LT_LT] = ACTIONS(6039), + [anon_sym_LT_LT_DASH] = ACTIONS(6039), + [anon_sym_LT_LT_LT] = ACTIONS(6039), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(5975), - [anon_sym_LF] = ACTIONS(5975), - [anon_sym_AMP] = ACTIONS(5975), + [anon_sym_SEMI] = ACTIONS(6039), + [anon_sym_LF] = ACTIONS(6039), + [anon_sym_AMP] = ACTIONS(6039), }, [3866] = { [sym_concatenation] = STATE(451), @@ -95917,49 +96306,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8239), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8317), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3867] = { - [sym_file_descriptor] = ACTIONS(5979), - [sym__concat] = ACTIONS(5979), - [anon_sym_PIPE] = ACTIONS(5981), - [anon_sym_RPAREN] = ACTIONS(5981), - [anon_sym_SEMI_SEMI] = ACTIONS(5981), - [anon_sym_PIPE_AMP] = ACTIONS(5981), - [anon_sym_AMP_AMP] = ACTIONS(5981), - [anon_sym_PIPE_PIPE] = ACTIONS(5981), - [anon_sym_LT] = ACTIONS(5981), - [anon_sym_GT] = ACTIONS(5981), - [anon_sym_GT_GT] = ACTIONS(5981), - [anon_sym_AMP_GT] = ACTIONS(5981), - [anon_sym_AMP_GT_GT] = ACTIONS(5981), - [anon_sym_LT_AMP] = ACTIONS(5981), - [anon_sym_GT_AMP] = ACTIONS(5981), - [anon_sym_LT_LT] = ACTIONS(5981), - [anon_sym_LT_LT_DASH] = ACTIONS(5981), - [anon_sym_LT_LT_LT] = ACTIONS(5981), + [sym_file_descriptor] = ACTIONS(6043), + [sym__concat] = ACTIONS(6043), + [anon_sym_PIPE] = ACTIONS(6045), + [anon_sym_RPAREN] = ACTIONS(6045), + [anon_sym_SEMI_SEMI] = ACTIONS(6045), + [anon_sym_PIPE_AMP] = ACTIONS(6045), + [anon_sym_AMP_AMP] = ACTIONS(6045), + [anon_sym_PIPE_PIPE] = ACTIONS(6045), + [anon_sym_LT] = ACTIONS(6045), + [anon_sym_GT] = ACTIONS(6045), + [anon_sym_GT_GT] = ACTIONS(6045), + [anon_sym_AMP_GT] = ACTIONS(6045), + [anon_sym_AMP_GT_GT] = ACTIONS(6045), + [anon_sym_LT_AMP] = ACTIONS(6045), + [anon_sym_GT_AMP] = ACTIONS(6045), + [anon_sym_LT_LT] = ACTIONS(6045), + [anon_sym_LT_LT_DASH] = ACTIONS(6045), + [anon_sym_LT_LT_LT] = ACTIONS(6045), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(5981), - [anon_sym_LF] = ACTIONS(5981), - [anon_sym_AMP] = ACTIONS(5981), + [anon_sym_SEMI] = ACTIONS(6045), + [anon_sym_LF] = ACTIONS(6045), + [anon_sym_AMP] = ACTIONS(6045), }, [3868] = { [sym_concatenation] = STATE(451), @@ -95970,49 +96359,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8241), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8319), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3869] = { - [sym_file_descriptor] = ACTIONS(5985), - [sym__concat] = ACTIONS(5985), - [anon_sym_PIPE] = ACTIONS(5987), - [anon_sym_RPAREN] = ACTIONS(5987), - [anon_sym_SEMI_SEMI] = ACTIONS(5987), - [anon_sym_PIPE_AMP] = ACTIONS(5987), - [anon_sym_AMP_AMP] = ACTIONS(5987), - [anon_sym_PIPE_PIPE] = ACTIONS(5987), - [anon_sym_LT] = ACTIONS(5987), - [anon_sym_GT] = ACTIONS(5987), - [anon_sym_GT_GT] = ACTIONS(5987), - [anon_sym_AMP_GT] = ACTIONS(5987), - [anon_sym_AMP_GT_GT] = ACTIONS(5987), - [anon_sym_LT_AMP] = ACTIONS(5987), - [anon_sym_GT_AMP] = ACTIONS(5987), - [anon_sym_LT_LT] = ACTIONS(5987), - [anon_sym_LT_LT_DASH] = ACTIONS(5987), - [anon_sym_LT_LT_LT] = ACTIONS(5987), + [sym_file_descriptor] = ACTIONS(6049), + [sym__concat] = ACTIONS(6049), + [anon_sym_PIPE] = ACTIONS(6051), + [anon_sym_RPAREN] = ACTIONS(6051), + [anon_sym_SEMI_SEMI] = ACTIONS(6051), + [anon_sym_PIPE_AMP] = ACTIONS(6051), + [anon_sym_AMP_AMP] = ACTIONS(6051), + [anon_sym_PIPE_PIPE] = ACTIONS(6051), + [anon_sym_LT] = ACTIONS(6051), + [anon_sym_GT] = ACTIONS(6051), + [anon_sym_GT_GT] = ACTIONS(6051), + [anon_sym_AMP_GT] = ACTIONS(6051), + [anon_sym_AMP_GT_GT] = ACTIONS(6051), + [anon_sym_LT_AMP] = ACTIONS(6051), + [anon_sym_GT_AMP] = ACTIONS(6051), + [anon_sym_LT_LT] = ACTIONS(6051), + [anon_sym_LT_LT_DASH] = ACTIONS(6051), + [anon_sym_LT_LT_LT] = ACTIONS(6051), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(5987), - [anon_sym_LF] = ACTIONS(5987), - [anon_sym_AMP] = ACTIONS(5987), + [anon_sym_SEMI] = ACTIONS(6051), + [anon_sym_LF] = ACTIONS(6051), + [anon_sym_AMP] = ACTIONS(6051), }, [3870] = { [sym_concatenation] = STATE(451), @@ -96023,92 +96412,92 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8243), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8321), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3871] = { - [sym_file_descriptor] = ACTIONS(5991), - [sym__concat] = ACTIONS(5991), - [anon_sym_PIPE] = ACTIONS(5993), - [anon_sym_RPAREN] = ACTIONS(5993), - [anon_sym_SEMI_SEMI] = ACTIONS(5993), - [anon_sym_PIPE_AMP] = ACTIONS(5993), - [anon_sym_AMP_AMP] = ACTIONS(5993), - [anon_sym_PIPE_PIPE] = ACTIONS(5993), - [anon_sym_LT] = ACTIONS(5993), - [anon_sym_GT] = ACTIONS(5993), - [anon_sym_GT_GT] = ACTIONS(5993), - [anon_sym_AMP_GT] = ACTIONS(5993), - [anon_sym_AMP_GT_GT] = ACTIONS(5993), - [anon_sym_LT_AMP] = ACTIONS(5993), - [anon_sym_GT_AMP] = ACTIONS(5993), - [anon_sym_LT_LT] = ACTIONS(5993), - [anon_sym_LT_LT_DASH] = ACTIONS(5993), - [anon_sym_LT_LT_LT] = ACTIONS(5993), + [sym_file_descriptor] = ACTIONS(6055), + [sym__concat] = ACTIONS(6055), + [anon_sym_PIPE] = ACTIONS(6057), + [anon_sym_RPAREN] = ACTIONS(6057), + [anon_sym_SEMI_SEMI] = ACTIONS(6057), + [anon_sym_PIPE_AMP] = ACTIONS(6057), + [anon_sym_AMP_AMP] = ACTIONS(6057), + [anon_sym_PIPE_PIPE] = ACTIONS(6057), + [anon_sym_LT] = ACTIONS(6057), + [anon_sym_GT] = ACTIONS(6057), + [anon_sym_GT_GT] = ACTIONS(6057), + [anon_sym_AMP_GT] = ACTIONS(6057), + [anon_sym_AMP_GT_GT] = ACTIONS(6057), + [anon_sym_LT_AMP] = ACTIONS(6057), + [anon_sym_GT_AMP] = ACTIONS(6057), + [anon_sym_LT_LT] = ACTIONS(6057), + [anon_sym_LT_LT_DASH] = ACTIONS(6057), + [anon_sym_LT_LT_LT] = ACTIONS(6057), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(5993), - [anon_sym_LF] = ACTIONS(5993), - [anon_sym_AMP] = ACTIONS(5993), + [anon_sym_SEMI] = ACTIONS(6057), + [anon_sym_LF] = ACTIONS(6057), + [anon_sym_AMP] = ACTIONS(6057), }, [3872] = { - [sym_file_descriptor] = ACTIONS(5995), - [sym__concat] = ACTIONS(5995), - [anon_sym_PIPE] = ACTIONS(5997), - [anon_sym_RPAREN] = ACTIONS(5997), - [anon_sym_SEMI_SEMI] = ACTIONS(5997), - [anon_sym_PIPE_AMP] = ACTIONS(5997), - [anon_sym_AMP_AMP] = ACTIONS(5997), - [anon_sym_PIPE_PIPE] = ACTIONS(5997), - [anon_sym_LT] = ACTIONS(5997), - [anon_sym_GT] = ACTIONS(5997), - [anon_sym_GT_GT] = ACTIONS(5997), - [anon_sym_AMP_GT] = ACTIONS(5997), - [anon_sym_AMP_GT_GT] = ACTIONS(5997), - [anon_sym_LT_AMP] = ACTIONS(5997), - [anon_sym_GT_AMP] = ACTIONS(5997), - [anon_sym_LT_LT] = ACTIONS(5997), - [anon_sym_LT_LT_DASH] = ACTIONS(5997), - [anon_sym_LT_LT_LT] = ACTIONS(5997), + [sym_file_descriptor] = ACTIONS(6059), + [sym__concat] = ACTIONS(6059), + [anon_sym_PIPE] = ACTIONS(6061), + [anon_sym_RPAREN] = ACTIONS(6061), + [anon_sym_SEMI_SEMI] = ACTIONS(6061), + [anon_sym_PIPE_AMP] = ACTIONS(6061), + [anon_sym_AMP_AMP] = ACTIONS(6061), + [anon_sym_PIPE_PIPE] = ACTIONS(6061), + [anon_sym_LT] = ACTIONS(6061), + [anon_sym_GT] = ACTIONS(6061), + [anon_sym_GT_GT] = ACTIONS(6061), + [anon_sym_AMP_GT] = ACTIONS(6061), + [anon_sym_AMP_GT_GT] = ACTIONS(6061), + [anon_sym_LT_AMP] = ACTIONS(6061), + [anon_sym_GT_AMP] = ACTIONS(6061), + [anon_sym_LT_LT] = ACTIONS(6061), + [anon_sym_LT_LT_DASH] = ACTIONS(6061), + [anon_sym_LT_LT_LT] = ACTIONS(6061), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(5997), - [anon_sym_LF] = ACTIONS(5997), - [anon_sym_AMP] = ACTIONS(5997), + [anon_sym_SEMI] = ACTIONS(6061), + [anon_sym_LF] = ACTIONS(6061), + [anon_sym_AMP] = ACTIONS(6061), }, [3873] = { - [sym__concat] = ACTIONS(5961), - [anon_sym_RBRACE] = ACTIONS(5961), + [sym__concat] = ACTIONS(6025), + [anon_sym_RBRACE] = ACTIONS(6025), [sym_comment] = ACTIONS(56), }, [3874] = { - [sym__concat] = ACTIONS(5965), - [anon_sym_RBRACE] = ACTIONS(5965), + [sym__concat] = ACTIONS(6029), + [anon_sym_RBRACE] = ACTIONS(6029), [sym_comment] = ACTIONS(56), }, [3875] = { - [sym__concat] = ACTIONS(5969), - [anon_sym_RBRACE] = ACTIONS(5969), + [sym__concat] = ACTIONS(6033), + [anon_sym_RBRACE] = ACTIONS(6033), [sym_comment] = ACTIONS(56), }, [3876] = { - [sym__concat] = ACTIONS(5973), - [anon_sym_RBRACE] = ACTIONS(5973), + [sym__concat] = ACTIONS(6037), + [anon_sym_RBRACE] = ACTIONS(6037), [sym_comment] = ACTIONS(56), }, [3877] = { @@ -96120,29 +96509,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8245), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8323), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3878] = { - [sym__concat] = ACTIONS(5979), - [anon_sym_RBRACE] = ACTIONS(5979), + [sym__concat] = ACTIONS(6043), + [anon_sym_RBRACE] = ACTIONS(6043), [sym_comment] = ACTIONS(56), }, [3879] = { @@ -96154,29 +96543,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8247), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8325), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3880] = { - [sym__concat] = ACTIONS(5985), - [anon_sym_RBRACE] = ACTIONS(5985), + [sym__concat] = ACTIONS(6049), + [anon_sym_RBRACE] = ACTIONS(6049), [sym_comment] = ACTIONS(56), }, [3881] = { @@ -96188,213 +96577,213 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8249), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8327), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3882] = { - [sym__concat] = ACTIONS(5991), - [anon_sym_RBRACE] = ACTIONS(5991), + [sym__concat] = ACTIONS(6055), + [anon_sym_RBRACE] = ACTIONS(6055), [sym_comment] = ACTIONS(56), }, [3883] = { - [sym__concat] = ACTIONS(5995), - [anon_sym_RBRACE] = ACTIONS(5995), + [sym__concat] = ACTIONS(6059), + [anon_sym_RBRACE] = ACTIONS(6059), [sym_comment] = ACTIONS(56), }, [3884] = { - [sym__concat] = ACTIONS(6948), - [anon_sym_RBRACE] = ACTIONS(6948), - [anon_sym_EQ] = ACTIONS(7635), - [sym__special_characters] = ACTIONS(6950), - [anon_sym_DQUOTE] = ACTIONS(6948), - [anon_sym_DOLLAR] = ACTIONS(7635), - [sym_raw_string] = ACTIONS(6948), - [anon_sym_POUND] = ACTIONS(6948), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6948), - [anon_sym_COLON] = ACTIONS(7635), - [anon_sym_COLON_QMARK] = ACTIONS(7635), - [anon_sym_COLON_DASH] = ACTIONS(7635), - [anon_sym_PERCENT] = ACTIONS(7635), - [anon_sym_DASH] = ACTIONS(7635), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6948), - [anon_sym_BQUOTE] = ACTIONS(6948), - [anon_sym_LT_LPAREN] = ACTIONS(6948), - [anon_sym_GT_LPAREN] = ACTIONS(6948), + [sym__concat] = ACTIONS(7018), + [anon_sym_RBRACE] = ACTIONS(7018), + [anon_sym_EQ] = ACTIONS(7709), + [sym__special_characters] = ACTIONS(7020), + [anon_sym_DQUOTE] = ACTIONS(7018), + [anon_sym_DOLLAR] = ACTIONS(7709), + [sym_raw_string] = ACTIONS(7018), + [anon_sym_POUND] = ACTIONS(7018), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7018), + [anon_sym_COLON] = ACTIONS(7709), + [anon_sym_COLON_QMARK] = ACTIONS(7709), + [anon_sym_COLON_DASH] = ACTIONS(7709), + [anon_sym_PERCENT] = ACTIONS(7709), + [anon_sym_DASH] = ACTIONS(7709), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7018), + [anon_sym_BQUOTE] = ACTIONS(7018), + [anon_sym_LT_LPAREN] = ACTIONS(7018), + [anon_sym_GT_LPAREN] = ACTIONS(7018), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6950), + [sym_word] = ACTIONS(7020), }, [3885] = { - [sym__concat] = ACTIONS(6952), - [anon_sym_RBRACE] = ACTIONS(6952), - [anon_sym_EQ] = ACTIONS(7637), - [sym__special_characters] = ACTIONS(6954), - [anon_sym_DQUOTE] = ACTIONS(6952), - [anon_sym_DOLLAR] = ACTIONS(7637), - [sym_raw_string] = ACTIONS(6952), - [anon_sym_POUND] = ACTIONS(6952), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6952), - [anon_sym_COLON] = ACTIONS(7637), - [anon_sym_COLON_QMARK] = ACTIONS(7637), - [anon_sym_COLON_DASH] = ACTIONS(7637), - [anon_sym_PERCENT] = ACTIONS(7637), - [anon_sym_DASH] = ACTIONS(7637), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6952), - [anon_sym_BQUOTE] = ACTIONS(6952), - [anon_sym_LT_LPAREN] = ACTIONS(6952), - [anon_sym_GT_LPAREN] = ACTIONS(6952), + [sym__concat] = ACTIONS(7022), + [anon_sym_RBRACE] = ACTIONS(7022), + [anon_sym_EQ] = ACTIONS(7711), + [sym__special_characters] = ACTIONS(7024), + [anon_sym_DQUOTE] = ACTIONS(7022), + [anon_sym_DOLLAR] = ACTIONS(7711), + [sym_raw_string] = ACTIONS(7022), + [anon_sym_POUND] = ACTIONS(7022), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7022), + [anon_sym_COLON] = ACTIONS(7711), + [anon_sym_COLON_QMARK] = ACTIONS(7711), + [anon_sym_COLON_DASH] = ACTIONS(7711), + [anon_sym_PERCENT] = ACTIONS(7711), + [anon_sym_DASH] = ACTIONS(7711), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7022), + [anon_sym_BQUOTE] = ACTIONS(7022), + [anon_sym_LT_LPAREN] = ACTIONS(7022), + [anon_sym_GT_LPAREN] = ACTIONS(7022), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6954), + [sym_word] = ACTIONS(7024), }, [3886] = { - [sym__concat] = ACTIONS(6956), - [anon_sym_RBRACE] = ACTIONS(6956), - [anon_sym_EQ] = ACTIONS(7639), - [sym__special_characters] = ACTIONS(6958), - [anon_sym_DQUOTE] = ACTIONS(6956), - [anon_sym_DOLLAR] = ACTIONS(7639), - [sym_raw_string] = ACTIONS(6956), - [anon_sym_POUND] = ACTIONS(6956), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6956), - [anon_sym_COLON] = ACTIONS(7639), - [anon_sym_COLON_QMARK] = ACTIONS(7639), - [anon_sym_COLON_DASH] = ACTIONS(7639), - [anon_sym_PERCENT] = ACTIONS(7639), - [anon_sym_DASH] = ACTIONS(7639), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6956), - [anon_sym_BQUOTE] = ACTIONS(6956), - [anon_sym_LT_LPAREN] = ACTIONS(6956), - [anon_sym_GT_LPAREN] = ACTIONS(6956), + [sym__concat] = ACTIONS(7026), + [anon_sym_RBRACE] = ACTIONS(7026), + [anon_sym_EQ] = ACTIONS(7713), + [sym__special_characters] = ACTIONS(7028), + [anon_sym_DQUOTE] = ACTIONS(7026), + [anon_sym_DOLLAR] = ACTIONS(7713), + [sym_raw_string] = ACTIONS(7026), + [anon_sym_POUND] = ACTIONS(7026), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7026), + [anon_sym_COLON] = ACTIONS(7713), + [anon_sym_COLON_QMARK] = ACTIONS(7713), + [anon_sym_COLON_DASH] = ACTIONS(7713), + [anon_sym_PERCENT] = ACTIONS(7713), + [anon_sym_DASH] = ACTIONS(7713), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7026), + [anon_sym_BQUOTE] = ACTIONS(7026), + [anon_sym_LT_LPAREN] = ACTIONS(7026), + [anon_sym_GT_LPAREN] = ACTIONS(7026), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6958), + [sym_word] = ACTIONS(7028), }, [3887] = { - [sym_file_descriptor] = ACTIONS(5961), - [sym__concat] = ACTIONS(5961), - [sym_variable_name] = ACTIONS(5961), - [anon_sym_PIPE] = ACTIONS(6846), - [anon_sym_RPAREN] = ACTIONS(5961), - [anon_sym_PIPE_AMP] = ACTIONS(5961), - [anon_sym_AMP_AMP] = ACTIONS(5961), - [anon_sym_PIPE_PIPE] = ACTIONS(5961), - [anon_sym_LT] = ACTIONS(6846), - [anon_sym_GT] = ACTIONS(6846), - [anon_sym_GT_GT] = ACTIONS(5961), - [anon_sym_AMP_GT] = ACTIONS(6846), - [anon_sym_AMP_GT_GT] = ACTIONS(5961), - [anon_sym_LT_AMP] = ACTIONS(5961), - [anon_sym_GT_AMP] = ACTIONS(5961), - [sym__special_characters] = ACTIONS(6846), - [anon_sym_DQUOTE] = ACTIONS(5961), - [anon_sym_DOLLAR] = ACTIONS(6846), - [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_file_descriptor] = ACTIONS(6025), + [sym__concat] = ACTIONS(6025), + [sym_variable_name] = ACTIONS(6025), + [anon_sym_PIPE] = ACTIONS(6916), + [anon_sym_RPAREN] = ACTIONS(6025), + [anon_sym_PIPE_AMP] = ACTIONS(6025), + [anon_sym_AMP_AMP] = ACTIONS(6025), + [anon_sym_PIPE_PIPE] = ACTIONS(6025), + [anon_sym_LT] = ACTIONS(6916), + [anon_sym_GT] = ACTIONS(6916), + [anon_sym_GT_GT] = ACTIONS(6025), + [anon_sym_AMP_GT] = ACTIONS(6916), + [anon_sym_AMP_GT_GT] = ACTIONS(6025), + [anon_sym_LT_AMP] = ACTIONS(6025), + [anon_sym_GT_AMP] = ACTIONS(6025), + [sym__special_characters] = ACTIONS(6916), + [anon_sym_DQUOTE] = ACTIONS(6025), + [anon_sym_DOLLAR] = ACTIONS(6916), + [sym_raw_string] = ACTIONS(6025), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6025), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6025), + [anon_sym_BQUOTE] = ACTIONS(6025), + [anon_sym_LT_LPAREN] = ACTIONS(6025), + [anon_sym_GT_LPAREN] = ACTIONS(6025), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6846), + [sym_word] = ACTIONS(6916), }, [3888] = { - [sym_file_descriptor] = ACTIONS(5965), - [sym__concat] = ACTIONS(5965), - [sym_variable_name] = ACTIONS(5965), - [anon_sym_PIPE] = ACTIONS(6848), - [anon_sym_RPAREN] = ACTIONS(5965), - [anon_sym_PIPE_AMP] = ACTIONS(5965), - [anon_sym_AMP_AMP] = ACTIONS(5965), - [anon_sym_PIPE_PIPE] = ACTIONS(5965), - [anon_sym_LT] = ACTIONS(6848), - [anon_sym_GT] = ACTIONS(6848), - [anon_sym_GT_GT] = ACTIONS(5965), - [anon_sym_AMP_GT] = ACTIONS(6848), - [anon_sym_AMP_GT_GT] = ACTIONS(5965), - [anon_sym_LT_AMP] = ACTIONS(5965), - [anon_sym_GT_AMP] = ACTIONS(5965), - [sym__special_characters] = ACTIONS(6848), - [anon_sym_DQUOTE] = ACTIONS(5965), - [anon_sym_DOLLAR] = ACTIONS(6848), - [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_file_descriptor] = ACTIONS(6029), + [sym__concat] = ACTIONS(6029), + [sym_variable_name] = ACTIONS(6029), + [anon_sym_PIPE] = ACTIONS(6918), + [anon_sym_RPAREN] = ACTIONS(6029), + [anon_sym_PIPE_AMP] = ACTIONS(6029), + [anon_sym_AMP_AMP] = ACTIONS(6029), + [anon_sym_PIPE_PIPE] = ACTIONS(6029), + [anon_sym_LT] = ACTIONS(6918), + [anon_sym_GT] = ACTIONS(6918), + [anon_sym_GT_GT] = ACTIONS(6029), + [anon_sym_AMP_GT] = ACTIONS(6918), + [anon_sym_AMP_GT_GT] = ACTIONS(6029), + [anon_sym_LT_AMP] = ACTIONS(6029), + [anon_sym_GT_AMP] = ACTIONS(6029), + [sym__special_characters] = ACTIONS(6918), + [anon_sym_DQUOTE] = ACTIONS(6029), + [anon_sym_DOLLAR] = ACTIONS(6918), + [sym_raw_string] = ACTIONS(6029), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6029), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6029), + [anon_sym_BQUOTE] = ACTIONS(6029), + [anon_sym_LT_LPAREN] = ACTIONS(6029), + [anon_sym_GT_LPAREN] = ACTIONS(6029), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6848), + [sym_word] = ACTIONS(6918), }, [3889] = { - [sym_file_descriptor] = ACTIONS(5969), - [sym__concat] = ACTIONS(5969), - [sym_variable_name] = ACTIONS(5969), - [anon_sym_PIPE] = ACTIONS(6850), - [anon_sym_RPAREN] = ACTIONS(5969), - [anon_sym_PIPE_AMP] = ACTIONS(5969), - [anon_sym_AMP_AMP] = ACTIONS(5969), - [anon_sym_PIPE_PIPE] = ACTIONS(5969), - [anon_sym_LT] = ACTIONS(6850), - [anon_sym_GT] = ACTIONS(6850), - [anon_sym_GT_GT] = ACTIONS(5969), - [anon_sym_AMP_GT] = ACTIONS(6850), - [anon_sym_AMP_GT_GT] = ACTIONS(5969), - [anon_sym_LT_AMP] = ACTIONS(5969), - [anon_sym_GT_AMP] = ACTIONS(5969), - [sym__special_characters] = ACTIONS(6850), - [anon_sym_DQUOTE] = ACTIONS(5969), - [anon_sym_DOLLAR] = ACTIONS(6850), - [sym_raw_string] = ACTIONS(5969), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5969), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5969), - [anon_sym_BQUOTE] = ACTIONS(5969), - [anon_sym_LT_LPAREN] = ACTIONS(5969), - [anon_sym_GT_LPAREN] = ACTIONS(5969), + [sym_file_descriptor] = ACTIONS(6033), + [sym__concat] = ACTIONS(6033), + [sym_variable_name] = ACTIONS(6033), + [anon_sym_PIPE] = ACTIONS(6920), + [anon_sym_RPAREN] = ACTIONS(6033), + [anon_sym_PIPE_AMP] = ACTIONS(6033), + [anon_sym_AMP_AMP] = ACTIONS(6033), + [anon_sym_PIPE_PIPE] = ACTIONS(6033), + [anon_sym_LT] = ACTIONS(6920), + [anon_sym_GT] = ACTIONS(6920), + [anon_sym_GT_GT] = ACTIONS(6033), + [anon_sym_AMP_GT] = ACTIONS(6920), + [anon_sym_AMP_GT_GT] = ACTIONS(6033), + [anon_sym_LT_AMP] = ACTIONS(6033), + [anon_sym_GT_AMP] = ACTIONS(6033), + [sym__special_characters] = ACTIONS(6920), + [anon_sym_DQUOTE] = ACTIONS(6033), + [anon_sym_DOLLAR] = ACTIONS(6920), + [sym_raw_string] = ACTIONS(6033), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6033), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6033), + [anon_sym_BQUOTE] = ACTIONS(6033), + [anon_sym_LT_LPAREN] = ACTIONS(6033), + [anon_sym_GT_LPAREN] = ACTIONS(6033), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6850), + [sym_word] = ACTIONS(6920), }, [3890] = { - [sym_file_descriptor] = ACTIONS(5973), - [sym__concat] = ACTIONS(5973), - [sym_variable_name] = ACTIONS(5973), - [anon_sym_PIPE] = ACTIONS(6852), - [anon_sym_RPAREN] = ACTIONS(5973), - [anon_sym_PIPE_AMP] = ACTIONS(5973), - [anon_sym_AMP_AMP] = ACTIONS(5973), - [anon_sym_PIPE_PIPE] = ACTIONS(5973), - [anon_sym_LT] = ACTIONS(6852), - [anon_sym_GT] = ACTIONS(6852), - [anon_sym_GT_GT] = ACTIONS(5973), - [anon_sym_AMP_GT] = ACTIONS(6852), - [anon_sym_AMP_GT_GT] = ACTIONS(5973), - [anon_sym_LT_AMP] = ACTIONS(5973), - [anon_sym_GT_AMP] = ACTIONS(5973), - [sym__special_characters] = ACTIONS(6852), - [anon_sym_DQUOTE] = ACTIONS(5973), - [anon_sym_DOLLAR] = ACTIONS(6852), - [sym_raw_string] = ACTIONS(5973), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5973), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5973), - [anon_sym_BQUOTE] = ACTIONS(5973), - [anon_sym_LT_LPAREN] = ACTIONS(5973), - [anon_sym_GT_LPAREN] = ACTIONS(5973), + [sym_file_descriptor] = ACTIONS(6037), + [sym__concat] = ACTIONS(6037), + [sym_variable_name] = ACTIONS(6037), + [anon_sym_PIPE] = ACTIONS(6922), + [anon_sym_RPAREN] = ACTIONS(6037), + [anon_sym_PIPE_AMP] = ACTIONS(6037), + [anon_sym_AMP_AMP] = ACTIONS(6037), + [anon_sym_PIPE_PIPE] = ACTIONS(6037), + [anon_sym_LT] = ACTIONS(6922), + [anon_sym_GT] = ACTIONS(6922), + [anon_sym_GT_GT] = ACTIONS(6037), + [anon_sym_AMP_GT] = ACTIONS(6922), + [anon_sym_AMP_GT_GT] = ACTIONS(6037), + [anon_sym_LT_AMP] = ACTIONS(6037), + [anon_sym_GT_AMP] = ACTIONS(6037), + [sym__special_characters] = ACTIONS(6922), + [anon_sym_DQUOTE] = ACTIONS(6037), + [anon_sym_DOLLAR] = ACTIONS(6922), + [sym_raw_string] = ACTIONS(6037), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6037), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6037), + [anon_sym_BQUOTE] = ACTIONS(6037), + [anon_sym_LT_LPAREN] = ACTIONS(6037), + [anon_sym_GT_LPAREN] = ACTIONS(6037), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6852), + [sym_word] = ACTIONS(6922), }, [3891] = { [sym_concatenation] = STATE(451), @@ -96405,53 +96794,53 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8251), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8329), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3892] = { - [sym_file_descriptor] = ACTIONS(5979), - [sym__concat] = ACTIONS(5979), - [sym_variable_name] = ACTIONS(5979), - [anon_sym_PIPE] = ACTIONS(6856), - [anon_sym_RPAREN] = ACTIONS(5979), - [anon_sym_PIPE_AMP] = ACTIONS(5979), - [anon_sym_AMP_AMP] = ACTIONS(5979), - [anon_sym_PIPE_PIPE] = ACTIONS(5979), - [anon_sym_LT] = ACTIONS(6856), - [anon_sym_GT] = ACTIONS(6856), - [anon_sym_GT_GT] = ACTIONS(5979), - [anon_sym_AMP_GT] = ACTIONS(6856), - [anon_sym_AMP_GT_GT] = ACTIONS(5979), - [anon_sym_LT_AMP] = ACTIONS(5979), - [anon_sym_GT_AMP] = ACTIONS(5979), - [sym__special_characters] = ACTIONS(6856), - [anon_sym_DQUOTE] = ACTIONS(5979), - [anon_sym_DOLLAR] = ACTIONS(6856), - [sym_raw_string] = ACTIONS(5979), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5979), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5979), - [anon_sym_BQUOTE] = ACTIONS(5979), - [anon_sym_LT_LPAREN] = ACTIONS(5979), - [anon_sym_GT_LPAREN] = ACTIONS(5979), + [sym_file_descriptor] = ACTIONS(6043), + [sym__concat] = ACTIONS(6043), + [sym_variable_name] = ACTIONS(6043), + [anon_sym_PIPE] = ACTIONS(6926), + [anon_sym_RPAREN] = ACTIONS(6043), + [anon_sym_PIPE_AMP] = ACTIONS(6043), + [anon_sym_AMP_AMP] = ACTIONS(6043), + [anon_sym_PIPE_PIPE] = ACTIONS(6043), + [anon_sym_LT] = ACTIONS(6926), + [anon_sym_GT] = ACTIONS(6926), + [anon_sym_GT_GT] = ACTIONS(6043), + [anon_sym_AMP_GT] = ACTIONS(6926), + [anon_sym_AMP_GT_GT] = ACTIONS(6043), + [anon_sym_LT_AMP] = ACTIONS(6043), + [anon_sym_GT_AMP] = ACTIONS(6043), + [sym__special_characters] = ACTIONS(6926), + [anon_sym_DQUOTE] = ACTIONS(6043), + [anon_sym_DOLLAR] = ACTIONS(6926), + [sym_raw_string] = ACTIONS(6043), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6043), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6043), + [anon_sym_BQUOTE] = ACTIONS(6043), + [anon_sym_LT_LPAREN] = ACTIONS(6043), + [anon_sym_GT_LPAREN] = ACTIONS(6043), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6856), + [sym_word] = ACTIONS(6926), }, [3893] = { [sym_concatenation] = STATE(451), @@ -96462,53 +96851,53 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8253), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8331), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3894] = { - [sym_file_descriptor] = ACTIONS(5985), - [sym__concat] = ACTIONS(5985), - [sym_variable_name] = ACTIONS(5985), - [anon_sym_PIPE] = ACTIONS(6860), - [anon_sym_RPAREN] = ACTIONS(5985), - [anon_sym_PIPE_AMP] = ACTIONS(5985), - [anon_sym_AMP_AMP] = ACTIONS(5985), - [anon_sym_PIPE_PIPE] = ACTIONS(5985), - [anon_sym_LT] = ACTIONS(6860), - [anon_sym_GT] = ACTIONS(6860), - [anon_sym_GT_GT] = ACTIONS(5985), - [anon_sym_AMP_GT] = ACTIONS(6860), - [anon_sym_AMP_GT_GT] = ACTIONS(5985), - [anon_sym_LT_AMP] = ACTIONS(5985), - [anon_sym_GT_AMP] = ACTIONS(5985), - [sym__special_characters] = ACTIONS(6860), - [anon_sym_DQUOTE] = ACTIONS(5985), - [anon_sym_DOLLAR] = ACTIONS(6860), - [sym_raw_string] = ACTIONS(5985), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5985), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5985), - [anon_sym_BQUOTE] = ACTIONS(5985), - [anon_sym_LT_LPAREN] = ACTIONS(5985), - [anon_sym_GT_LPAREN] = ACTIONS(5985), + [sym_file_descriptor] = ACTIONS(6049), + [sym__concat] = ACTIONS(6049), + [sym_variable_name] = ACTIONS(6049), + [anon_sym_PIPE] = ACTIONS(6930), + [anon_sym_RPAREN] = ACTIONS(6049), + [anon_sym_PIPE_AMP] = ACTIONS(6049), + [anon_sym_AMP_AMP] = ACTIONS(6049), + [anon_sym_PIPE_PIPE] = ACTIONS(6049), + [anon_sym_LT] = ACTIONS(6930), + [anon_sym_GT] = ACTIONS(6930), + [anon_sym_GT_GT] = ACTIONS(6049), + [anon_sym_AMP_GT] = ACTIONS(6930), + [anon_sym_AMP_GT_GT] = ACTIONS(6049), + [anon_sym_LT_AMP] = ACTIONS(6049), + [anon_sym_GT_AMP] = ACTIONS(6049), + [sym__special_characters] = ACTIONS(6930), + [anon_sym_DQUOTE] = ACTIONS(6049), + [anon_sym_DOLLAR] = ACTIONS(6930), + [sym_raw_string] = ACTIONS(6049), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6049), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6049), + [anon_sym_BQUOTE] = ACTIONS(6049), + [anon_sym_LT_LPAREN] = ACTIONS(6049), + [anon_sym_GT_LPAREN] = ACTIONS(6049), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6860), + [sym_word] = ACTIONS(6930), }, [3895] = { [sym_concatenation] = STATE(451), @@ -96519,132 +96908,132 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8255), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8333), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3896] = { - [sym_file_descriptor] = ACTIONS(5991), - [sym__concat] = ACTIONS(5991), - [sym_variable_name] = ACTIONS(5991), - [anon_sym_PIPE] = ACTIONS(6864), - [anon_sym_RPAREN] = ACTIONS(5991), - [anon_sym_PIPE_AMP] = ACTIONS(5991), - [anon_sym_AMP_AMP] = ACTIONS(5991), - [anon_sym_PIPE_PIPE] = ACTIONS(5991), - [anon_sym_LT] = ACTIONS(6864), - [anon_sym_GT] = ACTIONS(6864), - [anon_sym_GT_GT] = ACTIONS(5991), - [anon_sym_AMP_GT] = ACTIONS(6864), - [anon_sym_AMP_GT_GT] = ACTIONS(5991), - [anon_sym_LT_AMP] = ACTIONS(5991), - [anon_sym_GT_AMP] = ACTIONS(5991), - [sym__special_characters] = ACTIONS(6864), - [anon_sym_DQUOTE] = ACTIONS(5991), - [anon_sym_DOLLAR] = ACTIONS(6864), - [sym_raw_string] = ACTIONS(5991), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5991), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5991), - [anon_sym_BQUOTE] = ACTIONS(5991), - [anon_sym_LT_LPAREN] = ACTIONS(5991), - [anon_sym_GT_LPAREN] = ACTIONS(5991), + [sym_file_descriptor] = ACTIONS(6055), + [sym__concat] = ACTIONS(6055), + [sym_variable_name] = ACTIONS(6055), + [anon_sym_PIPE] = ACTIONS(6934), + [anon_sym_RPAREN] = ACTIONS(6055), + [anon_sym_PIPE_AMP] = ACTIONS(6055), + [anon_sym_AMP_AMP] = ACTIONS(6055), + [anon_sym_PIPE_PIPE] = ACTIONS(6055), + [anon_sym_LT] = ACTIONS(6934), + [anon_sym_GT] = ACTIONS(6934), + [anon_sym_GT_GT] = ACTIONS(6055), + [anon_sym_AMP_GT] = ACTIONS(6934), + [anon_sym_AMP_GT_GT] = ACTIONS(6055), + [anon_sym_LT_AMP] = ACTIONS(6055), + [anon_sym_GT_AMP] = ACTIONS(6055), + [sym__special_characters] = ACTIONS(6934), + [anon_sym_DQUOTE] = ACTIONS(6055), + [anon_sym_DOLLAR] = ACTIONS(6934), + [sym_raw_string] = ACTIONS(6055), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6055), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6055), + [anon_sym_BQUOTE] = ACTIONS(6055), + [anon_sym_LT_LPAREN] = ACTIONS(6055), + [anon_sym_GT_LPAREN] = ACTIONS(6055), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6864), + [sym_word] = ACTIONS(6934), }, [3897] = { - [sym_file_descriptor] = ACTIONS(5995), - [sym__concat] = ACTIONS(5995), - [sym_variable_name] = ACTIONS(5995), - [anon_sym_PIPE] = ACTIONS(6866), - [anon_sym_RPAREN] = ACTIONS(5995), - [anon_sym_PIPE_AMP] = ACTIONS(5995), - [anon_sym_AMP_AMP] = ACTIONS(5995), - [anon_sym_PIPE_PIPE] = ACTIONS(5995), - [anon_sym_LT] = ACTIONS(6866), - [anon_sym_GT] = ACTIONS(6866), - [anon_sym_GT_GT] = ACTIONS(5995), - [anon_sym_AMP_GT] = ACTIONS(6866), - [anon_sym_AMP_GT_GT] = ACTIONS(5995), - [anon_sym_LT_AMP] = ACTIONS(5995), - [anon_sym_GT_AMP] = ACTIONS(5995), - [sym__special_characters] = ACTIONS(6866), - [anon_sym_DQUOTE] = ACTIONS(5995), - [anon_sym_DOLLAR] = ACTIONS(6866), - [sym_raw_string] = ACTIONS(5995), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5995), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5995), - [anon_sym_BQUOTE] = ACTIONS(5995), - [anon_sym_LT_LPAREN] = ACTIONS(5995), - [anon_sym_GT_LPAREN] = ACTIONS(5995), + [sym_file_descriptor] = ACTIONS(6059), + [sym__concat] = ACTIONS(6059), + [sym_variable_name] = ACTIONS(6059), + [anon_sym_PIPE] = ACTIONS(6936), + [anon_sym_RPAREN] = ACTIONS(6059), + [anon_sym_PIPE_AMP] = ACTIONS(6059), + [anon_sym_AMP_AMP] = ACTIONS(6059), + [anon_sym_PIPE_PIPE] = ACTIONS(6059), + [anon_sym_LT] = ACTIONS(6936), + [anon_sym_GT] = ACTIONS(6936), + [anon_sym_GT_GT] = ACTIONS(6059), + [anon_sym_AMP_GT] = ACTIONS(6936), + [anon_sym_AMP_GT_GT] = ACTIONS(6059), + [anon_sym_LT_AMP] = ACTIONS(6059), + [anon_sym_GT_AMP] = ACTIONS(6059), + [sym__special_characters] = ACTIONS(6936), + [anon_sym_DQUOTE] = ACTIONS(6059), + [anon_sym_DOLLAR] = ACTIONS(6936), + [sym_raw_string] = ACTIONS(6059), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6059), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6059), + [anon_sym_BQUOTE] = ACTIONS(6059), + [anon_sym_LT_LPAREN] = ACTIONS(6059), + [anon_sym_GT_LPAREN] = ACTIONS(6059), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6866), + [sym_word] = ACTIONS(6936), }, [3898] = { - [anon_sym_PIPE] = ACTIONS(6036), - [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), + [anon_sym_PIPE] = ACTIONS(6100), + [anon_sym_RPAREN] = ACTIONS(4295), + [anon_sym_PIPE_AMP] = ACTIONS(4295), + [anon_sym_AMP_AMP] = ACTIONS(4295), + [anon_sym_PIPE_PIPE] = ACTIONS(4295), + [anon_sym_BQUOTE] = ACTIONS(4295), [sym_comment] = ACTIONS(56), }, [3899] = { - [anon_sym_PIPE] = ACTIONS(8257), - [anon_sym_RPAREN] = ACTIONS(8259), - [anon_sym_PIPE_AMP] = ACTIONS(8259), - [anon_sym_AMP_AMP] = ACTIONS(8259), - [anon_sym_PIPE_PIPE] = ACTIONS(8259), - [anon_sym_BQUOTE] = ACTIONS(8259), + [anon_sym_PIPE] = ACTIONS(8335), + [anon_sym_RPAREN] = ACTIONS(8337), + [anon_sym_PIPE_AMP] = ACTIONS(8337), + [anon_sym_AMP_AMP] = ACTIONS(8337), + [anon_sym_PIPE_PIPE] = ACTIONS(8337), + [anon_sym_BQUOTE] = ACTIONS(8337), [sym_comment] = ACTIONS(56), }, [3900] = { - [anon_sym_PIPE] = ACTIONS(8261), - [anon_sym_RPAREN] = ACTIONS(8263), - [anon_sym_PIPE_AMP] = ACTIONS(8263), - [anon_sym_AMP_AMP] = ACTIONS(8263), - [anon_sym_PIPE_PIPE] = ACTIONS(8263), - [anon_sym_BQUOTE] = ACTIONS(8263), + [anon_sym_PIPE] = ACTIONS(8339), + [anon_sym_RPAREN] = ACTIONS(8341), + [anon_sym_PIPE_AMP] = ACTIONS(8341), + [anon_sym_AMP_AMP] = ACTIONS(8341), + [anon_sym_PIPE_PIPE] = ACTIONS(8341), + [anon_sym_BQUOTE] = ACTIONS(8341), [sym_comment] = ACTIONS(56), }, [3901] = { - [sym__concat] = ACTIONS(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__concat] = ACTIONS(3283), + [anon_sym_PIPE] = ACTIONS(4602), + [anon_sym_RPAREN] = ACTIONS(3283), + [anon_sym_PIPE_AMP] = ACTIONS(3283), + [anon_sym_AMP_AMP] = ACTIONS(3283), + [anon_sym_PIPE_PIPE] = ACTIONS(3283), [sym_comment] = ACTIONS(56), }, [3902] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(8265), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(8343), [sym_comment] = ACTIONS(56), }, [3903] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(8267), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(8345), [sym_comment] = ACTIONS(56), }, [3904] = { - [anon_sym_RBRACE] = ACTIONS(8267), + [anon_sym_RBRACE] = ACTIONS(8345), [sym_comment] = ACTIONS(56), }, [3905] = { @@ -96656,33 +97045,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(4175), - [anon_sym_RBRACE] = ACTIONS(8269), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8347), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3906] = { - [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__concat] = ACTIONS(3347), + [anon_sym_PIPE] = ACTIONS(4610), + [anon_sym_RPAREN] = ACTIONS(3347), + [anon_sym_PIPE_AMP] = ACTIONS(3347), + [anon_sym_AMP_AMP] = ACTIONS(3347), + [anon_sym_PIPE_PIPE] = ACTIONS(3347), [sym_comment] = ACTIONS(56), }, [3907] = { @@ -96693,31 +97082,31 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(4177), [sym_command_substitution] = STATE(4177), [sym_process_substitution] = STATE(4177), - [anon_sym_RBRACE] = ACTIONS(8267), - [sym__special_characters] = ACTIONS(8271), - [anon_sym_DQUOTE] = ACTIONS(1924), - [anon_sym_DOLLAR] = ACTIONS(1926), - [sym_raw_string] = ACTIONS(8273), - [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), + [anon_sym_RBRACE] = ACTIONS(8345), + [sym__special_characters] = ACTIONS(8349), + [anon_sym_DQUOTE] = ACTIONS(1952), + [anon_sym_DOLLAR] = ACTIONS(1954), + [sym_raw_string] = ACTIONS(8351), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), + [anon_sym_BQUOTE] = ACTIONS(1962), + [anon_sym_LT_LPAREN] = ACTIONS(1964), + [anon_sym_GT_LPAREN] = ACTIONS(1964), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(8275), + [sym_word] = ACTIONS(8353), }, [3908] = { - [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__concat] = ACTIONS(3392), + [anon_sym_PIPE] = ACTIONS(4618), + [anon_sym_RPAREN] = ACTIONS(3392), + [anon_sym_PIPE_AMP] = ACTIONS(3392), + [anon_sym_AMP_AMP] = ACTIONS(3392), + [anon_sym_PIPE_PIPE] = ACTIONS(3392), [sym_comment] = ACTIONS(56), }, [3909] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8277), + [sym_regex_without_right_brace] = ACTIONS(8355), }, [3910] = { [sym_concatenation] = STATE(451), @@ -96728,38 +97117,38 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8279), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8357), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3911] = { - [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__concat] = ACTIONS(3400), + [anon_sym_PIPE] = ACTIONS(4624), + [anon_sym_RPAREN] = ACTIONS(3400), + [anon_sym_PIPE_AMP] = ACTIONS(3400), + [anon_sym_AMP_AMP] = ACTIONS(3400), + [anon_sym_PIPE_PIPE] = ACTIONS(3400), [sym_comment] = ACTIONS(56), }, [3912] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8281), + [sym_regex_without_right_brace] = ACTIONS(8359), }, [3913] = { [sym_concatenation] = STATE(451), @@ -96770,29 +97159,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8283), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8361), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3914] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8285), + [sym_regex_without_right_brace] = ACTIONS(8363), }, [3915] = { [sym_concatenation] = STATE(451), @@ -96803,25 +97192,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8267), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8345), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3916] = { [sym_concatenation] = STATE(451), @@ -96832,33 +97221,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(4185), - [anon_sym_RBRACE] = ACTIONS(8287), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8365), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3917] = { - [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__concat] = ACTIONS(3412), + [anon_sym_PIPE] = ACTIONS(4634), + [anon_sym_RPAREN] = ACTIONS(3412), + [anon_sym_PIPE_AMP] = ACTIONS(3412), + [anon_sym_AMP_AMP] = ACTIONS(3412), + [anon_sym_PIPE_PIPE] = ACTIONS(3412), [sym_comment] = ACTIONS(56), }, [3918] = { @@ -96870,227 +97259,227 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(4187), - [anon_sym_RBRACE] = ACTIONS(8289), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8367), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3919] = { - [sym__concat] = ACTIONS(6948), - [sym_variable_name] = ACTIONS(6948), - [anon_sym_PIPE] = ACTIONS(7635), - [anon_sym_RPAREN] = ACTIONS(6948), - [anon_sym_PIPE_AMP] = ACTIONS(6948), - [anon_sym_AMP_AMP] = ACTIONS(6948), - [anon_sym_PIPE_PIPE] = ACTIONS(6948), - [sym__special_characters] = ACTIONS(7635), - [anon_sym_DQUOTE] = ACTIONS(6948), - [anon_sym_DOLLAR] = ACTIONS(7635), - [sym_raw_string] = ACTIONS(6948), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6948), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6948), - [anon_sym_BQUOTE] = ACTIONS(6948), - [anon_sym_LT_LPAREN] = ACTIONS(6948), - [anon_sym_GT_LPAREN] = ACTIONS(6948), + [sym__concat] = ACTIONS(7018), + [sym_variable_name] = ACTIONS(7018), + [anon_sym_PIPE] = ACTIONS(7709), + [anon_sym_RPAREN] = ACTIONS(7018), + [anon_sym_PIPE_AMP] = ACTIONS(7018), + [anon_sym_AMP_AMP] = ACTIONS(7018), + [anon_sym_PIPE_PIPE] = ACTIONS(7018), + [sym__special_characters] = ACTIONS(7709), + [anon_sym_DQUOTE] = ACTIONS(7018), + [anon_sym_DOLLAR] = ACTIONS(7709), + [sym_raw_string] = ACTIONS(7018), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7018), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7018), + [anon_sym_BQUOTE] = ACTIONS(7018), + [anon_sym_LT_LPAREN] = ACTIONS(7018), + [anon_sym_GT_LPAREN] = ACTIONS(7018), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7635), - [sym_word] = ACTIONS(6950), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7709), + [sym_word] = ACTIONS(7020), }, [3920] = { - [sym__concat] = ACTIONS(6952), - [sym_variable_name] = ACTIONS(6952), - [anon_sym_PIPE] = ACTIONS(7637), - [anon_sym_RPAREN] = ACTIONS(6952), - [anon_sym_PIPE_AMP] = ACTIONS(6952), - [anon_sym_AMP_AMP] = ACTIONS(6952), - [anon_sym_PIPE_PIPE] = ACTIONS(6952), - [sym__special_characters] = ACTIONS(7637), - [anon_sym_DQUOTE] = ACTIONS(6952), - [anon_sym_DOLLAR] = ACTIONS(7637), - [sym_raw_string] = ACTIONS(6952), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6952), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6952), - [anon_sym_BQUOTE] = ACTIONS(6952), - [anon_sym_LT_LPAREN] = ACTIONS(6952), - [anon_sym_GT_LPAREN] = ACTIONS(6952), + [sym__concat] = ACTIONS(7022), + [sym_variable_name] = ACTIONS(7022), + [anon_sym_PIPE] = ACTIONS(7711), + [anon_sym_RPAREN] = ACTIONS(7022), + [anon_sym_PIPE_AMP] = ACTIONS(7022), + [anon_sym_AMP_AMP] = ACTIONS(7022), + [anon_sym_PIPE_PIPE] = ACTIONS(7022), + [sym__special_characters] = ACTIONS(7711), + [anon_sym_DQUOTE] = ACTIONS(7022), + [anon_sym_DOLLAR] = ACTIONS(7711), + [sym_raw_string] = ACTIONS(7022), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7022), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7022), + [anon_sym_BQUOTE] = ACTIONS(7022), + [anon_sym_LT_LPAREN] = ACTIONS(7022), + [anon_sym_GT_LPAREN] = ACTIONS(7022), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7637), - [sym_word] = ACTIONS(6954), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7711), + [sym_word] = ACTIONS(7024), }, [3921] = { - [sym__concat] = ACTIONS(6956), - [sym_variable_name] = ACTIONS(6956), - [anon_sym_PIPE] = ACTIONS(7639), - [anon_sym_RPAREN] = ACTIONS(6956), - [anon_sym_PIPE_AMP] = ACTIONS(6956), - [anon_sym_AMP_AMP] = ACTIONS(6956), - [anon_sym_PIPE_PIPE] = ACTIONS(6956), - [sym__special_characters] = ACTIONS(7639), - [anon_sym_DQUOTE] = ACTIONS(6956), - [anon_sym_DOLLAR] = ACTIONS(7639), - [sym_raw_string] = ACTIONS(6956), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6956), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6956), - [anon_sym_BQUOTE] = ACTIONS(6956), - [anon_sym_LT_LPAREN] = ACTIONS(6956), - [anon_sym_GT_LPAREN] = ACTIONS(6956), + [sym__concat] = ACTIONS(7026), + [sym_variable_name] = ACTIONS(7026), + [anon_sym_PIPE] = ACTIONS(7713), + [anon_sym_RPAREN] = ACTIONS(7026), + [anon_sym_PIPE_AMP] = ACTIONS(7026), + [anon_sym_AMP_AMP] = ACTIONS(7026), + [anon_sym_PIPE_PIPE] = ACTIONS(7026), + [sym__special_characters] = ACTIONS(7713), + [anon_sym_DQUOTE] = ACTIONS(7026), + [anon_sym_DOLLAR] = ACTIONS(7713), + [sym_raw_string] = ACTIONS(7026), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7026), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7026), + [anon_sym_BQUOTE] = ACTIONS(7026), + [anon_sym_LT_LPAREN] = ACTIONS(7026), + [anon_sym_GT_LPAREN] = ACTIONS(7026), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7639), - [sym_word] = ACTIONS(6958), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7713), + [sym_word] = ACTIONS(7028), }, [3922] = { - [sym__concat] = ACTIONS(6948), - [anon_sym_PIPE] = ACTIONS(7635), - [anon_sym_RPAREN] = ACTIONS(6948), - [anon_sym_PIPE_AMP] = ACTIONS(6948), - [anon_sym_AMP_AMP] = ACTIONS(6948), - [anon_sym_PIPE_PIPE] = ACTIONS(6948), - [sym__special_characters] = ACTIONS(7635), - [anon_sym_DQUOTE] = ACTIONS(6948), - [anon_sym_DOLLAR] = ACTIONS(7635), - [sym_raw_string] = ACTIONS(6948), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6948), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6948), - [anon_sym_BQUOTE] = ACTIONS(6948), - [anon_sym_LT_LPAREN] = ACTIONS(6948), - [anon_sym_GT_LPAREN] = ACTIONS(6948), + [sym__concat] = ACTIONS(7018), + [anon_sym_PIPE] = ACTIONS(7709), + [anon_sym_RPAREN] = ACTIONS(7018), + [anon_sym_PIPE_AMP] = ACTIONS(7018), + [anon_sym_AMP_AMP] = ACTIONS(7018), + [anon_sym_PIPE_PIPE] = ACTIONS(7018), + [sym__special_characters] = ACTIONS(7709), + [anon_sym_DQUOTE] = ACTIONS(7018), + [anon_sym_DOLLAR] = ACTIONS(7709), + [sym_raw_string] = ACTIONS(7018), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7018), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7018), + [anon_sym_BQUOTE] = ACTIONS(7018), + [anon_sym_LT_LPAREN] = ACTIONS(7018), + [anon_sym_GT_LPAREN] = ACTIONS(7018), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7635), - [sym_word] = ACTIONS(6950), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7709), + [sym_word] = ACTIONS(7020), }, [3923] = { - [sym__concat] = ACTIONS(6952), - [anon_sym_PIPE] = ACTIONS(7637), - [anon_sym_RPAREN] = ACTIONS(6952), - [anon_sym_PIPE_AMP] = ACTIONS(6952), - [anon_sym_AMP_AMP] = ACTIONS(6952), - [anon_sym_PIPE_PIPE] = ACTIONS(6952), - [sym__special_characters] = ACTIONS(7637), - [anon_sym_DQUOTE] = ACTIONS(6952), - [anon_sym_DOLLAR] = ACTIONS(7637), - [sym_raw_string] = ACTIONS(6952), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6952), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6952), - [anon_sym_BQUOTE] = ACTIONS(6952), - [anon_sym_LT_LPAREN] = ACTIONS(6952), - [anon_sym_GT_LPAREN] = ACTIONS(6952), + [sym__concat] = ACTIONS(7022), + [anon_sym_PIPE] = ACTIONS(7711), + [anon_sym_RPAREN] = ACTIONS(7022), + [anon_sym_PIPE_AMP] = ACTIONS(7022), + [anon_sym_AMP_AMP] = ACTIONS(7022), + [anon_sym_PIPE_PIPE] = ACTIONS(7022), + [sym__special_characters] = ACTIONS(7711), + [anon_sym_DQUOTE] = ACTIONS(7022), + [anon_sym_DOLLAR] = ACTIONS(7711), + [sym_raw_string] = ACTIONS(7022), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7022), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7022), + [anon_sym_BQUOTE] = ACTIONS(7022), + [anon_sym_LT_LPAREN] = ACTIONS(7022), + [anon_sym_GT_LPAREN] = ACTIONS(7022), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7637), - [sym_word] = ACTIONS(6954), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7711), + [sym_word] = ACTIONS(7024), }, [3924] = { - [sym__concat] = ACTIONS(6956), - [anon_sym_PIPE] = ACTIONS(7639), - [anon_sym_RPAREN] = ACTIONS(6956), - [anon_sym_PIPE_AMP] = ACTIONS(6956), - [anon_sym_AMP_AMP] = ACTIONS(6956), - [anon_sym_PIPE_PIPE] = ACTIONS(6956), - [sym__special_characters] = ACTIONS(7639), - [anon_sym_DQUOTE] = ACTIONS(6956), - [anon_sym_DOLLAR] = ACTIONS(7639), - [sym_raw_string] = ACTIONS(6956), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6956), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6956), - [anon_sym_BQUOTE] = ACTIONS(6956), - [anon_sym_LT_LPAREN] = ACTIONS(6956), - [anon_sym_GT_LPAREN] = ACTIONS(6956), + [sym__concat] = ACTIONS(7026), + [anon_sym_PIPE] = ACTIONS(7713), + [anon_sym_RPAREN] = ACTIONS(7026), + [anon_sym_PIPE_AMP] = ACTIONS(7026), + [anon_sym_AMP_AMP] = ACTIONS(7026), + [anon_sym_PIPE_PIPE] = ACTIONS(7026), + [sym__special_characters] = ACTIONS(7713), + [anon_sym_DQUOTE] = ACTIONS(7026), + [anon_sym_DOLLAR] = ACTIONS(7713), + [sym_raw_string] = ACTIONS(7026), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7026), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7026), + [anon_sym_BQUOTE] = ACTIONS(7026), + [anon_sym_LT_LPAREN] = ACTIONS(7026), + [anon_sym_GT_LPAREN] = ACTIONS(7026), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7639), - [sym_word] = ACTIONS(6958), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7713), + [sym_word] = ACTIONS(7028), }, [3925] = { - [sym_file_descriptor] = ACTIONS(5961), - [sym__concat] = ACTIONS(5961), - [anon_sym_PIPE] = ACTIONS(6846), - [anon_sym_RPAREN] = ACTIONS(5961), - [anon_sym_PIPE_AMP] = ACTIONS(5961), - [anon_sym_AMP_AMP] = ACTIONS(5961), - [anon_sym_PIPE_PIPE] = ACTIONS(5961), - [anon_sym_LT] = ACTIONS(6846), - [anon_sym_GT] = ACTIONS(6846), - [anon_sym_GT_GT] = ACTIONS(5961), - [anon_sym_AMP_GT] = ACTIONS(6846), - [anon_sym_AMP_GT_GT] = ACTIONS(5961), - [anon_sym_LT_AMP] = ACTIONS(5961), - [anon_sym_GT_AMP] = ACTIONS(5961), - [anon_sym_LT_LT] = ACTIONS(6846), - [anon_sym_LT_LT_DASH] = ACTIONS(5961), - [anon_sym_LT_LT_LT] = ACTIONS(5961), + [sym_file_descriptor] = ACTIONS(6025), + [sym__concat] = ACTIONS(6025), + [anon_sym_PIPE] = ACTIONS(6916), + [anon_sym_RPAREN] = ACTIONS(6025), + [anon_sym_PIPE_AMP] = ACTIONS(6025), + [anon_sym_AMP_AMP] = ACTIONS(6025), + [anon_sym_PIPE_PIPE] = ACTIONS(6025), + [anon_sym_LT] = ACTIONS(6916), + [anon_sym_GT] = ACTIONS(6916), + [anon_sym_GT_GT] = ACTIONS(6025), + [anon_sym_AMP_GT] = ACTIONS(6916), + [anon_sym_AMP_GT_GT] = ACTIONS(6025), + [anon_sym_LT_AMP] = ACTIONS(6025), + [anon_sym_GT_AMP] = ACTIONS(6025), + [anon_sym_LT_LT] = ACTIONS(6916), + [anon_sym_LT_LT_DASH] = ACTIONS(6025), + [anon_sym_LT_LT_LT] = ACTIONS(6025), [sym_comment] = ACTIONS(56), }, [3926] = { - [sym_file_descriptor] = ACTIONS(5965), - [sym__concat] = ACTIONS(5965), - [anon_sym_PIPE] = ACTIONS(6848), - [anon_sym_RPAREN] = ACTIONS(5965), - [anon_sym_PIPE_AMP] = ACTIONS(5965), - [anon_sym_AMP_AMP] = ACTIONS(5965), - [anon_sym_PIPE_PIPE] = ACTIONS(5965), - [anon_sym_LT] = ACTIONS(6848), - [anon_sym_GT] = ACTIONS(6848), - [anon_sym_GT_GT] = ACTIONS(5965), - [anon_sym_AMP_GT] = ACTIONS(6848), - [anon_sym_AMP_GT_GT] = ACTIONS(5965), - [anon_sym_LT_AMP] = ACTIONS(5965), - [anon_sym_GT_AMP] = ACTIONS(5965), - [anon_sym_LT_LT] = ACTIONS(6848), - [anon_sym_LT_LT_DASH] = ACTIONS(5965), - [anon_sym_LT_LT_LT] = ACTIONS(5965), + [sym_file_descriptor] = ACTIONS(6029), + [sym__concat] = ACTIONS(6029), + [anon_sym_PIPE] = ACTIONS(6918), + [anon_sym_RPAREN] = ACTIONS(6029), + [anon_sym_PIPE_AMP] = ACTIONS(6029), + [anon_sym_AMP_AMP] = ACTIONS(6029), + [anon_sym_PIPE_PIPE] = ACTIONS(6029), + [anon_sym_LT] = ACTIONS(6918), + [anon_sym_GT] = ACTIONS(6918), + [anon_sym_GT_GT] = ACTIONS(6029), + [anon_sym_AMP_GT] = ACTIONS(6918), + [anon_sym_AMP_GT_GT] = ACTIONS(6029), + [anon_sym_LT_AMP] = ACTIONS(6029), + [anon_sym_GT_AMP] = ACTIONS(6029), + [anon_sym_LT_LT] = ACTIONS(6918), + [anon_sym_LT_LT_DASH] = ACTIONS(6029), + [anon_sym_LT_LT_LT] = ACTIONS(6029), [sym_comment] = ACTIONS(56), }, [3927] = { - [sym_file_descriptor] = ACTIONS(5969), - [sym__concat] = ACTIONS(5969), - [anon_sym_PIPE] = ACTIONS(6850), - [anon_sym_RPAREN] = ACTIONS(5969), - [anon_sym_PIPE_AMP] = ACTIONS(5969), - [anon_sym_AMP_AMP] = ACTIONS(5969), - [anon_sym_PIPE_PIPE] = ACTIONS(5969), - [anon_sym_LT] = ACTIONS(6850), - [anon_sym_GT] = ACTIONS(6850), - [anon_sym_GT_GT] = ACTIONS(5969), - [anon_sym_AMP_GT] = ACTIONS(6850), - [anon_sym_AMP_GT_GT] = ACTIONS(5969), - [anon_sym_LT_AMP] = ACTIONS(5969), - [anon_sym_GT_AMP] = ACTIONS(5969), - [anon_sym_LT_LT] = ACTIONS(6850), - [anon_sym_LT_LT_DASH] = ACTIONS(5969), - [anon_sym_LT_LT_LT] = ACTIONS(5969), + [sym_file_descriptor] = ACTIONS(6033), + [sym__concat] = ACTIONS(6033), + [anon_sym_PIPE] = ACTIONS(6920), + [anon_sym_RPAREN] = ACTIONS(6033), + [anon_sym_PIPE_AMP] = ACTIONS(6033), + [anon_sym_AMP_AMP] = ACTIONS(6033), + [anon_sym_PIPE_PIPE] = ACTIONS(6033), + [anon_sym_LT] = ACTIONS(6920), + [anon_sym_GT] = ACTIONS(6920), + [anon_sym_GT_GT] = ACTIONS(6033), + [anon_sym_AMP_GT] = ACTIONS(6920), + [anon_sym_AMP_GT_GT] = ACTIONS(6033), + [anon_sym_LT_AMP] = ACTIONS(6033), + [anon_sym_GT_AMP] = ACTIONS(6033), + [anon_sym_LT_LT] = ACTIONS(6920), + [anon_sym_LT_LT_DASH] = ACTIONS(6033), + [anon_sym_LT_LT_LT] = ACTIONS(6033), [sym_comment] = ACTIONS(56), }, [3928] = { - [sym_file_descriptor] = ACTIONS(5973), - [sym__concat] = ACTIONS(5973), - [anon_sym_PIPE] = ACTIONS(6852), - [anon_sym_RPAREN] = ACTIONS(5973), - [anon_sym_PIPE_AMP] = ACTIONS(5973), - [anon_sym_AMP_AMP] = ACTIONS(5973), - [anon_sym_PIPE_PIPE] = ACTIONS(5973), - [anon_sym_LT] = ACTIONS(6852), - [anon_sym_GT] = ACTIONS(6852), - [anon_sym_GT_GT] = ACTIONS(5973), - [anon_sym_AMP_GT] = ACTIONS(6852), - [anon_sym_AMP_GT_GT] = ACTIONS(5973), - [anon_sym_LT_AMP] = ACTIONS(5973), - [anon_sym_GT_AMP] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(6852), - [anon_sym_LT_LT_DASH] = ACTIONS(5973), - [anon_sym_LT_LT_LT] = ACTIONS(5973), + [sym_file_descriptor] = ACTIONS(6037), + [sym__concat] = ACTIONS(6037), + [anon_sym_PIPE] = ACTIONS(6922), + [anon_sym_RPAREN] = ACTIONS(6037), + [anon_sym_PIPE_AMP] = ACTIONS(6037), + [anon_sym_AMP_AMP] = ACTIONS(6037), + [anon_sym_PIPE_PIPE] = ACTIONS(6037), + [anon_sym_LT] = ACTIONS(6922), + [anon_sym_GT] = ACTIONS(6922), + [anon_sym_GT_GT] = ACTIONS(6037), + [anon_sym_AMP_GT] = ACTIONS(6922), + [anon_sym_AMP_GT_GT] = ACTIONS(6037), + [anon_sym_LT_AMP] = ACTIONS(6037), + [anon_sym_GT_AMP] = ACTIONS(6037), + [anon_sym_LT_LT] = ACTIONS(6922), + [anon_sym_LT_LT_DASH] = ACTIONS(6037), + [anon_sym_LT_LT_LT] = ACTIONS(6037), [sym_comment] = ACTIONS(56), }, [3929] = { @@ -97102,44 +97491,44 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8291), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8369), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3930] = { - [sym_file_descriptor] = ACTIONS(5979), - [sym__concat] = ACTIONS(5979), - [anon_sym_PIPE] = ACTIONS(6856), - [anon_sym_RPAREN] = ACTIONS(5979), - [anon_sym_PIPE_AMP] = ACTIONS(5979), - [anon_sym_AMP_AMP] = ACTIONS(5979), - [anon_sym_PIPE_PIPE] = ACTIONS(5979), - [anon_sym_LT] = ACTIONS(6856), - [anon_sym_GT] = ACTIONS(6856), - [anon_sym_GT_GT] = ACTIONS(5979), - [anon_sym_AMP_GT] = ACTIONS(6856), - [anon_sym_AMP_GT_GT] = ACTIONS(5979), - [anon_sym_LT_AMP] = ACTIONS(5979), - [anon_sym_GT_AMP] = ACTIONS(5979), - [anon_sym_LT_LT] = ACTIONS(6856), - [anon_sym_LT_LT_DASH] = ACTIONS(5979), - [anon_sym_LT_LT_LT] = ACTIONS(5979), + [sym_file_descriptor] = ACTIONS(6043), + [sym__concat] = ACTIONS(6043), + [anon_sym_PIPE] = ACTIONS(6926), + [anon_sym_RPAREN] = ACTIONS(6043), + [anon_sym_PIPE_AMP] = ACTIONS(6043), + [anon_sym_AMP_AMP] = ACTIONS(6043), + [anon_sym_PIPE_PIPE] = ACTIONS(6043), + [anon_sym_LT] = ACTIONS(6926), + [anon_sym_GT] = ACTIONS(6926), + [anon_sym_GT_GT] = ACTIONS(6043), + [anon_sym_AMP_GT] = ACTIONS(6926), + [anon_sym_AMP_GT_GT] = ACTIONS(6043), + [anon_sym_LT_AMP] = ACTIONS(6043), + [anon_sym_GT_AMP] = ACTIONS(6043), + [anon_sym_LT_LT] = ACTIONS(6926), + [anon_sym_LT_LT_DASH] = ACTIONS(6043), + [anon_sym_LT_LT_LT] = ACTIONS(6043), [sym_comment] = ACTIONS(56), }, [3931] = { @@ -97151,44 +97540,44 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8293), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8371), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3932] = { - [sym_file_descriptor] = ACTIONS(5985), - [sym__concat] = ACTIONS(5985), - [anon_sym_PIPE] = ACTIONS(6860), - [anon_sym_RPAREN] = ACTIONS(5985), - [anon_sym_PIPE_AMP] = ACTIONS(5985), - [anon_sym_AMP_AMP] = ACTIONS(5985), - [anon_sym_PIPE_PIPE] = ACTIONS(5985), - [anon_sym_LT] = ACTIONS(6860), - [anon_sym_GT] = ACTIONS(6860), - [anon_sym_GT_GT] = ACTIONS(5985), - [anon_sym_AMP_GT] = ACTIONS(6860), - [anon_sym_AMP_GT_GT] = ACTIONS(5985), - [anon_sym_LT_AMP] = ACTIONS(5985), - [anon_sym_GT_AMP] = ACTIONS(5985), - [anon_sym_LT_LT] = ACTIONS(6860), - [anon_sym_LT_LT_DASH] = ACTIONS(5985), - [anon_sym_LT_LT_LT] = ACTIONS(5985), + [sym_file_descriptor] = ACTIONS(6049), + [sym__concat] = ACTIONS(6049), + [anon_sym_PIPE] = ACTIONS(6930), + [anon_sym_RPAREN] = ACTIONS(6049), + [anon_sym_PIPE_AMP] = ACTIONS(6049), + [anon_sym_AMP_AMP] = ACTIONS(6049), + [anon_sym_PIPE_PIPE] = ACTIONS(6049), + [anon_sym_LT] = ACTIONS(6930), + [anon_sym_GT] = ACTIONS(6930), + [anon_sym_GT_GT] = ACTIONS(6049), + [anon_sym_AMP_GT] = ACTIONS(6930), + [anon_sym_AMP_GT_GT] = ACTIONS(6049), + [anon_sym_LT_AMP] = ACTIONS(6049), + [anon_sym_GT_AMP] = ACTIONS(6049), + [anon_sym_LT_LT] = ACTIONS(6930), + [anon_sym_LT_LT_DASH] = ACTIONS(6049), + [anon_sym_LT_LT_LT] = ACTIONS(6049), [sym_comment] = ACTIONS(56), }, [3933] = { @@ -97200,173 +97589,173 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8295), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8373), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3934] = { - [sym_file_descriptor] = ACTIONS(5991), - [sym__concat] = ACTIONS(5991), - [anon_sym_PIPE] = ACTIONS(6864), - [anon_sym_RPAREN] = ACTIONS(5991), - [anon_sym_PIPE_AMP] = ACTIONS(5991), - [anon_sym_AMP_AMP] = ACTIONS(5991), - [anon_sym_PIPE_PIPE] = ACTIONS(5991), - [anon_sym_LT] = ACTIONS(6864), - [anon_sym_GT] = ACTIONS(6864), - [anon_sym_GT_GT] = ACTIONS(5991), - [anon_sym_AMP_GT] = ACTIONS(6864), - [anon_sym_AMP_GT_GT] = ACTIONS(5991), - [anon_sym_LT_AMP] = ACTIONS(5991), - [anon_sym_GT_AMP] = ACTIONS(5991), - [anon_sym_LT_LT] = ACTIONS(6864), - [anon_sym_LT_LT_DASH] = ACTIONS(5991), - [anon_sym_LT_LT_LT] = ACTIONS(5991), + [sym_file_descriptor] = ACTIONS(6055), + [sym__concat] = ACTIONS(6055), + [anon_sym_PIPE] = ACTIONS(6934), + [anon_sym_RPAREN] = ACTIONS(6055), + [anon_sym_PIPE_AMP] = ACTIONS(6055), + [anon_sym_AMP_AMP] = ACTIONS(6055), + [anon_sym_PIPE_PIPE] = ACTIONS(6055), + [anon_sym_LT] = ACTIONS(6934), + [anon_sym_GT] = ACTIONS(6934), + [anon_sym_GT_GT] = ACTIONS(6055), + [anon_sym_AMP_GT] = ACTIONS(6934), + [anon_sym_AMP_GT_GT] = ACTIONS(6055), + [anon_sym_LT_AMP] = ACTIONS(6055), + [anon_sym_GT_AMP] = ACTIONS(6055), + [anon_sym_LT_LT] = ACTIONS(6934), + [anon_sym_LT_LT_DASH] = ACTIONS(6055), + [anon_sym_LT_LT_LT] = ACTIONS(6055), [sym_comment] = ACTIONS(56), }, [3935] = { - [sym_file_descriptor] = ACTIONS(5995), - [sym__concat] = ACTIONS(5995), - [anon_sym_PIPE] = ACTIONS(6866), - [anon_sym_RPAREN] = ACTIONS(5995), - [anon_sym_PIPE_AMP] = ACTIONS(5995), - [anon_sym_AMP_AMP] = ACTIONS(5995), - [anon_sym_PIPE_PIPE] = ACTIONS(5995), - [anon_sym_LT] = ACTIONS(6866), - [anon_sym_GT] = ACTIONS(6866), - [anon_sym_GT_GT] = ACTIONS(5995), - [anon_sym_AMP_GT] = ACTIONS(6866), - [anon_sym_AMP_GT_GT] = ACTIONS(5995), - [anon_sym_LT_AMP] = ACTIONS(5995), - [anon_sym_GT_AMP] = ACTIONS(5995), - [anon_sym_LT_LT] = ACTIONS(6866), - [anon_sym_LT_LT_DASH] = ACTIONS(5995), - [anon_sym_LT_LT_LT] = ACTIONS(5995), + [sym_file_descriptor] = ACTIONS(6059), + [sym__concat] = ACTIONS(6059), + [anon_sym_PIPE] = ACTIONS(6936), + [anon_sym_RPAREN] = ACTIONS(6059), + [anon_sym_PIPE_AMP] = ACTIONS(6059), + [anon_sym_AMP_AMP] = ACTIONS(6059), + [anon_sym_PIPE_PIPE] = ACTIONS(6059), + [anon_sym_LT] = ACTIONS(6936), + [anon_sym_GT] = ACTIONS(6936), + [anon_sym_GT_GT] = ACTIONS(6059), + [anon_sym_AMP_GT] = ACTIONS(6936), + [anon_sym_AMP_GT_GT] = ACTIONS(6059), + [anon_sym_LT_AMP] = ACTIONS(6059), + [anon_sym_GT_AMP] = ACTIONS(6059), + [anon_sym_LT_LT] = ACTIONS(6936), + [anon_sym_LT_LT_DASH] = ACTIONS(6059), + [anon_sym_LT_LT_LT] = ACTIONS(6059), [sym_comment] = ACTIONS(56), }, [3936] = { - [sym_file_descriptor] = ACTIONS(5961), - [sym__concat] = ACTIONS(5961), - [sym_variable_name] = ACTIONS(5961), - [anon_sym_PIPE] = ACTIONS(6846), - [anon_sym_PIPE_AMP] = ACTIONS(5961), - [anon_sym_AMP_AMP] = ACTIONS(5961), - [anon_sym_PIPE_PIPE] = ACTIONS(5961), - [anon_sym_LT] = ACTIONS(6846), - [anon_sym_GT] = ACTIONS(6846), - [anon_sym_GT_GT] = ACTIONS(5961), - [anon_sym_AMP_GT] = ACTIONS(6846), - [anon_sym_AMP_GT_GT] = ACTIONS(5961), - [anon_sym_LT_AMP] = ACTIONS(5961), - [anon_sym_GT_AMP] = ACTIONS(5961), - [sym__special_characters] = ACTIONS(6846), - [anon_sym_DQUOTE] = ACTIONS(5961), - [anon_sym_DOLLAR] = ACTIONS(6846), - [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_file_descriptor] = ACTIONS(6025), + [sym__concat] = ACTIONS(6025), + [sym_variable_name] = ACTIONS(6025), + [anon_sym_PIPE] = ACTIONS(6916), + [anon_sym_PIPE_AMP] = ACTIONS(6025), + [anon_sym_AMP_AMP] = ACTIONS(6025), + [anon_sym_PIPE_PIPE] = ACTIONS(6025), + [anon_sym_LT] = ACTIONS(6916), + [anon_sym_GT] = ACTIONS(6916), + [anon_sym_GT_GT] = ACTIONS(6025), + [anon_sym_AMP_GT] = ACTIONS(6916), + [anon_sym_AMP_GT_GT] = ACTIONS(6025), + [anon_sym_LT_AMP] = ACTIONS(6025), + [anon_sym_GT_AMP] = ACTIONS(6025), + [sym__special_characters] = ACTIONS(6916), + [anon_sym_DQUOTE] = ACTIONS(6025), + [anon_sym_DOLLAR] = ACTIONS(6916), + [sym_raw_string] = ACTIONS(6025), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6025), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6025), + [anon_sym_BQUOTE] = ACTIONS(6025), + [anon_sym_LT_LPAREN] = ACTIONS(6025), + [anon_sym_GT_LPAREN] = ACTIONS(6025), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6846), + [sym_word] = ACTIONS(6916), }, [3937] = { - [sym_file_descriptor] = ACTIONS(5965), - [sym__concat] = ACTIONS(5965), - [sym_variable_name] = ACTIONS(5965), - [anon_sym_PIPE] = ACTIONS(6848), - [anon_sym_PIPE_AMP] = ACTIONS(5965), - [anon_sym_AMP_AMP] = ACTIONS(5965), - [anon_sym_PIPE_PIPE] = ACTIONS(5965), - [anon_sym_LT] = ACTIONS(6848), - [anon_sym_GT] = ACTIONS(6848), - [anon_sym_GT_GT] = ACTIONS(5965), - [anon_sym_AMP_GT] = ACTIONS(6848), - [anon_sym_AMP_GT_GT] = ACTIONS(5965), - [anon_sym_LT_AMP] = ACTIONS(5965), - [anon_sym_GT_AMP] = ACTIONS(5965), - [sym__special_characters] = ACTIONS(6848), - [anon_sym_DQUOTE] = ACTIONS(5965), - [anon_sym_DOLLAR] = ACTIONS(6848), - [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_file_descriptor] = ACTIONS(6029), + [sym__concat] = ACTIONS(6029), + [sym_variable_name] = ACTIONS(6029), + [anon_sym_PIPE] = ACTIONS(6918), + [anon_sym_PIPE_AMP] = ACTIONS(6029), + [anon_sym_AMP_AMP] = ACTIONS(6029), + [anon_sym_PIPE_PIPE] = ACTIONS(6029), + [anon_sym_LT] = ACTIONS(6918), + [anon_sym_GT] = ACTIONS(6918), + [anon_sym_GT_GT] = ACTIONS(6029), + [anon_sym_AMP_GT] = ACTIONS(6918), + [anon_sym_AMP_GT_GT] = ACTIONS(6029), + [anon_sym_LT_AMP] = ACTIONS(6029), + [anon_sym_GT_AMP] = ACTIONS(6029), + [sym__special_characters] = ACTIONS(6918), + [anon_sym_DQUOTE] = ACTIONS(6029), + [anon_sym_DOLLAR] = ACTIONS(6918), + [sym_raw_string] = ACTIONS(6029), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6029), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6029), + [anon_sym_BQUOTE] = ACTIONS(6029), + [anon_sym_LT_LPAREN] = ACTIONS(6029), + [anon_sym_GT_LPAREN] = ACTIONS(6029), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6848), + [sym_word] = ACTIONS(6918), }, [3938] = { - [sym_file_descriptor] = ACTIONS(5969), - [sym__concat] = ACTIONS(5969), - [sym_variable_name] = ACTIONS(5969), - [anon_sym_PIPE] = ACTIONS(6850), - [anon_sym_PIPE_AMP] = ACTIONS(5969), - [anon_sym_AMP_AMP] = ACTIONS(5969), - [anon_sym_PIPE_PIPE] = ACTIONS(5969), - [anon_sym_LT] = ACTIONS(6850), - [anon_sym_GT] = ACTIONS(6850), - [anon_sym_GT_GT] = ACTIONS(5969), - [anon_sym_AMP_GT] = ACTIONS(6850), - [anon_sym_AMP_GT_GT] = ACTIONS(5969), - [anon_sym_LT_AMP] = ACTIONS(5969), - [anon_sym_GT_AMP] = ACTIONS(5969), - [sym__special_characters] = ACTIONS(6850), - [anon_sym_DQUOTE] = ACTIONS(5969), - [anon_sym_DOLLAR] = ACTIONS(6850), - [sym_raw_string] = ACTIONS(5969), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5969), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5969), - [anon_sym_BQUOTE] = ACTIONS(5969), - [anon_sym_LT_LPAREN] = ACTIONS(5969), - [anon_sym_GT_LPAREN] = ACTIONS(5969), + [sym_file_descriptor] = ACTIONS(6033), + [sym__concat] = ACTIONS(6033), + [sym_variable_name] = ACTIONS(6033), + [anon_sym_PIPE] = ACTIONS(6920), + [anon_sym_PIPE_AMP] = ACTIONS(6033), + [anon_sym_AMP_AMP] = ACTIONS(6033), + [anon_sym_PIPE_PIPE] = ACTIONS(6033), + [anon_sym_LT] = ACTIONS(6920), + [anon_sym_GT] = ACTIONS(6920), + [anon_sym_GT_GT] = ACTIONS(6033), + [anon_sym_AMP_GT] = ACTIONS(6920), + [anon_sym_AMP_GT_GT] = ACTIONS(6033), + [anon_sym_LT_AMP] = ACTIONS(6033), + [anon_sym_GT_AMP] = ACTIONS(6033), + [sym__special_characters] = ACTIONS(6920), + [anon_sym_DQUOTE] = ACTIONS(6033), + [anon_sym_DOLLAR] = ACTIONS(6920), + [sym_raw_string] = ACTIONS(6033), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6033), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6033), + [anon_sym_BQUOTE] = ACTIONS(6033), + [anon_sym_LT_LPAREN] = ACTIONS(6033), + [anon_sym_GT_LPAREN] = ACTIONS(6033), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6850), + [sym_word] = ACTIONS(6920), }, [3939] = { - [sym_file_descriptor] = ACTIONS(5973), - [sym__concat] = ACTIONS(5973), - [sym_variable_name] = ACTIONS(5973), - [anon_sym_PIPE] = ACTIONS(6852), - [anon_sym_PIPE_AMP] = ACTIONS(5973), - [anon_sym_AMP_AMP] = ACTIONS(5973), - [anon_sym_PIPE_PIPE] = ACTIONS(5973), - [anon_sym_LT] = ACTIONS(6852), - [anon_sym_GT] = ACTIONS(6852), - [anon_sym_GT_GT] = ACTIONS(5973), - [anon_sym_AMP_GT] = ACTIONS(6852), - [anon_sym_AMP_GT_GT] = ACTIONS(5973), - [anon_sym_LT_AMP] = ACTIONS(5973), - [anon_sym_GT_AMP] = ACTIONS(5973), - [sym__special_characters] = ACTIONS(6852), - [anon_sym_DQUOTE] = ACTIONS(5973), - [anon_sym_DOLLAR] = ACTIONS(6852), - [sym_raw_string] = ACTIONS(5973), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5973), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5973), - [anon_sym_BQUOTE] = ACTIONS(5973), - [anon_sym_LT_LPAREN] = ACTIONS(5973), - [anon_sym_GT_LPAREN] = ACTIONS(5973), + [sym_file_descriptor] = ACTIONS(6037), + [sym__concat] = ACTIONS(6037), + [sym_variable_name] = ACTIONS(6037), + [anon_sym_PIPE] = ACTIONS(6922), + [anon_sym_PIPE_AMP] = ACTIONS(6037), + [anon_sym_AMP_AMP] = ACTIONS(6037), + [anon_sym_PIPE_PIPE] = ACTIONS(6037), + [anon_sym_LT] = ACTIONS(6922), + [anon_sym_GT] = ACTIONS(6922), + [anon_sym_GT_GT] = ACTIONS(6037), + [anon_sym_AMP_GT] = ACTIONS(6922), + [anon_sym_AMP_GT_GT] = ACTIONS(6037), + [anon_sym_LT_AMP] = ACTIONS(6037), + [anon_sym_GT_AMP] = ACTIONS(6037), + [sym__special_characters] = ACTIONS(6922), + [anon_sym_DQUOTE] = ACTIONS(6037), + [anon_sym_DOLLAR] = ACTIONS(6922), + [sym_raw_string] = ACTIONS(6037), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6037), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6037), + [anon_sym_BQUOTE] = ACTIONS(6037), + [anon_sym_LT_LPAREN] = ACTIONS(6037), + [anon_sym_GT_LPAREN] = ACTIONS(6037), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6852), + [sym_word] = ACTIONS(6922), }, [3940] = { [sym_concatenation] = STATE(451), @@ -97377,52 +97766,52 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8297), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8375), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3941] = { - [sym_file_descriptor] = ACTIONS(5979), - [sym__concat] = ACTIONS(5979), - [sym_variable_name] = ACTIONS(5979), - [anon_sym_PIPE] = ACTIONS(6856), - [anon_sym_PIPE_AMP] = ACTIONS(5979), - [anon_sym_AMP_AMP] = ACTIONS(5979), - [anon_sym_PIPE_PIPE] = ACTIONS(5979), - [anon_sym_LT] = ACTIONS(6856), - [anon_sym_GT] = ACTIONS(6856), - [anon_sym_GT_GT] = ACTIONS(5979), - [anon_sym_AMP_GT] = ACTIONS(6856), - [anon_sym_AMP_GT_GT] = ACTIONS(5979), - [anon_sym_LT_AMP] = ACTIONS(5979), - [anon_sym_GT_AMP] = ACTIONS(5979), - [sym__special_characters] = ACTIONS(6856), - [anon_sym_DQUOTE] = ACTIONS(5979), - [anon_sym_DOLLAR] = ACTIONS(6856), - [sym_raw_string] = ACTIONS(5979), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5979), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5979), - [anon_sym_BQUOTE] = ACTIONS(5979), - [anon_sym_LT_LPAREN] = ACTIONS(5979), - [anon_sym_GT_LPAREN] = ACTIONS(5979), + [sym_file_descriptor] = ACTIONS(6043), + [sym__concat] = ACTIONS(6043), + [sym_variable_name] = ACTIONS(6043), + [anon_sym_PIPE] = ACTIONS(6926), + [anon_sym_PIPE_AMP] = ACTIONS(6043), + [anon_sym_AMP_AMP] = ACTIONS(6043), + [anon_sym_PIPE_PIPE] = ACTIONS(6043), + [anon_sym_LT] = ACTIONS(6926), + [anon_sym_GT] = ACTIONS(6926), + [anon_sym_GT_GT] = ACTIONS(6043), + [anon_sym_AMP_GT] = ACTIONS(6926), + [anon_sym_AMP_GT_GT] = ACTIONS(6043), + [anon_sym_LT_AMP] = ACTIONS(6043), + [anon_sym_GT_AMP] = ACTIONS(6043), + [sym__special_characters] = ACTIONS(6926), + [anon_sym_DQUOTE] = ACTIONS(6043), + [anon_sym_DOLLAR] = ACTIONS(6926), + [sym_raw_string] = ACTIONS(6043), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6043), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6043), + [anon_sym_BQUOTE] = ACTIONS(6043), + [anon_sym_LT_LPAREN] = ACTIONS(6043), + [anon_sym_GT_LPAREN] = ACTIONS(6043), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6856), + [sym_word] = ACTIONS(6926), }, [3942] = { [sym_concatenation] = STATE(451), @@ -97433,52 +97822,52 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8299), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8377), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3943] = { - [sym_file_descriptor] = ACTIONS(5985), - [sym__concat] = ACTIONS(5985), - [sym_variable_name] = ACTIONS(5985), - [anon_sym_PIPE] = ACTIONS(6860), - [anon_sym_PIPE_AMP] = ACTIONS(5985), - [anon_sym_AMP_AMP] = ACTIONS(5985), - [anon_sym_PIPE_PIPE] = ACTIONS(5985), - [anon_sym_LT] = ACTIONS(6860), - [anon_sym_GT] = ACTIONS(6860), - [anon_sym_GT_GT] = ACTIONS(5985), - [anon_sym_AMP_GT] = ACTIONS(6860), - [anon_sym_AMP_GT_GT] = ACTIONS(5985), - [anon_sym_LT_AMP] = ACTIONS(5985), - [anon_sym_GT_AMP] = ACTIONS(5985), - [sym__special_characters] = ACTIONS(6860), - [anon_sym_DQUOTE] = ACTIONS(5985), - [anon_sym_DOLLAR] = ACTIONS(6860), - [sym_raw_string] = ACTIONS(5985), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5985), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5985), - [anon_sym_BQUOTE] = ACTIONS(5985), - [anon_sym_LT_LPAREN] = ACTIONS(5985), - [anon_sym_GT_LPAREN] = ACTIONS(5985), + [sym_file_descriptor] = ACTIONS(6049), + [sym__concat] = ACTIONS(6049), + [sym_variable_name] = ACTIONS(6049), + [anon_sym_PIPE] = ACTIONS(6930), + [anon_sym_PIPE_AMP] = ACTIONS(6049), + [anon_sym_AMP_AMP] = ACTIONS(6049), + [anon_sym_PIPE_PIPE] = ACTIONS(6049), + [anon_sym_LT] = ACTIONS(6930), + [anon_sym_GT] = ACTIONS(6930), + [anon_sym_GT_GT] = ACTIONS(6049), + [anon_sym_AMP_GT] = ACTIONS(6930), + [anon_sym_AMP_GT_GT] = ACTIONS(6049), + [anon_sym_LT_AMP] = ACTIONS(6049), + [anon_sym_GT_AMP] = ACTIONS(6049), + [sym__special_characters] = ACTIONS(6930), + [anon_sym_DQUOTE] = ACTIONS(6049), + [anon_sym_DOLLAR] = ACTIONS(6930), + [sym_raw_string] = ACTIONS(6049), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6049), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6049), + [anon_sym_BQUOTE] = ACTIONS(6049), + [anon_sym_LT_LPAREN] = ACTIONS(6049), + [anon_sym_GT_LPAREN] = ACTIONS(6049), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6860), + [sym_word] = ACTIONS(6930), }, [3944] = { [sym_concatenation] = STATE(451), @@ -97489,103 +97878,103 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8301), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8379), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3945] = { - [sym_file_descriptor] = ACTIONS(5991), - [sym__concat] = ACTIONS(5991), - [sym_variable_name] = ACTIONS(5991), - [anon_sym_PIPE] = ACTIONS(6864), - [anon_sym_PIPE_AMP] = ACTIONS(5991), - [anon_sym_AMP_AMP] = ACTIONS(5991), - [anon_sym_PIPE_PIPE] = ACTIONS(5991), - [anon_sym_LT] = ACTIONS(6864), - [anon_sym_GT] = ACTIONS(6864), - [anon_sym_GT_GT] = ACTIONS(5991), - [anon_sym_AMP_GT] = ACTIONS(6864), - [anon_sym_AMP_GT_GT] = ACTIONS(5991), - [anon_sym_LT_AMP] = ACTIONS(5991), - [anon_sym_GT_AMP] = ACTIONS(5991), - [sym__special_characters] = ACTIONS(6864), - [anon_sym_DQUOTE] = ACTIONS(5991), - [anon_sym_DOLLAR] = ACTIONS(6864), - [sym_raw_string] = ACTIONS(5991), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5991), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5991), - [anon_sym_BQUOTE] = ACTIONS(5991), - [anon_sym_LT_LPAREN] = ACTIONS(5991), - [anon_sym_GT_LPAREN] = ACTIONS(5991), + [sym_file_descriptor] = ACTIONS(6055), + [sym__concat] = ACTIONS(6055), + [sym_variable_name] = ACTIONS(6055), + [anon_sym_PIPE] = ACTIONS(6934), + [anon_sym_PIPE_AMP] = ACTIONS(6055), + [anon_sym_AMP_AMP] = ACTIONS(6055), + [anon_sym_PIPE_PIPE] = ACTIONS(6055), + [anon_sym_LT] = ACTIONS(6934), + [anon_sym_GT] = ACTIONS(6934), + [anon_sym_GT_GT] = ACTIONS(6055), + [anon_sym_AMP_GT] = ACTIONS(6934), + [anon_sym_AMP_GT_GT] = ACTIONS(6055), + [anon_sym_LT_AMP] = ACTIONS(6055), + [anon_sym_GT_AMP] = ACTIONS(6055), + [sym__special_characters] = ACTIONS(6934), + [anon_sym_DQUOTE] = ACTIONS(6055), + [anon_sym_DOLLAR] = ACTIONS(6934), + [sym_raw_string] = ACTIONS(6055), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6055), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6055), + [anon_sym_BQUOTE] = ACTIONS(6055), + [anon_sym_LT_LPAREN] = ACTIONS(6055), + [anon_sym_GT_LPAREN] = ACTIONS(6055), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6864), + [sym_word] = ACTIONS(6934), }, [3946] = { - [sym_file_descriptor] = ACTIONS(5995), - [sym__concat] = ACTIONS(5995), - [sym_variable_name] = ACTIONS(5995), - [anon_sym_PIPE] = ACTIONS(6866), - [anon_sym_PIPE_AMP] = ACTIONS(5995), - [anon_sym_AMP_AMP] = ACTIONS(5995), - [anon_sym_PIPE_PIPE] = ACTIONS(5995), - [anon_sym_LT] = ACTIONS(6866), - [anon_sym_GT] = ACTIONS(6866), - [anon_sym_GT_GT] = ACTIONS(5995), - [anon_sym_AMP_GT] = ACTIONS(6866), - [anon_sym_AMP_GT_GT] = ACTIONS(5995), - [anon_sym_LT_AMP] = ACTIONS(5995), - [anon_sym_GT_AMP] = ACTIONS(5995), - [sym__special_characters] = ACTIONS(6866), - [anon_sym_DQUOTE] = ACTIONS(5995), - [anon_sym_DOLLAR] = ACTIONS(6866), - [sym_raw_string] = ACTIONS(5995), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5995), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5995), - [anon_sym_BQUOTE] = ACTIONS(5995), - [anon_sym_LT_LPAREN] = ACTIONS(5995), - [anon_sym_GT_LPAREN] = ACTIONS(5995), + [sym_file_descriptor] = ACTIONS(6059), + [sym__concat] = ACTIONS(6059), + [sym_variable_name] = ACTIONS(6059), + [anon_sym_PIPE] = ACTIONS(6936), + [anon_sym_PIPE_AMP] = ACTIONS(6059), + [anon_sym_AMP_AMP] = ACTIONS(6059), + [anon_sym_PIPE_PIPE] = ACTIONS(6059), + [anon_sym_LT] = ACTIONS(6936), + [anon_sym_GT] = ACTIONS(6936), + [anon_sym_GT_GT] = ACTIONS(6059), + [anon_sym_AMP_GT] = ACTIONS(6936), + [anon_sym_AMP_GT_GT] = ACTIONS(6059), + [anon_sym_LT_AMP] = ACTIONS(6059), + [anon_sym_GT_AMP] = ACTIONS(6059), + [sym__special_characters] = ACTIONS(6936), + [anon_sym_DQUOTE] = ACTIONS(6059), + [anon_sym_DOLLAR] = ACTIONS(6936), + [sym_raw_string] = ACTIONS(6059), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6059), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6059), + [anon_sym_BQUOTE] = ACTIONS(6059), + [anon_sym_LT_LPAREN] = ACTIONS(6059), + [anon_sym_GT_LPAREN] = ACTIONS(6059), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6866), + [sym_word] = ACTIONS(6936), }, [3947] = { - [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__concat] = ACTIONS(3283), + [anon_sym_PIPE] = ACTIONS(4602), + [anon_sym_PIPE_AMP] = ACTIONS(3283), + [anon_sym_AMP_AMP] = ACTIONS(3283), + [anon_sym_PIPE_PIPE] = ACTIONS(3283), + [anon_sym_BQUOTE] = ACTIONS(3283), [sym_comment] = ACTIONS(56), }, [3948] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(8303), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(8381), [sym_comment] = ACTIONS(56), }, [3949] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(8305), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(8383), [sym_comment] = ACTIONS(56), }, [3950] = { - [anon_sym_RBRACE] = ACTIONS(8305), + [anon_sym_RBRACE] = ACTIONS(8383), [sym_comment] = ACTIONS(56), }, [3951] = { @@ -97597,33 +97986,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(4197), - [anon_sym_RBRACE] = ACTIONS(8307), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8385), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3952] = { - [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__concat] = ACTIONS(3347), + [anon_sym_PIPE] = ACTIONS(4610), + [anon_sym_PIPE_AMP] = ACTIONS(3347), + [anon_sym_AMP_AMP] = ACTIONS(3347), + [anon_sym_PIPE_PIPE] = ACTIONS(3347), + [anon_sym_BQUOTE] = ACTIONS(3347), [sym_comment] = ACTIONS(56), }, [3953] = { @@ -97634,31 +98023,31 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(4199), [sym_command_substitution] = STATE(4199), [sym_process_substitution] = STATE(4199), - [anon_sym_RBRACE] = ACTIONS(8305), - [sym__special_characters] = ACTIONS(8309), - [anon_sym_DQUOTE] = ACTIONS(1924), - [anon_sym_DOLLAR] = ACTIONS(1926), - [sym_raw_string] = ACTIONS(8311), - [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), + [anon_sym_RBRACE] = ACTIONS(8383), + [sym__special_characters] = ACTIONS(8387), + [anon_sym_DQUOTE] = ACTIONS(1952), + [anon_sym_DOLLAR] = ACTIONS(1954), + [sym_raw_string] = ACTIONS(8389), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), + [anon_sym_BQUOTE] = ACTIONS(1962), + [anon_sym_LT_LPAREN] = ACTIONS(1964), + [anon_sym_GT_LPAREN] = ACTIONS(1964), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(8313), + [sym_word] = ACTIONS(8391), }, [3954] = { - [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__concat] = ACTIONS(3392), + [anon_sym_PIPE] = ACTIONS(4618), + [anon_sym_PIPE_AMP] = ACTIONS(3392), + [anon_sym_AMP_AMP] = ACTIONS(3392), + [anon_sym_PIPE_PIPE] = ACTIONS(3392), + [anon_sym_BQUOTE] = ACTIONS(3392), [sym_comment] = ACTIONS(56), }, [3955] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8315), + [sym_regex_without_right_brace] = ACTIONS(8393), }, [3956] = { [sym_concatenation] = STATE(451), @@ -97669,38 +98058,38 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8317), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8395), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3957] = { - [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__concat] = ACTIONS(3400), + [anon_sym_PIPE] = ACTIONS(4624), + [anon_sym_PIPE_AMP] = ACTIONS(3400), + [anon_sym_AMP_AMP] = ACTIONS(3400), + [anon_sym_PIPE_PIPE] = ACTIONS(3400), + [anon_sym_BQUOTE] = ACTIONS(3400), [sym_comment] = ACTIONS(56), }, [3958] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8319), + [sym_regex_without_right_brace] = ACTIONS(8397), }, [3959] = { [sym_concatenation] = STATE(451), @@ -97711,29 +98100,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8321), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8399), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3960] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8323), + [sym_regex_without_right_brace] = ACTIONS(8401), }, [3961] = { [sym_concatenation] = STATE(451), @@ -97744,25 +98133,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8305), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8383), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3962] = { [sym_concatenation] = STATE(451), @@ -97773,33 +98162,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(4207), - [anon_sym_RBRACE] = ACTIONS(8325), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8403), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3963] = { - [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__concat] = ACTIONS(3412), + [anon_sym_PIPE] = ACTIONS(4634), + [anon_sym_PIPE_AMP] = ACTIONS(3412), + [anon_sym_AMP_AMP] = ACTIONS(3412), + [anon_sym_PIPE_PIPE] = ACTIONS(3412), + [anon_sym_BQUOTE] = ACTIONS(3412), [sym_comment] = ACTIONS(56), }, [3964] = { @@ -97811,221 +98200,221 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(4209), - [anon_sym_RBRACE] = ACTIONS(8327), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8405), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3965] = { - [sym__concat] = ACTIONS(6948), - [sym_variable_name] = ACTIONS(6948), - [anon_sym_PIPE] = ACTIONS(7635), - [anon_sym_PIPE_AMP] = ACTIONS(6948), - [anon_sym_AMP_AMP] = ACTIONS(6948), - [anon_sym_PIPE_PIPE] = ACTIONS(6948), - [sym__special_characters] = ACTIONS(7635), - [anon_sym_DQUOTE] = ACTIONS(6948), - [anon_sym_DOLLAR] = ACTIONS(7635), - [sym_raw_string] = ACTIONS(6948), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6948), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6948), - [anon_sym_BQUOTE] = ACTIONS(6948), - [anon_sym_LT_LPAREN] = ACTIONS(6948), - [anon_sym_GT_LPAREN] = ACTIONS(6948), + [sym__concat] = ACTIONS(7018), + [sym_variable_name] = ACTIONS(7018), + [anon_sym_PIPE] = ACTIONS(7709), + [anon_sym_PIPE_AMP] = ACTIONS(7018), + [anon_sym_AMP_AMP] = ACTIONS(7018), + [anon_sym_PIPE_PIPE] = ACTIONS(7018), + [sym__special_characters] = ACTIONS(7709), + [anon_sym_DQUOTE] = ACTIONS(7018), + [anon_sym_DOLLAR] = ACTIONS(7709), + [sym_raw_string] = ACTIONS(7018), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7018), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7018), + [anon_sym_BQUOTE] = ACTIONS(7018), + [anon_sym_LT_LPAREN] = ACTIONS(7018), + [anon_sym_GT_LPAREN] = ACTIONS(7018), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7635), - [sym_word] = ACTIONS(6950), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7709), + [sym_word] = ACTIONS(7020), }, [3966] = { - [sym__concat] = ACTIONS(6952), - [sym_variable_name] = ACTIONS(6952), - [anon_sym_PIPE] = ACTIONS(7637), - [anon_sym_PIPE_AMP] = ACTIONS(6952), - [anon_sym_AMP_AMP] = ACTIONS(6952), - [anon_sym_PIPE_PIPE] = ACTIONS(6952), - [sym__special_characters] = ACTIONS(7637), - [anon_sym_DQUOTE] = ACTIONS(6952), - [anon_sym_DOLLAR] = ACTIONS(7637), - [sym_raw_string] = ACTIONS(6952), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6952), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6952), - [anon_sym_BQUOTE] = ACTIONS(6952), - [anon_sym_LT_LPAREN] = ACTIONS(6952), - [anon_sym_GT_LPAREN] = ACTIONS(6952), + [sym__concat] = ACTIONS(7022), + [sym_variable_name] = ACTIONS(7022), + [anon_sym_PIPE] = ACTIONS(7711), + [anon_sym_PIPE_AMP] = ACTIONS(7022), + [anon_sym_AMP_AMP] = ACTIONS(7022), + [anon_sym_PIPE_PIPE] = ACTIONS(7022), + [sym__special_characters] = ACTIONS(7711), + [anon_sym_DQUOTE] = ACTIONS(7022), + [anon_sym_DOLLAR] = ACTIONS(7711), + [sym_raw_string] = ACTIONS(7022), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7022), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7022), + [anon_sym_BQUOTE] = ACTIONS(7022), + [anon_sym_LT_LPAREN] = ACTIONS(7022), + [anon_sym_GT_LPAREN] = ACTIONS(7022), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7637), - [sym_word] = ACTIONS(6954), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7711), + [sym_word] = ACTIONS(7024), }, [3967] = { - [sym__concat] = ACTIONS(6956), - [sym_variable_name] = ACTIONS(6956), - [anon_sym_PIPE] = ACTIONS(7639), - [anon_sym_PIPE_AMP] = ACTIONS(6956), - [anon_sym_AMP_AMP] = ACTIONS(6956), - [anon_sym_PIPE_PIPE] = ACTIONS(6956), - [sym__special_characters] = ACTIONS(7639), - [anon_sym_DQUOTE] = ACTIONS(6956), - [anon_sym_DOLLAR] = ACTIONS(7639), - [sym_raw_string] = ACTIONS(6956), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6956), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6956), - [anon_sym_BQUOTE] = ACTIONS(6956), - [anon_sym_LT_LPAREN] = ACTIONS(6956), - [anon_sym_GT_LPAREN] = ACTIONS(6956), + [sym__concat] = ACTIONS(7026), + [sym_variable_name] = ACTIONS(7026), + [anon_sym_PIPE] = ACTIONS(7713), + [anon_sym_PIPE_AMP] = ACTIONS(7026), + [anon_sym_AMP_AMP] = ACTIONS(7026), + [anon_sym_PIPE_PIPE] = ACTIONS(7026), + [sym__special_characters] = ACTIONS(7713), + [anon_sym_DQUOTE] = ACTIONS(7026), + [anon_sym_DOLLAR] = ACTIONS(7713), + [sym_raw_string] = ACTIONS(7026), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7026), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7026), + [anon_sym_BQUOTE] = ACTIONS(7026), + [anon_sym_LT_LPAREN] = ACTIONS(7026), + [anon_sym_GT_LPAREN] = ACTIONS(7026), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7639), - [sym_word] = ACTIONS(6958), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7713), + [sym_word] = ACTIONS(7028), }, [3968] = { - [sym__concat] = ACTIONS(6948), - [anon_sym_PIPE] = ACTIONS(7635), - [anon_sym_PIPE_AMP] = ACTIONS(6948), - [anon_sym_AMP_AMP] = ACTIONS(6948), - [anon_sym_PIPE_PIPE] = ACTIONS(6948), - [sym__special_characters] = ACTIONS(7635), - [anon_sym_DQUOTE] = ACTIONS(6948), - [anon_sym_DOLLAR] = ACTIONS(7635), - [sym_raw_string] = ACTIONS(6948), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6948), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6948), - [anon_sym_BQUOTE] = ACTIONS(6948), - [anon_sym_LT_LPAREN] = ACTIONS(6948), - [anon_sym_GT_LPAREN] = ACTIONS(6948), + [sym__concat] = ACTIONS(7018), + [anon_sym_PIPE] = ACTIONS(7709), + [anon_sym_PIPE_AMP] = ACTIONS(7018), + [anon_sym_AMP_AMP] = ACTIONS(7018), + [anon_sym_PIPE_PIPE] = ACTIONS(7018), + [sym__special_characters] = ACTIONS(7709), + [anon_sym_DQUOTE] = ACTIONS(7018), + [anon_sym_DOLLAR] = ACTIONS(7709), + [sym_raw_string] = ACTIONS(7018), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7018), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7018), + [anon_sym_BQUOTE] = ACTIONS(7018), + [anon_sym_LT_LPAREN] = ACTIONS(7018), + [anon_sym_GT_LPAREN] = ACTIONS(7018), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7635), - [sym_word] = ACTIONS(6950), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7709), + [sym_word] = ACTIONS(7020), }, [3969] = { - [sym__concat] = ACTIONS(6952), - [anon_sym_PIPE] = ACTIONS(7637), - [anon_sym_PIPE_AMP] = ACTIONS(6952), - [anon_sym_AMP_AMP] = ACTIONS(6952), - [anon_sym_PIPE_PIPE] = ACTIONS(6952), - [sym__special_characters] = ACTIONS(7637), - [anon_sym_DQUOTE] = ACTIONS(6952), - [anon_sym_DOLLAR] = ACTIONS(7637), - [sym_raw_string] = ACTIONS(6952), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6952), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6952), - [anon_sym_BQUOTE] = ACTIONS(6952), - [anon_sym_LT_LPAREN] = ACTIONS(6952), - [anon_sym_GT_LPAREN] = ACTIONS(6952), + [sym__concat] = ACTIONS(7022), + [anon_sym_PIPE] = ACTIONS(7711), + [anon_sym_PIPE_AMP] = ACTIONS(7022), + [anon_sym_AMP_AMP] = ACTIONS(7022), + [anon_sym_PIPE_PIPE] = ACTIONS(7022), + [sym__special_characters] = ACTIONS(7711), + [anon_sym_DQUOTE] = ACTIONS(7022), + [anon_sym_DOLLAR] = ACTIONS(7711), + [sym_raw_string] = ACTIONS(7022), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7022), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7022), + [anon_sym_BQUOTE] = ACTIONS(7022), + [anon_sym_LT_LPAREN] = ACTIONS(7022), + [anon_sym_GT_LPAREN] = ACTIONS(7022), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7637), - [sym_word] = ACTIONS(6954), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7711), + [sym_word] = ACTIONS(7024), }, [3970] = { - [sym__concat] = ACTIONS(6956), - [anon_sym_PIPE] = ACTIONS(7639), - [anon_sym_PIPE_AMP] = ACTIONS(6956), - [anon_sym_AMP_AMP] = ACTIONS(6956), - [anon_sym_PIPE_PIPE] = ACTIONS(6956), - [sym__special_characters] = ACTIONS(7639), - [anon_sym_DQUOTE] = ACTIONS(6956), - [anon_sym_DOLLAR] = ACTIONS(7639), - [sym_raw_string] = ACTIONS(6956), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6956), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6956), - [anon_sym_BQUOTE] = ACTIONS(6956), - [anon_sym_LT_LPAREN] = ACTIONS(6956), - [anon_sym_GT_LPAREN] = ACTIONS(6956), + [sym__concat] = ACTIONS(7026), + [anon_sym_PIPE] = ACTIONS(7713), + [anon_sym_PIPE_AMP] = ACTIONS(7026), + [anon_sym_AMP_AMP] = ACTIONS(7026), + [anon_sym_PIPE_PIPE] = ACTIONS(7026), + [sym__special_characters] = ACTIONS(7713), + [anon_sym_DQUOTE] = ACTIONS(7026), + [anon_sym_DOLLAR] = ACTIONS(7713), + [sym_raw_string] = ACTIONS(7026), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7026), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7026), + [anon_sym_BQUOTE] = ACTIONS(7026), + [anon_sym_LT_LPAREN] = ACTIONS(7026), + [anon_sym_GT_LPAREN] = ACTIONS(7026), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7639), - [sym_word] = ACTIONS(6958), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7713), + [sym_word] = ACTIONS(7028), }, [3971] = { - [sym_file_descriptor] = ACTIONS(5961), - [sym__concat] = ACTIONS(5961), - [anon_sym_PIPE] = ACTIONS(6846), - [anon_sym_PIPE_AMP] = ACTIONS(5961), - [anon_sym_AMP_AMP] = ACTIONS(5961), - [anon_sym_PIPE_PIPE] = ACTIONS(5961), - [anon_sym_LT] = ACTIONS(6846), - [anon_sym_GT] = ACTIONS(6846), - [anon_sym_GT_GT] = ACTIONS(5961), - [anon_sym_AMP_GT] = ACTIONS(6846), - [anon_sym_AMP_GT_GT] = ACTIONS(5961), - [anon_sym_LT_AMP] = ACTIONS(5961), - [anon_sym_GT_AMP] = ACTIONS(5961), - [anon_sym_LT_LT] = ACTIONS(6846), - [anon_sym_LT_LT_DASH] = ACTIONS(5961), - [anon_sym_LT_LT_LT] = ACTIONS(5961), - [anon_sym_BQUOTE] = ACTIONS(5961), + [sym_file_descriptor] = ACTIONS(6025), + [sym__concat] = ACTIONS(6025), + [anon_sym_PIPE] = ACTIONS(6916), + [anon_sym_PIPE_AMP] = ACTIONS(6025), + [anon_sym_AMP_AMP] = ACTIONS(6025), + [anon_sym_PIPE_PIPE] = ACTIONS(6025), + [anon_sym_LT] = ACTIONS(6916), + [anon_sym_GT] = ACTIONS(6916), + [anon_sym_GT_GT] = ACTIONS(6025), + [anon_sym_AMP_GT] = ACTIONS(6916), + [anon_sym_AMP_GT_GT] = ACTIONS(6025), + [anon_sym_LT_AMP] = ACTIONS(6025), + [anon_sym_GT_AMP] = ACTIONS(6025), + [anon_sym_LT_LT] = ACTIONS(6916), + [anon_sym_LT_LT_DASH] = ACTIONS(6025), + [anon_sym_LT_LT_LT] = ACTIONS(6025), + [anon_sym_BQUOTE] = ACTIONS(6025), [sym_comment] = ACTIONS(56), }, [3972] = { - [sym_file_descriptor] = ACTIONS(5965), - [sym__concat] = ACTIONS(5965), - [anon_sym_PIPE] = ACTIONS(6848), - [anon_sym_PIPE_AMP] = ACTIONS(5965), - [anon_sym_AMP_AMP] = ACTIONS(5965), - [anon_sym_PIPE_PIPE] = ACTIONS(5965), - [anon_sym_LT] = ACTIONS(6848), - [anon_sym_GT] = ACTIONS(6848), - [anon_sym_GT_GT] = ACTIONS(5965), - [anon_sym_AMP_GT] = ACTIONS(6848), - [anon_sym_AMP_GT_GT] = ACTIONS(5965), - [anon_sym_LT_AMP] = ACTIONS(5965), - [anon_sym_GT_AMP] = ACTIONS(5965), - [anon_sym_LT_LT] = ACTIONS(6848), - [anon_sym_LT_LT_DASH] = ACTIONS(5965), - [anon_sym_LT_LT_LT] = ACTIONS(5965), - [anon_sym_BQUOTE] = ACTIONS(5965), + [sym_file_descriptor] = ACTIONS(6029), + [sym__concat] = ACTIONS(6029), + [anon_sym_PIPE] = ACTIONS(6918), + [anon_sym_PIPE_AMP] = ACTIONS(6029), + [anon_sym_AMP_AMP] = ACTIONS(6029), + [anon_sym_PIPE_PIPE] = ACTIONS(6029), + [anon_sym_LT] = ACTIONS(6918), + [anon_sym_GT] = ACTIONS(6918), + [anon_sym_GT_GT] = ACTIONS(6029), + [anon_sym_AMP_GT] = ACTIONS(6918), + [anon_sym_AMP_GT_GT] = ACTIONS(6029), + [anon_sym_LT_AMP] = ACTIONS(6029), + [anon_sym_GT_AMP] = ACTIONS(6029), + [anon_sym_LT_LT] = ACTIONS(6918), + [anon_sym_LT_LT_DASH] = ACTIONS(6029), + [anon_sym_LT_LT_LT] = ACTIONS(6029), + [anon_sym_BQUOTE] = ACTIONS(6029), [sym_comment] = ACTIONS(56), }, [3973] = { - [sym_file_descriptor] = ACTIONS(5969), - [sym__concat] = ACTIONS(5969), - [anon_sym_PIPE] = ACTIONS(6850), - [anon_sym_PIPE_AMP] = ACTIONS(5969), - [anon_sym_AMP_AMP] = ACTIONS(5969), - [anon_sym_PIPE_PIPE] = ACTIONS(5969), - [anon_sym_LT] = ACTIONS(6850), - [anon_sym_GT] = ACTIONS(6850), - [anon_sym_GT_GT] = ACTIONS(5969), - [anon_sym_AMP_GT] = ACTIONS(6850), - [anon_sym_AMP_GT_GT] = ACTIONS(5969), - [anon_sym_LT_AMP] = ACTIONS(5969), - [anon_sym_GT_AMP] = ACTIONS(5969), - [anon_sym_LT_LT] = ACTIONS(6850), - [anon_sym_LT_LT_DASH] = ACTIONS(5969), - [anon_sym_LT_LT_LT] = ACTIONS(5969), - [anon_sym_BQUOTE] = ACTIONS(5969), + [sym_file_descriptor] = ACTIONS(6033), + [sym__concat] = ACTIONS(6033), + [anon_sym_PIPE] = ACTIONS(6920), + [anon_sym_PIPE_AMP] = ACTIONS(6033), + [anon_sym_AMP_AMP] = ACTIONS(6033), + [anon_sym_PIPE_PIPE] = ACTIONS(6033), + [anon_sym_LT] = ACTIONS(6920), + [anon_sym_GT] = ACTIONS(6920), + [anon_sym_GT_GT] = ACTIONS(6033), + [anon_sym_AMP_GT] = ACTIONS(6920), + [anon_sym_AMP_GT_GT] = ACTIONS(6033), + [anon_sym_LT_AMP] = ACTIONS(6033), + [anon_sym_GT_AMP] = ACTIONS(6033), + [anon_sym_LT_LT] = ACTIONS(6920), + [anon_sym_LT_LT_DASH] = ACTIONS(6033), + [anon_sym_LT_LT_LT] = ACTIONS(6033), + [anon_sym_BQUOTE] = ACTIONS(6033), [sym_comment] = ACTIONS(56), }, [3974] = { - [sym_file_descriptor] = ACTIONS(5973), - [sym__concat] = ACTIONS(5973), - [anon_sym_PIPE] = ACTIONS(6852), - [anon_sym_PIPE_AMP] = ACTIONS(5973), - [anon_sym_AMP_AMP] = ACTIONS(5973), - [anon_sym_PIPE_PIPE] = ACTIONS(5973), - [anon_sym_LT] = ACTIONS(6852), - [anon_sym_GT] = ACTIONS(6852), - [anon_sym_GT_GT] = ACTIONS(5973), - [anon_sym_AMP_GT] = ACTIONS(6852), - [anon_sym_AMP_GT_GT] = ACTIONS(5973), - [anon_sym_LT_AMP] = ACTIONS(5973), - [anon_sym_GT_AMP] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(6852), - [anon_sym_LT_LT_DASH] = ACTIONS(5973), - [anon_sym_LT_LT_LT] = ACTIONS(5973), - [anon_sym_BQUOTE] = ACTIONS(5973), + [sym_file_descriptor] = ACTIONS(6037), + [sym__concat] = ACTIONS(6037), + [anon_sym_PIPE] = ACTIONS(6922), + [anon_sym_PIPE_AMP] = ACTIONS(6037), + [anon_sym_AMP_AMP] = ACTIONS(6037), + [anon_sym_PIPE_PIPE] = ACTIONS(6037), + [anon_sym_LT] = ACTIONS(6922), + [anon_sym_GT] = ACTIONS(6922), + [anon_sym_GT_GT] = ACTIONS(6037), + [anon_sym_AMP_GT] = ACTIONS(6922), + [anon_sym_AMP_GT_GT] = ACTIONS(6037), + [anon_sym_LT_AMP] = ACTIONS(6037), + [anon_sym_GT_AMP] = ACTIONS(6037), + [anon_sym_LT_LT] = ACTIONS(6922), + [anon_sym_LT_LT_DASH] = ACTIONS(6037), + [anon_sym_LT_LT_LT] = ACTIONS(6037), + [anon_sym_BQUOTE] = ACTIONS(6037), [sym_comment] = ACTIONS(56), }, [3975] = { @@ -98037,44 +98426,44 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8329), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8407), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3976] = { - [sym_file_descriptor] = ACTIONS(5979), - [sym__concat] = ACTIONS(5979), - [anon_sym_PIPE] = ACTIONS(6856), - [anon_sym_PIPE_AMP] = ACTIONS(5979), - [anon_sym_AMP_AMP] = ACTIONS(5979), - [anon_sym_PIPE_PIPE] = ACTIONS(5979), - [anon_sym_LT] = ACTIONS(6856), - [anon_sym_GT] = ACTIONS(6856), - [anon_sym_GT_GT] = ACTIONS(5979), - [anon_sym_AMP_GT] = ACTIONS(6856), - [anon_sym_AMP_GT_GT] = ACTIONS(5979), - [anon_sym_LT_AMP] = ACTIONS(5979), - [anon_sym_GT_AMP] = ACTIONS(5979), - [anon_sym_LT_LT] = ACTIONS(6856), - [anon_sym_LT_LT_DASH] = ACTIONS(5979), - [anon_sym_LT_LT_LT] = ACTIONS(5979), - [anon_sym_BQUOTE] = ACTIONS(5979), + [sym_file_descriptor] = ACTIONS(6043), + [sym__concat] = ACTIONS(6043), + [anon_sym_PIPE] = ACTIONS(6926), + [anon_sym_PIPE_AMP] = ACTIONS(6043), + [anon_sym_AMP_AMP] = ACTIONS(6043), + [anon_sym_PIPE_PIPE] = ACTIONS(6043), + [anon_sym_LT] = ACTIONS(6926), + [anon_sym_GT] = ACTIONS(6926), + [anon_sym_GT_GT] = ACTIONS(6043), + [anon_sym_AMP_GT] = ACTIONS(6926), + [anon_sym_AMP_GT_GT] = ACTIONS(6043), + [anon_sym_LT_AMP] = ACTIONS(6043), + [anon_sym_GT_AMP] = ACTIONS(6043), + [anon_sym_LT_LT] = ACTIONS(6926), + [anon_sym_LT_LT_DASH] = ACTIONS(6043), + [anon_sym_LT_LT_LT] = ACTIONS(6043), + [anon_sym_BQUOTE] = ACTIONS(6043), [sym_comment] = ACTIONS(56), }, [3977] = { @@ -98086,44 +98475,44 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8331), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8409), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3978] = { - [sym_file_descriptor] = ACTIONS(5985), - [sym__concat] = ACTIONS(5985), - [anon_sym_PIPE] = ACTIONS(6860), - [anon_sym_PIPE_AMP] = ACTIONS(5985), - [anon_sym_AMP_AMP] = ACTIONS(5985), - [anon_sym_PIPE_PIPE] = ACTIONS(5985), - [anon_sym_LT] = ACTIONS(6860), - [anon_sym_GT] = ACTIONS(6860), - [anon_sym_GT_GT] = ACTIONS(5985), - [anon_sym_AMP_GT] = ACTIONS(6860), - [anon_sym_AMP_GT_GT] = ACTIONS(5985), - [anon_sym_LT_AMP] = ACTIONS(5985), - [anon_sym_GT_AMP] = ACTIONS(5985), - [anon_sym_LT_LT] = ACTIONS(6860), - [anon_sym_LT_LT_DASH] = ACTIONS(5985), - [anon_sym_LT_LT_LT] = ACTIONS(5985), - [anon_sym_BQUOTE] = ACTIONS(5985), + [sym_file_descriptor] = ACTIONS(6049), + [sym__concat] = ACTIONS(6049), + [anon_sym_PIPE] = ACTIONS(6930), + [anon_sym_PIPE_AMP] = ACTIONS(6049), + [anon_sym_AMP_AMP] = ACTIONS(6049), + [anon_sym_PIPE_PIPE] = ACTIONS(6049), + [anon_sym_LT] = ACTIONS(6930), + [anon_sym_GT] = ACTIONS(6930), + [anon_sym_GT_GT] = ACTIONS(6049), + [anon_sym_AMP_GT] = ACTIONS(6930), + [anon_sym_AMP_GT_GT] = ACTIONS(6049), + [anon_sym_LT_AMP] = ACTIONS(6049), + [anon_sym_GT_AMP] = ACTIONS(6049), + [anon_sym_LT_LT] = ACTIONS(6930), + [anon_sym_LT_LT_DASH] = ACTIONS(6049), + [anon_sym_LT_LT_LT] = ACTIONS(6049), + [anon_sym_BQUOTE] = ACTIONS(6049), [sym_comment] = ACTIONS(56), }, [3979] = { @@ -98135,161 +98524,161 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8333), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8411), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3980] = { - [sym_file_descriptor] = ACTIONS(5991), - [sym__concat] = ACTIONS(5991), - [anon_sym_PIPE] = ACTIONS(6864), - [anon_sym_PIPE_AMP] = ACTIONS(5991), - [anon_sym_AMP_AMP] = ACTIONS(5991), - [anon_sym_PIPE_PIPE] = ACTIONS(5991), - [anon_sym_LT] = ACTIONS(6864), - [anon_sym_GT] = ACTIONS(6864), - [anon_sym_GT_GT] = ACTIONS(5991), - [anon_sym_AMP_GT] = ACTIONS(6864), - [anon_sym_AMP_GT_GT] = ACTIONS(5991), - [anon_sym_LT_AMP] = ACTIONS(5991), - [anon_sym_GT_AMP] = ACTIONS(5991), - [anon_sym_LT_LT] = ACTIONS(6864), - [anon_sym_LT_LT_DASH] = ACTIONS(5991), - [anon_sym_LT_LT_LT] = ACTIONS(5991), - [anon_sym_BQUOTE] = ACTIONS(5991), + [sym_file_descriptor] = ACTIONS(6055), + [sym__concat] = ACTIONS(6055), + [anon_sym_PIPE] = ACTIONS(6934), + [anon_sym_PIPE_AMP] = ACTIONS(6055), + [anon_sym_AMP_AMP] = ACTIONS(6055), + [anon_sym_PIPE_PIPE] = ACTIONS(6055), + [anon_sym_LT] = ACTIONS(6934), + [anon_sym_GT] = ACTIONS(6934), + [anon_sym_GT_GT] = ACTIONS(6055), + [anon_sym_AMP_GT] = ACTIONS(6934), + [anon_sym_AMP_GT_GT] = ACTIONS(6055), + [anon_sym_LT_AMP] = ACTIONS(6055), + [anon_sym_GT_AMP] = ACTIONS(6055), + [anon_sym_LT_LT] = ACTIONS(6934), + [anon_sym_LT_LT_DASH] = ACTIONS(6055), + [anon_sym_LT_LT_LT] = ACTIONS(6055), + [anon_sym_BQUOTE] = ACTIONS(6055), [sym_comment] = ACTIONS(56), }, [3981] = { - [sym_file_descriptor] = ACTIONS(5995), - [sym__concat] = ACTIONS(5995), - [anon_sym_PIPE] = ACTIONS(6866), - [anon_sym_PIPE_AMP] = ACTIONS(5995), - [anon_sym_AMP_AMP] = ACTIONS(5995), - [anon_sym_PIPE_PIPE] = ACTIONS(5995), - [anon_sym_LT] = ACTIONS(6866), - [anon_sym_GT] = ACTIONS(6866), - [anon_sym_GT_GT] = ACTIONS(5995), - [anon_sym_AMP_GT] = ACTIONS(6866), - [anon_sym_AMP_GT_GT] = ACTIONS(5995), - [anon_sym_LT_AMP] = ACTIONS(5995), - [anon_sym_GT_AMP] = ACTIONS(5995), - [anon_sym_LT_LT] = ACTIONS(6866), - [anon_sym_LT_LT_DASH] = ACTIONS(5995), - [anon_sym_LT_LT_LT] = ACTIONS(5995), - [anon_sym_BQUOTE] = ACTIONS(5995), + [sym_file_descriptor] = ACTIONS(6059), + [sym__concat] = ACTIONS(6059), + [anon_sym_PIPE] = ACTIONS(6936), + [anon_sym_PIPE_AMP] = ACTIONS(6059), + [anon_sym_AMP_AMP] = ACTIONS(6059), + [anon_sym_PIPE_PIPE] = ACTIONS(6059), + [anon_sym_LT] = ACTIONS(6936), + [anon_sym_GT] = ACTIONS(6936), + [anon_sym_GT_GT] = ACTIONS(6059), + [anon_sym_AMP_GT] = ACTIONS(6936), + [anon_sym_AMP_GT_GT] = ACTIONS(6059), + [anon_sym_LT_AMP] = ACTIONS(6059), + [anon_sym_GT_AMP] = ACTIONS(6059), + [anon_sym_LT_LT] = ACTIONS(6936), + [anon_sym_LT_LT_DASH] = ACTIONS(6059), + [anon_sym_LT_LT_LT] = ACTIONS(6059), + [anon_sym_BQUOTE] = ACTIONS(6059), [sym_comment] = ACTIONS(56), }, [3982] = { - [sym_file_descriptor] = ACTIONS(6948), - [sym__concat] = ACTIONS(6948), - [anon_sym_PIPE] = ACTIONS(6950), - [anon_sym_SEMI_SEMI] = ACTIONS(6950), - [anon_sym_PIPE_AMP] = ACTIONS(6950), - [anon_sym_AMP_AMP] = ACTIONS(6950), - [anon_sym_PIPE_PIPE] = ACTIONS(6950), - [anon_sym_LT] = ACTIONS(6950), - [anon_sym_GT] = ACTIONS(6950), - [anon_sym_GT_GT] = ACTIONS(6950), - [anon_sym_AMP_GT] = ACTIONS(6950), - [anon_sym_AMP_GT_GT] = ACTIONS(6950), - [anon_sym_LT_AMP] = ACTIONS(6950), - [anon_sym_GT_AMP] = ACTIONS(6950), - [anon_sym_LT_LT] = ACTIONS(6950), - [anon_sym_LT_LT_DASH] = ACTIONS(6950), - [anon_sym_LT_LT_LT] = ACTIONS(6950), + [sym_file_descriptor] = ACTIONS(7018), + [sym__concat] = ACTIONS(7018), + [anon_sym_PIPE] = ACTIONS(7020), + [anon_sym_SEMI_SEMI] = ACTIONS(7020), + [anon_sym_PIPE_AMP] = ACTIONS(7020), + [anon_sym_AMP_AMP] = ACTIONS(7020), + [anon_sym_PIPE_PIPE] = ACTIONS(7020), + [anon_sym_LT] = ACTIONS(7020), + [anon_sym_GT] = ACTIONS(7020), + [anon_sym_GT_GT] = ACTIONS(7020), + [anon_sym_AMP_GT] = ACTIONS(7020), + [anon_sym_AMP_GT_GT] = ACTIONS(7020), + [anon_sym_LT_AMP] = ACTIONS(7020), + [anon_sym_GT_AMP] = ACTIONS(7020), + [anon_sym_LT_LT] = ACTIONS(7020), + [anon_sym_LT_LT_DASH] = ACTIONS(7020), + [anon_sym_LT_LT_LT] = ACTIONS(7020), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6950), - [anon_sym_LF] = ACTIONS(6950), - [anon_sym_AMP] = ACTIONS(6950), + [anon_sym_SEMI] = ACTIONS(7020), + [anon_sym_LF] = ACTIONS(7020), + [anon_sym_AMP] = ACTIONS(7020), }, [3983] = { - [sym_file_descriptor] = ACTIONS(6952), - [sym__concat] = ACTIONS(6952), - [anon_sym_PIPE] = ACTIONS(6954), - [anon_sym_SEMI_SEMI] = ACTIONS(6954), - [anon_sym_PIPE_AMP] = ACTIONS(6954), - [anon_sym_AMP_AMP] = ACTIONS(6954), - [anon_sym_PIPE_PIPE] = ACTIONS(6954), - [anon_sym_LT] = ACTIONS(6954), - [anon_sym_GT] = ACTIONS(6954), - [anon_sym_GT_GT] = ACTIONS(6954), - [anon_sym_AMP_GT] = ACTIONS(6954), - [anon_sym_AMP_GT_GT] = ACTIONS(6954), - [anon_sym_LT_AMP] = ACTIONS(6954), - [anon_sym_GT_AMP] = ACTIONS(6954), - [anon_sym_LT_LT] = ACTIONS(6954), - [anon_sym_LT_LT_DASH] = ACTIONS(6954), - [anon_sym_LT_LT_LT] = ACTIONS(6954), + [sym_file_descriptor] = ACTIONS(7022), + [sym__concat] = ACTIONS(7022), + [anon_sym_PIPE] = ACTIONS(7024), + [anon_sym_SEMI_SEMI] = ACTIONS(7024), + [anon_sym_PIPE_AMP] = ACTIONS(7024), + [anon_sym_AMP_AMP] = ACTIONS(7024), + [anon_sym_PIPE_PIPE] = ACTIONS(7024), + [anon_sym_LT] = ACTIONS(7024), + [anon_sym_GT] = ACTIONS(7024), + [anon_sym_GT_GT] = ACTIONS(7024), + [anon_sym_AMP_GT] = ACTIONS(7024), + [anon_sym_AMP_GT_GT] = ACTIONS(7024), + [anon_sym_LT_AMP] = ACTIONS(7024), + [anon_sym_GT_AMP] = ACTIONS(7024), + [anon_sym_LT_LT] = ACTIONS(7024), + [anon_sym_LT_LT_DASH] = ACTIONS(7024), + [anon_sym_LT_LT_LT] = ACTIONS(7024), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6954), - [anon_sym_LF] = ACTIONS(6954), - [anon_sym_AMP] = ACTIONS(6954), + [anon_sym_SEMI] = ACTIONS(7024), + [anon_sym_LF] = ACTIONS(7024), + [anon_sym_AMP] = ACTIONS(7024), }, [3984] = { - [sym_file_descriptor] = ACTIONS(6956), - [sym__concat] = ACTIONS(6956), - [anon_sym_PIPE] = ACTIONS(6958), - [anon_sym_SEMI_SEMI] = ACTIONS(6958), - [anon_sym_PIPE_AMP] = ACTIONS(6958), - [anon_sym_AMP_AMP] = ACTIONS(6958), - [anon_sym_PIPE_PIPE] = ACTIONS(6958), - [anon_sym_LT] = ACTIONS(6958), - [anon_sym_GT] = ACTIONS(6958), - [anon_sym_GT_GT] = ACTIONS(6958), - [anon_sym_AMP_GT] = ACTIONS(6958), - [anon_sym_AMP_GT_GT] = ACTIONS(6958), - [anon_sym_LT_AMP] = ACTIONS(6958), - [anon_sym_GT_AMP] = ACTIONS(6958), - [anon_sym_LT_LT] = ACTIONS(6958), - [anon_sym_LT_LT_DASH] = ACTIONS(6958), - [anon_sym_LT_LT_LT] = ACTIONS(6958), + [sym_file_descriptor] = ACTIONS(7026), + [sym__concat] = ACTIONS(7026), + [anon_sym_PIPE] = ACTIONS(7028), + [anon_sym_SEMI_SEMI] = ACTIONS(7028), + [anon_sym_PIPE_AMP] = ACTIONS(7028), + [anon_sym_AMP_AMP] = ACTIONS(7028), + [anon_sym_PIPE_PIPE] = ACTIONS(7028), + [anon_sym_LT] = ACTIONS(7028), + [anon_sym_GT] = ACTIONS(7028), + [anon_sym_GT_GT] = ACTIONS(7028), + [anon_sym_AMP_GT] = ACTIONS(7028), + [anon_sym_AMP_GT_GT] = ACTIONS(7028), + [anon_sym_LT_AMP] = ACTIONS(7028), + [anon_sym_GT_AMP] = ACTIONS(7028), + [anon_sym_LT_LT] = ACTIONS(7028), + [anon_sym_LT_LT_DASH] = ACTIONS(7028), + [anon_sym_LT_LT_LT] = ACTIONS(7028), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6958), - [anon_sym_LF] = ACTIONS(6958), - [anon_sym_AMP] = ACTIONS(6958), + [anon_sym_SEMI] = ACTIONS(7028), + [anon_sym_LF] = ACTIONS(7028), + [anon_sym_AMP] = ACTIONS(7028), }, [3985] = { - [sym__heredoc_middle] = ACTIONS(5961), - [sym__heredoc_end] = ACTIONS(5961), - [anon_sym_DOLLAR] = ACTIONS(6846), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5961), + [sym__heredoc_middle] = ACTIONS(6025), + [sym__heredoc_end] = ACTIONS(6025), + [anon_sym_DOLLAR] = ACTIONS(6916), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6025), [sym_comment] = ACTIONS(56), }, [3986] = { - [sym__heredoc_middle] = ACTIONS(5965), - [sym__heredoc_end] = ACTIONS(5965), - [anon_sym_DOLLAR] = ACTIONS(6848), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5965), + [sym__heredoc_middle] = ACTIONS(6029), + [sym__heredoc_end] = ACTIONS(6029), + [anon_sym_DOLLAR] = ACTIONS(6918), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6029), [sym_comment] = ACTIONS(56), }, [3987] = { - [sym__heredoc_middle] = ACTIONS(5969), - [sym__heredoc_end] = ACTIONS(5969), - [anon_sym_DOLLAR] = ACTIONS(6850), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5969), + [sym__heredoc_middle] = ACTIONS(6033), + [sym__heredoc_end] = ACTIONS(6033), + [anon_sym_DOLLAR] = ACTIONS(6920), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6033), [sym_comment] = ACTIONS(56), }, [3988] = { - [sym__heredoc_middle] = ACTIONS(5973), - [sym__heredoc_end] = ACTIONS(5973), - [anon_sym_DOLLAR] = ACTIONS(6852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5973), + [sym__heredoc_middle] = ACTIONS(6037), + [sym__heredoc_end] = ACTIONS(6037), + [anon_sym_DOLLAR] = ACTIONS(6922), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6037), [sym_comment] = ACTIONS(56), }, [3989] = { @@ -98301,31 +98690,31 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8335), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8413), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3990] = { - [sym__heredoc_middle] = ACTIONS(5979), - [sym__heredoc_end] = ACTIONS(5979), - [anon_sym_DOLLAR] = ACTIONS(6856), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5979), + [sym__heredoc_middle] = ACTIONS(6043), + [sym__heredoc_end] = ACTIONS(6043), + [anon_sym_DOLLAR] = ACTIONS(6926), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6043), [sym_comment] = ACTIONS(56), }, [3991] = { @@ -98337,31 +98726,31 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8337), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8415), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3992] = { - [sym__heredoc_middle] = ACTIONS(5985), - [sym__heredoc_end] = ACTIONS(5985), - [anon_sym_DOLLAR] = ACTIONS(6860), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5985), + [sym__heredoc_middle] = ACTIONS(6049), + [sym__heredoc_end] = ACTIONS(6049), + [anon_sym_DOLLAR] = ACTIONS(6930), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6049), [sym_comment] = ACTIONS(56), }, [3993] = { @@ -98373,169 +98762,169 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8339), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8417), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [3994] = { - [sym__heredoc_middle] = ACTIONS(5991), - [sym__heredoc_end] = ACTIONS(5991), - [anon_sym_DOLLAR] = ACTIONS(6864), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5991), + [sym__heredoc_middle] = ACTIONS(6055), + [sym__heredoc_end] = ACTIONS(6055), + [anon_sym_DOLLAR] = ACTIONS(6934), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6055), [sym_comment] = ACTIONS(56), }, [3995] = { - [sym__heredoc_middle] = ACTIONS(5995), - [sym__heredoc_end] = ACTIONS(5995), - [anon_sym_DOLLAR] = ACTIONS(6866), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5995), + [sym__heredoc_middle] = ACTIONS(6059), + [sym__heredoc_end] = ACTIONS(6059), + [anon_sym_DOLLAR] = ACTIONS(6936), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6059), [sym_comment] = ACTIONS(56), }, [3996] = { - [sym__concat] = ACTIONS(6948), - [anon_sym_RPAREN] = ACTIONS(6948), - [sym__special_characters] = ACTIONS(7635), - [anon_sym_DQUOTE] = ACTIONS(6948), - [anon_sym_DOLLAR] = ACTIONS(7635), - [sym_raw_string] = ACTIONS(6948), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6948), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6948), - [anon_sym_BQUOTE] = ACTIONS(6948), - [anon_sym_LT_LPAREN] = ACTIONS(6948), - [anon_sym_GT_LPAREN] = ACTIONS(6948), + [sym__concat] = ACTIONS(7018), + [anon_sym_RPAREN] = ACTIONS(7018), + [sym__special_characters] = ACTIONS(7709), + [anon_sym_DQUOTE] = ACTIONS(7018), + [anon_sym_DOLLAR] = ACTIONS(7709), + [sym_raw_string] = ACTIONS(7018), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7018), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7018), + [anon_sym_BQUOTE] = ACTIONS(7018), + [anon_sym_LT_LPAREN] = ACTIONS(7018), + [anon_sym_GT_LPAREN] = ACTIONS(7018), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7635), + [sym_word] = ACTIONS(7709), }, [3997] = { - [sym__concat] = ACTIONS(6952), - [anon_sym_RPAREN] = ACTIONS(6952), - [sym__special_characters] = ACTIONS(7637), - [anon_sym_DQUOTE] = ACTIONS(6952), - [anon_sym_DOLLAR] = ACTIONS(7637), - [sym_raw_string] = ACTIONS(6952), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6952), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6952), - [anon_sym_BQUOTE] = ACTIONS(6952), - [anon_sym_LT_LPAREN] = ACTIONS(6952), - [anon_sym_GT_LPAREN] = ACTIONS(6952), + [sym__concat] = ACTIONS(7022), + [anon_sym_RPAREN] = ACTIONS(7022), + [sym__special_characters] = ACTIONS(7711), + [anon_sym_DQUOTE] = ACTIONS(7022), + [anon_sym_DOLLAR] = ACTIONS(7711), + [sym_raw_string] = ACTIONS(7022), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7022), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7022), + [anon_sym_BQUOTE] = ACTIONS(7022), + [anon_sym_LT_LPAREN] = ACTIONS(7022), + [anon_sym_GT_LPAREN] = ACTIONS(7022), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7637), + [sym_word] = ACTIONS(7711), }, [3998] = { - [sym__concat] = ACTIONS(6956), - [anon_sym_RPAREN] = ACTIONS(6956), - [sym__special_characters] = ACTIONS(7639), - [anon_sym_DQUOTE] = ACTIONS(6956), - [anon_sym_DOLLAR] = ACTIONS(7639), - [sym_raw_string] = ACTIONS(6956), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6956), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6956), - [anon_sym_BQUOTE] = ACTIONS(6956), - [anon_sym_LT_LPAREN] = ACTIONS(6956), - [anon_sym_GT_LPAREN] = ACTIONS(6956), + [sym__concat] = ACTIONS(7026), + [anon_sym_RPAREN] = ACTIONS(7026), + [sym__special_characters] = ACTIONS(7713), + [anon_sym_DQUOTE] = ACTIONS(7026), + [anon_sym_DOLLAR] = ACTIONS(7713), + [sym_raw_string] = ACTIONS(7026), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7026), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7026), + [anon_sym_BQUOTE] = ACTIONS(7026), + [anon_sym_LT_LPAREN] = ACTIONS(7026), + [anon_sym_GT_LPAREN] = ACTIONS(7026), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7639), + [sym_word] = ACTIONS(7713), }, [3999] = { - [sym__concat] = ACTIONS(6948), - [anon_sym_SEMI_SEMI] = ACTIONS(6950), - [sym__special_characters] = ACTIONS(6950), - [anon_sym_DQUOTE] = ACTIONS(6950), - [anon_sym_DOLLAR] = ACTIONS(6950), - [sym_raw_string] = ACTIONS(6950), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6950), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6950), - [anon_sym_BQUOTE] = ACTIONS(6950), - [anon_sym_LT_LPAREN] = ACTIONS(6950), - [anon_sym_GT_LPAREN] = ACTIONS(6950), + [sym__concat] = ACTIONS(7018), + [anon_sym_SEMI_SEMI] = ACTIONS(7020), + [sym__special_characters] = ACTIONS(7020), + [anon_sym_DQUOTE] = ACTIONS(7020), + [anon_sym_DOLLAR] = ACTIONS(7020), + [sym_raw_string] = ACTIONS(7020), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7020), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7020), + [anon_sym_BQUOTE] = ACTIONS(7020), + [anon_sym_LT_LPAREN] = ACTIONS(7020), + [anon_sym_GT_LPAREN] = ACTIONS(7020), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6950), - [anon_sym_SEMI] = ACTIONS(6950), - [anon_sym_LF] = ACTIONS(6950), - [anon_sym_AMP] = ACTIONS(6950), + [sym_word] = ACTIONS(7020), + [anon_sym_SEMI] = ACTIONS(7020), + [anon_sym_LF] = ACTIONS(7020), + [anon_sym_AMP] = ACTIONS(7020), }, [4000] = { - [sym__concat] = ACTIONS(6952), - [anon_sym_SEMI_SEMI] = ACTIONS(6954), - [sym__special_characters] = ACTIONS(6954), - [anon_sym_DQUOTE] = ACTIONS(6954), - [anon_sym_DOLLAR] = ACTIONS(6954), - [sym_raw_string] = ACTIONS(6954), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6954), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6954), - [anon_sym_BQUOTE] = ACTIONS(6954), - [anon_sym_LT_LPAREN] = ACTIONS(6954), - [anon_sym_GT_LPAREN] = ACTIONS(6954), + [sym__concat] = ACTIONS(7022), + [anon_sym_SEMI_SEMI] = ACTIONS(7024), + [sym__special_characters] = ACTIONS(7024), + [anon_sym_DQUOTE] = ACTIONS(7024), + [anon_sym_DOLLAR] = ACTIONS(7024), + [sym_raw_string] = ACTIONS(7024), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7024), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7024), + [anon_sym_BQUOTE] = ACTIONS(7024), + [anon_sym_LT_LPAREN] = ACTIONS(7024), + [anon_sym_GT_LPAREN] = ACTIONS(7024), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6954), - [anon_sym_SEMI] = ACTIONS(6954), - [anon_sym_LF] = ACTIONS(6954), - [anon_sym_AMP] = ACTIONS(6954), + [sym_word] = ACTIONS(7024), + [anon_sym_SEMI] = ACTIONS(7024), + [anon_sym_LF] = ACTIONS(7024), + [anon_sym_AMP] = ACTIONS(7024), }, [4001] = { - [sym__concat] = ACTIONS(6956), - [anon_sym_SEMI_SEMI] = ACTIONS(6958), - [sym__special_characters] = ACTIONS(6958), - [anon_sym_DQUOTE] = ACTIONS(6958), - [anon_sym_DOLLAR] = ACTIONS(6958), - [sym_raw_string] = ACTIONS(6958), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6958), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6958), - [anon_sym_BQUOTE] = ACTIONS(6958), - [anon_sym_LT_LPAREN] = ACTIONS(6958), - [anon_sym_GT_LPAREN] = ACTIONS(6958), + [sym__concat] = ACTIONS(7026), + [anon_sym_SEMI_SEMI] = ACTIONS(7028), + [sym__special_characters] = ACTIONS(7028), + [anon_sym_DQUOTE] = ACTIONS(7028), + [anon_sym_DOLLAR] = ACTIONS(7028), + [sym_raw_string] = ACTIONS(7028), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7028), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7028), + [anon_sym_BQUOTE] = ACTIONS(7028), + [anon_sym_LT_LPAREN] = ACTIONS(7028), + [anon_sym_GT_LPAREN] = ACTIONS(7028), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6958), - [anon_sym_SEMI] = ACTIONS(6958), - [anon_sym_LF] = ACTIONS(6958), - [anon_sym_AMP] = ACTIONS(6958), + [sym_word] = ACTIONS(7028), + [anon_sym_SEMI] = ACTIONS(7028), + [anon_sym_LF] = ACTIONS(7028), + [anon_sym_AMP] = ACTIONS(7028), }, [4002] = { - [sym_file_descriptor] = ACTIONS(2517), - [sym_variable_name] = ACTIONS(2517), - [anon_sym_esac] = ACTIONS(2519), - [anon_sym_PIPE] = 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_file_descriptor] = ACTIONS(2557), + [sym_variable_name] = ACTIONS(2557), + [anon_sym_esac] = ACTIONS(2559), + [anon_sym_PIPE] = ACTIONS(2559), + [anon_sym_SEMI_SEMI] = ACTIONS(2559), + [anon_sym_PIPE_AMP] = ACTIONS(2559), + [anon_sym_AMP_AMP] = ACTIONS(2559), + [anon_sym_PIPE_PIPE] = ACTIONS(2559), + [anon_sym_LT] = ACTIONS(2559), + [anon_sym_GT] = ACTIONS(2559), + [anon_sym_GT_GT] = ACTIONS(2559), + [anon_sym_AMP_GT] = ACTIONS(2559), + [anon_sym_AMP_GT_GT] = ACTIONS(2559), + [anon_sym_LT_AMP] = ACTIONS(2559), + [anon_sym_GT_AMP] = ACTIONS(2559), + [sym__special_characters] = ACTIONS(2559), + [anon_sym_DQUOTE] = ACTIONS(2559), + [anon_sym_DOLLAR] = ACTIONS(2559), + [sym_raw_string] = ACTIONS(2559), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2559), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2559), + [anon_sym_BQUOTE] = ACTIONS(2559), + [anon_sym_LT_LPAREN] = ACTIONS(2559), + [anon_sym_GT_LPAREN] = ACTIONS(2559), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2519), - [anon_sym_SEMI] = ACTIONS(2519), - [anon_sym_LF] = ACTIONS(2519), - [anon_sym_AMP] = ACTIONS(2519), + [sym_word] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2559), + [anon_sym_LF] = ACTIONS(2559), + [anon_sym_AMP] = ACTIONS(2559), }, [4003] = { [sym_concatenation] = STATE(660), @@ -98546,18 +98935,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(655), [sym_process_substitution] = STATE(655), [aux_sym_for_statement_repeat1] = STATE(1269), - [anon_sym_RPAREN] = ACTIONS(8341), - [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), + [anon_sym_RPAREN] = ACTIONS(8419), + [sym__special_characters] = ACTIONS(1283), + [anon_sym_DQUOTE] = ACTIONS(1285), + [anon_sym_DOLLAR] = ACTIONS(1287), + [sym_raw_string] = ACTIONS(1289), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1291), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1293), + [anon_sym_BQUOTE] = ACTIONS(1295), + [anon_sym_LT_LPAREN] = ACTIONS(1297), + [anon_sym_GT_LPAREN] = ACTIONS(1297), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1277), + [sym_word] = ACTIONS(1299), }, [4004] = { [sym_string] = STATE(4217), @@ -98566,89 +98955,89 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(4217), [sym_command_substitution] = STATE(4217), [sym_process_substitution] = STATE(4217), - [sym__special_characters] = ACTIONS(8343), - [anon_sym_DQUOTE] = ACTIONS(7332), - [anon_sym_DOLLAR] = ACTIONS(7334), - [sym_raw_string] = ACTIONS(8345), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7338), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7340), - [anon_sym_BQUOTE] = ACTIONS(7342), - [anon_sym_LT_LPAREN] = ACTIONS(7344), - [anon_sym_GT_LPAREN] = ACTIONS(7344), + [sym__special_characters] = ACTIONS(8421), + [anon_sym_DQUOTE] = ACTIONS(7402), + [anon_sym_DOLLAR] = ACTIONS(7404), + [sym_raw_string] = ACTIONS(8423), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7408), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7410), + [anon_sym_BQUOTE] = ACTIONS(7412), + [anon_sym_LT_LPAREN] = ACTIONS(7414), + [anon_sym_GT_LPAREN] = ACTIONS(7414), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(8343), + [sym_word] = ACTIONS(8421), }, [4005] = { [aux_sym_concatenation_repeat1] = STATE(4218), - [sym_file_descriptor] = ACTIONS(772), - [sym__concat] = ACTIONS(7871), - [sym_variable_name] = ACTIONS(772), - [anon_sym_esac] = ACTIONS(774), - [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_file_descriptor] = ACTIONS(788), + [sym__concat] = ACTIONS(7945), + [sym_variable_name] = ACTIONS(788), + [anon_sym_esac] = ACTIONS(790), + [anon_sym_PIPE] = ACTIONS(790), + [anon_sym_SEMI_SEMI] = ACTIONS(790), + [anon_sym_PIPE_AMP] = ACTIONS(790), + [anon_sym_AMP_AMP] = ACTIONS(790), + [anon_sym_PIPE_PIPE] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(790), + [anon_sym_GT] = ACTIONS(790), + [anon_sym_GT_GT] = ACTIONS(790), + [anon_sym_AMP_GT] = ACTIONS(790), + [anon_sym_AMP_GT_GT] = ACTIONS(790), + [anon_sym_LT_AMP] = ACTIONS(790), + [anon_sym_GT_AMP] = ACTIONS(790), + [sym__special_characters] = ACTIONS(790), + [anon_sym_DQUOTE] = ACTIONS(790), + [anon_sym_DOLLAR] = ACTIONS(790), + [sym_raw_string] = ACTIONS(790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(790), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(790), + [anon_sym_BQUOTE] = ACTIONS(790), + [anon_sym_LT_LPAREN] = ACTIONS(790), + [anon_sym_GT_LPAREN] = ACTIONS(790), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(774), - [anon_sym_SEMI] = ACTIONS(774), - [anon_sym_LF] = ACTIONS(774), - [anon_sym_AMP] = ACTIONS(774), + [sym_word] = ACTIONS(790), + [anon_sym_SEMI] = ACTIONS(790), + [anon_sym_LF] = ACTIONS(790), + [anon_sym_AMP] = ACTIONS(790), }, [4006] = { - [sym_file_descriptor] = ACTIONS(776), - [sym__concat] = ACTIONS(776), - [sym_variable_name] = ACTIONS(776), - [anon_sym_esac] = ACTIONS(778), - [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_file_descriptor] = ACTIONS(792), + [sym__concat] = ACTIONS(792), + [sym_variable_name] = ACTIONS(792), + [anon_sym_esac] = ACTIONS(794), + [anon_sym_PIPE] = ACTIONS(794), + [anon_sym_SEMI_SEMI] = ACTIONS(794), + [anon_sym_PIPE_AMP] = ACTIONS(794), + [anon_sym_AMP_AMP] = ACTIONS(794), + [anon_sym_PIPE_PIPE] = ACTIONS(794), + [anon_sym_LT] = ACTIONS(794), + [anon_sym_GT] = ACTIONS(794), + [anon_sym_GT_GT] = ACTIONS(794), + [anon_sym_AMP_GT] = ACTIONS(794), + [anon_sym_AMP_GT_GT] = ACTIONS(794), + [anon_sym_LT_AMP] = ACTIONS(794), + [anon_sym_GT_AMP] = ACTIONS(794), + [sym__special_characters] = ACTIONS(794), + [anon_sym_DQUOTE] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(794), + [sym_raw_string] = ACTIONS(794), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(794), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(794), + [anon_sym_BQUOTE] = ACTIONS(794), + [anon_sym_LT_LPAREN] = ACTIONS(794), + [anon_sym_GT_LPAREN] = ACTIONS(794), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(778), - [anon_sym_SEMI] = ACTIONS(778), - [anon_sym_LF] = ACTIONS(778), - [anon_sym_AMP] = ACTIONS(778), + [sym_word] = ACTIONS(794), + [anon_sym_SEMI] = ACTIONS(794), + [anon_sym_LF] = ACTIONS(794), + [anon_sym_AMP] = ACTIONS(794), }, [4007] = { [sym_simple_expansion] = STATE(134), [sym_expansion] = STATE(134), [sym_command_substitution] = STATE(134), [aux_sym_string_repeat1] = STATE(447), - [anon_sym_DQUOTE] = ACTIONS(8347), + [anon_sym_DQUOTE] = ACTIONS(8425), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -98657,104 +99046,104 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(182), }, [4008] = { - [sym_file_descriptor] = ACTIONS(808), - [sym__concat] = ACTIONS(808), - [sym_variable_name] = ACTIONS(808), - [anon_sym_esac] = ACTIONS(810), - [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_file_descriptor] = ACTIONS(824), + [sym__concat] = ACTIONS(824), + [sym_variable_name] = ACTIONS(824), + [anon_sym_esac] = ACTIONS(826), + [anon_sym_PIPE] = ACTIONS(826), + [anon_sym_SEMI_SEMI] = ACTIONS(826), + [anon_sym_PIPE_AMP] = ACTIONS(826), + [anon_sym_AMP_AMP] = ACTIONS(826), + [anon_sym_PIPE_PIPE] = ACTIONS(826), + [anon_sym_LT] = ACTIONS(826), + [anon_sym_GT] = ACTIONS(826), + [anon_sym_GT_GT] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(826), + [anon_sym_AMP_GT_GT] = ACTIONS(826), + [anon_sym_LT_AMP] = ACTIONS(826), + [anon_sym_GT_AMP] = ACTIONS(826), + [sym__special_characters] = ACTIONS(826), + [anon_sym_DQUOTE] = ACTIONS(826), + [anon_sym_DOLLAR] = ACTIONS(826), + [sym_raw_string] = ACTIONS(826), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(826), + [anon_sym_BQUOTE] = ACTIONS(826), + [anon_sym_LT_LPAREN] = ACTIONS(826), + [anon_sym_GT_LPAREN] = ACTIONS(826), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(810), - [anon_sym_SEMI] = ACTIONS(810), - [anon_sym_LF] = ACTIONS(810), - [anon_sym_AMP] = ACTIONS(810), + [sym_word] = ACTIONS(826), + [anon_sym_SEMI] = ACTIONS(826), + [anon_sym_LF] = ACTIONS(826), + [anon_sym_AMP] = ACTIONS(826), }, [4009] = { - [sym_file_descriptor] = ACTIONS(812), - [sym__concat] = ACTIONS(812), - [sym_variable_name] = ACTIONS(812), - [anon_sym_esac] = ACTIONS(814), - [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_file_descriptor] = ACTIONS(828), + [sym__concat] = ACTIONS(828), + [sym_variable_name] = ACTIONS(828), + [anon_sym_esac] = ACTIONS(830), + [anon_sym_PIPE] = ACTIONS(830), + [anon_sym_SEMI_SEMI] = ACTIONS(830), + [anon_sym_PIPE_AMP] = ACTIONS(830), + [anon_sym_AMP_AMP] = ACTIONS(830), + [anon_sym_PIPE_PIPE] = ACTIONS(830), + [anon_sym_LT] = ACTIONS(830), + [anon_sym_GT] = ACTIONS(830), + [anon_sym_GT_GT] = ACTIONS(830), + [anon_sym_AMP_GT] = ACTIONS(830), + [anon_sym_AMP_GT_GT] = ACTIONS(830), + [anon_sym_LT_AMP] = ACTIONS(830), + [anon_sym_GT_AMP] = ACTIONS(830), + [sym__special_characters] = ACTIONS(830), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(830), + [sym_raw_string] = ACTIONS(830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(830), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_LT_LPAREN] = ACTIONS(830), + [anon_sym_GT_LPAREN] = ACTIONS(830), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(814), - [anon_sym_SEMI] = ACTIONS(814), - [anon_sym_LF] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(814), + [sym_word] = ACTIONS(830), + [anon_sym_SEMI] = ACTIONS(830), + [anon_sym_LF] = ACTIONS(830), + [anon_sym_AMP] = ACTIONS(830), }, [4010] = { - [sym_file_descriptor] = ACTIONS(816), - [sym__concat] = ACTIONS(816), - [sym_variable_name] = ACTIONS(816), - [anon_sym_esac] = ACTIONS(818), - [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_file_descriptor] = ACTIONS(832), + [sym__concat] = ACTIONS(832), + [sym_variable_name] = ACTIONS(832), + [anon_sym_esac] = ACTIONS(834), + [anon_sym_PIPE] = ACTIONS(834), + [anon_sym_SEMI_SEMI] = ACTIONS(834), + [anon_sym_PIPE_AMP] = ACTIONS(834), + [anon_sym_AMP_AMP] = ACTIONS(834), + [anon_sym_PIPE_PIPE] = ACTIONS(834), + [anon_sym_LT] = ACTIONS(834), + [anon_sym_GT] = ACTIONS(834), + [anon_sym_GT_GT] = ACTIONS(834), + [anon_sym_AMP_GT] = ACTIONS(834), + [anon_sym_AMP_GT_GT] = ACTIONS(834), + [anon_sym_LT_AMP] = ACTIONS(834), + [anon_sym_GT_AMP] = ACTIONS(834), + [sym__special_characters] = ACTIONS(834), + [anon_sym_DQUOTE] = ACTIONS(834), + [anon_sym_DOLLAR] = ACTIONS(834), + [sym_raw_string] = ACTIONS(834), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(834), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(834), + [anon_sym_BQUOTE] = ACTIONS(834), + [anon_sym_LT_LPAREN] = ACTIONS(834), + [anon_sym_GT_LPAREN] = ACTIONS(834), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(818), - [anon_sym_SEMI] = ACTIONS(818), - [anon_sym_LF] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(818), + [sym_word] = ACTIONS(834), + [anon_sym_SEMI] = ACTIONS(834), + [anon_sym_LF] = ACTIONS(834), + [anon_sym_AMP] = ACTIONS(834), }, [4011] = { - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(8349), + [anon_sym_LBRACK] = ACTIONS(836), + [anon_sym_EQ] = ACTIONS(8427), [sym_comment] = ACTIONS(56), }, [4012] = { @@ -98766,39 +99155,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(4223), - [anon_sym_RBRACE] = ACTIONS(8351), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_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(8353), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8429), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(8431), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4013] = { [sym_subscript] = STATE(4227), - [sym_variable_name] = ACTIONS(8355), - [anon_sym_DOLLAR] = ACTIONS(8357), - [anon_sym_DASH] = ACTIONS(8357), + [sym_variable_name] = ACTIONS(8433), + [anon_sym_DOLLAR] = ACTIONS(8435), + [anon_sym_DASH] = ACTIONS(8435), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(8359), - [anon_sym_STAR] = ACTIONS(8357), - [anon_sym_AT] = ACTIONS(8357), - [anon_sym_QMARK] = ACTIONS(8357), - [anon_sym_0] = ACTIONS(8361), - [anon_sym__] = ACTIONS(8361), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(8437), + [anon_sym_STAR] = ACTIONS(8435), + [anon_sym_AT] = ACTIONS(8435), + [anon_sym_QMARK] = ACTIONS(8435), + [anon_sym_0] = ACTIONS(8439), + [anon_sym__] = ACTIONS(8439), }, [4014] = { [sym_concatenation] = STATE(451), @@ -98809,26 +99198,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(4230), - [anon_sym_RBRACE] = ACTIONS(8363), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_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(8365), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8441), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(8443), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4015] = { [sym_concatenation] = STATE(451), @@ -98839,171 +99228,171 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(4233), - [anon_sym_RBRACE] = ACTIONS(8367), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_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(8369), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8445), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(8447), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4016] = { - [anon_sym_PIPE] = ACTIONS(954), - [anon_sym_RPAREN] = ACTIONS(8371), - [anon_sym_PIPE_AMP] = ACTIONS(958), - [anon_sym_AMP_AMP] = ACTIONS(960), - [anon_sym_PIPE_PIPE] = ACTIONS(960), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(8449), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), [sym_comment] = ACTIONS(56), }, [4017] = { - [sym_file_descriptor] = ACTIONS(378), - [sym_variable_name] = ACTIONS(378), - [anon_sym_PIPE] = ACTIONS(954), - [anon_sym_RPAREN] = ACTIONS(8371), - [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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(8449), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [4018] = { - [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(8371), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_PIPE_AMP] = ACTIONS(1072), + [anon_sym_AMP_AMP] = ACTIONS(1074), + [anon_sym_PIPE_PIPE] = ACTIONS(1074), + [anon_sym_BQUOTE] = ACTIONS(8449), [sym_comment] = ACTIONS(56), }, [4019] = { - [sym_file_descriptor] = ACTIONS(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(8371), - [anon_sym_LT_LPAREN] = ACTIONS(378), - [anon_sym_GT_LPAREN] = ACTIONS(378), + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_PIPE_AMP] = ACTIONS(1072), + [anon_sym_AMP_AMP] = ACTIONS(1074), + [anon_sym_PIPE_PIPE] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(8449), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [4020] = { - [anon_sym_PIPE] = ACTIONS(954), - [anon_sym_RPAREN] = ACTIONS(8373), - [anon_sym_PIPE_AMP] = ACTIONS(958), - [anon_sym_AMP_AMP] = ACTIONS(960), - [anon_sym_PIPE_PIPE] = ACTIONS(960), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(8451), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), [sym_comment] = ACTIONS(56), }, [4021] = { - [sym_file_descriptor] = ACTIONS(378), - [sym_variable_name] = ACTIONS(378), - [anon_sym_PIPE] = ACTIONS(954), - [anon_sym_RPAREN] = ACTIONS(8373), - [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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(8451), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [4022] = { [sym_file_redirect] = STATE(207), [sym_heredoc_redirect] = STATE(207), [sym_herestring_redirect] = STATE(207), [aux_sym_while_statement_repeat1] = STATE(3771), - [sym_file_descriptor] = ACTIONS(6593), - [anon_sym_esac] = ACTIONS(2633), - [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(6597), - [anon_sym_GT] = ACTIONS(6597), - [anon_sym_GT_GT] = ACTIONS(6597), - [anon_sym_AMP_GT] = ACTIONS(6597), - [anon_sym_AMP_GT_GT] = ACTIONS(6597), - [anon_sym_LT_AMP] = ACTIONS(6597), - [anon_sym_GT_AMP] = ACTIONS(6597), - [anon_sym_LT_LT] = ACTIONS(358), - [anon_sym_LT_LT_DASH] = ACTIONS(358), - [anon_sym_LT_LT_LT] = ACTIONS(6599), + [sym_file_descriptor] = ACTIONS(6663), + [anon_sym_esac] = ACTIONS(2677), + [anon_sym_PIPE] = ACTIONS(2677), + [anon_sym_SEMI_SEMI] = ACTIONS(2677), + [anon_sym_PIPE_AMP] = ACTIONS(2677), + [anon_sym_AMP_AMP] = ACTIONS(2677), + [anon_sym_PIPE_PIPE] = ACTIONS(2677), + [anon_sym_LT] = ACTIONS(6667), + [anon_sym_GT] = ACTIONS(6667), + [anon_sym_GT_GT] = ACTIONS(6667), + [anon_sym_AMP_GT] = ACTIONS(6667), + [anon_sym_AMP_GT_GT] = ACTIONS(6667), + [anon_sym_LT_AMP] = ACTIONS(6667), + [anon_sym_GT_AMP] = ACTIONS(6667), + [anon_sym_LT_LT] = ACTIONS(360), + [anon_sym_LT_LT_DASH] = ACTIONS(360), + [anon_sym_LT_LT_LT] = ACTIONS(6669), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2633), - [anon_sym_LF] = ACTIONS(2633), - [anon_sym_AMP] = ACTIONS(2633), + [anon_sym_SEMI] = ACTIONS(2677), + [anon_sym_LF] = ACTIONS(2677), + [anon_sym_AMP] = ACTIONS(2677), }, [4023] = { [sym_compound_statement] = STATE(4236), - [anon_sym_LBRACE] = ACTIONS(480), + [anon_sym_LBRACE] = ACTIONS(484), [sym_comment] = ACTIONS(56), }, [4024] = { - [anon_sym_LT] = ACTIONS(8375), - [anon_sym_GT] = ACTIONS(8375), - [anon_sym_GT_GT] = ACTIONS(8377), - [anon_sym_AMP_GT] = ACTIONS(8375), - [anon_sym_AMP_GT_GT] = ACTIONS(8377), - [anon_sym_LT_AMP] = ACTIONS(8377), - [anon_sym_GT_AMP] = ACTIONS(8377), + [anon_sym_LT] = ACTIONS(8453), + [anon_sym_GT] = ACTIONS(8453), + [anon_sym_GT_GT] = ACTIONS(8455), + [anon_sym_AMP_GT] = ACTIONS(8453), + [anon_sym_AMP_GT_GT] = ACTIONS(8455), + [anon_sym_LT_AMP] = ACTIONS(8455), + [anon_sym_GT_AMP] = ACTIONS(8455), [sym_comment] = ACTIONS(56), }, [4025] = { @@ -99014,68 +99403,68 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(4241), [sym_command_substitution] = STATE(4241), [sym_process_substitution] = STATE(4241), - [sym__special_characters] = ACTIONS(8379), - [anon_sym_DQUOTE] = ACTIONS(8381), - [anon_sym_DOLLAR] = ACTIONS(8383), - [sym_raw_string] = ACTIONS(8385), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(8387), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(8389), - [anon_sym_BQUOTE] = ACTIONS(8391), - [anon_sym_LT_LPAREN] = ACTIONS(8393), - [anon_sym_GT_LPAREN] = ACTIONS(8393), + [sym__special_characters] = ACTIONS(8457), + [anon_sym_DQUOTE] = ACTIONS(8459), + [anon_sym_DOLLAR] = ACTIONS(8461), + [sym_raw_string] = ACTIONS(8463), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8465), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8467), + [anon_sym_BQUOTE] = ACTIONS(8469), + [anon_sym_LT_LPAREN] = ACTIONS(8471), + [anon_sym_GT_LPAREN] = ACTIONS(8471), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(8395), + [sym_word] = ACTIONS(8473), }, [4026] = { [sym_file_redirect] = STATE(207), [sym_heredoc_redirect] = STATE(207), [sym_herestring_redirect] = STATE(207), [aux_sym_while_statement_repeat1] = STATE(3771), - [sym_file_descriptor] = ACTIONS(6593), - [anon_sym_esac] = ACTIONS(3055), - [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(6597), - [anon_sym_GT] = ACTIONS(6597), - [anon_sym_GT_GT] = ACTIONS(6597), - [anon_sym_AMP_GT] = ACTIONS(6597), - [anon_sym_AMP_GT_GT] = ACTIONS(6597), - [anon_sym_LT_AMP] = ACTIONS(6597), - [anon_sym_GT_AMP] = ACTIONS(6597), - [anon_sym_LT_LT] = ACTIONS(358), - [anon_sym_LT_LT_DASH] = ACTIONS(358), - [anon_sym_LT_LT_LT] = ACTIONS(6599), + [sym_file_descriptor] = ACTIONS(6663), + [anon_sym_esac] = ACTIONS(3103), + [anon_sym_PIPE] = ACTIONS(3103), + [anon_sym_SEMI_SEMI] = ACTIONS(3103), + [anon_sym_PIPE_AMP] = ACTIONS(3103), + [anon_sym_AMP_AMP] = ACTIONS(3103), + [anon_sym_PIPE_PIPE] = ACTIONS(3103), + [anon_sym_LT] = ACTIONS(6667), + [anon_sym_GT] = ACTIONS(6667), + [anon_sym_GT_GT] = ACTIONS(6667), + [anon_sym_AMP_GT] = ACTIONS(6667), + [anon_sym_AMP_GT_GT] = ACTIONS(6667), + [anon_sym_LT_AMP] = ACTIONS(6667), + [anon_sym_GT_AMP] = ACTIONS(6667), + [anon_sym_LT_LT] = ACTIONS(360), + [anon_sym_LT_LT_DASH] = ACTIONS(360), + [anon_sym_LT_LT_LT] = ACTIONS(6669), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3055), - [anon_sym_LF] = ACTIONS(3055), - [anon_sym_AMP] = ACTIONS(3055), + [anon_sym_SEMI] = ACTIONS(3103), + [anon_sym_LF] = ACTIONS(3103), + [anon_sym_AMP] = ACTIONS(3103), }, [4027] = { - [sym_variable_name] = ACTIONS(1255), - [anon_sym_esac] = ACTIONS(1257), - [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_variable_name] = ACTIONS(1277), + [anon_sym_esac] = ACTIONS(1279), + [anon_sym_PIPE] = ACTIONS(1279), + [anon_sym_SEMI_SEMI] = ACTIONS(1279), + [anon_sym_PIPE_AMP] = ACTIONS(1279), + [anon_sym_AMP_AMP] = ACTIONS(1279), + [anon_sym_PIPE_PIPE] = ACTIONS(1279), + [sym__special_characters] = ACTIONS(1279), + [anon_sym_DQUOTE] = ACTIONS(1279), + [anon_sym_DOLLAR] = ACTIONS(1279), + [sym_raw_string] = ACTIONS(1279), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1279), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1279), + [anon_sym_BQUOTE] = ACTIONS(1279), + [anon_sym_LT_LPAREN] = ACTIONS(1279), + [anon_sym_GT_LPAREN] = ACTIONS(1279), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1257), - [sym_word] = ACTIONS(1257), - [anon_sym_SEMI] = ACTIONS(1257), - [anon_sym_LF] = ACTIONS(1257), - [anon_sym_AMP] = ACTIONS(1257), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1279), + [sym_word] = ACTIONS(1279), + [anon_sym_SEMI] = ACTIONS(1279), + [anon_sym_LF] = ACTIONS(1279), + [anon_sym_AMP] = ACTIONS(1279), }, [4028] = { [sym_concatenation] = STATE(660), @@ -99086,146 +99475,146 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(655), [sym_process_substitution] = STATE(655), [aux_sym_for_statement_repeat1] = STATE(4247), - [anon_sym_RPAREN] = ACTIONS(8397), - [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), + [anon_sym_RPAREN] = ACTIONS(8475), + [sym__special_characters] = ACTIONS(1283), + [anon_sym_DQUOTE] = ACTIONS(1285), + [anon_sym_DOLLAR] = ACTIONS(1287), + [sym_raw_string] = ACTIONS(1289), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1291), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1293), + [anon_sym_BQUOTE] = ACTIONS(1295), + [anon_sym_LT_LPAREN] = ACTIONS(1297), + [anon_sym_GT_LPAREN] = ACTIONS(1297), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1277), + [sym_word] = ACTIONS(1299), }, [4029] = { [aux_sym_concatenation_repeat1] = STATE(3697), - [sym__concat] = ACTIONS(7354), - [sym_variable_name] = ACTIONS(1279), - [anon_sym_esac] = ACTIONS(1283), - [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__concat] = ACTIONS(7424), + [sym_variable_name] = ACTIONS(1301), + [anon_sym_esac] = ACTIONS(1305), + [anon_sym_PIPE] = ACTIONS(1305), + [anon_sym_SEMI_SEMI] = ACTIONS(1305), + [anon_sym_PIPE_AMP] = ACTIONS(1305), + [anon_sym_AMP_AMP] = ACTIONS(1305), + [anon_sym_PIPE_PIPE] = ACTIONS(1305), + [sym__special_characters] = ACTIONS(1305), + [anon_sym_DQUOTE] = ACTIONS(1305), + [anon_sym_DOLLAR] = ACTIONS(1305), + [sym_raw_string] = ACTIONS(1305), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1305), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1305), + [anon_sym_BQUOTE] = ACTIONS(1305), + [anon_sym_LT_LPAREN] = ACTIONS(1305), + [anon_sym_GT_LPAREN] = ACTIONS(1305), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1283), - [sym_word] = ACTIONS(1283), - [anon_sym_SEMI] = ACTIONS(1283), - [anon_sym_LF] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1283), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1305), + [sym_word] = ACTIONS(1305), + [anon_sym_SEMI] = ACTIONS(1305), + [anon_sym_LF] = ACTIONS(1305), + [anon_sym_AMP] = ACTIONS(1305), }, [4030] = { [aux_sym_concatenation_repeat1] = STATE(3697), - [sym__concat] = ACTIONS(7354), - [sym_variable_name] = ACTIONS(1255), - [anon_sym_esac] = ACTIONS(1257), - [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__concat] = ACTIONS(7424), + [sym_variable_name] = ACTIONS(1277), + [anon_sym_esac] = ACTIONS(1279), + [anon_sym_PIPE] = ACTIONS(1279), + [anon_sym_SEMI_SEMI] = ACTIONS(1279), + [anon_sym_PIPE_AMP] = ACTIONS(1279), + [anon_sym_AMP_AMP] = ACTIONS(1279), + [anon_sym_PIPE_PIPE] = ACTIONS(1279), + [sym__special_characters] = ACTIONS(1279), + [anon_sym_DQUOTE] = ACTIONS(1279), + [anon_sym_DOLLAR] = ACTIONS(1279), + [sym_raw_string] = ACTIONS(1279), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1279), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1279), + [anon_sym_BQUOTE] = ACTIONS(1279), + [anon_sym_LT_LPAREN] = ACTIONS(1279), + [anon_sym_GT_LPAREN] = ACTIONS(1279), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1257), - [sym_word] = ACTIONS(1257), - [anon_sym_SEMI] = ACTIONS(1257), - [anon_sym_LF] = ACTIONS(1257), - [anon_sym_AMP] = ACTIONS(1257), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1279), + [sym_word] = ACTIONS(1279), + [anon_sym_SEMI] = ACTIONS(1279), + [anon_sym_LF] = ACTIONS(1279), + [anon_sym_AMP] = ACTIONS(1279), }, [4031] = { - [sym__concat] = ACTIONS(1858), - [sym_variable_name] = ACTIONS(1858), - [anon_sym_esac] = ACTIONS(1860), - [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__concat] = ACTIONS(1886), + [sym_variable_name] = ACTIONS(1886), + [anon_sym_esac] = ACTIONS(1888), + [anon_sym_PIPE] = ACTIONS(1888), + [anon_sym_SEMI_SEMI] = ACTIONS(1888), + [anon_sym_PIPE_AMP] = ACTIONS(1888), + [anon_sym_AMP_AMP] = ACTIONS(1888), + [anon_sym_PIPE_PIPE] = ACTIONS(1888), + [sym__special_characters] = ACTIONS(1888), + [anon_sym_DQUOTE] = ACTIONS(1888), + [anon_sym_DOLLAR] = ACTIONS(1888), + [sym_raw_string] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1888), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1888), + [anon_sym_BQUOTE] = ACTIONS(1888), + [anon_sym_LT_LPAREN] = ACTIONS(1888), + [anon_sym_GT_LPAREN] = ACTIONS(1888), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1860), - [sym_word] = ACTIONS(1860), - [anon_sym_SEMI] = ACTIONS(1860), - [anon_sym_LF] = ACTIONS(1860), - [anon_sym_AMP] = ACTIONS(1860), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1888), + [sym_word] = ACTIONS(1888), + [anon_sym_SEMI] = ACTIONS(1888), + [anon_sym_LF] = ACTIONS(1888), + [anon_sym_AMP] = ACTIONS(1888), }, [4032] = { [aux_sym_concatenation_repeat1] = STATE(4032), - [sym__concat] = ACTIONS(8399), - [sym_variable_name] = ACTIONS(1858), - [anon_sym_esac] = ACTIONS(1860), - [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__concat] = ACTIONS(8477), + [sym_variable_name] = ACTIONS(1886), + [anon_sym_esac] = ACTIONS(1888), + [anon_sym_PIPE] = ACTIONS(1888), + [anon_sym_SEMI_SEMI] = ACTIONS(1888), + [anon_sym_PIPE_AMP] = ACTIONS(1888), + [anon_sym_AMP_AMP] = ACTIONS(1888), + [anon_sym_PIPE_PIPE] = ACTIONS(1888), + [sym__special_characters] = ACTIONS(1888), + [anon_sym_DQUOTE] = ACTIONS(1888), + [anon_sym_DOLLAR] = ACTIONS(1888), + [sym_raw_string] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1888), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1888), + [anon_sym_BQUOTE] = ACTIONS(1888), + [anon_sym_LT_LPAREN] = ACTIONS(1888), + [anon_sym_GT_LPAREN] = ACTIONS(1888), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1860), - [sym_word] = ACTIONS(1860), - [anon_sym_SEMI] = ACTIONS(1860), - [anon_sym_LF] = ACTIONS(1860), - [anon_sym_AMP] = ACTIONS(1860), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1888), + [sym_word] = ACTIONS(1888), + [anon_sym_SEMI] = ACTIONS(1888), + [anon_sym_LF] = ACTIONS(1888), + [anon_sym_AMP] = ACTIONS(1888), }, [4033] = { - [sym__concat] = ACTIONS(1895), - [sym_variable_name] = ACTIONS(1895), - [anon_sym_esac] = ACTIONS(1897), - [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__concat] = ACTIONS(1923), + [sym_variable_name] = ACTIONS(1923), + [anon_sym_esac] = ACTIONS(1925), + [anon_sym_PIPE] = ACTIONS(1925), + [anon_sym_SEMI_SEMI] = ACTIONS(1925), + [anon_sym_PIPE_AMP] = ACTIONS(1925), + [anon_sym_AMP_AMP] = ACTIONS(1925), + [anon_sym_PIPE_PIPE] = ACTIONS(1925), + [sym__special_characters] = ACTIONS(1925), + [anon_sym_DQUOTE] = ACTIONS(1925), + [anon_sym_DOLLAR] = ACTIONS(1925), + [sym_raw_string] = ACTIONS(1925), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1925), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1925), + [anon_sym_BQUOTE] = ACTIONS(1925), + [anon_sym_LT_LPAREN] = ACTIONS(1925), + [anon_sym_GT_LPAREN] = ACTIONS(1925), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1897), - [sym_word] = ACTIONS(1897), - [anon_sym_SEMI] = ACTIONS(1897), - [anon_sym_LF] = ACTIONS(1897), - [anon_sym_AMP] = ACTIONS(1897), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1925), + [sym_word] = ACTIONS(1925), + [anon_sym_SEMI] = ACTIONS(1925), + [anon_sym_LF] = ACTIONS(1925), + [anon_sym_AMP] = ACTIONS(1925), }, [4034] = { [sym_concatenation] = STATE(4251), @@ -99235,47 +99624,47 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(4250), [sym_command_substitution] = STATE(4250), [sym_process_substitution] = STATE(4250), - [anon_sym_RBRACE] = ACTIONS(8402), - [sym__special_characters] = ACTIONS(8404), - [anon_sym_DQUOTE] = ACTIONS(1924), - [anon_sym_DOLLAR] = ACTIONS(1926), - [sym_raw_string] = ACTIONS(8406), - [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), + [anon_sym_RBRACE] = ACTIONS(8480), + [sym__special_characters] = ACTIONS(8482), + [anon_sym_DQUOTE] = ACTIONS(1952), + [anon_sym_DOLLAR] = ACTIONS(1954), + [sym_raw_string] = ACTIONS(8484), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), + [anon_sym_BQUOTE] = ACTIONS(1962), + [anon_sym_LT_LPAREN] = ACTIONS(1964), + [anon_sym_GT_LPAREN] = ACTIONS(1964), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(8408), + [sym_word] = ACTIONS(8486), }, [4035] = { - [sym__concat] = ACTIONS(1940), - [sym_variable_name] = ACTIONS(1940), - [anon_sym_esac] = ACTIONS(1942), - [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__concat] = ACTIONS(1968), + [sym_variable_name] = ACTIONS(1968), + [anon_sym_esac] = ACTIONS(1970), + [anon_sym_PIPE] = ACTIONS(1970), + [anon_sym_SEMI_SEMI] = ACTIONS(1970), + [anon_sym_PIPE_AMP] = ACTIONS(1970), + [anon_sym_AMP_AMP] = ACTIONS(1970), + [anon_sym_PIPE_PIPE] = ACTIONS(1970), + [sym__special_characters] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1970), + [anon_sym_DOLLAR] = ACTIONS(1970), + [sym_raw_string] = ACTIONS(1970), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1970), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1970), + [anon_sym_BQUOTE] = ACTIONS(1970), + [anon_sym_LT_LPAREN] = ACTIONS(1970), + [anon_sym_GT_LPAREN] = ACTIONS(1970), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1942), - [sym_word] = ACTIONS(1942), - [anon_sym_SEMI] = ACTIONS(1942), - [anon_sym_LF] = ACTIONS(1942), - [anon_sym_AMP] = ACTIONS(1942), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1970), + [sym_word] = ACTIONS(1970), + [anon_sym_SEMI] = ACTIONS(1970), + [anon_sym_LF] = ACTIONS(1970), + [anon_sym_AMP] = ACTIONS(1970), }, [4036] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8410), + [sym_regex_without_right_brace] = ACTIONS(8488), }, [4037] = { [sym_concatenation] = STATE(451), @@ -99286,29 +99675,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8412), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8490), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4038] = { - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(8414), + [anon_sym_LBRACK] = ACTIONS(836), + [anon_sym_EQ] = ACTIONS(8492), [sym_comment] = ACTIONS(56), }, [4039] = { @@ -99320,26 +99709,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(4257), - [anon_sym_RBRACE] = ACTIONS(8416), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_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(8418), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8494), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(8496), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4040] = { [sym_concatenation] = STATE(451), @@ -99350,26 +99739,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(4260), - [anon_sym_RBRACE] = ACTIONS(8420), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_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(8422), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8498), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(8500), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4041] = { [sym_concatenation] = STATE(451), @@ -99380,55 +99769,55 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(4262), - [anon_sym_RBRACE] = ACTIONS(8402), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_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(8424), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8480), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(8502), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4042] = { - [sym__concat] = ACTIONS(1992), - [sym_variable_name] = ACTIONS(1992), - [anon_sym_esac] = ACTIONS(1994), - [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__concat] = ACTIONS(2022), + [sym_variable_name] = ACTIONS(2022), + [anon_sym_esac] = ACTIONS(2024), + [anon_sym_PIPE] = ACTIONS(2024), + [anon_sym_SEMI_SEMI] = ACTIONS(2024), + [anon_sym_PIPE_AMP] = ACTIONS(2024), + [anon_sym_AMP_AMP] = ACTIONS(2024), + [anon_sym_PIPE_PIPE] = ACTIONS(2024), + [sym__special_characters] = ACTIONS(2024), + [anon_sym_DQUOTE] = ACTIONS(2024), + [anon_sym_DOLLAR] = ACTIONS(2024), + [sym_raw_string] = ACTIONS(2024), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2024), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2024), + [anon_sym_BQUOTE] = ACTIONS(2024), + [anon_sym_LT_LPAREN] = ACTIONS(2024), + [anon_sym_GT_LPAREN] = ACTIONS(2024), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1994), - [sym_word] = ACTIONS(1994), - [anon_sym_SEMI] = ACTIONS(1994), - [anon_sym_LF] = ACTIONS(1994), - [anon_sym_AMP] = ACTIONS(1994), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2024), + [sym_word] = ACTIONS(2024), + [anon_sym_SEMI] = ACTIONS(2024), + [anon_sym_LF] = ACTIONS(2024), + [anon_sym_AMP] = ACTIONS(2024), }, [4043] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8426), + [sym_regex_without_right_brace] = ACTIONS(8504), }, [4044] = { [sym_concatenation] = STATE(451), @@ -99439,54 +99828,54 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8428), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8506), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4045] = { - [sym__concat] = ACTIONS(2000), - [sym_variable_name] = ACTIONS(2000), - [anon_sym_esac] = ACTIONS(2002), - [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__concat] = ACTIONS(2030), + [sym_variable_name] = ACTIONS(2030), + [anon_sym_esac] = ACTIONS(2032), + [anon_sym_PIPE] = ACTIONS(2032), + [anon_sym_SEMI_SEMI] = ACTIONS(2032), + [anon_sym_PIPE_AMP] = ACTIONS(2032), + [anon_sym_AMP_AMP] = ACTIONS(2032), + [anon_sym_PIPE_PIPE] = ACTIONS(2032), + [sym__special_characters] = ACTIONS(2032), + [anon_sym_DQUOTE] = ACTIONS(2032), + [anon_sym_DOLLAR] = ACTIONS(2032), + [sym_raw_string] = ACTIONS(2032), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2032), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2032), + [anon_sym_BQUOTE] = ACTIONS(2032), + [anon_sym_LT_LPAREN] = ACTIONS(2032), + [anon_sym_GT_LPAREN] = ACTIONS(2032), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2002), - [sym_word] = ACTIONS(2002), - [anon_sym_SEMI] = ACTIONS(2002), - [anon_sym_LF] = ACTIONS(2002), - [anon_sym_AMP] = ACTIONS(2002), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2032), + [sym_word] = ACTIONS(2032), + [anon_sym_SEMI] = ACTIONS(2032), + [anon_sym_LF] = ACTIONS(2032), + [anon_sym_AMP] = ACTIONS(2032), }, [4046] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8430), + [sym_regex_without_right_brace] = ACTIONS(8508), }, [4047] = { [sym_concatenation] = STATE(451), @@ -99497,148 +99886,148 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8402), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8480), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4048] = { - [sym__concat] = ACTIONS(2156), - [sym_variable_name] = ACTIONS(2156), - [anon_sym_esac] = ACTIONS(2158), - [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__concat] = ACTIONS(2190), + [sym_variable_name] = ACTIONS(2190), + [anon_sym_esac] = ACTIONS(2192), + [anon_sym_PIPE] = ACTIONS(2192), + [anon_sym_SEMI_SEMI] = ACTIONS(2192), + [anon_sym_PIPE_AMP] = ACTIONS(2192), + [anon_sym_AMP_AMP] = ACTIONS(2192), + [anon_sym_PIPE_PIPE] = ACTIONS(2192), + [sym__special_characters] = ACTIONS(2192), + [anon_sym_DQUOTE] = ACTIONS(2192), + [anon_sym_DOLLAR] = ACTIONS(2192), + [sym_raw_string] = ACTIONS(2192), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2192), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2192), + [anon_sym_BQUOTE] = ACTIONS(2192), + [anon_sym_LT_LPAREN] = ACTIONS(2192), + [anon_sym_GT_LPAREN] = ACTIONS(2192), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2158), - [sym_word] = ACTIONS(2158), - [anon_sym_SEMI] = ACTIONS(2158), - [anon_sym_LF] = ACTIONS(2158), - [anon_sym_AMP] = ACTIONS(2158), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2192), + [sym_word] = ACTIONS(2192), + [anon_sym_SEMI] = ACTIONS(2192), + [anon_sym_LF] = ACTIONS(2192), + [anon_sym_AMP] = ACTIONS(2192), }, [4049] = { - [sym__concat] = ACTIONS(2358), - [sym_variable_name] = ACTIONS(2358), - [anon_sym_esac] = ACTIONS(2360), - [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__concat] = ACTIONS(2396), + [sym_variable_name] = ACTIONS(2396), + [anon_sym_esac] = ACTIONS(2398), + [anon_sym_PIPE] = ACTIONS(2398), + [anon_sym_SEMI_SEMI] = ACTIONS(2398), + [anon_sym_PIPE_AMP] = ACTIONS(2398), + [anon_sym_AMP_AMP] = ACTIONS(2398), + [anon_sym_PIPE_PIPE] = ACTIONS(2398), + [sym__special_characters] = ACTIONS(2398), + [anon_sym_DQUOTE] = ACTIONS(2398), + [anon_sym_DOLLAR] = ACTIONS(2398), + [sym_raw_string] = ACTIONS(2398), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2398), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2398), + [anon_sym_BQUOTE] = ACTIONS(2398), + [anon_sym_LT_LPAREN] = ACTIONS(2398), + [anon_sym_GT_LPAREN] = ACTIONS(2398), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2360), - [sym_word] = ACTIONS(2360), - [anon_sym_SEMI] = ACTIONS(2360), - [anon_sym_LF] = ACTIONS(2360), - [anon_sym_AMP] = ACTIONS(2360), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2398), + [sym_word] = ACTIONS(2398), + [anon_sym_SEMI] = ACTIONS(2398), + [anon_sym_LF] = ACTIONS(2398), + [anon_sym_AMP] = ACTIONS(2398), }, [4050] = { - [sym__concat] = ACTIONS(1858), - [anon_sym_esac] = ACTIONS(1860), - [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__concat] = ACTIONS(1886), + [anon_sym_esac] = ACTIONS(1888), + [anon_sym_PIPE] = ACTIONS(1888), + [anon_sym_SEMI_SEMI] = ACTIONS(1888), + [anon_sym_PIPE_AMP] = ACTIONS(1888), + [anon_sym_AMP_AMP] = ACTIONS(1888), + [anon_sym_PIPE_PIPE] = ACTIONS(1888), + [sym__special_characters] = ACTIONS(1888), + [anon_sym_DQUOTE] = ACTIONS(1888), + [anon_sym_DOLLAR] = ACTIONS(1888), + [sym_raw_string] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1888), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1888), + [anon_sym_BQUOTE] = ACTIONS(1888), + [anon_sym_LT_LPAREN] = ACTIONS(1888), + [anon_sym_GT_LPAREN] = ACTIONS(1888), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1860), - [sym_word] = ACTIONS(1860), - [anon_sym_SEMI] = ACTIONS(1860), - [anon_sym_LF] = ACTIONS(1860), - [anon_sym_AMP] = ACTIONS(1860), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1888), + [sym_word] = ACTIONS(1888), + [anon_sym_SEMI] = ACTIONS(1888), + [anon_sym_LF] = ACTIONS(1888), + [anon_sym_AMP] = ACTIONS(1888), }, [4051] = { [aux_sym_concatenation_repeat1] = STATE(4051), - [sym__concat] = ACTIONS(8432), - [anon_sym_esac] = ACTIONS(1860), - [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__concat] = ACTIONS(8510), + [anon_sym_esac] = ACTIONS(1888), + [anon_sym_PIPE] = ACTIONS(1888), + [anon_sym_SEMI_SEMI] = ACTIONS(1888), + [anon_sym_PIPE_AMP] = ACTIONS(1888), + [anon_sym_AMP_AMP] = ACTIONS(1888), + [anon_sym_PIPE_PIPE] = ACTIONS(1888), + [sym__special_characters] = ACTIONS(1888), + [anon_sym_DQUOTE] = ACTIONS(1888), + [anon_sym_DOLLAR] = ACTIONS(1888), + [sym_raw_string] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1888), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1888), + [anon_sym_BQUOTE] = ACTIONS(1888), + [anon_sym_LT_LPAREN] = ACTIONS(1888), + [anon_sym_GT_LPAREN] = ACTIONS(1888), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1860), - [sym_word] = ACTIONS(1860), - [anon_sym_SEMI] = ACTIONS(1860), - [anon_sym_LF] = ACTIONS(1860), - [anon_sym_AMP] = ACTIONS(1860), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1888), + [sym_word] = ACTIONS(1888), + [anon_sym_SEMI] = ACTIONS(1888), + [anon_sym_LF] = ACTIONS(1888), + [anon_sym_AMP] = ACTIONS(1888), }, [4052] = { - [sym__concat] = ACTIONS(1895), - [anon_sym_esac] = ACTIONS(1897), - [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__concat] = ACTIONS(1923), + [anon_sym_esac] = ACTIONS(1925), + [anon_sym_PIPE] = ACTIONS(1925), + [anon_sym_SEMI_SEMI] = ACTIONS(1925), + [anon_sym_PIPE_AMP] = ACTIONS(1925), + [anon_sym_AMP_AMP] = ACTIONS(1925), + [anon_sym_PIPE_PIPE] = ACTIONS(1925), + [sym__special_characters] = ACTIONS(1925), + [anon_sym_DQUOTE] = ACTIONS(1925), + [anon_sym_DOLLAR] = ACTIONS(1925), + [sym_raw_string] = ACTIONS(1925), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1925), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1925), + [anon_sym_BQUOTE] = ACTIONS(1925), + [anon_sym_LT_LPAREN] = ACTIONS(1925), + [anon_sym_GT_LPAREN] = ACTIONS(1925), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1897), - [sym_word] = ACTIONS(1897), - [anon_sym_SEMI] = ACTIONS(1897), - [anon_sym_LF] = ACTIONS(1897), - [anon_sym_AMP] = ACTIONS(1897), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1925), + [sym_word] = ACTIONS(1925), + [anon_sym_SEMI] = ACTIONS(1925), + [anon_sym_LF] = ACTIONS(1925), + [anon_sym_AMP] = ACTIONS(1925), }, [4053] = { [sym_concatenation] = STATE(4269), @@ -99648,46 +100037,46 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(4268), [sym_command_substitution] = STATE(4268), [sym_process_substitution] = STATE(4268), - [anon_sym_RBRACE] = ACTIONS(8435), - [sym__special_characters] = ACTIONS(8437), - [anon_sym_DQUOTE] = ACTIONS(1924), - [anon_sym_DOLLAR] = ACTIONS(1926), - [sym_raw_string] = ACTIONS(8439), - [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), + [anon_sym_RBRACE] = ACTIONS(8513), + [sym__special_characters] = ACTIONS(8515), + [anon_sym_DQUOTE] = ACTIONS(1952), + [anon_sym_DOLLAR] = ACTIONS(1954), + [sym_raw_string] = ACTIONS(8517), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), + [anon_sym_BQUOTE] = ACTIONS(1962), + [anon_sym_LT_LPAREN] = ACTIONS(1964), + [anon_sym_GT_LPAREN] = ACTIONS(1964), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(8441), + [sym_word] = ACTIONS(8519), }, [4054] = { - [sym__concat] = ACTIONS(1940), - [anon_sym_esac] = ACTIONS(1942), - [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__concat] = ACTIONS(1968), + [anon_sym_esac] = ACTIONS(1970), + [anon_sym_PIPE] = ACTIONS(1970), + [anon_sym_SEMI_SEMI] = ACTIONS(1970), + [anon_sym_PIPE_AMP] = ACTIONS(1970), + [anon_sym_AMP_AMP] = ACTIONS(1970), + [anon_sym_PIPE_PIPE] = ACTIONS(1970), + [sym__special_characters] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1970), + [anon_sym_DOLLAR] = ACTIONS(1970), + [sym_raw_string] = ACTIONS(1970), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1970), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1970), + [anon_sym_BQUOTE] = ACTIONS(1970), + [anon_sym_LT_LPAREN] = ACTIONS(1970), + [anon_sym_GT_LPAREN] = ACTIONS(1970), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1942), - [sym_word] = ACTIONS(1942), - [anon_sym_SEMI] = ACTIONS(1942), - [anon_sym_LF] = ACTIONS(1942), - [anon_sym_AMP] = ACTIONS(1942), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1970), + [sym_word] = ACTIONS(1970), + [anon_sym_SEMI] = ACTIONS(1970), + [anon_sym_LF] = ACTIONS(1970), + [anon_sym_AMP] = ACTIONS(1970), }, [4055] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8443), + [sym_regex_without_right_brace] = ACTIONS(8521), }, [4056] = { [sym_concatenation] = STATE(451), @@ -99698,29 +100087,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8445), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8523), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4057] = { - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(8447), + [anon_sym_LBRACK] = ACTIONS(836), + [anon_sym_EQ] = ACTIONS(8525), [sym_comment] = ACTIONS(56), }, [4058] = { @@ -99732,26 +100121,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(4275), - [anon_sym_RBRACE] = ACTIONS(8449), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_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(8451), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8527), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(8529), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4059] = { [sym_concatenation] = STATE(451), @@ -99762,26 +100151,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(4278), - [anon_sym_RBRACE] = ACTIONS(8453), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_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(8455), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8531), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(8533), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4060] = { [sym_concatenation] = STATE(451), @@ -99792,54 +100181,54 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(4280), - [anon_sym_RBRACE] = ACTIONS(8435), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_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(8457), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8513), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(8535), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4061] = { - [sym__concat] = ACTIONS(1992), - [anon_sym_esac] = ACTIONS(1994), - [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__concat] = ACTIONS(2022), + [anon_sym_esac] = ACTIONS(2024), + [anon_sym_PIPE] = ACTIONS(2024), + [anon_sym_SEMI_SEMI] = ACTIONS(2024), + [anon_sym_PIPE_AMP] = ACTIONS(2024), + [anon_sym_AMP_AMP] = ACTIONS(2024), + [anon_sym_PIPE_PIPE] = ACTIONS(2024), + [sym__special_characters] = ACTIONS(2024), + [anon_sym_DQUOTE] = ACTIONS(2024), + [anon_sym_DOLLAR] = ACTIONS(2024), + [sym_raw_string] = ACTIONS(2024), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2024), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2024), + [anon_sym_BQUOTE] = ACTIONS(2024), + [anon_sym_LT_LPAREN] = ACTIONS(2024), + [anon_sym_GT_LPAREN] = ACTIONS(2024), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1994), - [sym_word] = ACTIONS(1994), - [anon_sym_SEMI] = ACTIONS(1994), - [anon_sym_LF] = ACTIONS(1994), - [anon_sym_AMP] = ACTIONS(1994), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2024), + [sym_word] = ACTIONS(2024), + [anon_sym_SEMI] = ACTIONS(2024), + [anon_sym_LF] = ACTIONS(2024), + [anon_sym_AMP] = ACTIONS(2024), }, [4062] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8459), + [sym_regex_without_right_brace] = ACTIONS(8537), }, [4063] = { [sym_concatenation] = STATE(451), @@ -99850,53 +100239,53 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8461), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8539), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4064] = { - [sym__concat] = ACTIONS(2000), - [anon_sym_esac] = ACTIONS(2002), - [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__concat] = ACTIONS(2030), + [anon_sym_esac] = ACTIONS(2032), + [anon_sym_PIPE] = ACTIONS(2032), + [anon_sym_SEMI_SEMI] = ACTIONS(2032), + [anon_sym_PIPE_AMP] = ACTIONS(2032), + [anon_sym_AMP_AMP] = ACTIONS(2032), + [anon_sym_PIPE_PIPE] = ACTIONS(2032), + [sym__special_characters] = ACTIONS(2032), + [anon_sym_DQUOTE] = ACTIONS(2032), + [anon_sym_DOLLAR] = ACTIONS(2032), + [sym_raw_string] = ACTIONS(2032), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2032), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2032), + [anon_sym_BQUOTE] = ACTIONS(2032), + [anon_sym_LT_LPAREN] = ACTIONS(2032), + [anon_sym_GT_LPAREN] = ACTIONS(2032), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2002), - [sym_word] = ACTIONS(2002), - [anon_sym_SEMI] = ACTIONS(2002), - [anon_sym_LF] = ACTIONS(2002), - [anon_sym_AMP] = ACTIONS(2002), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2032), + [sym_word] = ACTIONS(2032), + [anon_sym_SEMI] = ACTIONS(2032), + [anon_sym_LF] = ACTIONS(2032), + [anon_sym_AMP] = ACTIONS(2032), }, [4065] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8463), + [sym_regex_without_right_brace] = ACTIONS(8541), }, [4066] = { [sym_concatenation] = STATE(451), @@ -99907,123 +100296,124 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8435), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8513), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4067] = { - [sym__concat] = ACTIONS(2156), - [anon_sym_esac] = ACTIONS(2158), - [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__concat] = ACTIONS(2190), + [anon_sym_esac] = ACTIONS(2192), + [anon_sym_PIPE] = ACTIONS(2192), + [anon_sym_SEMI_SEMI] = ACTIONS(2192), + [anon_sym_PIPE_AMP] = ACTIONS(2192), + [anon_sym_AMP_AMP] = ACTIONS(2192), + [anon_sym_PIPE_PIPE] = ACTIONS(2192), + [sym__special_characters] = ACTIONS(2192), + [anon_sym_DQUOTE] = ACTIONS(2192), + [anon_sym_DOLLAR] = ACTIONS(2192), + [sym_raw_string] = ACTIONS(2192), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2192), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2192), + [anon_sym_BQUOTE] = ACTIONS(2192), + [anon_sym_LT_LPAREN] = ACTIONS(2192), + [anon_sym_GT_LPAREN] = ACTIONS(2192), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2158), - [sym_word] = ACTIONS(2158), - [anon_sym_SEMI] = ACTIONS(2158), - [anon_sym_LF] = ACTIONS(2158), - [anon_sym_AMP] = ACTIONS(2158), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2192), + [sym_word] = ACTIONS(2192), + [anon_sym_SEMI] = ACTIONS(2192), + [anon_sym_LF] = ACTIONS(2192), + [anon_sym_AMP] = ACTIONS(2192), }, [4068] = { - [sym__concat] = ACTIONS(2358), - [anon_sym_esac] = ACTIONS(2360), - [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__concat] = ACTIONS(2396), + [anon_sym_esac] = ACTIONS(2398), + [anon_sym_PIPE] = ACTIONS(2398), + [anon_sym_SEMI_SEMI] = ACTIONS(2398), + [anon_sym_PIPE_AMP] = ACTIONS(2398), + [anon_sym_AMP_AMP] = ACTIONS(2398), + [anon_sym_PIPE_PIPE] = ACTIONS(2398), + [sym__special_characters] = ACTIONS(2398), + [anon_sym_DQUOTE] = ACTIONS(2398), + [anon_sym_DOLLAR] = ACTIONS(2398), + [sym_raw_string] = ACTIONS(2398), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2398), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2398), + [anon_sym_BQUOTE] = ACTIONS(2398), + [anon_sym_LT_LPAREN] = ACTIONS(2398), + [anon_sym_GT_LPAREN] = ACTIONS(2398), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2360), - [sym_word] = ACTIONS(2360), - [anon_sym_SEMI] = ACTIONS(2360), - [anon_sym_LF] = ACTIONS(2360), - [anon_sym_AMP] = ACTIONS(2360), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2398), + [sym_word] = ACTIONS(2398), + [anon_sym_SEMI] = ACTIONS(2398), + [anon_sym_LF] = ACTIONS(2398), + [anon_sym_AMP] = ACTIONS(2398), }, [4069] = { - [sym_file_descriptor] = ACTIONS(3235), - [sym__concat] = ACTIONS(3235), - [anon_sym_esac] = ACTIONS(3237), - [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_file_descriptor] = ACTIONS(3283), + [sym__concat] = ACTIONS(3283), + [anon_sym_esac] = ACTIONS(3285), + [anon_sym_PIPE] = ACTIONS(3285), + [anon_sym_SEMI_SEMI] = ACTIONS(3285), + [anon_sym_PIPE_AMP] = ACTIONS(3285), + [anon_sym_AMP_AMP] = ACTIONS(3285), + [anon_sym_PIPE_PIPE] = ACTIONS(3285), + [anon_sym_EQ_TILDE] = ACTIONS(3285), + [anon_sym_EQ_EQ] = ACTIONS(3285), + [anon_sym_LT] = ACTIONS(3285), + [anon_sym_GT] = ACTIONS(3285), + [anon_sym_GT_GT] = ACTIONS(3285), + [anon_sym_AMP_GT] = ACTIONS(3285), + [anon_sym_AMP_GT_GT] = ACTIONS(3285), + [anon_sym_LT_AMP] = ACTIONS(3285), + [anon_sym_GT_AMP] = ACTIONS(3285), + [anon_sym_LT_LT] = ACTIONS(3285), + [anon_sym_LT_LT_DASH] = ACTIONS(3285), + [anon_sym_LT_LT_LT] = ACTIONS(3285), + [sym__special_characters] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3285), + [anon_sym_DOLLAR] = ACTIONS(3285), + [sym_raw_string] = ACTIONS(3285), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3285), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3285), + [anon_sym_BQUOTE] = ACTIONS(3285), + [anon_sym_LT_LPAREN] = ACTIONS(3285), + [anon_sym_GT_LPAREN] = ACTIONS(3285), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3237), - [anon_sym_SEMI] = ACTIONS(3237), - [anon_sym_LF] = ACTIONS(3237), - [anon_sym_AMP] = ACTIONS(3237), + [sym_word] = ACTIONS(3285), + [anon_sym_SEMI] = ACTIONS(3285), + [anon_sym_LF] = ACTIONS(3285), + [anon_sym_AMP] = ACTIONS(3285), }, [4070] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(8465), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(8543), [sym_comment] = ACTIONS(56), }, [4071] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(8467), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(8545), [sym_comment] = ACTIONS(56), }, [4072] = { - [anon_sym_RBRACE] = ACTIONS(8467), + [anon_sym_RBRACE] = ACTIONS(8545), [sym_comment] = ACTIONS(56), }, [4073] = { @@ -100035,60 +100425,61 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(4287), - [anon_sym_RBRACE] = ACTIONS(8469), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8547), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4074] = { - [sym_file_descriptor] = ACTIONS(3297), - [sym__concat] = ACTIONS(3297), - [anon_sym_esac] = ACTIONS(3299), - [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_file_descriptor] = ACTIONS(3347), + [sym__concat] = ACTIONS(3347), + [anon_sym_esac] = ACTIONS(3349), + [anon_sym_PIPE] = ACTIONS(3349), + [anon_sym_SEMI_SEMI] = ACTIONS(3349), + [anon_sym_PIPE_AMP] = ACTIONS(3349), + [anon_sym_AMP_AMP] = ACTIONS(3349), + [anon_sym_PIPE_PIPE] = ACTIONS(3349), + [anon_sym_EQ_TILDE] = ACTIONS(3349), + [anon_sym_EQ_EQ] = ACTIONS(3349), + [anon_sym_LT] = ACTIONS(3349), + [anon_sym_GT] = ACTIONS(3349), + [anon_sym_GT_GT] = ACTIONS(3349), + [anon_sym_AMP_GT] = ACTIONS(3349), + [anon_sym_AMP_GT_GT] = ACTIONS(3349), + [anon_sym_LT_AMP] = ACTIONS(3349), + [anon_sym_GT_AMP] = ACTIONS(3349), + [anon_sym_LT_LT] = ACTIONS(3349), + [anon_sym_LT_LT_DASH] = ACTIONS(3349), + [anon_sym_LT_LT_LT] = ACTIONS(3349), + [sym__special_characters] = ACTIONS(3349), + [anon_sym_DQUOTE] = ACTIONS(3349), + [anon_sym_DOLLAR] = ACTIONS(3349), + [sym_raw_string] = ACTIONS(3349), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3349), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3349), + [anon_sym_BQUOTE] = ACTIONS(3349), + [anon_sym_LT_LPAREN] = ACTIONS(3349), + [anon_sym_GT_LPAREN] = ACTIONS(3349), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3299), - [anon_sym_SEMI] = ACTIONS(3299), - [anon_sym_LF] = ACTIONS(3299), - [anon_sym_AMP] = ACTIONS(3299), + [sym_word] = ACTIONS(3349), + [anon_sym_SEMI] = ACTIONS(3349), + [anon_sym_LF] = ACTIONS(3349), + [anon_sym_AMP] = ACTIONS(3349), }, [4075] = { [sym_concatenation] = STATE(4290), @@ -100098,57 +100489,58 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(4289), [sym_command_substitution] = STATE(4289), [sym_process_substitution] = STATE(4289), - [anon_sym_RBRACE] = ACTIONS(8467), - [sym__special_characters] = ACTIONS(8471), - [anon_sym_DQUOTE] = ACTIONS(1924), - [anon_sym_DOLLAR] = ACTIONS(1926), - [sym_raw_string] = ACTIONS(8473), - [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), + [anon_sym_RBRACE] = ACTIONS(8545), + [sym__special_characters] = ACTIONS(8549), + [anon_sym_DQUOTE] = ACTIONS(1952), + [anon_sym_DOLLAR] = ACTIONS(1954), + [sym_raw_string] = ACTIONS(8551), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), + [anon_sym_BQUOTE] = ACTIONS(1962), + [anon_sym_LT_LPAREN] = ACTIONS(1964), + [anon_sym_GT_LPAREN] = ACTIONS(1964), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(8475), + [sym_word] = ACTIONS(8553), }, [4076] = { - [sym_file_descriptor] = ACTIONS(3342), - [sym__concat] = ACTIONS(3342), - [anon_sym_esac] = ACTIONS(3344), - [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_file_descriptor] = ACTIONS(3392), + [sym__concat] = ACTIONS(3392), + [anon_sym_esac] = ACTIONS(3394), + [anon_sym_PIPE] = ACTIONS(3394), + [anon_sym_SEMI_SEMI] = ACTIONS(3394), + [anon_sym_PIPE_AMP] = ACTIONS(3394), + [anon_sym_AMP_AMP] = ACTIONS(3394), + [anon_sym_PIPE_PIPE] = ACTIONS(3394), + [anon_sym_EQ_TILDE] = ACTIONS(3394), + [anon_sym_EQ_EQ] = ACTIONS(3394), + [anon_sym_LT] = ACTIONS(3394), + [anon_sym_GT] = ACTIONS(3394), + [anon_sym_GT_GT] = ACTIONS(3394), + [anon_sym_AMP_GT] = ACTIONS(3394), + [anon_sym_AMP_GT_GT] = ACTIONS(3394), + [anon_sym_LT_AMP] = ACTIONS(3394), + [anon_sym_GT_AMP] = ACTIONS(3394), + [anon_sym_LT_LT] = ACTIONS(3394), + [anon_sym_LT_LT_DASH] = ACTIONS(3394), + [anon_sym_LT_LT_LT] = ACTIONS(3394), + [sym__special_characters] = ACTIONS(3394), + [anon_sym_DQUOTE] = ACTIONS(3394), + [anon_sym_DOLLAR] = ACTIONS(3394), + [sym_raw_string] = ACTIONS(3394), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3394), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3394), + [anon_sym_BQUOTE] = ACTIONS(3394), + [anon_sym_LT_LPAREN] = ACTIONS(3394), + [anon_sym_GT_LPAREN] = ACTIONS(3394), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(3344), - [anon_sym_LF] = ACTIONS(3344), - [anon_sym_AMP] = ACTIONS(3344), + [sym_word] = ACTIONS(3394), + [anon_sym_SEMI] = ACTIONS(3394), + [anon_sym_LF] = ACTIONS(3394), + [anon_sym_AMP] = ACTIONS(3394), }, [4077] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8477), + [sym_regex_without_right_brace] = ACTIONS(8555), }, [4078] = { [sym_concatenation] = STATE(451), @@ -100159,64 +100551,65 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8479), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8557), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4079] = { - [sym_file_descriptor] = ACTIONS(3350), - [sym__concat] = ACTIONS(3350), - [anon_sym_esac] = ACTIONS(3352), - [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_file_descriptor] = ACTIONS(3400), + [sym__concat] = ACTIONS(3400), + [anon_sym_esac] = ACTIONS(3402), + [anon_sym_PIPE] = ACTIONS(3402), + [anon_sym_SEMI_SEMI] = ACTIONS(3402), + [anon_sym_PIPE_AMP] = ACTIONS(3402), + [anon_sym_AMP_AMP] = ACTIONS(3402), + [anon_sym_PIPE_PIPE] = ACTIONS(3402), + [anon_sym_EQ_TILDE] = ACTIONS(3402), + [anon_sym_EQ_EQ] = ACTIONS(3402), + [anon_sym_LT] = ACTIONS(3402), + [anon_sym_GT] = ACTIONS(3402), + [anon_sym_GT_GT] = ACTIONS(3402), + [anon_sym_AMP_GT] = ACTIONS(3402), + [anon_sym_AMP_GT_GT] = ACTIONS(3402), + [anon_sym_LT_AMP] = ACTIONS(3402), + [anon_sym_GT_AMP] = ACTIONS(3402), + [anon_sym_LT_LT] = ACTIONS(3402), + [anon_sym_LT_LT_DASH] = ACTIONS(3402), + [anon_sym_LT_LT_LT] = ACTIONS(3402), + [sym__special_characters] = ACTIONS(3402), + [anon_sym_DQUOTE] = ACTIONS(3402), + [anon_sym_DOLLAR] = ACTIONS(3402), + [sym_raw_string] = ACTIONS(3402), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3402), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3402), + [anon_sym_BQUOTE] = ACTIONS(3402), + [anon_sym_LT_LPAREN] = ACTIONS(3402), + [anon_sym_GT_LPAREN] = ACTIONS(3402), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3352), - [anon_sym_SEMI] = ACTIONS(3352), - [anon_sym_LF] = ACTIONS(3352), - [anon_sym_AMP] = ACTIONS(3352), + [sym_word] = ACTIONS(3402), + [anon_sym_SEMI] = ACTIONS(3402), + [anon_sym_LF] = ACTIONS(3402), + [anon_sym_AMP] = ACTIONS(3402), }, [4080] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8481), + [sym_regex_without_right_brace] = ACTIONS(8559), }, [4081] = { [sym_concatenation] = STATE(451), @@ -100227,29 +100620,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8483), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8561), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4082] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8485), + [sym_regex_without_right_brace] = ACTIONS(8563), }, [4083] = { [sym_concatenation] = STATE(451), @@ -100260,25 +100653,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8467), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8545), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4084] = { [sym_concatenation] = STATE(451), @@ -100289,60 +100682,61 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(4297), - [anon_sym_RBRACE] = ACTIONS(8487), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8565), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4085] = { - [sym_file_descriptor] = ACTIONS(3362), - [sym__concat] = ACTIONS(3362), - [anon_sym_esac] = ACTIONS(3364), - [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_file_descriptor] = ACTIONS(3412), + [sym__concat] = ACTIONS(3412), + [anon_sym_esac] = ACTIONS(3414), + [anon_sym_PIPE] = ACTIONS(3414), + [anon_sym_SEMI_SEMI] = ACTIONS(3414), + [anon_sym_PIPE_AMP] = ACTIONS(3414), + [anon_sym_AMP_AMP] = ACTIONS(3414), + [anon_sym_PIPE_PIPE] = ACTIONS(3414), + [anon_sym_EQ_TILDE] = ACTIONS(3414), + [anon_sym_EQ_EQ] = ACTIONS(3414), + [anon_sym_LT] = ACTIONS(3414), + [anon_sym_GT] = ACTIONS(3414), + [anon_sym_GT_GT] = ACTIONS(3414), + [anon_sym_AMP_GT] = ACTIONS(3414), + [anon_sym_AMP_GT_GT] = ACTIONS(3414), + [anon_sym_LT_AMP] = ACTIONS(3414), + [anon_sym_GT_AMP] = ACTIONS(3414), + [anon_sym_LT_LT] = ACTIONS(3414), + [anon_sym_LT_LT_DASH] = ACTIONS(3414), + [anon_sym_LT_LT_LT] = ACTIONS(3414), + [sym__special_characters] = ACTIONS(3414), + [anon_sym_DQUOTE] = ACTIONS(3414), + [anon_sym_DOLLAR] = ACTIONS(3414), + [sym_raw_string] = ACTIONS(3414), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3414), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3414), + [anon_sym_BQUOTE] = ACTIONS(3414), + [anon_sym_LT_LPAREN] = ACTIONS(3414), + [anon_sym_GT_LPAREN] = ACTIONS(3414), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3364), - [anon_sym_SEMI] = ACTIONS(3364), - [anon_sym_LF] = ACTIONS(3364), - [anon_sym_AMP] = ACTIONS(3364), + [sym_word] = ACTIONS(3414), + [anon_sym_SEMI] = ACTIONS(3414), + [anon_sym_LF] = ACTIONS(3414), + [anon_sym_AMP] = ACTIONS(3414), }, [4086] = { [sym_concatenation] = STATE(451), @@ -100353,96 +100747,96 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(4299), - [anon_sym_RBRACE] = ACTIONS(8489), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8567), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4087] = { [sym_file_redirect] = STATE(1874), - [sym_file_descriptor] = ACTIONS(7893), - [anon_sym_esac] = ACTIONS(2740), - [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(7895), - [anon_sym_GT] = ACTIONS(7895), - [anon_sym_GT_GT] = ACTIONS(7895), - [anon_sym_AMP_GT] = ACTIONS(7895), - [anon_sym_AMP_GT_GT] = ACTIONS(7895), - [anon_sym_LT_AMP] = ACTIONS(7895), - [anon_sym_GT_AMP] = ACTIONS(7895), + [sym_file_descriptor] = ACTIONS(7969), + [anon_sym_esac] = ACTIONS(2784), + [anon_sym_PIPE] = ACTIONS(2784), + [anon_sym_SEMI_SEMI] = ACTIONS(2784), + [anon_sym_PIPE_AMP] = ACTIONS(2784), + [anon_sym_AMP_AMP] = ACTIONS(2784), + [anon_sym_PIPE_PIPE] = ACTIONS(2784), + [anon_sym_LT] = ACTIONS(7971), + [anon_sym_GT] = ACTIONS(7971), + [anon_sym_GT_GT] = ACTIONS(7971), + [anon_sym_AMP_GT] = ACTIONS(7971), + [anon_sym_AMP_GT_GT] = ACTIONS(7971), + [anon_sym_LT_AMP] = ACTIONS(7971), + [anon_sym_GT_AMP] = ACTIONS(7971), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2740), - [anon_sym_LF] = ACTIONS(2740), - [anon_sym_AMP] = ACTIONS(2740), + [anon_sym_SEMI] = ACTIONS(2784), + [anon_sym_LF] = ACTIONS(2784), + [anon_sym_AMP] = ACTIONS(2784), }, [4088] = { [aux_sym_concatenation_repeat1] = STATE(4091), - [sym_file_descriptor] = ACTIONS(1219), - [sym__concat] = ACTIONS(8087), - [anon_sym_esac] = ACTIONS(3974), - [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_file_descriptor] = ACTIONS(1239), + [sym__concat] = ACTIONS(8163), + [anon_sym_esac] = ACTIONS(4032), + [anon_sym_PIPE] = ACTIONS(4032), + [anon_sym_SEMI_SEMI] = ACTIONS(4032), + [anon_sym_PIPE_AMP] = ACTIONS(4032), + [anon_sym_AMP_AMP] = ACTIONS(4032), + [anon_sym_PIPE_PIPE] = ACTIONS(4032), + [anon_sym_LT] = ACTIONS(4032), + [anon_sym_GT] = ACTIONS(4032), + [anon_sym_GT_GT] = ACTIONS(4032), + [anon_sym_AMP_GT] = ACTIONS(4032), + [anon_sym_AMP_GT_GT] = ACTIONS(4032), + [anon_sym_LT_AMP] = ACTIONS(4032), + [anon_sym_GT_AMP] = ACTIONS(4032), + [anon_sym_LT_LT] = ACTIONS(4032), + [anon_sym_LT_LT_DASH] = ACTIONS(4032), + [anon_sym_LT_LT_LT] = ACTIONS(4032), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3974), - [anon_sym_LF] = ACTIONS(3974), - [anon_sym_AMP] = ACTIONS(3974), + [anon_sym_SEMI] = ACTIONS(4032), + [anon_sym_LF] = ACTIONS(4032), + [anon_sym_AMP] = ACTIONS(4032), }, [4089] = { [aux_sym_concatenation_repeat1] = STATE(4091), - [sym_file_descriptor] = ACTIONS(1223), - [sym__concat] = ACTIONS(8087), - [anon_sym_esac] = ACTIONS(3976), - [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_file_descriptor] = ACTIONS(1243), + [sym__concat] = ACTIONS(8163), + [anon_sym_esac] = ACTIONS(4034), + [anon_sym_PIPE] = ACTIONS(4034), + [anon_sym_SEMI_SEMI] = ACTIONS(4034), + [anon_sym_PIPE_AMP] = ACTIONS(4034), + [anon_sym_AMP_AMP] = ACTIONS(4034), + [anon_sym_PIPE_PIPE] = ACTIONS(4034), + [anon_sym_LT] = ACTIONS(4034), + [anon_sym_GT] = ACTIONS(4034), + [anon_sym_GT_GT] = ACTIONS(4034), + [anon_sym_AMP_GT] = ACTIONS(4034), + [anon_sym_AMP_GT_GT] = ACTIONS(4034), + [anon_sym_LT_AMP] = ACTIONS(4034), + [anon_sym_GT_AMP] = ACTIONS(4034), + [anon_sym_LT_LT] = ACTIONS(4034), + [anon_sym_LT_LT_DASH] = ACTIONS(4034), + [anon_sym_LT_LT_LT] = ACTIONS(4034), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3976), - [anon_sym_LF] = ACTIONS(3976), - [anon_sym_AMP] = ACTIONS(3976), + [anon_sym_SEMI] = ACTIONS(4034), + [anon_sym_LF] = ACTIONS(4034), + [anon_sym_AMP] = ACTIONS(4034), }, [4090] = { [sym_string] = STATE(4300), @@ -100451,73 +100845,73 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(4300), [sym_command_substitution] = STATE(4300), [sym_process_substitution] = STATE(4300), - [sym__special_characters] = ACTIONS(8491), - [anon_sym_DQUOTE] = ACTIONS(7452), - [anon_sym_DOLLAR] = ACTIONS(7454), - [sym_raw_string] = ACTIONS(8493), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7458), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7460), - [anon_sym_BQUOTE] = ACTIONS(7462), - [anon_sym_LT_LPAREN] = ACTIONS(7464), - [anon_sym_GT_LPAREN] = ACTIONS(7464), + [sym__special_characters] = ACTIONS(8569), + [anon_sym_DQUOTE] = ACTIONS(7526), + [anon_sym_DOLLAR] = ACTIONS(7528), + [sym_raw_string] = ACTIONS(8571), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7532), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7534), + [anon_sym_BQUOTE] = ACTIONS(7536), + [anon_sym_LT_LPAREN] = ACTIONS(7538), + [anon_sym_GT_LPAREN] = ACTIONS(7538), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(8491), + [sym_word] = ACTIONS(8569), }, [4091] = { [aux_sym_concatenation_repeat1] = STATE(4301), - [sym_file_descriptor] = ACTIONS(772), - [sym__concat] = ACTIONS(8087), - [anon_sym_esac] = ACTIONS(774), - [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_file_descriptor] = ACTIONS(788), + [sym__concat] = ACTIONS(8163), + [anon_sym_esac] = ACTIONS(790), + [anon_sym_PIPE] = ACTIONS(790), + [anon_sym_SEMI_SEMI] = ACTIONS(790), + [anon_sym_PIPE_AMP] = ACTIONS(790), + [anon_sym_AMP_AMP] = ACTIONS(790), + [anon_sym_PIPE_PIPE] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(790), + [anon_sym_GT] = ACTIONS(790), + [anon_sym_GT_GT] = ACTIONS(790), + [anon_sym_AMP_GT] = ACTIONS(790), + [anon_sym_AMP_GT_GT] = ACTIONS(790), + [anon_sym_LT_AMP] = ACTIONS(790), + [anon_sym_GT_AMP] = ACTIONS(790), + [anon_sym_LT_LT] = ACTIONS(790), + [anon_sym_LT_LT_DASH] = ACTIONS(790), + [anon_sym_LT_LT_LT] = ACTIONS(790), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(774), - [anon_sym_LF] = ACTIONS(774), - [anon_sym_AMP] = ACTIONS(774), + [anon_sym_SEMI] = ACTIONS(790), + [anon_sym_LF] = ACTIONS(790), + [anon_sym_AMP] = ACTIONS(790), }, [4092] = { - [sym_file_descriptor] = ACTIONS(776), - [sym__concat] = ACTIONS(776), - [anon_sym_esac] = ACTIONS(778), - [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_file_descriptor] = ACTIONS(792), + [sym__concat] = ACTIONS(792), + [anon_sym_esac] = ACTIONS(794), + [anon_sym_PIPE] = ACTIONS(794), + [anon_sym_SEMI_SEMI] = ACTIONS(794), + [anon_sym_PIPE_AMP] = ACTIONS(794), + [anon_sym_AMP_AMP] = ACTIONS(794), + [anon_sym_PIPE_PIPE] = ACTIONS(794), + [anon_sym_LT] = ACTIONS(794), + [anon_sym_GT] = ACTIONS(794), + [anon_sym_GT_GT] = ACTIONS(794), + [anon_sym_AMP_GT] = ACTIONS(794), + [anon_sym_AMP_GT_GT] = ACTIONS(794), + [anon_sym_LT_AMP] = ACTIONS(794), + [anon_sym_GT_AMP] = ACTIONS(794), + [anon_sym_LT_LT] = ACTIONS(794), + [anon_sym_LT_LT_DASH] = ACTIONS(794), + [anon_sym_LT_LT_LT] = ACTIONS(794), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(778), - [anon_sym_LF] = ACTIONS(778), - [anon_sym_AMP] = ACTIONS(778), + [anon_sym_SEMI] = ACTIONS(794), + [anon_sym_LF] = ACTIONS(794), + [anon_sym_AMP] = ACTIONS(794), }, [4093] = { [sym_simple_expansion] = STATE(134), [sym_expansion] = STATE(134), [sym_command_substitution] = STATE(134), [aux_sym_string_repeat1] = STATE(447), - [anon_sym_DQUOTE] = ACTIONS(8495), + [anon_sym_DQUOTE] = ACTIONS(8573), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -100526,80 +100920,80 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(182), }, [4094] = { - [sym_file_descriptor] = ACTIONS(808), - [sym__concat] = ACTIONS(808), - [anon_sym_esac] = ACTIONS(810), - [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_file_descriptor] = ACTIONS(824), + [sym__concat] = ACTIONS(824), + [anon_sym_esac] = ACTIONS(826), + [anon_sym_PIPE] = ACTIONS(826), + [anon_sym_SEMI_SEMI] = ACTIONS(826), + [anon_sym_PIPE_AMP] = ACTIONS(826), + [anon_sym_AMP_AMP] = ACTIONS(826), + [anon_sym_PIPE_PIPE] = ACTIONS(826), + [anon_sym_LT] = ACTIONS(826), + [anon_sym_GT] = ACTIONS(826), + [anon_sym_GT_GT] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(826), + [anon_sym_AMP_GT_GT] = ACTIONS(826), + [anon_sym_LT_AMP] = ACTIONS(826), + [anon_sym_GT_AMP] = ACTIONS(826), + [anon_sym_LT_LT] = ACTIONS(826), + [anon_sym_LT_LT_DASH] = ACTIONS(826), + [anon_sym_LT_LT_LT] = ACTIONS(826), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(810), - [anon_sym_LF] = ACTIONS(810), - [anon_sym_AMP] = ACTIONS(810), + [anon_sym_SEMI] = ACTIONS(826), + [anon_sym_LF] = ACTIONS(826), + [anon_sym_AMP] = ACTIONS(826), }, [4095] = { - [sym_file_descriptor] = ACTIONS(812), - [sym__concat] = ACTIONS(812), - [anon_sym_esac] = ACTIONS(814), - [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_file_descriptor] = ACTIONS(828), + [sym__concat] = ACTIONS(828), + [anon_sym_esac] = ACTIONS(830), + [anon_sym_PIPE] = ACTIONS(830), + [anon_sym_SEMI_SEMI] = ACTIONS(830), + [anon_sym_PIPE_AMP] = ACTIONS(830), + [anon_sym_AMP_AMP] = ACTIONS(830), + [anon_sym_PIPE_PIPE] = ACTIONS(830), + [anon_sym_LT] = ACTIONS(830), + [anon_sym_GT] = ACTIONS(830), + [anon_sym_GT_GT] = ACTIONS(830), + [anon_sym_AMP_GT] = ACTIONS(830), + [anon_sym_AMP_GT_GT] = ACTIONS(830), + [anon_sym_LT_AMP] = ACTIONS(830), + [anon_sym_GT_AMP] = ACTIONS(830), + [anon_sym_LT_LT] = ACTIONS(830), + [anon_sym_LT_LT_DASH] = ACTIONS(830), + [anon_sym_LT_LT_LT] = ACTIONS(830), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(814), - [anon_sym_LF] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(814), + [anon_sym_SEMI] = ACTIONS(830), + [anon_sym_LF] = ACTIONS(830), + [anon_sym_AMP] = ACTIONS(830), }, [4096] = { - [sym_file_descriptor] = ACTIONS(816), - [sym__concat] = ACTIONS(816), - [anon_sym_esac] = ACTIONS(818), - [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_file_descriptor] = ACTIONS(832), + [sym__concat] = ACTIONS(832), + [anon_sym_esac] = ACTIONS(834), + [anon_sym_PIPE] = ACTIONS(834), + [anon_sym_SEMI_SEMI] = ACTIONS(834), + [anon_sym_PIPE_AMP] = ACTIONS(834), + [anon_sym_AMP_AMP] = ACTIONS(834), + [anon_sym_PIPE_PIPE] = ACTIONS(834), + [anon_sym_LT] = ACTIONS(834), + [anon_sym_GT] = ACTIONS(834), + [anon_sym_GT_GT] = ACTIONS(834), + [anon_sym_AMP_GT] = ACTIONS(834), + [anon_sym_AMP_GT_GT] = ACTIONS(834), + [anon_sym_LT_AMP] = ACTIONS(834), + [anon_sym_GT_AMP] = ACTIONS(834), + [anon_sym_LT_LT] = ACTIONS(834), + [anon_sym_LT_LT_DASH] = ACTIONS(834), + [anon_sym_LT_LT_LT] = ACTIONS(834), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(818), - [anon_sym_LF] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(818), + [anon_sym_SEMI] = ACTIONS(834), + [anon_sym_LF] = ACTIONS(834), + [anon_sym_AMP] = ACTIONS(834), }, [4097] = { - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(8497), + [anon_sym_LBRACK] = ACTIONS(836), + [anon_sym_EQ] = ACTIONS(8575), [sym_comment] = ACTIONS(56), }, [4098] = { @@ -100611,39 +101005,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(4306), - [anon_sym_RBRACE] = ACTIONS(8499), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_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(8501), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8577), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(8579), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4099] = { [sym_subscript] = STATE(4310), - [sym_variable_name] = ACTIONS(8503), - [anon_sym_DOLLAR] = ACTIONS(8505), - [anon_sym_DASH] = ACTIONS(8505), + [sym_variable_name] = ACTIONS(8581), + [anon_sym_DOLLAR] = ACTIONS(8583), + [anon_sym_DASH] = ACTIONS(8583), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(8507), - [anon_sym_STAR] = ACTIONS(8505), - [anon_sym_AT] = ACTIONS(8505), - [anon_sym_QMARK] = ACTIONS(8505), - [anon_sym_0] = ACTIONS(8509), - [anon_sym__] = ACTIONS(8509), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(8585), + [anon_sym_STAR] = ACTIONS(8583), + [anon_sym_AT] = ACTIONS(8583), + [anon_sym_QMARK] = ACTIONS(8583), + [anon_sym_0] = ACTIONS(8587), + [anon_sym__] = ACTIONS(8587), }, [4100] = { [sym_concatenation] = STATE(451), @@ -100654,26 +101048,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(4313), - [anon_sym_RBRACE] = ACTIONS(8511), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_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(8513), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8589), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(8591), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4101] = { [sym_concatenation] = STATE(451), @@ -100684,258 +101078,258 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(4316), - [anon_sym_RBRACE] = ACTIONS(8515), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_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(8517), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8593), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(8595), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4102] = { - [anon_sym_PIPE] = ACTIONS(954), - [anon_sym_RPAREN] = ACTIONS(8519), - [anon_sym_PIPE_AMP] = ACTIONS(958), - [anon_sym_AMP_AMP] = ACTIONS(960), - [anon_sym_PIPE_PIPE] = ACTIONS(960), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(8597), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), [sym_comment] = ACTIONS(56), }, [4103] = { - [sym_file_descriptor] = ACTIONS(378), - [sym_variable_name] = ACTIONS(378), - [anon_sym_PIPE] = ACTIONS(954), - [anon_sym_RPAREN] = ACTIONS(8519), - [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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(8597), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [4104] = { - [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(8519), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_PIPE_AMP] = ACTIONS(1072), + [anon_sym_AMP_AMP] = ACTIONS(1074), + [anon_sym_PIPE_PIPE] = ACTIONS(1074), + [anon_sym_BQUOTE] = ACTIONS(8597), [sym_comment] = ACTIONS(56), }, [4105] = { - [sym_file_descriptor] = ACTIONS(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(8519), - [anon_sym_LT_LPAREN] = ACTIONS(378), - [anon_sym_GT_LPAREN] = ACTIONS(378), + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_PIPE_AMP] = ACTIONS(1072), + [anon_sym_AMP_AMP] = ACTIONS(1074), + [anon_sym_PIPE_PIPE] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(8597), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [4106] = { - [anon_sym_PIPE] = ACTIONS(954), - [anon_sym_RPAREN] = ACTIONS(8521), - [anon_sym_PIPE_AMP] = ACTIONS(958), - [anon_sym_AMP_AMP] = ACTIONS(960), - [anon_sym_PIPE_PIPE] = ACTIONS(960), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(8599), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), [sym_comment] = ACTIONS(56), }, [4107] = { - [sym_file_descriptor] = ACTIONS(378), - [sym_variable_name] = ACTIONS(378), - [anon_sym_PIPE] = ACTIONS(954), - [anon_sym_RPAREN] = ACTIONS(8521), - [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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(8599), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [4108] = { [sym_file_redirect] = STATE(207), [sym_heredoc_redirect] = STATE(207), [sym_herestring_redirect] = STATE(207), [aux_sym_while_statement_repeat1] = STATE(3771), - [sym_file_descriptor] = ACTIONS(6593), - [anon_sym_esac] = ACTIONS(4036), - [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(6597), - [anon_sym_GT] = ACTIONS(6597), - [anon_sym_GT_GT] = ACTIONS(6597), - [anon_sym_AMP_GT] = ACTIONS(6597), - [anon_sym_AMP_GT_GT] = ACTIONS(6597), - [anon_sym_LT_AMP] = ACTIONS(6597), - [anon_sym_GT_AMP] = ACTIONS(6597), - [anon_sym_LT_LT] = ACTIONS(358), - [anon_sym_LT_LT_DASH] = ACTIONS(358), - [anon_sym_LT_LT_LT] = ACTIONS(6599), + [sym_file_descriptor] = ACTIONS(6663), + [anon_sym_esac] = ACTIONS(4094), + [anon_sym_PIPE] = ACTIONS(4094), + [anon_sym_SEMI_SEMI] = ACTIONS(4094), + [anon_sym_PIPE_AMP] = ACTIONS(4094), + [anon_sym_AMP_AMP] = ACTIONS(4094), + [anon_sym_PIPE_PIPE] = ACTIONS(4094), + [anon_sym_LT] = ACTIONS(6667), + [anon_sym_GT] = ACTIONS(6667), + [anon_sym_GT_GT] = ACTIONS(6667), + [anon_sym_AMP_GT] = ACTIONS(6667), + [anon_sym_AMP_GT_GT] = ACTIONS(6667), + [anon_sym_LT_AMP] = ACTIONS(6667), + [anon_sym_GT_AMP] = ACTIONS(6667), + [anon_sym_LT_LT] = ACTIONS(360), + [anon_sym_LT_LT_DASH] = ACTIONS(360), + [anon_sym_LT_LT_LT] = ACTIONS(6669), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4036), - [anon_sym_LF] = ACTIONS(4036), - [anon_sym_AMP] = ACTIONS(4036), + [anon_sym_SEMI] = ACTIONS(4094), + [anon_sym_LF] = ACTIONS(4094), + [anon_sym_AMP] = ACTIONS(4094), }, [4109] = { - [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(8523), - [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(8525), - [anon_sym_DQUOTE] = ACTIONS(8527), - [anon_sym_DOLLAR] = ACTIONS(8529), - [sym_raw_string] = ACTIONS(8527), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(8527), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(8527), - [anon_sym_BQUOTE] = ACTIONS(8527), - [anon_sym_LT_LPAREN] = ACTIONS(8527), - [anon_sym_GT_LPAREN] = ACTIONS(8527), + [sym_file_descriptor] = ACTIONS(1100), + [sym_variable_name] = ACTIONS(1100), + [anon_sym_for] = ACTIONS(1102), + [anon_sym_while] = ACTIONS(1102), + [anon_sym_if] = ACTIONS(1102), + [anon_sym_case] = ACTIONS(1102), + [anon_sym_esac] = ACTIONS(8601), + [anon_sym_SEMI_SEMI] = ACTIONS(1100), + [anon_sym_function] = ACTIONS(1102), + [anon_sym_LPAREN] = ACTIONS(1100), + [anon_sym_LBRACK] = ACTIONS(1102), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1100), + [anon_sym_declare] = ACTIONS(1102), + [anon_sym_typeset] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(1102), + [anon_sym_readonly] = ACTIONS(1102), + [anon_sym_local] = ACTIONS(1102), + [anon_sym_unset] = ACTIONS(1102), + [anon_sym_unsetenv] = ACTIONS(1102), + [anon_sym_LT] = ACTIONS(1102), + [anon_sym_GT] = ACTIONS(1102), + [anon_sym_GT_GT] = ACTIONS(1100), + [anon_sym_AMP_GT] = ACTIONS(1102), + [anon_sym_AMP_GT_GT] = ACTIONS(1100), + [anon_sym_LT_AMP] = ACTIONS(1100), + [anon_sym_GT_AMP] = ACTIONS(1100), + [sym__special_characters] = ACTIONS(8603), + [anon_sym_DQUOTE] = ACTIONS(8605), + [anon_sym_DOLLAR] = ACTIONS(8607), + [sym_raw_string] = ACTIONS(8605), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8605), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8605), + [anon_sym_BQUOTE] = ACTIONS(8605), + [anon_sym_LT_LPAREN] = ACTIONS(8605), + [anon_sym_GT_LPAREN] = ACTIONS(8605), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(8525), + [sym_word] = ACTIONS(8603), }, [4110] = { - [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(8531), - [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(8533), - [anon_sym_DQUOTE] = ACTIONS(8535), - [anon_sym_DOLLAR] = ACTIONS(8537), - [sym_raw_string] = ACTIONS(8535), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(8535), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(8535), - [anon_sym_BQUOTE] = ACTIONS(8535), - [anon_sym_LT_LPAREN] = ACTIONS(8535), - [anon_sym_GT_LPAREN] = ACTIONS(8535), + [sym_file_descriptor] = ACTIONS(1100), + [sym_variable_name] = ACTIONS(1100), + [anon_sym_for] = ACTIONS(1102), + [anon_sym_while] = ACTIONS(1102), + [anon_sym_if] = ACTIONS(1102), + [anon_sym_case] = ACTIONS(1102), + [anon_sym_esac] = ACTIONS(8609), + [anon_sym_SEMI_SEMI] = ACTIONS(1100), + [anon_sym_function] = ACTIONS(1102), + [anon_sym_LPAREN] = ACTIONS(1100), + [anon_sym_LBRACK] = ACTIONS(1102), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1100), + [anon_sym_declare] = ACTIONS(1102), + [anon_sym_typeset] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(1102), + [anon_sym_readonly] = ACTIONS(1102), + [anon_sym_local] = ACTIONS(1102), + [anon_sym_unset] = ACTIONS(1102), + [anon_sym_unsetenv] = ACTIONS(1102), + [anon_sym_LT] = ACTIONS(1102), + [anon_sym_GT] = ACTIONS(1102), + [anon_sym_GT_GT] = ACTIONS(1100), + [anon_sym_AMP_GT] = ACTIONS(1102), + [anon_sym_AMP_GT_GT] = ACTIONS(1100), + [anon_sym_LT_AMP] = ACTIONS(1100), + [anon_sym_GT_AMP] = ACTIONS(1100), + [sym__special_characters] = ACTIONS(8611), + [anon_sym_DQUOTE] = ACTIONS(8613), + [anon_sym_DOLLAR] = ACTIONS(8615), + [sym_raw_string] = ACTIONS(8613), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8613), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8613), + [anon_sym_BQUOTE] = ACTIONS(8613), + [anon_sym_LT_LPAREN] = ACTIONS(8613), + [anon_sym_GT_LPAREN] = ACTIONS(8613), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(8533), + [sym_word] = ACTIONS(8611), }, [4111] = { - [sym__concat] = ACTIONS(5961), - [anon_sym_PIPE] = ACTIONS(5961), - [anon_sym_RPAREN] = ACTIONS(5961), + [sym__concat] = ACTIONS(6025), + [anon_sym_PIPE] = ACTIONS(6025), + [anon_sym_RPAREN] = ACTIONS(6025), [sym_comment] = ACTIONS(56), }, [4112] = { - [sym__concat] = ACTIONS(5965), - [anon_sym_PIPE] = ACTIONS(5965), - [anon_sym_RPAREN] = ACTIONS(5965), + [sym__concat] = ACTIONS(6029), + [anon_sym_PIPE] = ACTIONS(6029), + [anon_sym_RPAREN] = ACTIONS(6029), [sym_comment] = ACTIONS(56), }, [4113] = { - [sym__concat] = ACTIONS(5969), - [anon_sym_PIPE] = ACTIONS(5969), - [anon_sym_RPAREN] = ACTIONS(5969), + [sym__concat] = ACTIONS(6033), + [anon_sym_PIPE] = ACTIONS(6033), + [anon_sym_RPAREN] = ACTIONS(6033), [sym_comment] = ACTIONS(56), }, [4114] = { - [sym__concat] = ACTIONS(5973), - [anon_sym_PIPE] = ACTIONS(5973), - [anon_sym_RPAREN] = ACTIONS(5973), + [sym__concat] = ACTIONS(6037), + [anon_sym_PIPE] = ACTIONS(6037), + [anon_sym_RPAREN] = ACTIONS(6037), [sym_comment] = ACTIONS(56), }, [4115] = { @@ -100947,30 +101341,30 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8539), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8617), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4116] = { - [sym__concat] = ACTIONS(5979), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_RPAREN] = ACTIONS(5979), + [sym__concat] = ACTIONS(6043), + [anon_sym_PIPE] = ACTIONS(6043), + [anon_sym_RPAREN] = ACTIONS(6043), [sym_comment] = ACTIONS(56), }, [4117] = { @@ -100982,30 +101376,30 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8541), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8619), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4118] = { - [sym__concat] = ACTIONS(5985), - [anon_sym_PIPE] = ACTIONS(5985), - [anon_sym_RPAREN] = ACTIONS(5985), + [sym__concat] = ACTIONS(6049), + [anon_sym_PIPE] = ACTIONS(6049), + [anon_sym_RPAREN] = ACTIONS(6049), [sym_comment] = ACTIONS(56), }, [4119] = { @@ -101017,129 +101411,129 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8543), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8621), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4120] = { - [sym__concat] = ACTIONS(5991), - [anon_sym_PIPE] = ACTIONS(5991), - [anon_sym_RPAREN] = ACTIONS(5991), + [sym__concat] = ACTIONS(6055), + [anon_sym_PIPE] = ACTIONS(6055), + [anon_sym_RPAREN] = ACTIONS(6055), [sym_comment] = ACTIONS(56), }, [4121] = { - [sym__concat] = ACTIONS(5995), - [anon_sym_PIPE] = ACTIONS(5995), - [anon_sym_RPAREN] = ACTIONS(5995), + [sym__concat] = ACTIONS(6059), + [anon_sym_PIPE] = ACTIONS(6059), + [anon_sym_RPAREN] = ACTIONS(6059), [sym_comment] = ACTIONS(56), }, [4122] = { - [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_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(7434), - [anon_sym_DQUOTE] = ACTIONS(7436), - [anon_sym_DOLLAR] = ACTIONS(7438), - [sym_raw_string] = ACTIONS(7436), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7436), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7436), - [anon_sym_BQUOTE] = ACTIONS(7436), - [anon_sym_LT_LPAREN] = ACTIONS(7436), - [anon_sym_GT_LPAREN] = ACTIONS(7436), + [sym_file_descriptor] = ACTIONS(1100), + [sym_variable_name] = ACTIONS(1100), + [anon_sym_for] = ACTIONS(1102), + [anon_sym_while] = ACTIONS(1102), + [anon_sym_if] = ACTIONS(1102), + [anon_sym_case] = ACTIONS(1102), + [anon_sym_SEMI_SEMI] = ACTIONS(1100), + [anon_sym_function] = ACTIONS(1102), + [anon_sym_LPAREN] = ACTIONS(1100), + [anon_sym_LBRACK] = ACTIONS(1102), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1100), + [anon_sym_declare] = ACTIONS(1102), + [anon_sym_typeset] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(1102), + [anon_sym_readonly] = ACTIONS(1102), + [anon_sym_local] = ACTIONS(1102), + [anon_sym_unset] = ACTIONS(1102), + [anon_sym_unsetenv] = ACTIONS(1102), + [anon_sym_LT] = ACTIONS(1102), + [anon_sym_GT] = ACTIONS(1102), + [anon_sym_GT_GT] = ACTIONS(1100), + [anon_sym_AMP_GT] = ACTIONS(1102), + [anon_sym_AMP_GT_GT] = ACTIONS(1100), + [anon_sym_LT_AMP] = ACTIONS(1100), + [anon_sym_GT_AMP] = ACTIONS(1100), + [sym__special_characters] = ACTIONS(7508), + [anon_sym_DQUOTE] = ACTIONS(7510), + [anon_sym_DOLLAR] = ACTIONS(7512), + [sym_raw_string] = ACTIONS(7510), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7510), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7510), + [anon_sym_BQUOTE] = ACTIONS(7510), + [anon_sym_LT_LPAREN] = ACTIONS(7510), + [anon_sym_GT_LPAREN] = ACTIONS(7510), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7434), + [sym_word] = ACTIONS(7508), }, [4123] = { - [sym__special_characters] = ACTIONS(7438), - [anon_sym_DQUOTE] = ACTIONS(7436), - [anon_sym_DOLLAR] = ACTIONS(7438), - [sym_raw_string] = ACTIONS(7436), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7436), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7436), - [anon_sym_BQUOTE] = ACTIONS(7436), - [anon_sym_LT_LPAREN] = ACTIONS(7436), - [anon_sym_GT_LPAREN] = ACTIONS(7436), + [sym__special_characters] = ACTIONS(7512), + [anon_sym_DQUOTE] = ACTIONS(7510), + [anon_sym_DOLLAR] = ACTIONS(7512), + [sym_raw_string] = ACTIONS(7510), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7510), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7510), + [anon_sym_BQUOTE] = ACTIONS(7510), + [anon_sym_LT_LPAREN] = ACTIONS(7510), + [anon_sym_GT_LPAREN] = ACTIONS(7510), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7438), + [sym_word] = ACTIONS(7512), }, [4124] = { - [anon_sym_PIPE] = ACTIONS(344), - [anon_sym_SEMI_SEMI] = ACTIONS(8545), - [anon_sym_PIPE_AMP] = ACTIONS(344), - [anon_sym_AMP_AMP] = ACTIONS(348), - [anon_sym_PIPE_PIPE] = ACTIONS(348), + [anon_sym_PIPE] = ACTIONS(346), + [anon_sym_SEMI_SEMI] = ACTIONS(8623), + [anon_sym_PIPE_AMP] = ACTIONS(346), + [anon_sym_AMP_AMP] = ACTIONS(350), + [anon_sym_PIPE_PIPE] = ACTIONS(350), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(346), - [anon_sym_LF] = ACTIONS(346), - [anon_sym_AMP] = ACTIONS(346), + [anon_sym_SEMI] = ACTIONS(348), + [anon_sym_LF] = ACTIONS(348), + [anon_sym_AMP] = ACTIONS(348), }, [4125] = { - [sym_file_descriptor] = ACTIONS(378), - [sym_variable_name] = ACTIONS(378), - [anon_sym_PIPE] = ACTIONS(344), - [anon_sym_SEMI_SEMI] = ACTIONS(8545), - [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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(346), + [anon_sym_SEMI_SEMI] = ACTIONS(8623), + [anon_sym_PIPE_AMP] = ACTIONS(346), + [anon_sym_AMP_AMP] = ACTIONS(350), + [anon_sym_PIPE_PIPE] = ACTIONS(350), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(382), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(382), + [anon_sym_LT_AMP] = ACTIONS(382), + [anon_sym_GT_AMP] = ACTIONS(382), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(382), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(382), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(382), + [anon_sym_BQUOTE] = ACTIONS(382), + [anon_sym_LT_LPAREN] = ACTIONS(382), + [anon_sym_GT_LPAREN] = ACTIONS(382), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(380), - [anon_sym_SEMI] = ACTIONS(346), - [anon_sym_LF] = ACTIONS(346), - [anon_sym_AMP] = ACTIONS(346), + [sym_word] = ACTIONS(382), + [anon_sym_SEMI] = ACTIONS(348), + [anon_sym_LF] = ACTIONS(348), + [anon_sym_AMP] = ACTIONS(348), }, [4126] = { [sym__terminated_statement] = STATE(25), @@ -101168,42 +101562,42 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_process_substitution] = STATE(18), [aux_sym_program_repeat1] = STATE(4126), [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_file_descriptor] = ACTIONS(1150), + [sym_variable_name] = ACTIONS(1153), + [anon_sym_for] = ACTIONS(1158), + [anon_sym_while] = ACTIONS(1161), + [anon_sym_if] = ACTIONS(1164), + [anon_sym_case] = ACTIONS(1167), + [anon_sym_SEMI_SEMI] = ACTIONS(1156), + [anon_sym_function] = ACTIONS(1170), + [anon_sym_LPAREN] = ACTIONS(1173), + [anon_sym_LBRACK] = ACTIONS(1176), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1179), + [anon_sym_declare] = ACTIONS(1182), + [anon_sym_typeset] = ACTIONS(1182), + [anon_sym_export] = ACTIONS(1182), + [anon_sym_readonly] = ACTIONS(1182), + [anon_sym_local] = ACTIONS(1182), + [anon_sym_unset] = ACTIONS(1185), + [anon_sym_unsetenv] = ACTIONS(1185), + [anon_sym_LT] = ACTIONS(1188), + [anon_sym_GT] = ACTIONS(1188), + [anon_sym_GT_GT] = ACTIONS(1191), + [anon_sym_AMP_GT] = ACTIONS(1188), + [anon_sym_AMP_GT_GT] = ACTIONS(1191), + [anon_sym_LT_AMP] = ACTIONS(1191), + [anon_sym_GT_AMP] = ACTIONS(1191), + [sym__special_characters] = ACTIONS(1194), + [anon_sym_DQUOTE] = ACTIONS(1197), + [anon_sym_DOLLAR] = ACTIONS(1200), + [sym_raw_string] = ACTIONS(1203), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1206), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1209), + [anon_sym_BQUOTE] = ACTIONS(1212), + [anon_sym_LT_LPAREN] = ACTIONS(1215), + [anon_sym_GT_LPAREN] = ACTIONS(1215), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1198), + [sym_word] = ACTIONS(1218), }, [4127] = { [sym__terminated_statement] = STATE(25), @@ -101238,7 +101632,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(18), [anon_sym_if] = ACTIONS(20), [anon_sym_case] = ACTIONS(22), - [anon_sym_SEMI_SEMI] = ACTIONS(8547), + [anon_sym_SEMI_SEMI] = ACTIONS(8625), [anon_sym_function] = ACTIONS(24), [anon_sym_LPAREN] = ACTIONS(26), [anon_sym_LBRACK] = ACTIONS(28), @@ -101270,96 +101664,96 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(58), }, [4128] = { - [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_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(7482), - [anon_sym_DQUOTE] = ACTIONS(7484), - [anon_sym_DOLLAR] = ACTIONS(7486), - [sym_raw_string] = ACTIONS(7484), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7484), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7484), - [anon_sym_BQUOTE] = ACTIONS(7484), - [anon_sym_LT_LPAREN] = ACTIONS(7484), - [anon_sym_GT_LPAREN] = ACTIONS(7484), + [sym_file_descriptor] = ACTIONS(1100), + [sym_variable_name] = ACTIONS(1100), + [anon_sym_for] = ACTIONS(1102), + [anon_sym_while] = ACTIONS(1102), + [anon_sym_if] = ACTIONS(1102), + [anon_sym_case] = ACTIONS(1102), + [anon_sym_SEMI_SEMI] = ACTIONS(1100), + [anon_sym_function] = ACTIONS(1102), + [anon_sym_LPAREN] = ACTIONS(1100), + [anon_sym_LBRACK] = ACTIONS(1102), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1100), + [anon_sym_declare] = ACTIONS(1102), + [anon_sym_typeset] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(1102), + [anon_sym_readonly] = ACTIONS(1102), + [anon_sym_local] = ACTIONS(1102), + [anon_sym_unset] = ACTIONS(1102), + [anon_sym_unsetenv] = ACTIONS(1102), + [anon_sym_LT] = ACTIONS(1102), + [anon_sym_GT] = ACTIONS(1102), + [anon_sym_GT_GT] = ACTIONS(1100), + [anon_sym_AMP_GT] = ACTIONS(1102), + [anon_sym_AMP_GT_GT] = ACTIONS(1100), + [anon_sym_LT_AMP] = ACTIONS(1100), + [anon_sym_GT_AMP] = ACTIONS(1100), + [sym__special_characters] = ACTIONS(7556), + [anon_sym_DQUOTE] = ACTIONS(7558), + [anon_sym_DOLLAR] = ACTIONS(7560), + [sym_raw_string] = ACTIONS(7558), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7558), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7558), + [anon_sym_BQUOTE] = ACTIONS(7558), + [anon_sym_LT_LPAREN] = ACTIONS(7558), + [anon_sym_GT_LPAREN] = ACTIONS(7558), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7482), + [sym_word] = ACTIONS(7556), }, [4129] = { - [sym__special_characters] = ACTIONS(7486), - [anon_sym_DQUOTE] = ACTIONS(7484), - [anon_sym_DOLLAR] = ACTIONS(7486), - [sym_raw_string] = ACTIONS(7484), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7484), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7484), - [anon_sym_BQUOTE] = ACTIONS(7484), - [anon_sym_LT_LPAREN] = ACTIONS(7484), - [anon_sym_GT_LPAREN] = ACTIONS(7484), + [sym__special_characters] = ACTIONS(7560), + [anon_sym_DQUOTE] = ACTIONS(7558), + [anon_sym_DOLLAR] = ACTIONS(7560), + [sym_raw_string] = ACTIONS(7558), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7558), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7558), + [anon_sym_BQUOTE] = ACTIONS(7558), + [anon_sym_LT_LPAREN] = ACTIONS(7558), + [anon_sym_GT_LPAREN] = ACTIONS(7558), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7486), + [sym_word] = ACTIONS(7560), }, [4130] = { - [anon_sym_PIPE] = ACTIONS(344), - [anon_sym_SEMI_SEMI] = ACTIONS(8549), - [anon_sym_PIPE_AMP] = ACTIONS(344), - [anon_sym_AMP_AMP] = ACTIONS(348), - [anon_sym_PIPE_PIPE] = ACTIONS(348), + [anon_sym_PIPE] = ACTIONS(346), + [anon_sym_SEMI_SEMI] = ACTIONS(8627), + [anon_sym_PIPE_AMP] = ACTIONS(346), + [anon_sym_AMP_AMP] = ACTIONS(350), + [anon_sym_PIPE_PIPE] = ACTIONS(350), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(346), - [anon_sym_LF] = ACTIONS(346), - [anon_sym_AMP] = ACTIONS(346), + [anon_sym_SEMI] = ACTIONS(348), + [anon_sym_LF] = ACTIONS(348), + [anon_sym_AMP] = ACTIONS(348), }, [4131] = { - [sym_file_descriptor] = ACTIONS(378), - [sym_variable_name] = ACTIONS(378), - [anon_sym_PIPE] = ACTIONS(344), - [anon_sym_SEMI_SEMI] = ACTIONS(8549), - [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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(346), + [anon_sym_SEMI_SEMI] = ACTIONS(8627), + [anon_sym_PIPE_AMP] = ACTIONS(346), + [anon_sym_AMP_AMP] = ACTIONS(350), + [anon_sym_PIPE_PIPE] = ACTIONS(350), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(382), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(382), + [anon_sym_LT_AMP] = ACTIONS(382), + [anon_sym_GT_AMP] = ACTIONS(382), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(382), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(382), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(382), + [anon_sym_BQUOTE] = ACTIONS(382), + [anon_sym_LT_LPAREN] = ACTIONS(382), + [anon_sym_GT_LPAREN] = ACTIONS(382), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(380), - [anon_sym_SEMI] = ACTIONS(346), - [anon_sym_LF] = ACTIONS(346), - [anon_sym_AMP] = ACTIONS(346), + [sym_word] = ACTIONS(382), + [anon_sym_SEMI] = ACTIONS(348), + [anon_sym_LF] = ACTIONS(348), + [anon_sym_AMP] = ACTIONS(348), }, [4132] = { [sym__terminated_statement] = STATE(25), @@ -101394,7 +101788,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(18), [anon_sym_if] = ACTIONS(20), [anon_sym_case] = ACTIONS(22), - [anon_sym_SEMI_SEMI] = ACTIONS(8551), + [anon_sym_SEMI_SEMI] = ACTIONS(8629), [anon_sym_function] = ACTIONS(24), [anon_sym_LPAREN] = ACTIONS(26), [anon_sym_LBRACK] = ACTIONS(28), @@ -101426,52 +101820,52 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(58), }, [4133] = { - [sym__concat] = ACTIONS(5961), - [anon_sym_PIPE] = ACTIONS(5963), - [anon_sym_SEMI_SEMI] = ACTIONS(5963), - [anon_sym_PIPE_AMP] = ACTIONS(5963), - [anon_sym_AMP_AMP] = ACTIONS(5963), - [anon_sym_PIPE_PIPE] = ACTIONS(5963), + [sym__concat] = ACTIONS(6025), + [anon_sym_PIPE] = ACTIONS(6027), + [anon_sym_SEMI_SEMI] = ACTIONS(6027), + [anon_sym_PIPE_AMP] = ACTIONS(6027), + [anon_sym_AMP_AMP] = ACTIONS(6027), + [anon_sym_PIPE_PIPE] = ACTIONS(6027), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(5963), - [anon_sym_LF] = ACTIONS(5963), - [anon_sym_AMP] = ACTIONS(5963), + [anon_sym_SEMI] = ACTIONS(6027), + [anon_sym_LF] = ACTIONS(6027), + [anon_sym_AMP] = ACTIONS(6027), }, [4134] = { - [sym__concat] = ACTIONS(5965), - [anon_sym_PIPE] = ACTIONS(5967), - [anon_sym_SEMI_SEMI] = ACTIONS(5967), - [anon_sym_PIPE_AMP] = ACTIONS(5967), - [anon_sym_AMP_AMP] = ACTIONS(5967), - [anon_sym_PIPE_PIPE] = ACTIONS(5967), + [sym__concat] = ACTIONS(6029), + [anon_sym_PIPE] = ACTIONS(6031), + [anon_sym_SEMI_SEMI] = ACTIONS(6031), + [anon_sym_PIPE_AMP] = ACTIONS(6031), + [anon_sym_AMP_AMP] = ACTIONS(6031), + [anon_sym_PIPE_PIPE] = ACTIONS(6031), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(5967), - [anon_sym_LF] = ACTIONS(5967), - [anon_sym_AMP] = ACTIONS(5967), + [anon_sym_SEMI] = ACTIONS(6031), + [anon_sym_LF] = ACTIONS(6031), + [anon_sym_AMP] = ACTIONS(6031), }, [4135] = { - [sym__concat] = ACTIONS(5969), - [anon_sym_PIPE] = ACTIONS(5971), - [anon_sym_SEMI_SEMI] = ACTIONS(5971), - [anon_sym_PIPE_AMP] = ACTIONS(5971), - [anon_sym_AMP_AMP] = ACTIONS(5971), - [anon_sym_PIPE_PIPE] = ACTIONS(5971), + [sym__concat] = ACTIONS(6033), + [anon_sym_PIPE] = ACTIONS(6035), + [anon_sym_SEMI_SEMI] = ACTIONS(6035), + [anon_sym_PIPE_AMP] = ACTIONS(6035), + [anon_sym_AMP_AMP] = ACTIONS(6035), + [anon_sym_PIPE_PIPE] = ACTIONS(6035), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(5971), - [anon_sym_LF] = ACTIONS(5971), - [anon_sym_AMP] = ACTIONS(5971), + [anon_sym_SEMI] = ACTIONS(6035), + [anon_sym_LF] = ACTIONS(6035), + [anon_sym_AMP] = ACTIONS(6035), }, [4136] = { - [sym__concat] = ACTIONS(5973), - [anon_sym_PIPE] = ACTIONS(5975), - [anon_sym_SEMI_SEMI] = ACTIONS(5975), - [anon_sym_PIPE_AMP] = ACTIONS(5975), - [anon_sym_AMP_AMP] = ACTIONS(5975), - [anon_sym_PIPE_PIPE] = ACTIONS(5975), + [sym__concat] = ACTIONS(6037), + [anon_sym_PIPE] = ACTIONS(6039), + [anon_sym_SEMI_SEMI] = ACTIONS(6039), + [anon_sym_PIPE_AMP] = ACTIONS(6039), + [anon_sym_AMP_AMP] = ACTIONS(6039), + [anon_sym_PIPE_PIPE] = ACTIONS(6039), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(5975), - [anon_sym_LF] = ACTIONS(5975), - [anon_sym_AMP] = ACTIONS(5975), + [anon_sym_SEMI] = ACTIONS(6039), + [anon_sym_LF] = ACTIONS(6039), + [anon_sym_AMP] = ACTIONS(6039), }, [4137] = { [sym_concatenation] = STATE(451), @@ -101482,37 +101876,37 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8553), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8631), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4138] = { - [sym__concat] = ACTIONS(5979), - [anon_sym_PIPE] = ACTIONS(5981), - [anon_sym_SEMI_SEMI] = ACTIONS(5981), - [anon_sym_PIPE_AMP] = ACTIONS(5981), - [anon_sym_AMP_AMP] = ACTIONS(5981), - [anon_sym_PIPE_PIPE] = ACTIONS(5981), + [sym__concat] = ACTIONS(6043), + [anon_sym_PIPE] = ACTIONS(6045), + [anon_sym_SEMI_SEMI] = ACTIONS(6045), + [anon_sym_PIPE_AMP] = ACTIONS(6045), + [anon_sym_AMP_AMP] = ACTIONS(6045), + [anon_sym_PIPE_PIPE] = ACTIONS(6045), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(5981), - [anon_sym_LF] = ACTIONS(5981), - [anon_sym_AMP] = ACTIONS(5981), + [anon_sym_SEMI] = ACTIONS(6045), + [anon_sym_LF] = ACTIONS(6045), + [anon_sym_AMP] = ACTIONS(6045), }, [4139] = { [sym_concatenation] = STATE(451), @@ -101523,37 +101917,37 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8555), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8633), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4140] = { - [sym__concat] = ACTIONS(5985), - [anon_sym_PIPE] = ACTIONS(5987), - [anon_sym_SEMI_SEMI] = ACTIONS(5987), - [anon_sym_PIPE_AMP] = ACTIONS(5987), - [anon_sym_AMP_AMP] = ACTIONS(5987), - [anon_sym_PIPE_PIPE] = ACTIONS(5987), + [sym__concat] = ACTIONS(6049), + [anon_sym_PIPE] = ACTIONS(6051), + [anon_sym_SEMI_SEMI] = ACTIONS(6051), + [anon_sym_PIPE_AMP] = ACTIONS(6051), + [anon_sym_AMP_AMP] = ACTIONS(6051), + [anon_sym_PIPE_PIPE] = ACTIONS(6051), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(5987), - [anon_sym_LF] = ACTIONS(5987), - [anon_sym_AMP] = ACTIONS(5987), + [anon_sym_SEMI] = ACTIONS(6051), + [anon_sym_LF] = ACTIONS(6051), + [anon_sym_AMP] = ACTIONS(6051), }, [4141] = { [sym_concatenation] = STATE(451), @@ -101564,184 +101958,184 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8557), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8635), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4142] = { - [sym__concat] = ACTIONS(5991), - [anon_sym_PIPE] = ACTIONS(5993), - [anon_sym_SEMI_SEMI] = ACTIONS(5993), - [anon_sym_PIPE_AMP] = ACTIONS(5993), - [anon_sym_AMP_AMP] = ACTIONS(5993), - [anon_sym_PIPE_PIPE] = ACTIONS(5993), + [sym__concat] = ACTIONS(6055), + [anon_sym_PIPE] = ACTIONS(6057), + [anon_sym_SEMI_SEMI] = ACTIONS(6057), + [anon_sym_PIPE_AMP] = ACTIONS(6057), + [anon_sym_AMP_AMP] = ACTIONS(6057), + [anon_sym_PIPE_PIPE] = ACTIONS(6057), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(5993), - [anon_sym_LF] = ACTIONS(5993), - [anon_sym_AMP] = ACTIONS(5993), + [anon_sym_SEMI] = ACTIONS(6057), + [anon_sym_LF] = ACTIONS(6057), + [anon_sym_AMP] = ACTIONS(6057), }, [4143] = { - [sym__concat] = ACTIONS(5995), - [anon_sym_PIPE] = ACTIONS(5997), - [anon_sym_SEMI_SEMI] = ACTIONS(5997), - [anon_sym_PIPE_AMP] = ACTIONS(5997), - [anon_sym_AMP_AMP] = ACTIONS(5997), - [anon_sym_PIPE_PIPE] = ACTIONS(5997), + [sym__concat] = ACTIONS(6059), + [anon_sym_PIPE] = ACTIONS(6061), + [anon_sym_SEMI_SEMI] = ACTIONS(6061), + [anon_sym_PIPE_AMP] = ACTIONS(6061), + [anon_sym_AMP_AMP] = ACTIONS(6061), + [anon_sym_PIPE_PIPE] = ACTIONS(6061), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(5997), - [anon_sym_LF] = ACTIONS(5997), - [anon_sym_AMP] = ACTIONS(5997), + [anon_sym_SEMI] = ACTIONS(6061), + [anon_sym_LF] = ACTIONS(6061), + [anon_sym_AMP] = ACTIONS(6061), }, [4144] = { - [sym_file_descriptor] = ACTIONS(6948), - [sym__concat] = ACTIONS(6948), - [sym_variable_name] = ACTIONS(6948), - [anon_sym_PIPE] = ACTIONS(6950), - [anon_sym_RPAREN] = ACTIONS(6950), - [anon_sym_SEMI_SEMI] = ACTIONS(6950), - [anon_sym_PIPE_AMP] = ACTIONS(6950), - [anon_sym_AMP_AMP] = ACTIONS(6950), - [anon_sym_PIPE_PIPE] = ACTIONS(6950), - [anon_sym_LT] = ACTIONS(6950), - [anon_sym_GT] = ACTIONS(6950), - [anon_sym_GT_GT] = ACTIONS(6950), - [anon_sym_AMP_GT] = ACTIONS(6950), - [anon_sym_AMP_GT_GT] = ACTIONS(6950), - [anon_sym_LT_AMP] = ACTIONS(6950), - [anon_sym_GT_AMP] = ACTIONS(6950), - [sym__special_characters] = ACTIONS(6950), - [anon_sym_DQUOTE] = ACTIONS(6950), - [anon_sym_DOLLAR] = ACTIONS(6950), - [sym_raw_string] = ACTIONS(6950), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6950), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6950), - [anon_sym_BQUOTE] = ACTIONS(6950), - [anon_sym_LT_LPAREN] = ACTIONS(6950), - [anon_sym_GT_LPAREN] = ACTIONS(6950), + [sym_file_descriptor] = ACTIONS(7018), + [sym__concat] = ACTIONS(7018), + [sym_variable_name] = ACTIONS(7018), + [anon_sym_PIPE] = ACTIONS(7020), + [anon_sym_RPAREN] = ACTIONS(7020), + [anon_sym_SEMI_SEMI] = ACTIONS(7020), + [anon_sym_PIPE_AMP] = ACTIONS(7020), + [anon_sym_AMP_AMP] = ACTIONS(7020), + [anon_sym_PIPE_PIPE] = ACTIONS(7020), + [anon_sym_LT] = ACTIONS(7020), + [anon_sym_GT] = ACTIONS(7020), + [anon_sym_GT_GT] = ACTIONS(7020), + [anon_sym_AMP_GT] = ACTIONS(7020), + [anon_sym_AMP_GT_GT] = ACTIONS(7020), + [anon_sym_LT_AMP] = ACTIONS(7020), + [anon_sym_GT_AMP] = ACTIONS(7020), + [sym__special_characters] = ACTIONS(7020), + [anon_sym_DQUOTE] = ACTIONS(7020), + [anon_sym_DOLLAR] = ACTIONS(7020), + [sym_raw_string] = ACTIONS(7020), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7020), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7020), + [anon_sym_BQUOTE] = ACTIONS(7020), + [anon_sym_LT_LPAREN] = ACTIONS(7020), + [anon_sym_GT_LPAREN] = ACTIONS(7020), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6950), - [anon_sym_SEMI] = ACTIONS(6950), - [anon_sym_LF] = ACTIONS(6950), - [anon_sym_AMP] = ACTIONS(6950), + [sym_word] = ACTIONS(7020), + [anon_sym_SEMI] = ACTIONS(7020), + [anon_sym_LF] = ACTIONS(7020), + [anon_sym_AMP] = ACTIONS(7020), }, [4145] = { - [sym_file_descriptor] = ACTIONS(6952), - [sym__concat] = ACTIONS(6952), - [sym_variable_name] = ACTIONS(6952), - [anon_sym_PIPE] = ACTIONS(6954), - [anon_sym_RPAREN] = ACTIONS(6954), - [anon_sym_SEMI_SEMI] = ACTIONS(6954), - [anon_sym_PIPE_AMP] = ACTIONS(6954), - [anon_sym_AMP_AMP] = ACTIONS(6954), - [anon_sym_PIPE_PIPE] = ACTIONS(6954), - [anon_sym_LT] = ACTIONS(6954), - [anon_sym_GT] = ACTIONS(6954), - [anon_sym_GT_GT] = ACTIONS(6954), - [anon_sym_AMP_GT] = ACTIONS(6954), - [anon_sym_AMP_GT_GT] = ACTIONS(6954), - [anon_sym_LT_AMP] = ACTIONS(6954), - [anon_sym_GT_AMP] = ACTIONS(6954), - [sym__special_characters] = ACTIONS(6954), - [anon_sym_DQUOTE] = ACTIONS(6954), - [anon_sym_DOLLAR] = ACTIONS(6954), - [sym_raw_string] = ACTIONS(6954), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6954), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6954), - [anon_sym_BQUOTE] = ACTIONS(6954), - [anon_sym_LT_LPAREN] = ACTIONS(6954), - [anon_sym_GT_LPAREN] = ACTIONS(6954), + [sym_file_descriptor] = ACTIONS(7022), + [sym__concat] = ACTIONS(7022), + [sym_variable_name] = ACTIONS(7022), + [anon_sym_PIPE] = ACTIONS(7024), + [anon_sym_RPAREN] = ACTIONS(7024), + [anon_sym_SEMI_SEMI] = ACTIONS(7024), + [anon_sym_PIPE_AMP] = ACTIONS(7024), + [anon_sym_AMP_AMP] = ACTIONS(7024), + [anon_sym_PIPE_PIPE] = ACTIONS(7024), + [anon_sym_LT] = ACTIONS(7024), + [anon_sym_GT] = ACTIONS(7024), + [anon_sym_GT_GT] = ACTIONS(7024), + [anon_sym_AMP_GT] = ACTIONS(7024), + [anon_sym_AMP_GT_GT] = ACTIONS(7024), + [anon_sym_LT_AMP] = ACTIONS(7024), + [anon_sym_GT_AMP] = ACTIONS(7024), + [sym__special_characters] = ACTIONS(7024), + [anon_sym_DQUOTE] = ACTIONS(7024), + [anon_sym_DOLLAR] = ACTIONS(7024), + [sym_raw_string] = ACTIONS(7024), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7024), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7024), + [anon_sym_BQUOTE] = ACTIONS(7024), + [anon_sym_LT_LPAREN] = ACTIONS(7024), + [anon_sym_GT_LPAREN] = ACTIONS(7024), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6954), - [anon_sym_SEMI] = ACTIONS(6954), - [anon_sym_LF] = ACTIONS(6954), - [anon_sym_AMP] = ACTIONS(6954), + [sym_word] = ACTIONS(7024), + [anon_sym_SEMI] = ACTIONS(7024), + [anon_sym_LF] = ACTIONS(7024), + [anon_sym_AMP] = ACTIONS(7024), }, [4146] = { - [sym_file_descriptor] = ACTIONS(6956), - [sym__concat] = ACTIONS(6956), - [sym_variable_name] = ACTIONS(6956), - [anon_sym_PIPE] = ACTIONS(6958), - [anon_sym_RPAREN] = ACTIONS(6958), - [anon_sym_SEMI_SEMI] = ACTIONS(6958), - [anon_sym_PIPE_AMP] = ACTIONS(6958), - [anon_sym_AMP_AMP] = ACTIONS(6958), - [anon_sym_PIPE_PIPE] = ACTIONS(6958), - [anon_sym_LT] = ACTIONS(6958), - [anon_sym_GT] = ACTIONS(6958), - [anon_sym_GT_GT] = ACTIONS(6958), - [anon_sym_AMP_GT] = ACTIONS(6958), - [anon_sym_AMP_GT_GT] = ACTIONS(6958), - [anon_sym_LT_AMP] = ACTIONS(6958), - [anon_sym_GT_AMP] = ACTIONS(6958), - [sym__special_characters] = ACTIONS(6958), - [anon_sym_DQUOTE] = ACTIONS(6958), - [anon_sym_DOLLAR] = ACTIONS(6958), - [sym_raw_string] = ACTIONS(6958), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6958), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6958), - [anon_sym_BQUOTE] = ACTIONS(6958), - [anon_sym_LT_LPAREN] = ACTIONS(6958), - [anon_sym_GT_LPAREN] = ACTIONS(6958), + [sym_file_descriptor] = ACTIONS(7026), + [sym__concat] = ACTIONS(7026), + [sym_variable_name] = ACTIONS(7026), + [anon_sym_PIPE] = ACTIONS(7028), + [anon_sym_RPAREN] = ACTIONS(7028), + [anon_sym_SEMI_SEMI] = ACTIONS(7028), + [anon_sym_PIPE_AMP] = ACTIONS(7028), + [anon_sym_AMP_AMP] = ACTIONS(7028), + [anon_sym_PIPE_PIPE] = ACTIONS(7028), + [anon_sym_LT] = ACTIONS(7028), + [anon_sym_GT] = ACTIONS(7028), + [anon_sym_GT_GT] = ACTIONS(7028), + [anon_sym_AMP_GT] = ACTIONS(7028), + [anon_sym_AMP_GT_GT] = ACTIONS(7028), + [anon_sym_LT_AMP] = ACTIONS(7028), + [anon_sym_GT_AMP] = ACTIONS(7028), + [sym__special_characters] = ACTIONS(7028), + [anon_sym_DQUOTE] = ACTIONS(7028), + [anon_sym_DOLLAR] = ACTIONS(7028), + [sym_raw_string] = ACTIONS(7028), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7028), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7028), + [anon_sym_BQUOTE] = ACTIONS(7028), + [anon_sym_LT_LPAREN] = ACTIONS(7028), + [anon_sym_GT_LPAREN] = ACTIONS(7028), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6958), - [anon_sym_SEMI] = ACTIONS(6958), - [anon_sym_LF] = ACTIONS(6958), - [anon_sym_AMP] = ACTIONS(6958), + [sym_word] = ACTIONS(7028), + [anon_sym_SEMI] = ACTIONS(7028), + [anon_sym_LF] = ACTIONS(7028), + [anon_sym_AMP] = ACTIONS(7028), }, [4147] = { - [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__concat] = ACTIONS(4790), + [anon_sym_PIPE] = ACTIONS(4792), + [anon_sym_RPAREN] = ACTIONS(4792), + [anon_sym_SEMI_SEMI] = ACTIONS(4792), + [anon_sym_PIPE_AMP] = ACTIONS(4792), + [anon_sym_AMP_AMP] = ACTIONS(4792), + [anon_sym_PIPE_PIPE] = ACTIONS(4792), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4730), - [anon_sym_LF] = ACTIONS(4730), - [anon_sym_AMP] = ACTIONS(4730), + [anon_sym_SEMI] = ACTIONS(4792), + [anon_sym_LF] = ACTIONS(4792), + [anon_sym_AMP] = ACTIONS(4792), }, [4148] = { - [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__concat] = ACTIONS(4796), + [anon_sym_PIPE] = ACTIONS(4798), + [anon_sym_RPAREN] = ACTIONS(4798), + [anon_sym_SEMI_SEMI] = ACTIONS(4798), + [anon_sym_PIPE_AMP] = ACTIONS(4798), + [anon_sym_AMP_AMP] = ACTIONS(4798), + [anon_sym_PIPE_PIPE] = ACTIONS(4798), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4736), - [anon_sym_LF] = ACTIONS(4736), - [anon_sym_AMP] = ACTIONS(4736), + [anon_sym_SEMI] = ACTIONS(4798), + [anon_sym_LF] = ACTIONS(4798), + [anon_sym_AMP] = ACTIONS(4798), }, [4149] = { - [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__concat] = ACTIONS(4859), + [anon_sym_PIPE] = ACTIONS(4861), + [anon_sym_RPAREN] = ACTIONS(4861), + [anon_sym_SEMI_SEMI] = ACTIONS(4861), + [anon_sym_PIPE_AMP] = ACTIONS(4861), + [anon_sym_AMP_AMP] = ACTIONS(4861), + [anon_sym_PIPE_PIPE] = ACTIONS(4861), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4799), - [anon_sym_LF] = ACTIONS(4799), - [anon_sym_AMP] = ACTIONS(4799), + [anon_sym_SEMI] = ACTIONS(4861), + [anon_sym_LF] = ACTIONS(4861), + [anon_sym_AMP] = ACTIONS(4861), }, [4150] = { [sym_concatenation] = STATE(451), @@ -101752,40 +102146,40 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8559), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8637), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4151] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(8561), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(8639), [sym_comment] = ACTIONS(56), }, [4152] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(8563), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(8641), [sym_comment] = ACTIONS(56), }, [4153] = { - [anon_sym_RBRACE] = ACTIONS(8563), + [anon_sym_RBRACE] = ACTIONS(8641), [sym_comment] = ACTIONS(56), }, [4154] = { @@ -101797,38 +102191,38 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(4337), - [anon_sym_RBRACE] = ACTIONS(8565), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8643), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4155] = { - [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__concat] = ACTIONS(4871), + [anon_sym_PIPE] = ACTIONS(4873), + [anon_sym_RPAREN] = ACTIONS(4873), + [anon_sym_SEMI_SEMI] = ACTIONS(4873), + [anon_sym_PIPE_AMP] = ACTIONS(4873), + [anon_sym_AMP_AMP] = ACTIONS(4873), + [anon_sym_PIPE_PIPE] = ACTIONS(4873), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4811), - [anon_sym_LF] = ACTIONS(4811), - [anon_sym_AMP] = ACTIONS(4811), + [anon_sym_SEMI] = ACTIONS(4873), + [anon_sym_LF] = ACTIONS(4873), + [anon_sym_AMP] = ACTIONS(4873), }, [4156] = { [sym_concatenation] = STATE(451), @@ -101839,38 +102233,38 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(4339), - [anon_sym_RBRACE] = ACTIONS(8567), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8645), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4157] = { - [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__concat] = ACTIONS(4877), + [anon_sym_PIPE] = ACTIONS(4879), + [anon_sym_RPAREN] = ACTIONS(4879), + [anon_sym_SEMI_SEMI] = ACTIONS(4879), + [anon_sym_PIPE_AMP] = ACTIONS(4879), + [anon_sym_AMP_AMP] = ACTIONS(4879), + [anon_sym_PIPE_PIPE] = ACTIONS(4879), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4817), - [anon_sym_LF] = ACTIONS(4817), - [anon_sym_AMP] = ACTIONS(4817), + [anon_sym_SEMI] = ACTIONS(4879), + [anon_sym_LF] = ACTIONS(4879), + [anon_sym_AMP] = ACTIONS(4879), }, [4158] = { [sym_concatenation] = STATE(451), @@ -101881,38 +102275,38 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(4341), - [anon_sym_RBRACE] = ACTIONS(8569), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8647), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4159] = { - [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__concat] = ACTIONS(4883), + [anon_sym_PIPE] = ACTIONS(4885), + [anon_sym_RPAREN] = ACTIONS(4885), + [anon_sym_SEMI_SEMI] = ACTIONS(4885), + [anon_sym_PIPE_AMP] = ACTIONS(4885), + [anon_sym_AMP_AMP] = ACTIONS(4885), + [anon_sym_PIPE_PIPE] = ACTIONS(4885), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4823), - [anon_sym_LF] = ACTIONS(4823), - [anon_sym_AMP] = ACTIONS(4823), + [anon_sym_SEMI] = ACTIONS(4885), + [anon_sym_LF] = ACTIONS(4885), + [anon_sym_AMP] = ACTIONS(4885), }, [4160] = { [sym_concatenation] = STATE(451), @@ -101923,38 +102317,38 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8571), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8649), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4161] = { - [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__concat] = ACTIONS(4889), + [anon_sym_PIPE] = ACTIONS(4891), + [anon_sym_RPAREN] = ACTIONS(4891), + [anon_sym_SEMI_SEMI] = ACTIONS(4891), + [anon_sym_PIPE_AMP] = ACTIONS(4891), + [anon_sym_AMP_AMP] = ACTIONS(4891), + [anon_sym_PIPE_PIPE] = ACTIONS(4891), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4829), - [anon_sym_LF] = ACTIONS(4829), - [anon_sym_AMP] = ACTIONS(4829), + [anon_sym_SEMI] = ACTIONS(4891), + [anon_sym_LF] = ACTIONS(4891), + [anon_sym_AMP] = ACTIONS(4891), }, [4162] = { [sym_concatenation] = STATE(451), @@ -101965,222 +102359,222 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8573), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8651), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4163] = { - [sym_file_descriptor] = ACTIONS(6948), - [sym__concat] = ACTIONS(6948), - [anon_sym_PIPE] = ACTIONS(6950), - [anon_sym_RPAREN] = ACTIONS(6950), - [anon_sym_SEMI_SEMI] = ACTIONS(6950), - [anon_sym_PIPE_AMP] = ACTIONS(6950), - [anon_sym_AMP_AMP] = ACTIONS(6950), - [anon_sym_PIPE_PIPE] = ACTIONS(6950), - [anon_sym_LT] = ACTIONS(6950), - [anon_sym_GT] = ACTIONS(6950), - [anon_sym_GT_GT] = ACTIONS(6950), - [anon_sym_AMP_GT] = ACTIONS(6950), - [anon_sym_AMP_GT_GT] = ACTIONS(6950), - [anon_sym_LT_AMP] = ACTIONS(6950), - [anon_sym_GT_AMP] = ACTIONS(6950), - [anon_sym_LT_LT] = ACTIONS(6950), - [anon_sym_LT_LT_DASH] = ACTIONS(6950), - [anon_sym_LT_LT_LT] = ACTIONS(6950), + [sym_file_descriptor] = ACTIONS(7018), + [sym__concat] = ACTIONS(7018), + [anon_sym_PIPE] = ACTIONS(7020), + [anon_sym_RPAREN] = ACTIONS(7020), + [anon_sym_SEMI_SEMI] = ACTIONS(7020), + [anon_sym_PIPE_AMP] = ACTIONS(7020), + [anon_sym_AMP_AMP] = ACTIONS(7020), + [anon_sym_PIPE_PIPE] = ACTIONS(7020), + [anon_sym_LT] = ACTIONS(7020), + [anon_sym_GT] = ACTIONS(7020), + [anon_sym_GT_GT] = ACTIONS(7020), + [anon_sym_AMP_GT] = ACTIONS(7020), + [anon_sym_AMP_GT_GT] = ACTIONS(7020), + [anon_sym_LT_AMP] = ACTIONS(7020), + [anon_sym_GT_AMP] = ACTIONS(7020), + [anon_sym_LT_LT] = ACTIONS(7020), + [anon_sym_LT_LT_DASH] = ACTIONS(7020), + [anon_sym_LT_LT_LT] = ACTIONS(7020), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6950), - [anon_sym_LF] = ACTIONS(6950), - [anon_sym_AMP] = ACTIONS(6950), + [anon_sym_SEMI] = ACTIONS(7020), + [anon_sym_LF] = ACTIONS(7020), + [anon_sym_AMP] = ACTIONS(7020), }, [4164] = { - [sym_file_descriptor] = ACTIONS(6952), - [sym__concat] = ACTIONS(6952), - [anon_sym_PIPE] = ACTIONS(6954), - [anon_sym_RPAREN] = ACTIONS(6954), - [anon_sym_SEMI_SEMI] = ACTIONS(6954), - [anon_sym_PIPE_AMP] = ACTIONS(6954), - [anon_sym_AMP_AMP] = ACTIONS(6954), - [anon_sym_PIPE_PIPE] = ACTIONS(6954), - [anon_sym_LT] = ACTIONS(6954), - [anon_sym_GT] = ACTIONS(6954), - [anon_sym_GT_GT] = ACTIONS(6954), - [anon_sym_AMP_GT] = ACTIONS(6954), - [anon_sym_AMP_GT_GT] = ACTIONS(6954), - [anon_sym_LT_AMP] = ACTIONS(6954), - [anon_sym_GT_AMP] = ACTIONS(6954), - [anon_sym_LT_LT] = ACTIONS(6954), - [anon_sym_LT_LT_DASH] = ACTIONS(6954), - [anon_sym_LT_LT_LT] = ACTIONS(6954), + [sym_file_descriptor] = ACTIONS(7022), + [sym__concat] = ACTIONS(7022), + [anon_sym_PIPE] = ACTIONS(7024), + [anon_sym_RPAREN] = ACTIONS(7024), + [anon_sym_SEMI_SEMI] = ACTIONS(7024), + [anon_sym_PIPE_AMP] = ACTIONS(7024), + [anon_sym_AMP_AMP] = ACTIONS(7024), + [anon_sym_PIPE_PIPE] = ACTIONS(7024), + [anon_sym_LT] = ACTIONS(7024), + [anon_sym_GT] = ACTIONS(7024), + [anon_sym_GT_GT] = ACTIONS(7024), + [anon_sym_AMP_GT] = ACTIONS(7024), + [anon_sym_AMP_GT_GT] = ACTIONS(7024), + [anon_sym_LT_AMP] = ACTIONS(7024), + [anon_sym_GT_AMP] = ACTIONS(7024), + [anon_sym_LT_LT] = ACTIONS(7024), + [anon_sym_LT_LT_DASH] = ACTIONS(7024), + [anon_sym_LT_LT_LT] = ACTIONS(7024), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6954), - [anon_sym_LF] = ACTIONS(6954), - [anon_sym_AMP] = ACTIONS(6954), + [anon_sym_SEMI] = ACTIONS(7024), + [anon_sym_LF] = ACTIONS(7024), + [anon_sym_AMP] = ACTIONS(7024), }, [4165] = { - [sym_file_descriptor] = ACTIONS(6956), - [sym__concat] = ACTIONS(6956), - [anon_sym_PIPE] = ACTIONS(6958), - [anon_sym_RPAREN] = ACTIONS(6958), - [anon_sym_SEMI_SEMI] = ACTIONS(6958), - [anon_sym_PIPE_AMP] = ACTIONS(6958), - [anon_sym_AMP_AMP] = ACTIONS(6958), - [anon_sym_PIPE_PIPE] = ACTIONS(6958), - [anon_sym_LT] = ACTIONS(6958), - [anon_sym_GT] = ACTIONS(6958), - [anon_sym_GT_GT] = ACTIONS(6958), - [anon_sym_AMP_GT] = ACTIONS(6958), - [anon_sym_AMP_GT_GT] = ACTIONS(6958), - [anon_sym_LT_AMP] = ACTIONS(6958), - [anon_sym_GT_AMP] = ACTIONS(6958), - [anon_sym_LT_LT] = ACTIONS(6958), - [anon_sym_LT_LT_DASH] = ACTIONS(6958), - [anon_sym_LT_LT_LT] = ACTIONS(6958), + [sym_file_descriptor] = ACTIONS(7026), + [sym__concat] = ACTIONS(7026), + [anon_sym_PIPE] = ACTIONS(7028), + [anon_sym_RPAREN] = ACTIONS(7028), + [anon_sym_SEMI_SEMI] = ACTIONS(7028), + [anon_sym_PIPE_AMP] = ACTIONS(7028), + [anon_sym_AMP_AMP] = ACTIONS(7028), + [anon_sym_PIPE_PIPE] = ACTIONS(7028), + [anon_sym_LT] = ACTIONS(7028), + [anon_sym_GT] = ACTIONS(7028), + [anon_sym_GT_GT] = ACTIONS(7028), + [anon_sym_AMP_GT] = ACTIONS(7028), + [anon_sym_AMP_GT_GT] = ACTIONS(7028), + [anon_sym_LT_AMP] = ACTIONS(7028), + [anon_sym_GT_AMP] = ACTIONS(7028), + [anon_sym_LT_LT] = ACTIONS(7028), + [anon_sym_LT_LT_DASH] = ACTIONS(7028), + [anon_sym_LT_LT_LT] = ACTIONS(7028), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6958), - [anon_sym_LF] = ACTIONS(6958), - [anon_sym_AMP] = ACTIONS(6958), + [anon_sym_SEMI] = ACTIONS(7028), + [anon_sym_LF] = ACTIONS(7028), + [anon_sym_AMP] = ACTIONS(7028), }, [4166] = { - [sym__concat] = ACTIONS(6948), - [anon_sym_RBRACE] = ACTIONS(6948), + [sym__concat] = ACTIONS(7018), + [anon_sym_RBRACE] = ACTIONS(7018), [sym_comment] = ACTIONS(56), }, [4167] = { - [sym__concat] = ACTIONS(6952), - [anon_sym_RBRACE] = ACTIONS(6952), + [sym__concat] = ACTIONS(7022), + [anon_sym_RBRACE] = ACTIONS(7022), [sym_comment] = ACTIONS(56), }, [4168] = { - [sym__concat] = ACTIONS(6956), - [anon_sym_RBRACE] = ACTIONS(6956), + [sym__concat] = ACTIONS(7026), + [anon_sym_RBRACE] = ACTIONS(7026), [sym_comment] = ACTIONS(56), }, [4169] = { - [sym_file_descriptor] = ACTIONS(6948), - [sym__concat] = ACTIONS(6948), - [sym_variable_name] = ACTIONS(6948), - [anon_sym_PIPE] = ACTIONS(7635), - [anon_sym_RPAREN] = ACTIONS(6948), - [anon_sym_PIPE_AMP] = ACTIONS(6948), - [anon_sym_AMP_AMP] = ACTIONS(6948), - [anon_sym_PIPE_PIPE] = ACTIONS(6948), - [anon_sym_LT] = ACTIONS(7635), - [anon_sym_GT] = ACTIONS(7635), - [anon_sym_GT_GT] = ACTIONS(6948), - [anon_sym_AMP_GT] = ACTIONS(7635), - [anon_sym_AMP_GT_GT] = ACTIONS(6948), - [anon_sym_LT_AMP] = ACTIONS(6948), - [anon_sym_GT_AMP] = ACTIONS(6948), - [sym__special_characters] = ACTIONS(7635), - [anon_sym_DQUOTE] = ACTIONS(6948), - [anon_sym_DOLLAR] = ACTIONS(7635), - [sym_raw_string] = ACTIONS(6948), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6948), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6948), - [anon_sym_BQUOTE] = ACTIONS(6948), - [anon_sym_LT_LPAREN] = ACTIONS(6948), - [anon_sym_GT_LPAREN] = ACTIONS(6948), + [sym_file_descriptor] = ACTIONS(7018), + [sym__concat] = ACTIONS(7018), + [sym_variable_name] = ACTIONS(7018), + [anon_sym_PIPE] = ACTIONS(7709), + [anon_sym_RPAREN] = ACTIONS(7018), + [anon_sym_PIPE_AMP] = ACTIONS(7018), + [anon_sym_AMP_AMP] = ACTIONS(7018), + [anon_sym_PIPE_PIPE] = ACTIONS(7018), + [anon_sym_LT] = ACTIONS(7709), + [anon_sym_GT] = ACTIONS(7709), + [anon_sym_GT_GT] = ACTIONS(7018), + [anon_sym_AMP_GT] = ACTIONS(7709), + [anon_sym_AMP_GT_GT] = ACTIONS(7018), + [anon_sym_LT_AMP] = ACTIONS(7018), + [anon_sym_GT_AMP] = ACTIONS(7018), + [sym__special_characters] = ACTIONS(7709), + [anon_sym_DQUOTE] = ACTIONS(7018), + [anon_sym_DOLLAR] = ACTIONS(7709), + [sym_raw_string] = ACTIONS(7018), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7018), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7018), + [anon_sym_BQUOTE] = ACTIONS(7018), + [anon_sym_LT_LPAREN] = ACTIONS(7018), + [anon_sym_GT_LPAREN] = ACTIONS(7018), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7635), + [sym_word] = ACTIONS(7709), }, [4170] = { - [sym_file_descriptor] = ACTIONS(6952), - [sym__concat] = ACTIONS(6952), - [sym_variable_name] = ACTIONS(6952), - [anon_sym_PIPE] = ACTIONS(7637), - [anon_sym_RPAREN] = ACTIONS(6952), - [anon_sym_PIPE_AMP] = ACTIONS(6952), - [anon_sym_AMP_AMP] = ACTIONS(6952), - [anon_sym_PIPE_PIPE] = ACTIONS(6952), - [anon_sym_LT] = ACTIONS(7637), - [anon_sym_GT] = ACTIONS(7637), - [anon_sym_GT_GT] = ACTIONS(6952), - [anon_sym_AMP_GT] = ACTIONS(7637), - [anon_sym_AMP_GT_GT] = ACTIONS(6952), - [anon_sym_LT_AMP] = ACTIONS(6952), - [anon_sym_GT_AMP] = ACTIONS(6952), - [sym__special_characters] = ACTIONS(7637), - [anon_sym_DQUOTE] = ACTIONS(6952), - [anon_sym_DOLLAR] = ACTIONS(7637), - [sym_raw_string] = ACTIONS(6952), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6952), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6952), - [anon_sym_BQUOTE] = ACTIONS(6952), - [anon_sym_LT_LPAREN] = ACTIONS(6952), - [anon_sym_GT_LPAREN] = ACTIONS(6952), + [sym_file_descriptor] = ACTIONS(7022), + [sym__concat] = ACTIONS(7022), + [sym_variable_name] = ACTIONS(7022), + [anon_sym_PIPE] = ACTIONS(7711), + [anon_sym_RPAREN] = ACTIONS(7022), + [anon_sym_PIPE_AMP] = ACTIONS(7022), + [anon_sym_AMP_AMP] = ACTIONS(7022), + [anon_sym_PIPE_PIPE] = ACTIONS(7022), + [anon_sym_LT] = ACTIONS(7711), + [anon_sym_GT] = ACTIONS(7711), + [anon_sym_GT_GT] = ACTIONS(7022), + [anon_sym_AMP_GT] = ACTIONS(7711), + [anon_sym_AMP_GT_GT] = ACTIONS(7022), + [anon_sym_LT_AMP] = ACTIONS(7022), + [anon_sym_GT_AMP] = ACTIONS(7022), + [sym__special_characters] = ACTIONS(7711), + [anon_sym_DQUOTE] = ACTIONS(7022), + [anon_sym_DOLLAR] = ACTIONS(7711), + [sym_raw_string] = ACTIONS(7022), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7022), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7022), + [anon_sym_BQUOTE] = ACTIONS(7022), + [anon_sym_LT_LPAREN] = ACTIONS(7022), + [anon_sym_GT_LPAREN] = ACTIONS(7022), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7637), + [sym_word] = ACTIONS(7711), }, [4171] = { - [sym_file_descriptor] = ACTIONS(6956), - [sym__concat] = ACTIONS(6956), - [sym_variable_name] = ACTIONS(6956), - [anon_sym_PIPE] = ACTIONS(7639), - [anon_sym_RPAREN] = ACTIONS(6956), - [anon_sym_PIPE_AMP] = ACTIONS(6956), - [anon_sym_AMP_AMP] = ACTIONS(6956), - [anon_sym_PIPE_PIPE] = ACTIONS(6956), - [anon_sym_LT] = ACTIONS(7639), - [anon_sym_GT] = ACTIONS(7639), - [anon_sym_GT_GT] = ACTIONS(6956), - [anon_sym_AMP_GT] = ACTIONS(7639), - [anon_sym_AMP_GT_GT] = ACTIONS(6956), - [anon_sym_LT_AMP] = ACTIONS(6956), - [anon_sym_GT_AMP] = ACTIONS(6956), - [sym__special_characters] = ACTIONS(7639), - [anon_sym_DQUOTE] = ACTIONS(6956), - [anon_sym_DOLLAR] = ACTIONS(7639), - [sym_raw_string] = ACTIONS(6956), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6956), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6956), - [anon_sym_BQUOTE] = ACTIONS(6956), - [anon_sym_LT_LPAREN] = ACTIONS(6956), - [anon_sym_GT_LPAREN] = ACTIONS(6956), + [sym_file_descriptor] = ACTIONS(7026), + [sym__concat] = ACTIONS(7026), + [sym_variable_name] = ACTIONS(7026), + [anon_sym_PIPE] = ACTIONS(7713), + [anon_sym_RPAREN] = ACTIONS(7026), + [anon_sym_PIPE_AMP] = ACTIONS(7026), + [anon_sym_AMP_AMP] = ACTIONS(7026), + [anon_sym_PIPE_PIPE] = ACTIONS(7026), + [anon_sym_LT] = ACTIONS(7713), + [anon_sym_GT] = ACTIONS(7713), + [anon_sym_GT_GT] = ACTIONS(7026), + [anon_sym_AMP_GT] = ACTIONS(7713), + [anon_sym_AMP_GT_GT] = ACTIONS(7026), + [anon_sym_LT_AMP] = ACTIONS(7026), + [anon_sym_GT_AMP] = ACTIONS(7026), + [sym__special_characters] = ACTIONS(7713), + [anon_sym_DQUOTE] = ACTIONS(7026), + [anon_sym_DOLLAR] = ACTIONS(7713), + [sym_raw_string] = ACTIONS(7026), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7026), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7026), + [anon_sym_BQUOTE] = ACTIONS(7026), + [anon_sym_LT_LPAREN] = ACTIONS(7026), + [anon_sym_GT_LPAREN] = ACTIONS(7026), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7639), + [sym_word] = ACTIONS(7713), }, [4172] = { - [sym__concat] = ACTIONS(4728), - [anon_sym_PIPE] = ACTIONS(5780), - [anon_sym_RPAREN] = ACTIONS(4728), - [anon_sym_PIPE_AMP] = ACTIONS(4728), - [anon_sym_AMP_AMP] = ACTIONS(4728), - [anon_sym_PIPE_PIPE] = ACTIONS(4728), + [sym__concat] = ACTIONS(4790), + [anon_sym_PIPE] = ACTIONS(5844), + [anon_sym_RPAREN] = ACTIONS(4790), + [anon_sym_PIPE_AMP] = ACTIONS(4790), + [anon_sym_AMP_AMP] = ACTIONS(4790), + [anon_sym_PIPE_PIPE] = ACTIONS(4790), [sym_comment] = ACTIONS(56), }, [4173] = { - [sym__concat] = ACTIONS(4734), - [anon_sym_PIPE] = ACTIONS(5782), - [anon_sym_RPAREN] = ACTIONS(4734), - [anon_sym_PIPE_AMP] = ACTIONS(4734), - [anon_sym_AMP_AMP] = ACTIONS(4734), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), + [sym__concat] = ACTIONS(4796), + [anon_sym_PIPE] = ACTIONS(5846), + [anon_sym_RPAREN] = ACTIONS(4796), + [anon_sym_PIPE_AMP] = ACTIONS(4796), + [anon_sym_AMP_AMP] = ACTIONS(4796), + [anon_sym_PIPE_PIPE] = ACTIONS(4796), [sym_comment] = ACTIONS(56), }, [4174] = { - [sym__concat] = ACTIONS(4797), - [anon_sym_PIPE] = ACTIONS(5784), - [anon_sym_RPAREN] = ACTIONS(4797), - [anon_sym_PIPE_AMP] = ACTIONS(4797), - [anon_sym_AMP_AMP] = ACTIONS(4797), - [anon_sym_PIPE_PIPE] = ACTIONS(4797), + [sym__concat] = ACTIONS(4859), + [anon_sym_PIPE] = ACTIONS(5848), + [anon_sym_RPAREN] = ACTIONS(4859), + [anon_sym_PIPE_AMP] = ACTIONS(4859), + [anon_sym_AMP_AMP] = ACTIONS(4859), + [anon_sym_PIPE_PIPE] = ACTIONS(4859), [sym_comment] = ACTIONS(56), }, [4175] = { @@ -102192,40 +102586,40 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8575), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8653), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4176] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(8577), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(8655), [sym_comment] = ACTIONS(56), }, [4177] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(8579), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(8657), [sym_comment] = ACTIONS(56), }, [4178] = { - [anon_sym_RBRACE] = ACTIONS(8579), + [anon_sym_RBRACE] = ACTIONS(8657), [sym_comment] = ACTIONS(56), }, [4179] = { @@ -102237,33 +102631,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(4348), - [anon_sym_RBRACE] = ACTIONS(8581), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8659), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4180] = { - [sym__concat] = ACTIONS(4809), - [anon_sym_PIPE] = ACTIONS(5794), - [anon_sym_RPAREN] = ACTIONS(4809), - [anon_sym_PIPE_AMP] = ACTIONS(4809), - [anon_sym_AMP_AMP] = ACTIONS(4809), - [anon_sym_PIPE_PIPE] = ACTIONS(4809), + [sym__concat] = ACTIONS(4871), + [anon_sym_PIPE] = ACTIONS(5858), + [anon_sym_RPAREN] = ACTIONS(4871), + [anon_sym_PIPE_AMP] = ACTIONS(4871), + [anon_sym_AMP_AMP] = ACTIONS(4871), + [anon_sym_PIPE_PIPE] = ACTIONS(4871), [sym_comment] = ACTIONS(56), }, [4181] = { @@ -102275,33 +102669,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(4350), - [anon_sym_RBRACE] = ACTIONS(8583), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8661), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4182] = { - [sym__concat] = ACTIONS(4815), - [anon_sym_PIPE] = ACTIONS(5798), - [anon_sym_RPAREN] = ACTIONS(4815), - [anon_sym_PIPE_AMP] = ACTIONS(4815), - [anon_sym_AMP_AMP] = ACTIONS(4815), - [anon_sym_PIPE_PIPE] = ACTIONS(4815), + [sym__concat] = ACTIONS(4877), + [anon_sym_PIPE] = ACTIONS(5862), + [anon_sym_RPAREN] = ACTIONS(4877), + [anon_sym_PIPE_AMP] = ACTIONS(4877), + [anon_sym_AMP_AMP] = ACTIONS(4877), + [anon_sym_PIPE_PIPE] = ACTIONS(4877), [sym_comment] = ACTIONS(56), }, [4183] = { @@ -102313,33 +102707,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(4352), - [anon_sym_RBRACE] = ACTIONS(8585), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8663), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4184] = { - [sym__concat] = ACTIONS(4821), - [anon_sym_PIPE] = ACTIONS(5802), - [anon_sym_RPAREN] = ACTIONS(4821), - [anon_sym_PIPE_AMP] = ACTIONS(4821), - [anon_sym_AMP_AMP] = ACTIONS(4821), - [anon_sym_PIPE_PIPE] = ACTIONS(4821), + [sym__concat] = ACTIONS(4883), + [anon_sym_PIPE] = ACTIONS(5866), + [anon_sym_RPAREN] = ACTIONS(4883), + [anon_sym_PIPE_AMP] = ACTIONS(4883), + [anon_sym_AMP_AMP] = ACTIONS(4883), + [anon_sym_PIPE_PIPE] = ACTIONS(4883), [sym_comment] = ACTIONS(56), }, [4185] = { @@ -102351,33 +102745,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8587), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8665), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4186] = { - [sym__concat] = ACTIONS(4827), - [anon_sym_PIPE] = ACTIONS(5806), - [anon_sym_RPAREN] = ACTIONS(4827), - [anon_sym_PIPE_AMP] = ACTIONS(4827), - [anon_sym_AMP_AMP] = ACTIONS(4827), - [anon_sym_PIPE_PIPE] = ACTIONS(4827), + [sym__concat] = ACTIONS(4889), + [anon_sym_PIPE] = ACTIONS(5870), + [anon_sym_RPAREN] = ACTIONS(4889), + [anon_sym_PIPE_AMP] = ACTIONS(4889), + [anon_sym_AMP_AMP] = ACTIONS(4889), + [anon_sym_PIPE_PIPE] = ACTIONS(4889), [sym_comment] = ACTIONS(56), }, [4187] = { @@ -102389,192 +102783,192 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8589), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8667), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4188] = { - [sym_file_descriptor] = ACTIONS(6948), - [sym__concat] = ACTIONS(6948), - [anon_sym_PIPE] = ACTIONS(7635), - [anon_sym_RPAREN] = ACTIONS(6948), - [anon_sym_PIPE_AMP] = ACTIONS(6948), - [anon_sym_AMP_AMP] = ACTIONS(6948), - [anon_sym_PIPE_PIPE] = ACTIONS(6948), - [anon_sym_LT] = ACTIONS(7635), - [anon_sym_GT] = ACTIONS(7635), - [anon_sym_GT_GT] = ACTIONS(6948), - [anon_sym_AMP_GT] = ACTIONS(7635), - [anon_sym_AMP_GT_GT] = ACTIONS(6948), - [anon_sym_LT_AMP] = ACTIONS(6948), - [anon_sym_GT_AMP] = ACTIONS(6948), - [anon_sym_LT_LT] = ACTIONS(7635), - [anon_sym_LT_LT_DASH] = ACTIONS(6948), - [anon_sym_LT_LT_LT] = ACTIONS(6948), + [sym_file_descriptor] = ACTIONS(7018), + [sym__concat] = ACTIONS(7018), + [anon_sym_PIPE] = ACTIONS(7709), + [anon_sym_RPAREN] = ACTIONS(7018), + [anon_sym_PIPE_AMP] = ACTIONS(7018), + [anon_sym_AMP_AMP] = ACTIONS(7018), + [anon_sym_PIPE_PIPE] = ACTIONS(7018), + [anon_sym_LT] = ACTIONS(7709), + [anon_sym_GT] = ACTIONS(7709), + [anon_sym_GT_GT] = ACTIONS(7018), + [anon_sym_AMP_GT] = ACTIONS(7709), + [anon_sym_AMP_GT_GT] = ACTIONS(7018), + [anon_sym_LT_AMP] = ACTIONS(7018), + [anon_sym_GT_AMP] = ACTIONS(7018), + [anon_sym_LT_LT] = ACTIONS(7709), + [anon_sym_LT_LT_DASH] = ACTIONS(7018), + [anon_sym_LT_LT_LT] = ACTIONS(7018), [sym_comment] = ACTIONS(56), }, [4189] = { - [sym_file_descriptor] = ACTIONS(6952), - [sym__concat] = ACTIONS(6952), - [anon_sym_PIPE] = ACTIONS(7637), - [anon_sym_RPAREN] = ACTIONS(6952), - [anon_sym_PIPE_AMP] = ACTIONS(6952), - [anon_sym_AMP_AMP] = ACTIONS(6952), - [anon_sym_PIPE_PIPE] = ACTIONS(6952), - [anon_sym_LT] = ACTIONS(7637), - [anon_sym_GT] = ACTIONS(7637), - [anon_sym_GT_GT] = ACTIONS(6952), - [anon_sym_AMP_GT] = ACTIONS(7637), - [anon_sym_AMP_GT_GT] = ACTIONS(6952), - [anon_sym_LT_AMP] = ACTIONS(6952), - [anon_sym_GT_AMP] = ACTIONS(6952), - [anon_sym_LT_LT] = ACTIONS(7637), - [anon_sym_LT_LT_DASH] = ACTIONS(6952), - [anon_sym_LT_LT_LT] = ACTIONS(6952), + [sym_file_descriptor] = ACTIONS(7022), + [sym__concat] = ACTIONS(7022), + [anon_sym_PIPE] = ACTIONS(7711), + [anon_sym_RPAREN] = ACTIONS(7022), + [anon_sym_PIPE_AMP] = ACTIONS(7022), + [anon_sym_AMP_AMP] = ACTIONS(7022), + [anon_sym_PIPE_PIPE] = ACTIONS(7022), + [anon_sym_LT] = ACTIONS(7711), + [anon_sym_GT] = ACTIONS(7711), + [anon_sym_GT_GT] = ACTIONS(7022), + [anon_sym_AMP_GT] = ACTIONS(7711), + [anon_sym_AMP_GT_GT] = ACTIONS(7022), + [anon_sym_LT_AMP] = ACTIONS(7022), + [anon_sym_GT_AMP] = ACTIONS(7022), + [anon_sym_LT_LT] = ACTIONS(7711), + [anon_sym_LT_LT_DASH] = ACTIONS(7022), + [anon_sym_LT_LT_LT] = ACTIONS(7022), [sym_comment] = ACTIONS(56), }, [4190] = { - [sym_file_descriptor] = ACTIONS(6956), - [sym__concat] = ACTIONS(6956), - [anon_sym_PIPE] = ACTIONS(7639), - [anon_sym_RPAREN] = ACTIONS(6956), - [anon_sym_PIPE_AMP] = ACTIONS(6956), - [anon_sym_AMP_AMP] = ACTIONS(6956), - [anon_sym_PIPE_PIPE] = ACTIONS(6956), - [anon_sym_LT] = ACTIONS(7639), - [anon_sym_GT] = ACTIONS(7639), - [anon_sym_GT_GT] = ACTIONS(6956), - [anon_sym_AMP_GT] = ACTIONS(7639), - [anon_sym_AMP_GT_GT] = ACTIONS(6956), - [anon_sym_LT_AMP] = ACTIONS(6956), - [anon_sym_GT_AMP] = ACTIONS(6956), - [anon_sym_LT_LT] = ACTIONS(7639), - [anon_sym_LT_LT_DASH] = ACTIONS(6956), - [anon_sym_LT_LT_LT] = ACTIONS(6956), + [sym_file_descriptor] = ACTIONS(7026), + [sym__concat] = ACTIONS(7026), + [anon_sym_PIPE] = ACTIONS(7713), + [anon_sym_RPAREN] = ACTIONS(7026), + [anon_sym_PIPE_AMP] = ACTIONS(7026), + [anon_sym_AMP_AMP] = ACTIONS(7026), + [anon_sym_PIPE_PIPE] = ACTIONS(7026), + [anon_sym_LT] = ACTIONS(7713), + [anon_sym_GT] = ACTIONS(7713), + [anon_sym_GT_GT] = ACTIONS(7026), + [anon_sym_AMP_GT] = ACTIONS(7713), + [anon_sym_AMP_GT_GT] = ACTIONS(7026), + [anon_sym_LT_AMP] = ACTIONS(7026), + [anon_sym_GT_AMP] = ACTIONS(7026), + [anon_sym_LT_LT] = ACTIONS(7713), + [anon_sym_LT_LT_DASH] = ACTIONS(7026), + [anon_sym_LT_LT_LT] = ACTIONS(7026), [sym_comment] = ACTIONS(56), }, [4191] = { - [sym_file_descriptor] = ACTIONS(6948), - [sym__concat] = ACTIONS(6948), - [sym_variable_name] = ACTIONS(6948), - [anon_sym_PIPE] = ACTIONS(7635), - [anon_sym_PIPE_AMP] = ACTIONS(6948), - [anon_sym_AMP_AMP] = ACTIONS(6948), - [anon_sym_PIPE_PIPE] = ACTIONS(6948), - [anon_sym_LT] = ACTIONS(7635), - [anon_sym_GT] = ACTIONS(7635), - [anon_sym_GT_GT] = ACTIONS(6948), - [anon_sym_AMP_GT] = ACTIONS(7635), - [anon_sym_AMP_GT_GT] = ACTIONS(6948), - [anon_sym_LT_AMP] = ACTIONS(6948), - [anon_sym_GT_AMP] = ACTIONS(6948), - [sym__special_characters] = ACTIONS(7635), - [anon_sym_DQUOTE] = ACTIONS(6948), - [anon_sym_DOLLAR] = ACTIONS(7635), - [sym_raw_string] = ACTIONS(6948), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6948), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6948), - [anon_sym_BQUOTE] = ACTIONS(6948), - [anon_sym_LT_LPAREN] = ACTIONS(6948), - [anon_sym_GT_LPAREN] = ACTIONS(6948), + [sym_file_descriptor] = ACTIONS(7018), + [sym__concat] = ACTIONS(7018), + [sym_variable_name] = ACTIONS(7018), + [anon_sym_PIPE] = ACTIONS(7709), + [anon_sym_PIPE_AMP] = ACTIONS(7018), + [anon_sym_AMP_AMP] = ACTIONS(7018), + [anon_sym_PIPE_PIPE] = ACTIONS(7018), + [anon_sym_LT] = ACTIONS(7709), + [anon_sym_GT] = ACTIONS(7709), + [anon_sym_GT_GT] = ACTIONS(7018), + [anon_sym_AMP_GT] = ACTIONS(7709), + [anon_sym_AMP_GT_GT] = ACTIONS(7018), + [anon_sym_LT_AMP] = ACTIONS(7018), + [anon_sym_GT_AMP] = ACTIONS(7018), + [sym__special_characters] = ACTIONS(7709), + [anon_sym_DQUOTE] = ACTIONS(7018), + [anon_sym_DOLLAR] = ACTIONS(7709), + [sym_raw_string] = ACTIONS(7018), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7018), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7018), + [anon_sym_BQUOTE] = ACTIONS(7018), + [anon_sym_LT_LPAREN] = ACTIONS(7018), + [anon_sym_GT_LPAREN] = ACTIONS(7018), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7635), + [sym_word] = ACTIONS(7709), }, [4192] = { - [sym_file_descriptor] = ACTIONS(6952), - [sym__concat] = ACTIONS(6952), - [sym_variable_name] = ACTIONS(6952), - [anon_sym_PIPE] = ACTIONS(7637), - [anon_sym_PIPE_AMP] = ACTIONS(6952), - [anon_sym_AMP_AMP] = ACTIONS(6952), - [anon_sym_PIPE_PIPE] = ACTIONS(6952), - [anon_sym_LT] = ACTIONS(7637), - [anon_sym_GT] = ACTIONS(7637), - [anon_sym_GT_GT] = ACTIONS(6952), - [anon_sym_AMP_GT] = ACTIONS(7637), - [anon_sym_AMP_GT_GT] = ACTIONS(6952), - [anon_sym_LT_AMP] = ACTIONS(6952), - [anon_sym_GT_AMP] = ACTIONS(6952), - [sym__special_characters] = ACTIONS(7637), - [anon_sym_DQUOTE] = ACTIONS(6952), - [anon_sym_DOLLAR] = ACTIONS(7637), - [sym_raw_string] = ACTIONS(6952), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6952), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6952), - [anon_sym_BQUOTE] = ACTIONS(6952), - [anon_sym_LT_LPAREN] = ACTIONS(6952), - [anon_sym_GT_LPAREN] = ACTIONS(6952), + [sym_file_descriptor] = ACTIONS(7022), + [sym__concat] = ACTIONS(7022), + [sym_variable_name] = ACTIONS(7022), + [anon_sym_PIPE] = ACTIONS(7711), + [anon_sym_PIPE_AMP] = ACTIONS(7022), + [anon_sym_AMP_AMP] = ACTIONS(7022), + [anon_sym_PIPE_PIPE] = ACTIONS(7022), + [anon_sym_LT] = ACTIONS(7711), + [anon_sym_GT] = ACTIONS(7711), + [anon_sym_GT_GT] = ACTIONS(7022), + [anon_sym_AMP_GT] = ACTIONS(7711), + [anon_sym_AMP_GT_GT] = ACTIONS(7022), + [anon_sym_LT_AMP] = ACTIONS(7022), + [anon_sym_GT_AMP] = ACTIONS(7022), + [sym__special_characters] = ACTIONS(7711), + [anon_sym_DQUOTE] = ACTIONS(7022), + [anon_sym_DOLLAR] = ACTIONS(7711), + [sym_raw_string] = ACTIONS(7022), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7022), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7022), + [anon_sym_BQUOTE] = ACTIONS(7022), + [anon_sym_LT_LPAREN] = ACTIONS(7022), + [anon_sym_GT_LPAREN] = ACTIONS(7022), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7637), + [sym_word] = ACTIONS(7711), }, [4193] = { - [sym_file_descriptor] = ACTIONS(6956), - [sym__concat] = ACTIONS(6956), - [sym_variable_name] = ACTIONS(6956), - [anon_sym_PIPE] = ACTIONS(7639), - [anon_sym_PIPE_AMP] = ACTIONS(6956), - [anon_sym_AMP_AMP] = ACTIONS(6956), - [anon_sym_PIPE_PIPE] = ACTIONS(6956), - [anon_sym_LT] = ACTIONS(7639), - [anon_sym_GT] = ACTIONS(7639), - [anon_sym_GT_GT] = ACTIONS(6956), - [anon_sym_AMP_GT] = ACTIONS(7639), - [anon_sym_AMP_GT_GT] = ACTIONS(6956), - [anon_sym_LT_AMP] = ACTIONS(6956), - [anon_sym_GT_AMP] = ACTIONS(6956), - [sym__special_characters] = ACTIONS(7639), - [anon_sym_DQUOTE] = ACTIONS(6956), - [anon_sym_DOLLAR] = ACTIONS(7639), - [sym_raw_string] = ACTIONS(6956), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6956), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6956), - [anon_sym_BQUOTE] = ACTIONS(6956), - [anon_sym_LT_LPAREN] = ACTIONS(6956), - [anon_sym_GT_LPAREN] = ACTIONS(6956), + [sym_file_descriptor] = ACTIONS(7026), + [sym__concat] = ACTIONS(7026), + [sym_variable_name] = ACTIONS(7026), + [anon_sym_PIPE] = ACTIONS(7713), + [anon_sym_PIPE_AMP] = ACTIONS(7026), + [anon_sym_AMP_AMP] = ACTIONS(7026), + [anon_sym_PIPE_PIPE] = ACTIONS(7026), + [anon_sym_LT] = ACTIONS(7713), + [anon_sym_GT] = ACTIONS(7713), + [anon_sym_GT_GT] = ACTIONS(7026), + [anon_sym_AMP_GT] = ACTIONS(7713), + [anon_sym_AMP_GT_GT] = ACTIONS(7026), + [anon_sym_LT_AMP] = ACTIONS(7026), + [anon_sym_GT_AMP] = ACTIONS(7026), + [sym__special_characters] = ACTIONS(7713), + [anon_sym_DQUOTE] = ACTIONS(7026), + [anon_sym_DOLLAR] = ACTIONS(7713), + [sym_raw_string] = ACTIONS(7026), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7026), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7026), + [anon_sym_BQUOTE] = ACTIONS(7026), + [anon_sym_LT_LPAREN] = ACTIONS(7026), + [anon_sym_GT_LPAREN] = ACTIONS(7026), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7639), + [sym_word] = ACTIONS(7713), }, [4194] = { - [sym__concat] = ACTIONS(4728), - [anon_sym_PIPE] = ACTIONS(5780), - [anon_sym_PIPE_AMP] = ACTIONS(4728), - [anon_sym_AMP_AMP] = ACTIONS(4728), - [anon_sym_PIPE_PIPE] = ACTIONS(4728), - [anon_sym_BQUOTE] = ACTIONS(4728), + [sym__concat] = ACTIONS(4790), + [anon_sym_PIPE] = ACTIONS(5844), + [anon_sym_PIPE_AMP] = ACTIONS(4790), + [anon_sym_AMP_AMP] = ACTIONS(4790), + [anon_sym_PIPE_PIPE] = ACTIONS(4790), + [anon_sym_BQUOTE] = ACTIONS(4790), [sym_comment] = ACTIONS(56), }, [4195] = { - [sym__concat] = ACTIONS(4734), - [anon_sym_PIPE] = ACTIONS(5782), - [anon_sym_PIPE_AMP] = ACTIONS(4734), - [anon_sym_AMP_AMP] = ACTIONS(4734), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [anon_sym_BQUOTE] = ACTIONS(4734), + [sym__concat] = ACTIONS(4796), + [anon_sym_PIPE] = ACTIONS(5846), + [anon_sym_PIPE_AMP] = ACTIONS(4796), + [anon_sym_AMP_AMP] = ACTIONS(4796), + [anon_sym_PIPE_PIPE] = ACTIONS(4796), + [anon_sym_BQUOTE] = ACTIONS(4796), [sym_comment] = ACTIONS(56), }, [4196] = { - [sym__concat] = ACTIONS(4797), - [anon_sym_PIPE] = ACTIONS(5784), - [anon_sym_PIPE_AMP] = ACTIONS(4797), - [anon_sym_AMP_AMP] = ACTIONS(4797), - [anon_sym_PIPE_PIPE] = ACTIONS(4797), - [anon_sym_BQUOTE] = ACTIONS(4797), + [sym__concat] = ACTIONS(4859), + [anon_sym_PIPE] = ACTIONS(5848), + [anon_sym_PIPE_AMP] = ACTIONS(4859), + [anon_sym_AMP_AMP] = ACTIONS(4859), + [anon_sym_PIPE_PIPE] = ACTIONS(4859), + [anon_sym_BQUOTE] = ACTIONS(4859), [sym_comment] = ACTIONS(56), }, [4197] = { @@ -102586,40 +102980,40 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8591), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8669), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4198] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(8593), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(8671), [sym_comment] = ACTIONS(56), }, [4199] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(8595), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(8673), [sym_comment] = ACTIONS(56), }, [4200] = { - [anon_sym_RBRACE] = ACTIONS(8595), + [anon_sym_RBRACE] = ACTIONS(8673), [sym_comment] = ACTIONS(56), }, [4201] = { @@ -102631,33 +103025,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(4359), - [anon_sym_RBRACE] = ACTIONS(8597), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8675), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4202] = { - [sym__concat] = ACTIONS(4809), - [anon_sym_PIPE] = ACTIONS(5794), - [anon_sym_PIPE_AMP] = ACTIONS(4809), - [anon_sym_AMP_AMP] = ACTIONS(4809), - [anon_sym_PIPE_PIPE] = ACTIONS(4809), - [anon_sym_BQUOTE] = ACTIONS(4809), + [sym__concat] = ACTIONS(4871), + [anon_sym_PIPE] = ACTIONS(5858), + [anon_sym_PIPE_AMP] = ACTIONS(4871), + [anon_sym_AMP_AMP] = ACTIONS(4871), + [anon_sym_PIPE_PIPE] = ACTIONS(4871), + [anon_sym_BQUOTE] = ACTIONS(4871), [sym_comment] = ACTIONS(56), }, [4203] = { @@ -102669,33 +103063,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(4361), - [anon_sym_RBRACE] = ACTIONS(8599), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8677), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4204] = { - [sym__concat] = ACTIONS(4815), - [anon_sym_PIPE] = ACTIONS(5798), - [anon_sym_PIPE_AMP] = ACTIONS(4815), - [anon_sym_AMP_AMP] = ACTIONS(4815), - [anon_sym_PIPE_PIPE] = ACTIONS(4815), - [anon_sym_BQUOTE] = ACTIONS(4815), + [sym__concat] = ACTIONS(4877), + [anon_sym_PIPE] = ACTIONS(5862), + [anon_sym_PIPE_AMP] = ACTIONS(4877), + [anon_sym_AMP_AMP] = ACTIONS(4877), + [anon_sym_PIPE_PIPE] = ACTIONS(4877), + [anon_sym_BQUOTE] = ACTIONS(4877), [sym_comment] = ACTIONS(56), }, [4205] = { @@ -102707,33 +103101,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(4363), - [anon_sym_RBRACE] = ACTIONS(8601), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8679), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4206] = { - [sym__concat] = ACTIONS(4821), - [anon_sym_PIPE] = ACTIONS(5802), - [anon_sym_PIPE_AMP] = ACTIONS(4821), - [anon_sym_AMP_AMP] = ACTIONS(4821), - [anon_sym_PIPE_PIPE] = ACTIONS(4821), - [anon_sym_BQUOTE] = ACTIONS(4821), + [sym__concat] = ACTIONS(4883), + [anon_sym_PIPE] = ACTIONS(5866), + [anon_sym_PIPE_AMP] = ACTIONS(4883), + [anon_sym_AMP_AMP] = ACTIONS(4883), + [anon_sym_PIPE_PIPE] = ACTIONS(4883), + [anon_sym_BQUOTE] = ACTIONS(4883), [sym_comment] = ACTIONS(56), }, [4207] = { @@ -102745,33 +103139,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8603), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8681), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4208] = { - [sym__concat] = ACTIONS(4827), - [anon_sym_PIPE] = ACTIONS(5806), - [anon_sym_PIPE_AMP] = ACTIONS(4827), - [anon_sym_AMP_AMP] = ACTIONS(4827), - [anon_sym_PIPE_PIPE] = ACTIONS(4827), - [anon_sym_BQUOTE] = ACTIONS(4827), + [sym__concat] = ACTIONS(4889), + [anon_sym_PIPE] = ACTIONS(5870), + [anon_sym_PIPE_AMP] = ACTIONS(4889), + [anon_sym_AMP_AMP] = ACTIONS(4889), + [anon_sym_PIPE_PIPE] = ACTIONS(4889), + [anon_sym_BQUOTE] = ACTIONS(4889), [sym_comment] = ACTIONS(56), }, [4209] = { @@ -102783,234 +103177,234 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8605), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8683), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4210] = { - [sym_file_descriptor] = ACTIONS(6948), - [sym__concat] = ACTIONS(6948), - [anon_sym_PIPE] = ACTIONS(7635), - [anon_sym_PIPE_AMP] = ACTIONS(6948), - [anon_sym_AMP_AMP] = ACTIONS(6948), - [anon_sym_PIPE_PIPE] = ACTIONS(6948), - [anon_sym_LT] = ACTIONS(7635), - [anon_sym_GT] = ACTIONS(7635), - [anon_sym_GT_GT] = ACTIONS(6948), - [anon_sym_AMP_GT] = ACTIONS(7635), - [anon_sym_AMP_GT_GT] = ACTIONS(6948), - [anon_sym_LT_AMP] = ACTIONS(6948), - [anon_sym_GT_AMP] = ACTIONS(6948), - [anon_sym_LT_LT] = ACTIONS(7635), - [anon_sym_LT_LT_DASH] = ACTIONS(6948), - [anon_sym_LT_LT_LT] = ACTIONS(6948), - [anon_sym_BQUOTE] = ACTIONS(6948), + [sym_file_descriptor] = ACTIONS(7018), + [sym__concat] = ACTIONS(7018), + [anon_sym_PIPE] = ACTIONS(7709), + [anon_sym_PIPE_AMP] = ACTIONS(7018), + [anon_sym_AMP_AMP] = ACTIONS(7018), + [anon_sym_PIPE_PIPE] = ACTIONS(7018), + [anon_sym_LT] = ACTIONS(7709), + [anon_sym_GT] = ACTIONS(7709), + [anon_sym_GT_GT] = ACTIONS(7018), + [anon_sym_AMP_GT] = ACTIONS(7709), + [anon_sym_AMP_GT_GT] = ACTIONS(7018), + [anon_sym_LT_AMP] = ACTIONS(7018), + [anon_sym_GT_AMP] = ACTIONS(7018), + [anon_sym_LT_LT] = ACTIONS(7709), + [anon_sym_LT_LT_DASH] = ACTIONS(7018), + [anon_sym_LT_LT_LT] = ACTIONS(7018), + [anon_sym_BQUOTE] = ACTIONS(7018), [sym_comment] = ACTIONS(56), }, [4211] = { - [sym_file_descriptor] = ACTIONS(6952), - [sym__concat] = ACTIONS(6952), - [anon_sym_PIPE] = ACTIONS(7637), - [anon_sym_PIPE_AMP] = ACTIONS(6952), - [anon_sym_AMP_AMP] = ACTIONS(6952), - [anon_sym_PIPE_PIPE] = ACTIONS(6952), - [anon_sym_LT] = ACTIONS(7637), - [anon_sym_GT] = ACTIONS(7637), - [anon_sym_GT_GT] = ACTIONS(6952), - [anon_sym_AMP_GT] = ACTIONS(7637), - [anon_sym_AMP_GT_GT] = ACTIONS(6952), - [anon_sym_LT_AMP] = ACTIONS(6952), - [anon_sym_GT_AMP] = ACTIONS(6952), - [anon_sym_LT_LT] = ACTIONS(7637), - [anon_sym_LT_LT_DASH] = ACTIONS(6952), - [anon_sym_LT_LT_LT] = ACTIONS(6952), - [anon_sym_BQUOTE] = ACTIONS(6952), + [sym_file_descriptor] = ACTIONS(7022), + [sym__concat] = ACTIONS(7022), + [anon_sym_PIPE] = ACTIONS(7711), + [anon_sym_PIPE_AMP] = ACTIONS(7022), + [anon_sym_AMP_AMP] = ACTIONS(7022), + [anon_sym_PIPE_PIPE] = ACTIONS(7022), + [anon_sym_LT] = ACTIONS(7711), + [anon_sym_GT] = ACTIONS(7711), + [anon_sym_GT_GT] = ACTIONS(7022), + [anon_sym_AMP_GT] = ACTIONS(7711), + [anon_sym_AMP_GT_GT] = ACTIONS(7022), + [anon_sym_LT_AMP] = ACTIONS(7022), + [anon_sym_GT_AMP] = ACTIONS(7022), + [anon_sym_LT_LT] = ACTIONS(7711), + [anon_sym_LT_LT_DASH] = ACTIONS(7022), + [anon_sym_LT_LT_LT] = ACTIONS(7022), + [anon_sym_BQUOTE] = ACTIONS(7022), [sym_comment] = ACTIONS(56), }, [4212] = { - [sym_file_descriptor] = ACTIONS(6956), - [sym__concat] = ACTIONS(6956), - [anon_sym_PIPE] = ACTIONS(7639), - [anon_sym_PIPE_AMP] = ACTIONS(6956), - [anon_sym_AMP_AMP] = ACTIONS(6956), - [anon_sym_PIPE_PIPE] = ACTIONS(6956), - [anon_sym_LT] = ACTIONS(7639), - [anon_sym_GT] = ACTIONS(7639), - [anon_sym_GT_GT] = ACTIONS(6956), - [anon_sym_AMP_GT] = ACTIONS(7639), - [anon_sym_AMP_GT_GT] = ACTIONS(6956), - [anon_sym_LT_AMP] = ACTIONS(6956), - [anon_sym_GT_AMP] = ACTIONS(6956), - [anon_sym_LT_LT] = ACTIONS(7639), - [anon_sym_LT_LT_DASH] = ACTIONS(6956), - [anon_sym_LT_LT_LT] = ACTIONS(6956), - [anon_sym_BQUOTE] = ACTIONS(6956), + [sym_file_descriptor] = ACTIONS(7026), + [sym__concat] = ACTIONS(7026), + [anon_sym_PIPE] = ACTIONS(7713), + [anon_sym_PIPE_AMP] = ACTIONS(7026), + [anon_sym_AMP_AMP] = ACTIONS(7026), + [anon_sym_PIPE_PIPE] = ACTIONS(7026), + [anon_sym_LT] = ACTIONS(7713), + [anon_sym_GT] = ACTIONS(7713), + [anon_sym_GT_GT] = ACTIONS(7026), + [anon_sym_AMP_GT] = ACTIONS(7713), + [anon_sym_AMP_GT_GT] = ACTIONS(7026), + [anon_sym_LT_AMP] = ACTIONS(7026), + [anon_sym_GT_AMP] = ACTIONS(7026), + [anon_sym_LT_LT] = ACTIONS(7713), + [anon_sym_LT_LT_DASH] = ACTIONS(7026), + [anon_sym_LT_LT_LT] = ACTIONS(7026), + [anon_sym_BQUOTE] = ACTIONS(7026), [sym_comment] = ACTIONS(56), }, [4213] = { - [sym__heredoc_middle] = ACTIONS(6948), - [sym__heredoc_end] = ACTIONS(6948), - [anon_sym_DOLLAR] = ACTIONS(7635), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6948), + [sym__heredoc_middle] = ACTIONS(7018), + [sym__heredoc_end] = ACTIONS(7018), + [anon_sym_DOLLAR] = ACTIONS(7709), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7018), [sym_comment] = ACTIONS(56), }, [4214] = { - [sym__heredoc_middle] = ACTIONS(6952), - [sym__heredoc_end] = ACTIONS(6952), - [anon_sym_DOLLAR] = ACTIONS(7637), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6952), + [sym__heredoc_middle] = ACTIONS(7022), + [sym__heredoc_end] = ACTIONS(7022), + [anon_sym_DOLLAR] = ACTIONS(7711), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7022), [sym_comment] = ACTIONS(56), }, [4215] = { - [sym__heredoc_middle] = ACTIONS(6956), - [sym__heredoc_end] = ACTIONS(6956), - [anon_sym_DOLLAR] = ACTIONS(7639), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6956), + [sym__heredoc_middle] = ACTIONS(7026), + [sym__heredoc_end] = ACTIONS(7026), + [anon_sym_DOLLAR] = ACTIONS(7713), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7026), [sym_comment] = ACTIONS(56), }, [4216] = { - [sym_file_descriptor] = ACTIONS(4111), - [sym_variable_name] = ACTIONS(4111), - [anon_sym_esac] = ACTIONS(4113), - [anon_sym_PIPE] = 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_file_descriptor] = ACTIONS(4169), + [sym_variable_name] = ACTIONS(4169), + [anon_sym_esac] = ACTIONS(4171), + [anon_sym_PIPE] = ACTIONS(4171), + [anon_sym_SEMI_SEMI] = ACTIONS(4171), + [anon_sym_PIPE_AMP] = ACTIONS(4171), + [anon_sym_AMP_AMP] = ACTIONS(4171), + [anon_sym_PIPE_PIPE] = ACTIONS(4171), + [anon_sym_LT] = ACTIONS(4171), + [anon_sym_GT] = ACTIONS(4171), + [anon_sym_GT_GT] = ACTIONS(4171), + [anon_sym_AMP_GT] = ACTIONS(4171), + [anon_sym_AMP_GT_GT] = ACTIONS(4171), + [anon_sym_LT_AMP] = ACTIONS(4171), + [anon_sym_GT_AMP] = ACTIONS(4171), + [sym__special_characters] = ACTIONS(4171), + [anon_sym_DQUOTE] = ACTIONS(4171), + [anon_sym_DOLLAR] = ACTIONS(4171), + [sym_raw_string] = ACTIONS(4171), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4171), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4171), + [anon_sym_BQUOTE] = ACTIONS(4171), + [anon_sym_LT_LPAREN] = ACTIONS(4171), + [anon_sym_GT_LPAREN] = ACTIONS(4171), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4113), - [anon_sym_SEMI] = ACTIONS(4113), - [anon_sym_LF] = ACTIONS(4113), - [anon_sym_AMP] = ACTIONS(4113), + [sym_word] = ACTIONS(4171), + [anon_sym_SEMI] = ACTIONS(4171), + [anon_sym_LF] = ACTIONS(4171), + [anon_sym_AMP] = ACTIONS(4171), }, [4217] = { - [sym_file_descriptor] = ACTIONS(1858), - [sym__concat] = ACTIONS(1858), - [sym_variable_name] = ACTIONS(1858), - [anon_sym_esac] = ACTIONS(1860), - [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_file_descriptor] = ACTIONS(1886), + [sym__concat] = ACTIONS(1886), + [sym_variable_name] = ACTIONS(1886), + [anon_sym_esac] = ACTIONS(1888), + [anon_sym_PIPE] = ACTIONS(1888), + [anon_sym_SEMI_SEMI] = ACTIONS(1888), + [anon_sym_PIPE_AMP] = ACTIONS(1888), + [anon_sym_AMP_AMP] = ACTIONS(1888), + [anon_sym_PIPE_PIPE] = ACTIONS(1888), + [anon_sym_LT] = ACTIONS(1888), + [anon_sym_GT] = ACTIONS(1888), + [anon_sym_GT_GT] = ACTIONS(1888), + [anon_sym_AMP_GT] = ACTIONS(1888), + [anon_sym_AMP_GT_GT] = ACTIONS(1888), + [anon_sym_LT_AMP] = ACTIONS(1888), + [anon_sym_GT_AMP] = ACTIONS(1888), + [sym__special_characters] = ACTIONS(1888), + [anon_sym_DQUOTE] = ACTIONS(1888), + [anon_sym_DOLLAR] = ACTIONS(1888), + [sym_raw_string] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1888), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1888), + [anon_sym_BQUOTE] = ACTIONS(1888), + [anon_sym_LT_LPAREN] = ACTIONS(1888), + [anon_sym_GT_LPAREN] = ACTIONS(1888), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1860), - [anon_sym_SEMI] = ACTIONS(1860), - [anon_sym_LF] = ACTIONS(1860), - [anon_sym_AMP] = ACTIONS(1860), + [sym_word] = ACTIONS(1888), + [anon_sym_SEMI] = ACTIONS(1888), + [anon_sym_LF] = ACTIONS(1888), + [anon_sym_AMP] = ACTIONS(1888), }, [4218] = { [aux_sym_concatenation_repeat1] = STATE(4218), - [sym_file_descriptor] = ACTIONS(1858), - [sym__concat] = ACTIONS(8607), - [sym_variable_name] = ACTIONS(1858), - [anon_sym_esac] = ACTIONS(1860), - [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_file_descriptor] = ACTIONS(1886), + [sym__concat] = ACTIONS(8685), + [sym_variable_name] = ACTIONS(1886), + [anon_sym_esac] = ACTIONS(1888), + [anon_sym_PIPE] = ACTIONS(1888), + [anon_sym_SEMI_SEMI] = ACTIONS(1888), + [anon_sym_PIPE_AMP] = ACTIONS(1888), + [anon_sym_AMP_AMP] = ACTIONS(1888), + [anon_sym_PIPE_PIPE] = ACTIONS(1888), + [anon_sym_LT] = ACTIONS(1888), + [anon_sym_GT] = ACTIONS(1888), + [anon_sym_GT_GT] = ACTIONS(1888), + [anon_sym_AMP_GT] = ACTIONS(1888), + [anon_sym_AMP_GT_GT] = ACTIONS(1888), + [anon_sym_LT_AMP] = ACTIONS(1888), + [anon_sym_GT_AMP] = ACTIONS(1888), + [sym__special_characters] = ACTIONS(1888), + [anon_sym_DQUOTE] = ACTIONS(1888), + [anon_sym_DOLLAR] = ACTIONS(1888), + [sym_raw_string] = ACTIONS(1888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1888), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1888), + [anon_sym_BQUOTE] = ACTIONS(1888), + [anon_sym_LT_LPAREN] = ACTIONS(1888), + [anon_sym_GT_LPAREN] = ACTIONS(1888), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1860), - [anon_sym_SEMI] = ACTIONS(1860), - [anon_sym_LF] = ACTIONS(1860), - [anon_sym_AMP] = ACTIONS(1860), + [sym_word] = ACTIONS(1888), + [anon_sym_SEMI] = ACTIONS(1888), + [anon_sym_LF] = ACTIONS(1888), + [anon_sym_AMP] = ACTIONS(1888), }, [4219] = { - [sym_file_descriptor] = ACTIONS(1895), - [sym__concat] = ACTIONS(1895), - [sym_variable_name] = ACTIONS(1895), - [anon_sym_esac] = ACTIONS(1897), - [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_file_descriptor] = ACTIONS(1923), + [sym__concat] = ACTIONS(1923), + [sym_variable_name] = ACTIONS(1923), + [anon_sym_esac] = ACTIONS(1925), + [anon_sym_PIPE] = ACTIONS(1925), + [anon_sym_SEMI_SEMI] = ACTIONS(1925), + [anon_sym_PIPE_AMP] = ACTIONS(1925), + [anon_sym_AMP_AMP] = ACTIONS(1925), + [anon_sym_PIPE_PIPE] = ACTIONS(1925), + [anon_sym_LT] = ACTIONS(1925), + [anon_sym_GT] = ACTIONS(1925), + [anon_sym_GT_GT] = ACTIONS(1925), + [anon_sym_AMP_GT] = ACTIONS(1925), + [anon_sym_AMP_GT_GT] = ACTIONS(1925), + [anon_sym_LT_AMP] = ACTIONS(1925), + [anon_sym_GT_AMP] = ACTIONS(1925), + [sym__special_characters] = ACTIONS(1925), + [anon_sym_DQUOTE] = ACTIONS(1925), + [anon_sym_DOLLAR] = ACTIONS(1925), + [sym_raw_string] = ACTIONS(1925), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1925), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1925), + [anon_sym_BQUOTE] = ACTIONS(1925), + [anon_sym_LT_LPAREN] = ACTIONS(1925), + [anon_sym_GT_LPAREN] = ACTIONS(1925), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1897), - [anon_sym_SEMI] = ACTIONS(1897), - [anon_sym_LF] = ACTIONS(1897), - [anon_sym_AMP] = ACTIONS(1897), + [sym_word] = ACTIONS(1925), + [anon_sym_SEMI] = ACTIONS(1925), + [anon_sym_LF] = ACTIONS(1925), + [anon_sym_AMP] = ACTIONS(1925), }, [4220] = { [sym_concatenation] = STATE(4369), @@ -103020,54 +103414,54 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(4368), [sym_command_substitution] = STATE(4368), [sym_process_substitution] = STATE(4368), - [anon_sym_RBRACE] = ACTIONS(8610), - [sym__special_characters] = ACTIONS(8612), - [anon_sym_DQUOTE] = ACTIONS(1924), - [anon_sym_DOLLAR] = ACTIONS(1926), - [sym_raw_string] = ACTIONS(8614), - [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), + [anon_sym_RBRACE] = ACTIONS(8688), + [sym__special_characters] = ACTIONS(8690), + [anon_sym_DQUOTE] = ACTIONS(1952), + [anon_sym_DOLLAR] = ACTIONS(1954), + [sym_raw_string] = ACTIONS(8692), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), + [anon_sym_BQUOTE] = ACTIONS(1962), + [anon_sym_LT_LPAREN] = ACTIONS(1964), + [anon_sym_GT_LPAREN] = ACTIONS(1964), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(8616), + [sym_word] = ACTIONS(8694), }, [4221] = { - [sym_file_descriptor] = ACTIONS(1940), - [sym__concat] = ACTIONS(1940), - [sym_variable_name] = ACTIONS(1940), - [anon_sym_esac] = ACTIONS(1942), - [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_file_descriptor] = ACTIONS(1968), + [sym__concat] = ACTIONS(1968), + [sym_variable_name] = ACTIONS(1968), + [anon_sym_esac] = ACTIONS(1970), + [anon_sym_PIPE] = ACTIONS(1970), + [anon_sym_SEMI_SEMI] = ACTIONS(1970), + [anon_sym_PIPE_AMP] = ACTIONS(1970), + [anon_sym_AMP_AMP] = ACTIONS(1970), + [anon_sym_PIPE_PIPE] = ACTIONS(1970), + [anon_sym_LT] = ACTIONS(1970), + [anon_sym_GT] = ACTIONS(1970), + [anon_sym_GT_GT] = ACTIONS(1970), + [anon_sym_AMP_GT] = ACTIONS(1970), + [anon_sym_AMP_GT_GT] = ACTIONS(1970), + [anon_sym_LT_AMP] = ACTIONS(1970), + [anon_sym_GT_AMP] = ACTIONS(1970), + [sym__special_characters] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1970), + [anon_sym_DOLLAR] = ACTIONS(1970), + [sym_raw_string] = ACTIONS(1970), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1970), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1970), + [anon_sym_BQUOTE] = ACTIONS(1970), + [anon_sym_LT_LPAREN] = ACTIONS(1970), + [anon_sym_GT_LPAREN] = ACTIONS(1970), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1942), - [anon_sym_SEMI] = ACTIONS(1942), - [anon_sym_LF] = ACTIONS(1942), - [anon_sym_AMP] = ACTIONS(1942), + [sym_word] = ACTIONS(1970), + [anon_sym_SEMI] = ACTIONS(1970), + [anon_sym_LF] = ACTIONS(1970), + [anon_sym_AMP] = ACTIONS(1970), }, [4222] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8618), + [sym_regex_without_right_brace] = ACTIONS(8696), }, [4223] = { [sym_concatenation] = STATE(451), @@ -103078,29 +103472,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8620), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8698), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4224] = { - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(8622), + [anon_sym_LBRACK] = ACTIONS(836), + [anon_sym_EQ] = ACTIONS(8700), [sym_comment] = ACTIONS(56), }, [4225] = { @@ -103112,26 +103506,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(4375), - [anon_sym_RBRACE] = ACTIONS(8624), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_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(8626), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8702), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(8704), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4226] = { [sym_concatenation] = STATE(451), @@ -103142,26 +103536,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(4378), - [anon_sym_RBRACE] = ACTIONS(8628), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_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(8630), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8706), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(8708), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4227] = { [sym_concatenation] = STATE(451), @@ -103172,62 +103566,62 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(4380), - [anon_sym_RBRACE] = ACTIONS(8610), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_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(8632), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8688), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(8710), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4228] = { - [sym_file_descriptor] = ACTIONS(1992), - [sym__concat] = ACTIONS(1992), - [sym_variable_name] = ACTIONS(1992), - [anon_sym_esac] = ACTIONS(1994), - [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_file_descriptor] = ACTIONS(2022), + [sym__concat] = ACTIONS(2022), + [sym_variable_name] = ACTIONS(2022), + [anon_sym_esac] = ACTIONS(2024), + [anon_sym_PIPE] = ACTIONS(2024), + [anon_sym_SEMI_SEMI] = ACTIONS(2024), + [anon_sym_PIPE_AMP] = ACTIONS(2024), + [anon_sym_AMP_AMP] = ACTIONS(2024), + [anon_sym_PIPE_PIPE] = ACTIONS(2024), + [anon_sym_LT] = ACTIONS(2024), + [anon_sym_GT] = ACTIONS(2024), + [anon_sym_GT_GT] = ACTIONS(2024), + [anon_sym_AMP_GT] = ACTIONS(2024), + [anon_sym_AMP_GT_GT] = ACTIONS(2024), + [anon_sym_LT_AMP] = ACTIONS(2024), + [anon_sym_GT_AMP] = ACTIONS(2024), + [sym__special_characters] = ACTIONS(2024), + [anon_sym_DQUOTE] = ACTIONS(2024), + [anon_sym_DOLLAR] = ACTIONS(2024), + [sym_raw_string] = ACTIONS(2024), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2024), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2024), + [anon_sym_BQUOTE] = ACTIONS(2024), + [anon_sym_LT_LPAREN] = ACTIONS(2024), + [anon_sym_GT_LPAREN] = ACTIONS(2024), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1994), - [anon_sym_SEMI] = ACTIONS(1994), - [anon_sym_LF] = ACTIONS(1994), - [anon_sym_AMP] = ACTIONS(1994), + [sym_word] = ACTIONS(2024), + [anon_sym_SEMI] = ACTIONS(2024), + [anon_sym_LF] = ACTIONS(2024), + [anon_sym_AMP] = ACTIONS(2024), }, [4229] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8634), + [sym_regex_without_right_brace] = ACTIONS(8712), }, [4230] = { [sym_concatenation] = STATE(451), @@ -103238,61 +103632,61 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8636), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8714), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4231] = { - [sym_file_descriptor] = ACTIONS(2000), - [sym__concat] = ACTIONS(2000), - [sym_variable_name] = ACTIONS(2000), - [anon_sym_esac] = ACTIONS(2002), - [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_file_descriptor] = ACTIONS(2030), + [sym__concat] = ACTIONS(2030), + [sym_variable_name] = ACTIONS(2030), + [anon_sym_esac] = ACTIONS(2032), + [anon_sym_PIPE] = ACTIONS(2032), + [anon_sym_SEMI_SEMI] = ACTIONS(2032), + [anon_sym_PIPE_AMP] = ACTIONS(2032), + [anon_sym_AMP_AMP] = ACTIONS(2032), + [anon_sym_PIPE_PIPE] = ACTIONS(2032), + [anon_sym_LT] = ACTIONS(2032), + [anon_sym_GT] = ACTIONS(2032), + [anon_sym_GT_GT] = ACTIONS(2032), + [anon_sym_AMP_GT] = ACTIONS(2032), + [anon_sym_AMP_GT_GT] = ACTIONS(2032), + [anon_sym_LT_AMP] = ACTIONS(2032), + [anon_sym_GT_AMP] = ACTIONS(2032), + [sym__special_characters] = ACTIONS(2032), + [anon_sym_DQUOTE] = ACTIONS(2032), + [anon_sym_DOLLAR] = ACTIONS(2032), + [sym_raw_string] = ACTIONS(2032), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2032), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2032), + [anon_sym_BQUOTE] = ACTIONS(2032), + [anon_sym_LT_LPAREN] = ACTIONS(2032), + [anon_sym_GT_LPAREN] = ACTIONS(2032), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2002), - [anon_sym_SEMI] = ACTIONS(2002), - [anon_sym_LF] = ACTIONS(2002), - [anon_sym_AMP] = ACTIONS(2002), + [sym_word] = ACTIONS(2032), + [anon_sym_SEMI] = ACTIONS(2032), + [anon_sym_LF] = ACTIONS(2032), + [anon_sym_AMP] = ACTIONS(2032), }, [4232] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8638), + [sym_regex_without_right_brace] = ACTIONS(8716), }, [4233] = { [sym_concatenation] = STATE(451), @@ -103303,110 +103697,110 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8610), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8688), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4234] = { - [sym_file_descriptor] = ACTIONS(2156), - [sym__concat] = ACTIONS(2156), - [sym_variable_name] = ACTIONS(2156), - [anon_sym_esac] = ACTIONS(2158), - [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_file_descriptor] = ACTIONS(2190), + [sym__concat] = ACTIONS(2190), + [sym_variable_name] = ACTIONS(2190), + [anon_sym_esac] = ACTIONS(2192), + [anon_sym_PIPE] = ACTIONS(2192), + [anon_sym_SEMI_SEMI] = ACTIONS(2192), + [anon_sym_PIPE_AMP] = ACTIONS(2192), + [anon_sym_AMP_AMP] = ACTIONS(2192), + [anon_sym_PIPE_PIPE] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(2192), + [anon_sym_GT] = ACTIONS(2192), + [anon_sym_GT_GT] = ACTIONS(2192), + [anon_sym_AMP_GT] = ACTIONS(2192), + [anon_sym_AMP_GT_GT] = ACTIONS(2192), + [anon_sym_LT_AMP] = ACTIONS(2192), + [anon_sym_GT_AMP] = ACTIONS(2192), + [sym__special_characters] = ACTIONS(2192), + [anon_sym_DQUOTE] = ACTIONS(2192), + [anon_sym_DOLLAR] = ACTIONS(2192), + [sym_raw_string] = ACTIONS(2192), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2192), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2192), + [anon_sym_BQUOTE] = ACTIONS(2192), + [anon_sym_LT_LPAREN] = ACTIONS(2192), + [anon_sym_GT_LPAREN] = ACTIONS(2192), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2158), - [anon_sym_SEMI] = ACTIONS(2158), - [anon_sym_LF] = ACTIONS(2158), - [anon_sym_AMP] = ACTIONS(2158), + [sym_word] = ACTIONS(2192), + [anon_sym_SEMI] = ACTIONS(2192), + [anon_sym_LF] = ACTIONS(2192), + [anon_sym_AMP] = ACTIONS(2192), }, [4235] = { - [sym_file_descriptor] = ACTIONS(2358), - [sym__concat] = ACTIONS(2358), - [sym_variable_name] = ACTIONS(2358), - [anon_sym_esac] = ACTIONS(2360), - [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_file_descriptor] = ACTIONS(2396), + [sym__concat] = ACTIONS(2396), + [sym_variable_name] = ACTIONS(2396), + [anon_sym_esac] = ACTIONS(2398), + [anon_sym_PIPE] = ACTIONS(2398), + [anon_sym_SEMI_SEMI] = ACTIONS(2398), + [anon_sym_PIPE_AMP] = ACTIONS(2398), + [anon_sym_AMP_AMP] = ACTIONS(2398), + [anon_sym_PIPE_PIPE] = ACTIONS(2398), + [anon_sym_LT] = ACTIONS(2398), + [anon_sym_GT] = ACTIONS(2398), + [anon_sym_GT_GT] = ACTIONS(2398), + [anon_sym_AMP_GT] = ACTIONS(2398), + [anon_sym_AMP_GT_GT] = ACTIONS(2398), + [anon_sym_LT_AMP] = ACTIONS(2398), + [anon_sym_GT_AMP] = ACTIONS(2398), + [sym__special_characters] = ACTIONS(2398), + [anon_sym_DQUOTE] = ACTIONS(2398), + [anon_sym_DOLLAR] = ACTIONS(2398), + [sym_raw_string] = ACTIONS(2398), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2398), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2398), + [anon_sym_BQUOTE] = ACTIONS(2398), + [anon_sym_LT_LPAREN] = ACTIONS(2398), + [anon_sym_GT_LPAREN] = ACTIONS(2398), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2360), - [anon_sym_SEMI] = ACTIONS(2360), - [anon_sym_LF] = ACTIONS(2360), - [anon_sym_AMP] = ACTIONS(2360), + [sym_word] = ACTIONS(2398), + [anon_sym_SEMI] = ACTIONS(2398), + [anon_sym_LF] = ACTIONS(2398), + [anon_sym_AMP] = ACTIONS(2398), }, [4236] = { [sym_file_redirect] = STATE(2034), - [sym_file_descriptor] = ACTIONS(7893), - [anon_sym_esac] = ACTIONS(4328), - [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(7895), - [anon_sym_GT] = ACTIONS(7895), - [anon_sym_GT_GT] = ACTIONS(7895), - [anon_sym_AMP_GT] = ACTIONS(7895), - [anon_sym_AMP_GT_GT] = ACTIONS(7895), - [anon_sym_LT_AMP] = ACTIONS(7895), - [anon_sym_GT_AMP] = ACTIONS(7895), + [sym_file_descriptor] = ACTIONS(7969), + [anon_sym_esac] = ACTIONS(4388), + [anon_sym_PIPE] = ACTIONS(4388), + [anon_sym_SEMI_SEMI] = ACTIONS(4388), + [anon_sym_PIPE_AMP] = ACTIONS(4388), + [anon_sym_AMP_AMP] = ACTIONS(4388), + [anon_sym_PIPE_PIPE] = ACTIONS(4388), + [anon_sym_LT] = ACTIONS(7971), + [anon_sym_GT] = ACTIONS(7971), + [anon_sym_GT_GT] = ACTIONS(7971), + [anon_sym_AMP_GT] = ACTIONS(7971), + [anon_sym_AMP_GT_GT] = ACTIONS(7971), + [anon_sym_LT_AMP] = ACTIONS(7971), + [anon_sym_GT_AMP] = ACTIONS(7971), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4328), - [anon_sym_LF] = ACTIONS(4328), - [anon_sym_AMP] = ACTIONS(4328), + [anon_sym_SEMI] = ACTIONS(4388), + [anon_sym_LF] = ACTIONS(4388), + [anon_sym_AMP] = ACTIONS(4388), }, [4237] = { [sym_concatenation] = STATE(2037), @@ -103416,38 +103810,38 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(4385), [sym_command_substitution] = STATE(4385), [sym_process_substitution] = STATE(4385), - [sym__special_characters] = ACTIONS(8640), - [anon_sym_DQUOTE] = ACTIONS(8381), - [anon_sym_DOLLAR] = ACTIONS(8383), - [sym_raw_string] = ACTIONS(8642), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(8387), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(8389), - [anon_sym_BQUOTE] = ACTIONS(8391), - [anon_sym_LT_LPAREN] = ACTIONS(8393), - [anon_sym_GT_LPAREN] = ACTIONS(8393), + [sym__special_characters] = ACTIONS(8718), + [anon_sym_DQUOTE] = ACTIONS(8459), + [anon_sym_DOLLAR] = ACTIONS(8461), + [sym_raw_string] = ACTIONS(8720), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8465), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8467), + [anon_sym_BQUOTE] = ACTIONS(8469), + [anon_sym_LT_LPAREN] = ACTIONS(8471), + [anon_sym_GT_LPAREN] = ACTIONS(8471), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(8644), + [sym_word] = ACTIONS(8722), }, [4238] = { [aux_sym_concatenation_repeat1] = STATE(4387), - [sym__concat] = ACTIONS(8646), - [anon_sym_esac] = ACTIONS(2374), - [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__concat] = ACTIONS(8724), + [anon_sym_esac] = ACTIONS(2412), + [anon_sym_PIPE] = ACTIONS(2412), + [anon_sym_SEMI_SEMI] = ACTIONS(2412), + [anon_sym_PIPE_AMP] = ACTIONS(2412), + [anon_sym_AMP_AMP] = ACTIONS(2412), + [anon_sym_PIPE_PIPE] = ACTIONS(2412), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2374), - [anon_sym_LF] = ACTIONS(2374), - [anon_sym_AMP] = ACTIONS(2374), + [anon_sym_SEMI] = ACTIONS(2412), + [anon_sym_LF] = ACTIONS(2412), + [anon_sym_AMP] = ACTIONS(2412), }, [4239] = { [sym_simple_expansion] = STATE(134), [sym_expansion] = STATE(134), [sym_command_substitution] = STATE(134), [aux_sym_string_repeat1] = STATE(4389), - [anon_sym_DQUOTE] = ACTIONS(8648), + [anon_sym_DQUOTE] = ACTIONS(8726), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -103456,46 +103850,47 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(182), }, [4240] = { - [sym_string] = STATE(4392), - [anon_sym_DQUOTE] = ACTIONS(8381), - [anon_sym_DOLLAR] = ACTIONS(8650), - [anon_sym_POUND] = ACTIONS(8650), - [anon_sym_DASH] = ACTIONS(8650), + [sym_string] = STATE(4391), + [anon_sym_DQUOTE] = ACTIONS(8459), + [anon_sym_DOLLAR] = ACTIONS(8728), + [sym_raw_string] = ACTIONS(8730), + [anon_sym_POUND] = ACTIONS(8728), + [anon_sym_DASH] = ACTIONS(8728), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(8652), - [anon_sym_STAR] = ACTIONS(8650), - [anon_sym_AT] = ACTIONS(8650), - [anon_sym_QMARK] = ACTIONS(8650), - [anon_sym_0] = ACTIONS(8654), - [anon_sym__] = ACTIONS(8654), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(8732), + [anon_sym_STAR] = ACTIONS(8728), + [anon_sym_AT] = ACTIONS(8728), + [anon_sym_QMARK] = ACTIONS(8728), + [anon_sym_0] = ACTIONS(8734), + [anon_sym__] = ACTIONS(8734), }, [4241] = { [aux_sym_concatenation_repeat1] = STATE(4387), - [sym__concat] = ACTIONS(8646), - [anon_sym_esac] = ACTIONS(2384), - [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__concat] = ACTIONS(8724), + [anon_sym_esac] = ACTIONS(2424), + [anon_sym_PIPE] = ACTIONS(2424), + [anon_sym_SEMI_SEMI] = ACTIONS(2424), + [anon_sym_PIPE_AMP] = ACTIONS(2424), + [anon_sym_AMP_AMP] = ACTIONS(2424), + [anon_sym_PIPE_PIPE] = ACTIONS(2424), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2384), - [anon_sym_LF] = ACTIONS(2384), - [anon_sym_AMP] = ACTIONS(2384), + [anon_sym_SEMI] = ACTIONS(2424), + [anon_sym_LF] = ACTIONS(2424), + [anon_sym_AMP] = ACTIONS(2424), }, [4242] = { [sym_subscript] = STATE(4397), - [sym_variable_name] = ACTIONS(8656), - [anon_sym_DOLLAR] = ACTIONS(8658), - [anon_sym_POUND] = ACTIONS(8660), - [anon_sym_DASH] = ACTIONS(8658), + [sym_variable_name] = ACTIONS(8736), + [anon_sym_DOLLAR] = ACTIONS(8738), + [anon_sym_POUND] = ACTIONS(8740), + [anon_sym_DASH] = ACTIONS(8738), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(8662), - [anon_sym_STAR] = ACTIONS(8658), - [anon_sym_AT] = ACTIONS(8658), - [anon_sym_QMARK] = ACTIONS(8658), - [anon_sym_0] = ACTIONS(8664), - [anon_sym__] = ACTIONS(8664), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(8742), + [anon_sym_STAR] = ACTIONS(8738), + [anon_sym_AT] = ACTIONS(8738), + [anon_sym_QMARK] = ACTIONS(8738), + [anon_sym_0] = ACTIONS(8744), + [anon_sym__] = ACTIONS(8744), }, [4243] = { [sym_for_statement] = STATE(4398), @@ -103523,22 +103918,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(264), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(268), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -103546,17 +103941,17 @@ 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(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__special_characters] = ACTIONS(286), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(300), + [sym_word] = ACTIONS(302), }, [4244] = { [sym_for_statement] = STATE(4400), @@ -103584,22 +103979,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(304), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(306), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(308), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_LBRACK_LBRACK] = ACTIONS(312), + [anon_sym_declare] = ACTIONS(314), + [anon_sym_typeset] = ACTIONS(314), + [anon_sym_export] = ACTIONS(314), + [anon_sym_readonly] = ACTIONS(314), + [anon_sym_local] = ACTIONS(314), + [anon_sym_unset] = ACTIONS(316), + [anon_sym_unsetenv] = ACTIONS(316), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -103607,17 +104002,17 @@ 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(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__special_characters] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [anon_sym_DOLLAR] = ACTIONS(322), + [sym_raw_string] = ACTIONS(324), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), + [anon_sym_BQUOTE] = ACTIONS(330), + [anon_sym_LT_LPAREN] = ACTIONS(332), + [anon_sym_GT_LPAREN] = ACTIONS(332), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(332), + [sym_word] = ACTIONS(334), }, [4245] = { [sym_for_statement] = STATE(4402), @@ -103645,22 +104040,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(264), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(268), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -103668,41 +104063,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(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__special_characters] = ACTIONS(286), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(300), + [sym_word] = ACTIONS(302), }, [4246] = { - [sym_variable_name] = ACTIONS(2517), - [anon_sym_esac] = ACTIONS(2519), - [anon_sym_PIPE] = 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_variable_name] = ACTIONS(2557), + [anon_sym_esac] = ACTIONS(2559), + [anon_sym_PIPE] = ACTIONS(2559), + [anon_sym_SEMI_SEMI] = ACTIONS(2559), + [anon_sym_PIPE_AMP] = ACTIONS(2559), + [anon_sym_AMP_AMP] = ACTIONS(2559), + [anon_sym_PIPE_PIPE] = ACTIONS(2559), + [sym__special_characters] = ACTIONS(2559), + [anon_sym_DQUOTE] = ACTIONS(2559), + [anon_sym_DOLLAR] = ACTIONS(2559), + [sym_raw_string] = ACTIONS(2559), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2559), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2559), + [anon_sym_BQUOTE] = ACTIONS(2559), + [anon_sym_LT_LPAREN] = ACTIONS(2559), + [anon_sym_GT_LPAREN] = ACTIONS(2559), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2519), - [sym_word] = ACTIONS(2519), - [anon_sym_SEMI] = ACTIONS(2519), - [anon_sym_LF] = ACTIONS(2519), - [anon_sym_AMP] = ACTIONS(2519), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2559), + [sym_word] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2559), + [anon_sym_LF] = ACTIONS(2559), + [anon_sym_AMP] = ACTIONS(2559), }, [4247] = { [sym_concatenation] = STATE(660), @@ -103713,58 +104108,58 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(655), [sym_process_substitution] = STATE(655), [aux_sym_for_statement_repeat1] = STATE(1269), - [anon_sym_RPAREN] = ACTIONS(8666), - [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), + [anon_sym_RPAREN] = ACTIONS(8746), + [sym__special_characters] = ACTIONS(1283), + [anon_sym_DQUOTE] = ACTIONS(1285), + [anon_sym_DOLLAR] = ACTIONS(1287), + [sym_raw_string] = ACTIONS(1289), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1291), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1293), + [anon_sym_BQUOTE] = ACTIONS(1295), + [anon_sym_LT_LPAREN] = ACTIONS(1297), + [anon_sym_GT_LPAREN] = ACTIONS(1297), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1277), + [sym_word] = ACTIONS(1299), }, [4248] = { - [sym__concat] = ACTIONS(3235), - [sym_variable_name] = ACTIONS(3235), - [anon_sym_esac] = ACTIONS(3237), - [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__concat] = ACTIONS(3283), + [sym_variable_name] = ACTIONS(3283), + [anon_sym_esac] = ACTIONS(3285), + [anon_sym_PIPE] = ACTIONS(3285), + [anon_sym_SEMI_SEMI] = ACTIONS(3285), + [anon_sym_PIPE_AMP] = ACTIONS(3285), + [anon_sym_AMP_AMP] = ACTIONS(3285), + [anon_sym_PIPE_PIPE] = ACTIONS(3285), + [sym__special_characters] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3285), + [anon_sym_DOLLAR] = ACTIONS(3285), + [sym_raw_string] = ACTIONS(3285), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3285), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3285), + [anon_sym_BQUOTE] = ACTIONS(3285), + [anon_sym_LT_LPAREN] = ACTIONS(3285), + [anon_sym_GT_LPAREN] = ACTIONS(3285), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3237), - [sym_word] = ACTIONS(3237), - [anon_sym_SEMI] = ACTIONS(3237), - [anon_sym_LF] = ACTIONS(3237), - [anon_sym_AMP] = ACTIONS(3237), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3285), + [sym_word] = ACTIONS(3285), + [anon_sym_SEMI] = ACTIONS(3285), + [anon_sym_LF] = ACTIONS(3285), + [anon_sym_AMP] = ACTIONS(3285), }, [4249] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(8668), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(8748), [sym_comment] = ACTIONS(56), }, [4250] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(8670), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(8750), [sym_comment] = ACTIONS(56), }, [4251] = { - [anon_sym_RBRACE] = ACTIONS(8670), + [anon_sym_RBRACE] = ACTIONS(8750), [sym_comment] = ACTIONS(56), }, [4252] = { @@ -103776,50 +104171,50 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(4408), - [anon_sym_RBRACE] = ACTIONS(8672), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8752), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4253] = { - [sym__concat] = ACTIONS(3297), - [sym_variable_name] = ACTIONS(3297), - [anon_sym_esac] = ACTIONS(3299), - [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__concat] = ACTIONS(3347), + [sym_variable_name] = ACTIONS(3347), + [anon_sym_esac] = ACTIONS(3349), + [anon_sym_PIPE] = ACTIONS(3349), + [anon_sym_SEMI_SEMI] = ACTIONS(3349), + [anon_sym_PIPE_AMP] = ACTIONS(3349), + [anon_sym_AMP_AMP] = ACTIONS(3349), + [anon_sym_PIPE_PIPE] = ACTIONS(3349), + [sym__special_characters] = ACTIONS(3349), + [anon_sym_DQUOTE] = ACTIONS(3349), + [anon_sym_DOLLAR] = ACTIONS(3349), + [sym_raw_string] = ACTIONS(3349), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3349), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3349), + [anon_sym_BQUOTE] = ACTIONS(3349), + [anon_sym_LT_LPAREN] = ACTIONS(3349), + [anon_sym_GT_LPAREN] = ACTIONS(3349), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3299), - [sym_word] = ACTIONS(3299), - [anon_sym_SEMI] = ACTIONS(3299), - [anon_sym_LF] = ACTIONS(3299), - [anon_sym_AMP] = ACTIONS(3299), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3349), + [sym_word] = ACTIONS(3349), + [anon_sym_SEMI] = ACTIONS(3349), + [anon_sym_LF] = ACTIONS(3349), + [anon_sym_AMP] = ACTIONS(3349), }, [4254] = { [sym_concatenation] = STATE(4411), @@ -103829,47 +104224,47 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(4410), [sym_command_substitution] = STATE(4410), [sym_process_substitution] = STATE(4410), - [anon_sym_RBRACE] = ACTIONS(8670), - [sym__special_characters] = ACTIONS(8674), - [anon_sym_DQUOTE] = ACTIONS(1924), - [anon_sym_DOLLAR] = ACTIONS(1926), - [sym_raw_string] = ACTIONS(8676), - [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), + [anon_sym_RBRACE] = ACTIONS(8750), + [sym__special_characters] = ACTIONS(8754), + [anon_sym_DQUOTE] = ACTIONS(1952), + [anon_sym_DOLLAR] = ACTIONS(1954), + [sym_raw_string] = ACTIONS(8756), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), + [anon_sym_BQUOTE] = ACTIONS(1962), + [anon_sym_LT_LPAREN] = ACTIONS(1964), + [anon_sym_GT_LPAREN] = ACTIONS(1964), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(8678), + [sym_word] = ACTIONS(8758), }, [4255] = { - [sym__concat] = ACTIONS(3342), - [sym_variable_name] = ACTIONS(3342), - [anon_sym_esac] = ACTIONS(3344), - [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__concat] = ACTIONS(3392), + [sym_variable_name] = ACTIONS(3392), + [anon_sym_esac] = ACTIONS(3394), + [anon_sym_PIPE] = ACTIONS(3394), + [anon_sym_SEMI_SEMI] = ACTIONS(3394), + [anon_sym_PIPE_AMP] = ACTIONS(3394), + [anon_sym_AMP_AMP] = ACTIONS(3394), + [anon_sym_PIPE_PIPE] = ACTIONS(3394), + [sym__special_characters] = ACTIONS(3394), + [anon_sym_DQUOTE] = ACTIONS(3394), + [anon_sym_DOLLAR] = ACTIONS(3394), + [sym_raw_string] = ACTIONS(3394), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3394), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3394), + [anon_sym_BQUOTE] = ACTIONS(3394), + [anon_sym_LT_LPAREN] = ACTIONS(3394), + [anon_sym_GT_LPAREN] = ACTIONS(3394), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3344), - [sym_word] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(3344), - [anon_sym_LF] = ACTIONS(3344), - [anon_sym_AMP] = ACTIONS(3344), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3394), + [sym_word] = ACTIONS(3394), + [anon_sym_SEMI] = ACTIONS(3394), + [anon_sym_LF] = ACTIONS(3394), + [anon_sym_AMP] = ACTIONS(3394), }, [4256] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8680), + [sym_regex_without_right_brace] = ACTIONS(8760), }, [4257] = { [sym_concatenation] = STATE(451), @@ -103880,54 +104275,54 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8682), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8762), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4258] = { - [sym__concat] = ACTIONS(3350), - [sym_variable_name] = ACTIONS(3350), - [anon_sym_esac] = ACTIONS(3352), - [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__concat] = ACTIONS(3400), + [sym_variable_name] = ACTIONS(3400), + [anon_sym_esac] = ACTIONS(3402), + [anon_sym_PIPE] = ACTIONS(3402), + [anon_sym_SEMI_SEMI] = ACTIONS(3402), + [anon_sym_PIPE_AMP] = ACTIONS(3402), + [anon_sym_AMP_AMP] = ACTIONS(3402), + [anon_sym_PIPE_PIPE] = ACTIONS(3402), + [sym__special_characters] = ACTIONS(3402), + [anon_sym_DQUOTE] = ACTIONS(3402), + [anon_sym_DOLLAR] = ACTIONS(3402), + [sym_raw_string] = ACTIONS(3402), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3402), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3402), + [anon_sym_BQUOTE] = ACTIONS(3402), + [anon_sym_LT_LPAREN] = ACTIONS(3402), + [anon_sym_GT_LPAREN] = ACTIONS(3402), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3352), - [sym_word] = ACTIONS(3352), - [anon_sym_SEMI] = ACTIONS(3352), - [anon_sym_LF] = ACTIONS(3352), - [anon_sym_AMP] = ACTIONS(3352), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3402), + [sym_word] = ACTIONS(3402), + [anon_sym_SEMI] = ACTIONS(3402), + [anon_sym_LF] = ACTIONS(3402), + [anon_sym_AMP] = ACTIONS(3402), }, [4259] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8684), + [sym_regex_without_right_brace] = ACTIONS(8764), }, [4260] = { [sym_concatenation] = STATE(451), @@ -103938,29 +104333,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8686), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8766), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4261] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8688), + [sym_regex_without_right_brace] = ACTIONS(8768), }, [4262] = { [sym_concatenation] = STATE(451), @@ -103971,25 +104366,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8670), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8750), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4263] = { [sym_concatenation] = STATE(451), @@ -104000,50 +104395,50 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(4418), - [anon_sym_RBRACE] = ACTIONS(8690), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8770), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4264] = { - [sym__concat] = ACTIONS(3362), - [sym_variable_name] = ACTIONS(3362), - [anon_sym_esac] = ACTIONS(3364), - [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__concat] = ACTIONS(3412), + [sym_variable_name] = ACTIONS(3412), + [anon_sym_esac] = ACTIONS(3414), + [anon_sym_PIPE] = ACTIONS(3414), + [anon_sym_SEMI_SEMI] = ACTIONS(3414), + [anon_sym_PIPE_AMP] = ACTIONS(3414), + [anon_sym_AMP_AMP] = ACTIONS(3414), + [anon_sym_PIPE_PIPE] = ACTIONS(3414), + [sym__special_characters] = ACTIONS(3414), + [anon_sym_DQUOTE] = ACTIONS(3414), + [anon_sym_DOLLAR] = ACTIONS(3414), + [sym_raw_string] = ACTIONS(3414), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3414), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3414), + [anon_sym_BQUOTE] = ACTIONS(3414), + [anon_sym_LT_LPAREN] = ACTIONS(3414), + [anon_sym_GT_LPAREN] = ACTIONS(3414), [sym_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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3414), + [sym_word] = ACTIONS(3414), + [anon_sym_SEMI] = ACTIONS(3414), + [anon_sym_LF] = ACTIONS(3414), + [anon_sym_AMP] = ACTIONS(3414), }, [4265] = { [sym_concatenation] = STATE(451), @@ -104054,64 +104449,64 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(4420), - [anon_sym_RBRACE] = ACTIONS(8692), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8772), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4266] = { - [sym__concat] = ACTIONS(3235), - [anon_sym_esac] = ACTIONS(3237), - [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__concat] = ACTIONS(3283), + [anon_sym_esac] = ACTIONS(3285), + [anon_sym_PIPE] = ACTIONS(3285), + [anon_sym_SEMI_SEMI] = ACTIONS(3285), + [anon_sym_PIPE_AMP] = ACTIONS(3285), + [anon_sym_AMP_AMP] = ACTIONS(3285), + [anon_sym_PIPE_PIPE] = ACTIONS(3285), + [sym__special_characters] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3285), + [anon_sym_DOLLAR] = ACTIONS(3285), + [sym_raw_string] = ACTIONS(3285), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3285), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3285), + [anon_sym_BQUOTE] = ACTIONS(3285), + [anon_sym_LT_LPAREN] = ACTIONS(3285), + [anon_sym_GT_LPAREN] = ACTIONS(3285), [sym_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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3285), + [sym_word] = ACTIONS(3285), + [anon_sym_SEMI] = ACTIONS(3285), + [anon_sym_LF] = ACTIONS(3285), + [anon_sym_AMP] = ACTIONS(3285), }, [4267] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(8694), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(8774), [sym_comment] = ACTIONS(56), }, [4268] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(8696), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(8776), [sym_comment] = ACTIONS(56), }, [4269] = { - [anon_sym_RBRACE] = ACTIONS(8696), + [anon_sym_RBRACE] = ACTIONS(8776), [sym_comment] = ACTIONS(56), }, [4270] = { @@ -104123,49 +104518,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(4424), - [anon_sym_RBRACE] = ACTIONS(8698), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8778), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4271] = { - [sym__concat] = ACTIONS(3297), - [anon_sym_esac] = ACTIONS(3299), - [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__concat] = ACTIONS(3347), + [anon_sym_esac] = ACTIONS(3349), + [anon_sym_PIPE] = ACTIONS(3349), + [anon_sym_SEMI_SEMI] = ACTIONS(3349), + [anon_sym_PIPE_AMP] = ACTIONS(3349), + [anon_sym_AMP_AMP] = ACTIONS(3349), + [anon_sym_PIPE_PIPE] = ACTIONS(3349), + [sym__special_characters] = ACTIONS(3349), + [anon_sym_DQUOTE] = ACTIONS(3349), + [anon_sym_DOLLAR] = ACTIONS(3349), + [sym_raw_string] = ACTIONS(3349), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3349), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3349), + [anon_sym_BQUOTE] = ACTIONS(3349), + [anon_sym_LT_LPAREN] = ACTIONS(3349), + [anon_sym_GT_LPAREN] = ACTIONS(3349), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3299), - [sym_word] = ACTIONS(3299), - [anon_sym_SEMI] = ACTIONS(3299), - [anon_sym_LF] = ACTIONS(3299), - [anon_sym_AMP] = ACTIONS(3299), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3349), + [sym_word] = ACTIONS(3349), + [anon_sym_SEMI] = ACTIONS(3349), + [anon_sym_LF] = ACTIONS(3349), + [anon_sym_AMP] = ACTIONS(3349), }, [4272] = { [sym_concatenation] = STATE(4427), @@ -104175,46 +104570,46 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(4426), [sym_command_substitution] = STATE(4426), [sym_process_substitution] = STATE(4426), - [anon_sym_RBRACE] = ACTIONS(8696), - [sym__special_characters] = ACTIONS(8700), - [anon_sym_DQUOTE] = ACTIONS(1924), - [anon_sym_DOLLAR] = ACTIONS(1926), - [sym_raw_string] = ACTIONS(8702), - [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), + [anon_sym_RBRACE] = ACTIONS(8776), + [sym__special_characters] = ACTIONS(8780), + [anon_sym_DQUOTE] = ACTIONS(1952), + [anon_sym_DOLLAR] = ACTIONS(1954), + [sym_raw_string] = ACTIONS(8782), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), + [anon_sym_BQUOTE] = ACTIONS(1962), + [anon_sym_LT_LPAREN] = ACTIONS(1964), + [anon_sym_GT_LPAREN] = ACTIONS(1964), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(8704), + [sym_word] = ACTIONS(8784), }, [4273] = { - [sym__concat] = ACTIONS(3342), - [anon_sym_esac] = ACTIONS(3344), - [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__concat] = ACTIONS(3392), + [anon_sym_esac] = ACTIONS(3394), + [anon_sym_PIPE] = ACTIONS(3394), + [anon_sym_SEMI_SEMI] = ACTIONS(3394), + [anon_sym_PIPE_AMP] = ACTIONS(3394), + [anon_sym_AMP_AMP] = ACTIONS(3394), + [anon_sym_PIPE_PIPE] = ACTIONS(3394), + [sym__special_characters] = ACTIONS(3394), + [anon_sym_DQUOTE] = ACTIONS(3394), + [anon_sym_DOLLAR] = ACTIONS(3394), + [sym_raw_string] = ACTIONS(3394), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3394), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3394), + [anon_sym_BQUOTE] = ACTIONS(3394), + [anon_sym_LT_LPAREN] = ACTIONS(3394), + [anon_sym_GT_LPAREN] = ACTIONS(3394), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3344), - [sym_word] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(3344), - [anon_sym_LF] = ACTIONS(3344), - [anon_sym_AMP] = ACTIONS(3344), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3394), + [sym_word] = ACTIONS(3394), + [anon_sym_SEMI] = ACTIONS(3394), + [anon_sym_LF] = ACTIONS(3394), + [anon_sym_AMP] = ACTIONS(3394), }, [4274] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8706), + [sym_regex_without_right_brace] = ACTIONS(8786), }, [4275] = { [sym_concatenation] = STATE(451), @@ -104225,53 +104620,53 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8708), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8788), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4276] = { - [sym__concat] = ACTIONS(3350), - [anon_sym_esac] = ACTIONS(3352), - [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__concat] = ACTIONS(3400), + [anon_sym_esac] = ACTIONS(3402), + [anon_sym_PIPE] = ACTIONS(3402), + [anon_sym_SEMI_SEMI] = ACTIONS(3402), + [anon_sym_PIPE_AMP] = ACTIONS(3402), + [anon_sym_AMP_AMP] = ACTIONS(3402), + [anon_sym_PIPE_PIPE] = ACTIONS(3402), + [sym__special_characters] = ACTIONS(3402), + [anon_sym_DQUOTE] = ACTIONS(3402), + [anon_sym_DOLLAR] = ACTIONS(3402), + [sym_raw_string] = ACTIONS(3402), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3402), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3402), + [anon_sym_BQUOTE] = ACTIONS(3402), + [anon_sym_LT_LPAREN] = ACTIONS(3402), + [anon_sym_GT_LPAREN] = ACTIONS(3402), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3352), - [sym_word] = ACTIONS(3352), - [anon_sym_SEMI] = ACTIONS(3352), - [anon_sym_LF] = ACTIONS(3352), - [anon_sym_AMP] = ACTIONS(3352), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3402), + [sym_word] = ACTIONS(3402), + [anon_sym_SEMI] = ACTIONS(3402), + [anon_sym_LF] = ACTIONS(3402), + [anon_sym_AMP] = ACTIONS(3402), }, [4277] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8710), + [sym_regex_without_right_brace] = ACTIONS(8790), }, [4278] = { [sym_concatenation] = STATE(451), @@ -104282,29 +104677,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8712), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8792), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4279] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8714), + [sym_regex_without_right_brace] = ACTIONS(8794), }, [4280] = { [sym_concatenation] = STATE(451), @@ -104315,25 +104710,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8696), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8776), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4281] = { [sym_concatenation] = STATE(451), @@ -104344,49 +104739,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(4434), - [anon_sym_RBRACE] = ACTIONS(8716), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8796), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4282] = { - [sym__concat] = ACTIONS(3362), - [anon_sym_esac] = ACTIONS(3364), - [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__concat] = ACTIONS(3412), + [anon_sym_esac] = ACTIONS(3414), + [anon_sym_PIPE] = ACTIONS(3414), + [anon_sym_SEMI_SEMI] = ACTIONS(3414), + [anon_sym_PIPE_AMP] = ACTIONS(3414), + [anon_sym_AMP_AMP] = ACTIONS(3414), + [anon_sym_PIPE_PIPE] = ACTIONS(3414), + [sym__special_characters] = ACTIONS(3414), + [anon_sym_DQUOTE] = ACTIONS(3414), + [anon_sym_DOLLAR] = ACTIONS(3414), + [sym_raw_string] = ACTIONS(3414), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3414), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3414), + [anon_sym_BQUOTE] = ACTIONS(3414), + [anon_sym_LT_LPAREN] = ACTIONS(3414), + [anon_sym_GT_LPAREN] = ACTIONS(3414), [sym_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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3414), + [sym_word] = ACTIONS(3414), + [anon_sym_SEMI] = ACTIONS(3414), + [anon_sym_LF] = ACTIONS(3414), + [anon_sym_AMP] = ACTIONS(3414), }, [4283] = { [sym_concatenation] = STATE(451), @@ -104397,130 +104792,133 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(4436), - [anon_sym_RBRACE] = ACTIONS(8718), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8798), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4284] = { - [sym_file_descriptor] = ACTIONS(4728), - [sym__concat] = ACTIONS(4728), - [anon_sym_esac] = ACTIONS(4730), - [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_file_descriptor] = ACTIONS(4790), + [sym__concat] = ACTIONS(4790), + [anon_sym_esac] = ACTIONS(4792), + [anon_sym_PIPE] = ACTIONS(4792), + [anon_sym_SEMI_SEMI] = ACTIONS(4792), + [anon_sym_PIPE_AMP] = ACTIONS(4792), + [anon_sym_AMP_AMP] = ACTIONS(4792), + [anon_sym_PIPE_PIPE] = ACTIONS(4792), + [anon_sym_EQ_TILDE] = ACTIONS(4792), + [anon_sym_EQ_EQ] = ACTIONS(4792), + [anon_sym_LT] = ACTIONS(4792), + [anon_sym_GT] = ACTIONS(4792), + [anon_sym_GT_GT] = ACTIONS(4792), + [anon_sym_AMP_GT] = ACTIONS(4792), + [anon_sym_AMP_GT_GT] = ACTIONS(4792), + [anon_sym_LT_AMP] = ACTIONS(4792), + [anon_sym_GT_AMP] = ACTIONS(4792), + [anon_sym_LT_LT] = ACTIONS(4792), + [anon_sym_LT_LT_DASH] = ACTIONS(4792), + [anon_sym_LT_LT_LT] = ACTIONS(4792), + [sym__special_characters] = ACTIONS(4792), + [anon_sym_DQUOTE] = ACTIONS(4792), + [anon_sym_DOLLAR] = ACTIONS(4792), + [sym_raw_string] = ACTIONS(4792), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4792), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4792), + [anon_sym_BQUOTE] = ACTIONS(4792), + [anon_sym_LT_LPAREN] = ACTIONS(4792), + [anon_sym_GT_LPAREN] = ACTIONS(4792), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4730), - [anon_sym_SEMI] = ACTIONS(4730), - [anon_sym_LF] = ACTIONS(4730), - [anon_sym_AMP] = ACTIONS(4730), + [sym_word] = ACTIONS(4792), + [anon_sym_SEMI] = ACTIONS(4792), + [anon_sym_LF] = ACTIONS(4792), + [anon_sym_AMP] = ACTIONS(4792), }, [4285] = { - [sym_file_descriptor] = ACTIONS(4734), - [sym__concat] = ACTIONS(4734), - [anon_sym_esac] = ACTIONS(4736), - [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_file_descriptor] = ACTIONS(4796), + [sym__concat] = ACTIONS(4796), + [anon_sym_esac] = ACTIONS(4798), + [anon_sym_PIPE] = ACTIONS(4798), + [anon_sym_SEMI_SEMI] = ACTIONS(4798), + [anon_sym_PIPE_AMP] = ACTIONS(4798), + [anon_sym_AMP_AMP] = ACTIONS(4798), + [anon_sym_PIPE_PIPE] = ACTIONS(4798), + [anon_sym_EQ_TILDE] = ACTIONS(4798), + [anon_sym_EQ_EQ] = ACTIONS(4798), + [anon_sym_LT] = ACTIONS(4798), + [anon_sym_GT] = ACTIONS(4798), + [anon_sym_GT_GT] = ACTIONS(4798), + [anon_sym_AMP_GT] = ACTIONS(4798), + [anon_sym_AMP_GT_GT] = ACTIONS(4798), + [anon_sym_LT_AMP] = ACTIONS(4798), + [anon_sym_GT_AMP] = ACTIONS(4798), + [anon_sym_LT_LT] = ACTIONS(4798), + [anon_sym_LT_LT_DASH] = ACTIONS(4798), + [anon_sym_LT_LT_LT] = ACTIONS(4798), + [sym__special_characters] = ACTIONS(4798), + [anon_sym_DQUOTE] = ACTIONS(4798), + [anon_sym_DOLLAR] = ACTIONS(4798), + [sym_raw_string] = ACTIONS(4798), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4798), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4798), + [anon_sym_BQUOTE] = ACTIONS(4798), + [anon_sym_LT_LPAREN] = ACTIONS(4798), + [anon_sym_GT_LPAREN] = ACTIONS(4798), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4736), - [anon_sym_SEMI] = ACTIONS(4736), - [anon_sym_LF] = ACTIONS(4736), - [anon_sym_AMP] = ACTIONS(4736), + [sym_word] = ACTIONS(4798), + [anon_sym_SEMI] = ACTIONS(4798), + [anon_sym_LF] = ACTIONS(4798), + [anon_sym_AMP] = ACTIONS(4798), }, [4286] = { - [sym_file_descriptor] = ACTIONS(4797), - [sym__concat] = ACTIONS(4797), - [anon_sym_esac] = ACTIONS(4799), - [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_file_descriptor] = ACTIONS(4859), + [sym__concat] = ACTIONS(4859), + [anon_sym_esac] = ACTIONS(4861), + [anon_sym_PIPE] = ACTIONS(4861), + [anon_sym_SEMI_SEMI] = ACTIONS(4861), + [anon_sym_PIPE_AMP] = ACTIONS(4861), + [anon_sym_AMP_AMP] = ACTIONS(4861), + [anon_sym_PIPE_PIPE] = ACTIONS(4861), + [anon_sym_EQ_TILDE] = ACTIONS(4861), + [anon_sym_EQ_EQ] = ACTIONS(4861), + [anon_sym_LT] = ACTIONS(4861), + [anon_sym_GT] = ACTIONS(4861), + [anon_sym_GT_GT] = ACTIONS(4861), + [anon_sym_AMP_GT] = ACTIONS(4861), + [anon_sym_AMP_GT_GT] = ACTIONS(4861), + [anon_sym_LT_AMP] = ACTIONS(4861), + [anon_sym_GT_AMP] = ACTIONS(4861), + [anon_sym_LT_LT] = ACTIONS(4861), + [anon_sym_LT_LT_DASH] = ACTIONS(4861), + [anon_sym_LT_LT_LT] = ACTIONS(4861), + [sym__special_characters] = ACTIONS(4861), + [anon_sym_DQUOTE] = ACTIONS(4861), + [anon_sym_DOLLAR] = ACTIONS(4861), + [sym_raw_string] = ACTIONS(4861), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4861), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4861), + [anon_sym_BQUOTE] = ACTIONS(4861), + [anon_sym_LT_LPAREN] = ACTIONS(4861), + [anon_sym_GT_LPAREN] = ACTIONS(4861), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4799), - [anon_sym_SEMI] = ACTIONS(4799), - [anon_sym_LF] = ACTIONS(4799), - [anon_sym_AMP] = ACTIONS(4799), + [sym_word] = ACTIONS(4861), + [anon_sym_SEMI] = ACTIONS(4861), + [anon_sym_LF] = ACTIONS(4861), + [anon_sym_AMP] = ACTIONS(4861), }, [4287] = { [sym_concatenation] = STATE(451), @@ -104531,40 +104929,40 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8720), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8800), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4288] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(8722), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(8802), [sym_comment] = ACTIONS(56), }, [4289] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(8724), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(8804), [sym_comment] = ACTIONS(56), }, [4290] = { - [anon_sym_RBRACE] = ACTIONS(8724), + [anon_sym_RBRACE] = ACTIONS(8804), [sym_comment] = ACTIONS(56), }, [4291] = { @@ -104576,60 +104974,61 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(4441), - [anon_sym_RBRACE] = ACTIONS(8726), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8806), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4292] = { - [sym_file_descriptor] = ACTIONS(4809), - [sym__concat] = ACTIONS(4809), - [anon_sym_esac] = ACTIONS(4811), - [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_file_descriptor] = ACTIONS(4871), + [sym__concat] = ACTIONS(4871), + [anon_sym_esac] = ACTIONS(4873), + [anon_sym_PIPE] = ACTIONS(4873), + [anon_sym_SEMI_SEMI] = ACTIONS(4873), + [anon_sym_PIPE_AMP] = ACTIONS(4873), + [anon_sym_AMP_AMP] = ACTIONS(4873), + [anon_sym_PIPE_PIPE] = ACTIONS(4873), + [anon_sym_EQ_TILDE] = ACTIONS(4873), + [anon_sym_EQ_EQ] = ACTIONS(4873), + [anon_sym_LT] = ACTIONS(4873), + [anon_sym_GT] = ACTIONS(4873), + [anon_sym_GT_GT] = ACTIONS(4873), + [anon_sym_AMP_GT] = ACTIONS(4873), + [anon_sym_AMP_GT_GT] = ACTIONS(4873), + [anon_sym_LT_AMP] = ACTIONS(4873), + [anon_sym_GT_AMP] = ACTIONS(4873), + [anon_sym_LT_LT] = ACTIONS(4873), + [anon_sym_LT_LT_DASH] = ACTIONS(4873), + [anon_sym_LT_LT_LT] = ACTIONS(4873), + [sym__special_characters] = ACTIONS(4873), + [anon_sym_DQUOTE] = ACTIONS(4873), + [anon_sym_DOLLAR] = ACTIONS(4873), + [sym_raw_string] = ACTIONS(4873), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4873), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4873), + [anon_sym_BQUOTE] = ACTIONS(4873), + [anon_sym_LT_LPAREN] = ACTIONS(4873), + [anon_sym_GT_LPAREN] = ACTIONS(4873), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4811), - [anon_sym_SEMI] = ACTIONS(4811), - [anon_sym_LF] = ACTIONS(4811), - [anon_sym_AMP] = ACTIONS(4811), + [sym_word] = ACTIONS(4873), + [anon_sym_SEMI] = ACTIONS(4873), + [anon_sym_LF] = ACTIONS(4873), + [anon_sym_AMP] = ACTIONS(4873), }, [4293] = { [sym_concatenation] = STATE(451), @@ -104640,60 +105039,61 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(4443), - [anon_sym_RBRACE] = ACTIONS(8728), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8808), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4294] = { - [sym_file_descriptor] = ACTIONS(4815), - [sym__concat] = ACTIONS(4815), - [anon_sym_esac] = ACTIONS(4817), - [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_file_descriptor] = ACTIONS(4877), + [sym__concat] = ACTIONS(4877), + [anon_sym_esac] = ACTIONS(4879), + [anon_sym_PIPE] = ACTIONS(4879), + [anon_sym_SEMI_SEMI] = ACTIONS(4879), + [anon_sym_PIPE_AMP] = ACTIONS(4879), + [anon_sym_AMP_AMP] = ACTIONS(4879), + [anon_sym_PIPE_PIPE] = ACTIONS(4879), + [anon_sym_EQ_TILDE] = ACTIONS(4879), + [anon_sym_EQ_EQ] = ACTIONS(4879), + [anon_sym_LT] = ACTIONS(4879), + [anon_sym_GT] = ACTIONS(4879), + [anon_sym_GT_GT] = ACTIONS(4879), + [anon_sym_AMP_GT] = ACTIONS(4879), + [anon_sym_AMP_GT_GT] = ACTIONS(4879), + [anon_sym_LT_AMP] = ACTIONS(4879), + [anon_sym_GT_AMP] = ACTIONS(4879), + [anon_sym_LT_LT] = ACTIONS(4879), + [anon_sym_LT_LT_DASH] = ACTIONS(4879), + [anon_sym_LT_LT_LT] = ACTIONS(4879), + [sym__special_characters] = ACTIONS(4879), + [anon_sym_DQUOTE] = ACTIONS(4879), + [anon_sym_DOLLAR] = ACTIONS(4879), + [sym_raw_string] = ACTIONS(4879), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4879), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4879), + [anon_sym_BQUOTE] = ACTIONS(4879), + [anon_sym_LT_LPAREN] = ACTIONS(4879), + [anon_sym_GT_LPAREN] = ACTIONS(4879), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4817), - [anon_sym_SEMI] = ACTIONS(4817), - [anon_sym_LF] = ACTIONS(4817), - [anon_sym_AMP] = ACTIONS(4817), + [sym_word] = ACTIONS(4879), + [anon_sym_SEMI] = ACTIONS(4879), + [anon_sym_LF] = ACTIONS(4879), + [anon_sym_AMP] = ACTIONS(4879), }, [4295] = { [sym_concatenation] = STATE(451), @@ -104704,60 +105104,61 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(4445), - [anon_sym_RBRACE] = ACTIONS(8730), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8810), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4296] = { - [sym_file_descriptor] = ACTIONS(4821), - [sym__concat] = ACTIONS(4821), - [anon_sym_esac] = ACTIONS(4823), - [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_file_descriptor] = ACTIONS(4883), + [sym__concat] = ACTIONS(4883), + [anon_sym_esac] = ACTIONS(4885), + [anon_sym_PIPE] = ACTIONS(4885), + [anon_sym_SEMI_SEMI] = ACTIONS(4885), + [anon_sym_PIPE_AMP] = ACTIONS(4885), + [anon_sym_AMP_AMP] = ACTIONS(4885), + [anon_sym_PIPE_PIPE] = ACTIONS(4885), + [anon_sym_EQ_TILDE] = ACTIONS(4885), + [anon_sym_EQ_EQ] = ACTIONS(4885), + [anon_sym_LT] = ACTIONS(4885), + [anon_sym_GT] = ACTIONS(4885), + [anon_sym_GT_GT] = ACTIONS(4885), + [anon_sym_AMP_GT] = ACTIONS(4885), + [anon_sym_AMP_GT_GT] = ACTIONS(4885), + [anon_sym_LT_AMP] = ACTIONS(4885), + [anon_sym_GT_AMP] = ACTIONS(4885), + [anon_sym_LT_LT] = ACTIONS(4885), + [anon_sym_LT_LT_DASH] = ACTIONS(4885), + [anon_sym_LT_LT_LT] = ACTIONS(4885), + [sym__special_characters] = ACTIONS(4885), + [anon_sym_DQUOTE] = ACTIONS(4885), + [anon_sym_DOLLAR] = ACTIONS(4885), + [sym_raw_string] = ACTIONS(4885), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4885), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4885), + [anon_sym_BQUOTE] = ACTIONS(4885), + [anon_sym_LT_LPAREN] = ACTIONS(4885), + [anon_sym_GT_LPAREN] = ACTIONS(4885), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4823), - [anon_sym_SEMI] = ACTIONS(4823), - [anon_sym_LF] = ACTIONS(4823), - [anon_sym_AMP] = ACTIONS(4823), + [sym_word] = ACTIONS(4885), + [anon_sym_SEMI] = ACTIONS(4885), + [anon_sym_LF] = ACTIONS(4885), + [anon_sym_AMP] = ACTIONS(4885), }, [4297] = { [sym_concatenation] = STATE(451), @@ -104768,60 +105169,61 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8732), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8812), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4298] = { - [sym_file_descriptor] = ACTIONS(4827), - [sym__concat] = ACTIONS(4827), - [anon_sym_esac] = ACTIONS(4829), - [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_file_descriptor] = ACTIONS(4889), + [sym__concat] = ACTIONS(4889), + [anon_sym_esac] = ACTIONS(4891), + [anon_sym_PIPE] = ACTIONS(4891), + [anon_sym_SEMI_SEMI] = ACTIONS(4891), + [anon_sym_PIPE_AMP] = ACTIONS(4891), + [anon_sym_AMP_AMP] = ACTIONS(4891), + [anon_sym_PIPE_PIPE] = ACTIONS(4891), + [anon_sym_EQ_TILDE] = ACTIONS(4891), + [anon_sym_EQ_EQ] = ACTIONS(4891), + [anon_sym_LT] = ACTIONS(4891), + [anon_sym_GT] = ACTIONS(4891), + [anon_sym_GT_GT] = ACTIONS(4891), + [anon_sym_AMP_GT] = ACTIONS(4891), + [anon_sym_AMP_GT_GT] = ACTIONS(4891), + [anon_sym_LT_AMP] = ACTIONS(4891), + [anon_sym_GT_AMP] = ACTIONS(4891), + [anon_sym_LT_LT] = ACTIONS(4891), + [anon_sym_LT_LT_DASH] = ACTIONS(4891), + [anon_sym_LT_LT_LT] = ACTIONS(4891), + [sym__special_characters] = ACTIONS(4891), + [anon_sym_DQUOTE] = ACTIONS(4891), + [anon_sym_DOLLAR] = ACTIONS(4891), + [sym_raw_string] = ACTIONS(4891), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4891), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4891), + [anon_sym_BQUOTE] = ACTIONS(4891), + [anon_sym_LT_LPAREN] = ACTIONS(4891), + [anon_sym_GT_LPAREN] = ACTIONS(4891), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4829), - [anon_sym_SEMI] = ACTIONS(4829), - [anon_sym_LF] = ACTIONS(4829), - [anon_sym_AMP] = ACTIONS(4829), + [sym_word] = ACTIONS(4891), + [anon_sym_SEMI] = ACTIONS(4891), + [anon_sym_LF] = ACTIONS(4891), + [anon_sym_AMP] = ACTIONS(4891), }, [4299] = { [sym_concatenation] = STATE(451), @@ -104832,98 +105234,98 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8734), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8814), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4300] = { - [sym_file_descriptor] = ACTIONS(1858), - [sym__concat] = ACTIONS(1858), - [anon_sym_esac] = ACTIONS(1860), - [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_file_descriptor] = ACTIONS(1886), + [sym__concat] = ACTIONS(1886), + [anon_sym_esac] = ACTIONS(1888), + [anon_sym_PIPE] = ACTIONS(1888), + [anon_sym_SEMI_SEMI] = ACTIONS(1888), + [anon_sym_PIPE_AMP] = ACTIONS(1888), + [anon_sym_AMP_AMP] = ACTIONS(1888), + [anon_sym_PIPE_PIPE] = ACTIONS(1888), + [anon_sym_LT] = ACTIONS(1888), + [anon_sym_GT] = ACTIONS(1888), + [anon_sym_GT_GT] = ACTIONS(1888), + [anon_sym_AMP_GT] = ACTIONS(1888), + [anon_sym_AMP_GT_GT] = ACTIONS(1888), + [anon_sym_LT_AMP] = ACTIONS(1888), + [anon_sym_GT_AMP] = ACTIONS(1888), + [anon_sym_LT_LT] = ACTIONS(1888), + [anon_sym_LT_LT_DASH] = ACTIONS(1888), + [anon_sym_LT_LT_LT] = ACTIONS(1888), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1860), - [anon_sym_LF] = ACTIONS(1860), - [anon_sym_AMP] = ACTIONS(1860), + [anon_sym_SEMI] = ACTIONS(1888), + [anon_sym_LF] = ACTIONS(1888), + [anon_sym_AMP] = ACTIONS(1888), }, [4301] = { [aux_sym_concatenation_repeat1] = STATE(4301), - [sym_file_descriptor] = ACTIONS(1858), - [sym__concat] = ACTIONS(8736), - [anon_sym_esac] = ACTIONS(1860), - [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_file_descriptor] = ACTIONS(1886), + [sym__concat] = ACTIONS(8816), + [anon_sym_esac] = ACTIONS(1888), + [anon_sym_PIPE] = ACTIONS(1888), + [anon_sym_SEMI_SEMI] = ACTIONS(1888), + [anon_sym_PIPE_AMP] = ACTIONS(1888), + [anon_sym_AMP_AMP] = ACTIONS(1888), + [anon_sym_PIPE_PIPE] = ACTIONS(1888), + [anon_sym_LT] = ACTIONS(1888), + [anon_sym_GT] = ACTIONS(1888), + [anon_sym_GT_GT] = ACTIONS(1888), + [anon_sym_AMP_GT] = ACTIONS(1888), + [anon_sym_AMP_GT_GT] = ACTIONS(1888), + [anon_sym_LT_AMP] = ACTIONS(1888), + [anon_sym_GT_AMP] = ACTIONS(1888), + [anon_sym_LT_LT] = ACTIONS(1888), + [anon_sym_LT_LT_DASH] = ACTIONS(1888), + [anon_sym_LT_LT_LT] = ACTIONS(1888), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1860), - [anon_sym_LF] = ACTIONS(1860), - [anon_sym_AMP] = ACTIONS(1860), + [anon_sym_SEMI] = ACTIONS(1888), + [anon_sym_LF] = ACTIONS(1888), + [anon_sym_AMP] = ACTIONS(1888), }, [4302] = { - [sym_file_descriptor] = ACTIONS(1895), - [sym__concat] = ACTIONS(1895), - [anon_sym_esac] = ACTIONS(1897), - [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_file_descriptor] = ACTIONS(1923), + [sym__concat] = ACTIONS(1923), + [anon_sym_esac] = ACTIONS(1925), + [anon_sym_PIPE] = ACTIONS(1925), + [anon_sym_SEMI_SEMI] = ACTIONS(1925), + [anon_sym_PIPE_AMP] = ACTIONS(1925), + [anon_sym_AMP_AMP] = ACTIONS(1925), + [anon_sym_PIPE_PIPE] = ACTIONS(1925), + [anon_sym_LT] = ACTIONS(1925), + [anon_sym_GT] = ACTIONS(1925), + [anon_sym_GT_GT] = ACTIONS(1925), + [anon_sym_AMP_GT] = ACTIONS(1925), + [anon_sym_AMP_GT_GT] = ACTIONS(1925), + [anon_sym_LT_AMP] = ACTIONS(1925), + [anon_sym_GT_AMP] = ACTIONS(1925), + [anon_sym_LT_LT] = ACTIONS(1925), + [anon_sym_LT_LT_DASH] = ACTIONS(1925), + [anon_sym_LT_LT_LT] = ACTIONS(1925), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1897), - [anon_sym_LF] = ACTIONS(1897), - [anon_sym_AMP] = ACTIONS(1897), + [anon_sym_SEMI] = ACTIONS(1925), + [anon_sym_LF] = ACTIONS(1925), + [anon_sym_AMP] = ACTIONS(1925), }, [4303] = { [sym_concatenation] = STATE(4451), @@ -104933,46 +105335,46 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(4450), [sym_command_substitution] = STATE(4450), [sym_process_substitution] = STATE(4450), - [anon_sym_RBRACE] = ACTIONS(8739), - [sym__special_characters] = ACTIONS(8741), - [anon_sym_DQUOTE] = ACTIONS(1924), - [anon_sym_DOLLAR] = ACTIONS(1926), - [sym_raw_string] = ACTIONS(8743), - [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), + [anon_sym_RBRACE] = ACTIONS(8819), + [sym__special_characters] = ACTIONS(8821), + [anon_sym_DQUOTE] = ACTIONS(1952), + [anon_sym_DOLLAR] = ACTIONS(1954), + [sym_raw_string] = ACTIONS(8823), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), + [anon_sym_BQUOTE] = ACTIONS(1962), + [anon_sym_LT_LPAREN] = ACTIONS(1964), + [anon_sym_GT_LPAREN] = ACTIONS(1964), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(8745), + [sym_word] = ACTIONS(8825), }, [4304] = { - [sym_file_descriptor] = ACTIONS(1940), - [sym__concat] = ACTIONS(1940), - [anon_sym_esac] = ACTIONS(1942), - [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_file_descriptor] = ACTIONS(1968), + [sym__concat] = ACTIONS(1968), + [anon_sym_esac] = ACTIONS(1970), + [anon_sym_PIPE] = ACTIONS(1970), + [anon_sym_SEMI_SEMI] = ACTIONS(1970), + [anon_sym_PIPE_AMP] = ACTIONS(1970), + [anon_sym_AMP_AMP] = ACTIONS(1970), + [anon_sym_PIPE_PIPE] = ACTIONS(1970), + [anon_sym_LT] = ACTIONS(1970), + [anon_sym_GT] = ACTIONS(1970), + [anon_sym_GT_GT] = ACTIONS(1970), + [anon_sym_AMP_GT] = ACTIONS(1970), + [anon_sym_AMP_GT_GT] = ACTIONS(1970), + [anon_sym_LT_AMP] = ACTIONS(1970), + [anon_sym_GT_AMP] = ACTIONS(1970), + [anon_sym_LT_LT] = ACTIONS(1970), + [anon_sym_LT_LT_DASH] = ACTIONS(1970), + [anon_sym_LT_LT_LT] = ACTIONS(1970), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1942), - [anon_sym_LF] = ACTIONS(1942), - [anon_sym_AMP] = ACTIONS(1942), + [anon_sym_SEMI] = ACTIONS(1970), + [anon_sym_LF] = ACTIONS(1970), + [anon_sym_AMP] = ACTIONS(1970), }, [4305] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8747), + [sym_regex_without_right_brace] = ACTIONS(8827), }, [4306] = { [sym_concatenation] = STATE(451), @@ -104983,29 +105385,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8749), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8829), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4307] = { - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(8751), + [anon_sym_LBRACK] = ACTIONS(836), + [anon_sym_EQ] = ACTIONS(8831), [sym_comment] = ACTIONS(56), }, [4308] = { @@ -105017,26 +105419,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(4457), - [anon_sym_RBRACE] = ACTIONS(8753), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_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(8755), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8833), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(8835), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4309] = { [sym_concatenation] = STATE(451), @@ -105047,26 +105449,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(4460), - [anon_sym_RBRACE] = ACTIONS(8757), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_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(8759), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8837), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(8839), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4310] = { [sym_concatenation] = STATE(451), @@ -105077,54 +105479,54 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(4462), - [anon_sym_RBRACE] = ACTIONS(8739), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_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(8761), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8819), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(8841), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4311] = { - [sym_file_descriptor] = ACTIONS(1992), - [sym__concat] = ACTIONS(1992), - [anon_sym_esac] = ACTIONS(1994), - [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_file_descriptor] = ACTIONS(2022), + [sym__concat] = ACTIONS(2022), + [anon_sym_esac] = ACTIONS(2024), + [anon_sym_PIPE] = ACTIONS(2024), + [anon_sym_SEMI_SEMI] = ACTIONS(2024), + [anon_sym_PIPE_AMP] = ACTIONS(2024), + [anon_sym_AMP_AMP] = ACTIONS(2024), + [anon_sym_PIPE_PIPE] = ACTIONS(2024), + [anon_sym_LT] = ACTIONS(2024), + [anon_sym_GT] = ACTIONS(2024), + [anon_sym_GT_GT] = ACTIONS(2024), + [anon_sym_AMP_GT] = ACTIONS(2024), + [anon_sym_AMP_GT_GT] = ACTIONS(2024), + [anon_sym_LT_AMP] = ACTIONS(2024), + [anon_sym_GT_AMP] = ACTIONS(2024), + [anon_sym_LT_LT] = ACTIONS(2024), + [anon_sym_LT_LT_DASH] = ACTIONS(2024), + [anon_sym_LT_LT_LT] = ACTIONS(2024), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1994), - [anon_sym_LF] = ACTIONS(1994), - [anon_sym_AMP] = ACTIONS(1994), + [anon_sym_SEMI] = ACTIONS(2024), + [anon_sym_LF] = ACTIONS(2024), + [anon_sym_AMP] = ACTIONS(2024), }, [4312] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8763), + [sym_regex_without_right_brace] = ACTIONS(8843), }, [4313] = { [sym_concatenation] = STATE(451), @@ -105135,53 +105537,53 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8765), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8845), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4314] = { - [sym_file_descriptor] = ACTIONS(2000), - [sym__concat] = ACTIONS(2000), - [anon_sym_esac] = ACTIONS(2002), - [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_file_descriptor] = ACTIONS(2030), + [sym__concat] = ACTIONS(2030), + [anon_sym_esac] = ACTIONS(2032), + [anon_sym_PIPE] = ACTIONS(2032), + [anon_sym_SEMI_SEMI] = ACTIONS(2032), + [anon_sym_PIPE_AMP] = ACTIONS(2032), + [anon_sym_AMP_AMP] = ACTIONS(2032), + [anon_sym_PIPE_PIPE] = ACTIONS(2032), + [anon_sym_LT] = ACTIONS(2032), + [anon_sym_GT] = ACTIONS(2032), + [anon_sym_GT_GT] = ACTIONS(2032), + [anon_sym_AMP_GT] = ACTIONS(2032), + [anon_sym_AMP_GT_GT] = ACTIONS(2032), + [anon_sym_LT_AMP] = ACTIONS(2032), + [anon_sym_GT_AMP] = ACTIONS(2032), + [anon_sym_LT_LT] = ACTIONS(2032), + [anon_sym_LT_LT_DASH] = ACTIONS(2032), + [anon_sym_LT_LT_LT] = ACTIONS(2032), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2002), - [anon_sym_LF] = ACTIONS(2002), - [anon_sym_AMP] = ACTIONS(2002), + [anon_sym_SEMI] = ACTIONS(2032), + [anon_sym_LF] = ACTIONS(2032), + [anon_sym_AMP] = ACTIONS(2032), }, [4315] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8767), + [sym_regex_without_right_brace] = ACTIONS(8847), }, [4316] = { [sym_concatenation] = STATE(451), @@ -105192,363 +105594,363 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8739), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8819), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4317] = { - [sym_file_descriptor] = ACTIONS(2156), - [sym__concat] = ACTIONS(2156), - [anon_sym_esac] = ACTIONS(2158), - [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_file_descriptor] = ACTIONS(2190), + [sym__concat] = ACTIONS(2190), + [anon_sym_esac] = ACTIONS(2192), + [anon_sym_PIPE] = ACTIONS(2192), + [anon_sym_SEMI_SEMI] = ACTIONS(2192), + [anon_sym_PIPE_AMP] = ACTIONS(2192), + [anon_sym_AMP_AMP] = ACTIONS(2192), + [anon_sym_PIPE_PIPE] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(2192), + [anon_sym_GT] = ACTIONS(2192), + [anon_sym_GT_GT] = ACTIONS(2192), + [anon_sym_AMP_GT] = ACTIONS(2192), + [anon_sym_AMP_GT_GT] = ACTIONS(2192), + [anon_sym_LT_AMP] = ACTIONS(2192), + [anon_sym_GT_AMP] = ACTIONS(2192), + [anon_sym_LT_LT] = ACTIONS(2192), + [anon_sym_LT_LT_DASH] = ACTIONS(2192), + [anon_sym_LT_LT_LT] = ACTIONS(2192), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2158), - [anon_sym_LF] = ACTIONS(2158), - [anon_sym_AMP] = ACTIONS(2158), + [anon_sym_SEMI] = ACTIONS(2192), + [anon_sym_LF] = ACTIONS(2192), + [anon_sym_AMP] = ACTIONS(2192), }, [4318] = { - [sym_file_descriptor] = ACTIONS(2358), - [sym__concat] = ACTIONS(2358), - [anon_sym_esac] = ACTIONS(2360), - [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_file_descriptor] = ACTIONS(2396), + [sym__concat] = ACTIONS(2396), + [anon_sym_esac] = ACTIONS(2398), + [anon_sym_PIPE] = ACTIONS(2398), + [anon_sym_SEMI_SEMI] = ACTIONS(2398), + [anon_sym_PIPE_AMP] = ACTIONS(2398), + [anon_sym_AMP_AMP] = ACTIONS(2398), + [anon_sym_PIPE_PIPE] = ACTIONS(2398), + [anon_sym_LT] = ACTIONS(2398), + [anon_sym_GT] = ACTIONS(2398), + [anon_sym_GT_GT] = ACTIONS(2398), + [anon_sym_AMP_GT] = ACTIONS(2398), + [anon_sym_AMP_GT_GT] = ACTIONS(2398), + [anon_sym_LT_AMP] = ACTIONS(2398), + [anon_sym_GT_AMP] = ACTIONS(2398), + [anon_sym_LT_LT] = ACTIONS(2398), + [anon_sym_LT_LT_DASH] = ACTIONS(2398), + [anon_sym_LT_LT_LT] = ACTIONS(2398), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2360), - [anon_sym_LF] = ACTIONS(2360), - [anon_sym_AMP] = ACTIONS(2360), + [anon_sym_SEMI] = ACTIONS(2398), + [anon_sym_LF] = ACTIONS(2398), + [anon_sym_AMP] = ACTIONS(2398), }, [4319] = { - [sym__concat] = ACTIONS(6948), - [anon_sym_PIPE] = ACTIONS(6948), - [anon_sym_RPAREN] = ACTIONS(6948), + [sym__concat] = ACTIONS(7018), + [anon_sym_PIPE] = ACTIONS(7018), + [anon_sym_RPAREN] = ACTIONS(7018), [sym_comment] = ACTIONS(56), }, [4320] = { - [sym__concat] = ACTIONS(6952), - [anon_sym_PIPE] = ACTIONS(6952), - [anon_sym_RPAREN] = ACTIONS(6952), + [sym__concat] = ACTIONS(7022), + [anon_sym_PIPE] = ACTIONS(7022), + [anon_sym_RPAREN] = ACTIONS(7022), [sym_comment] = ACTIONS(56), }, [4321] = { - [sym__concat] = ACTIONS(6956), - [anon_sym_PIPE] = ACTIONS(6956), - [anon_sym_RPAREN] = ACTIONS(6956), + [sym__concat] = ACTIONS(7026), + [anon_sym_PIPE] = ACTIONS(7026), + [anon_sym_RPAREN] = ACTIONS(7026), [sym_comment] = ACTIONS(56), }, [4322] = { - [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_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(8145), - [anon_sym_DQUOTE] = ACTIONS(8147), - [anon_sym_DOLLAR] = ACTIONS(8149), - [sym_raw_string] = ACTIONS(8147), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(8147), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(8147), - [anon_sym_BQUOTE] = ACTIONS(8147), - [anon_sym_LT_LPAREN] = ACTIONS(8147), - [anon_sym_GT_LPAREN] = ACTIONS(8147), + [sym_file_descriptor] = ACTIONS(1100), + [sym_variable_name] = ACTIONS(1100), + [anon_sym_for] = ACTIONS(1102), + [anon_sym_while] = ACTIONS(1102), + [anon_sym_if] = ACTIONS(1102), + [anon_sym_case] = ACTIONS(1102), + [anon_sym_SEMI_SEMI] = ACTIONS(1100), + [anon_sym_function] = ACTIONS(1102), + [anon_sym_LPAREN] = ACTIONS(1100), + [anon_sym_LBRACK] = ACTIONS(1102), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1100), + [anon_sym_declare] = ACTIONS(1102), + [anon_sym_typeset] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(1102), + [anon_sym_readonly] = ACTIONS(1102), + [anon_sym_local] = ACTIONS(1102), + [anon_sym_unset] = ACTIONS(1102), + [anon_sym_unsetenv] = ACTIONS(1102), + [anon_sym_LT] = ACTIONS(1102), + [anon_sym_GT] = ACTIONS(1102), + [anon_sym_GT_GT] = ACTIONS(1100), + [anon_sym_AMP_GT] = ACTIONS(1102), + [anon_sym_AMP_GT_GT] = ACTIONS(1100), + [anon_sym_LT_AMP] = ACTIONS(1100), + [anon_sym_GT_AMP] = ACTIONS(1100), + [sym__special_characters] = ACTIONS(8223), + [anon_sym_DQUOTE] = ACTIONS(8225), + [anon_sym_DOLLAR] = ACTIONS(8227), + [sym_raw_string] = ACTIONS(8225), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8225), + [anon_sym_BQUOTE] = ACTIONS(8225), + [anon_sym_LT_LPAREN] = ACTIONS(8225), + [anon_sym_GT_LPAREN] = ACTIONS(8225), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(8145), + [sym_word] = ACTIONS(8223), }, [4323] = { - [sym__special_characters] = ACTIONS(8149), - [anon_sym_DQUOTE] = ACTIONS(8147), - [anon_sym_DOLLAR] = ACTIONS(8149), - [sym_raw_string] = ACTIONS(8147), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(8147), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(8147), - [anon_sym_BQUOTE] = ACTIONS(8147), - [anon_sym_LT_LPAREN] = ACTIONS(8147), - [anon_sym_GT_LPAREN] = ACTIONS(8147), + [sym__special_characters] = ACTIONS(8227), + [anon_sym_DQUOTE] = ACTIONS(8225), + [anon_sym_DOLLAR] = ACTIONS(8227), + [sym_raw_string] = ACTIONS(8225), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8225), + [anon_sym_BQUOTE] = ACTIONS(8225), + [anon_sym_LT_LPAREN] = ACTIONS(8225), + [anon_sym_GT_LPAREN] = ACTIONS(8225), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(8149), + [sym_word] = ACTIONS(8227), }, [4324] = { - [anon_sym_PIPE] = ACTIONS(344), - [anon_sym_SEMI_SEMI] = ACTIONS(8769), - [anon_sym_PIPE_AMP] = ACTIONS(344), - [anon_sym_AMP_AMP] = ACTIONS(348), - [anon_sym_PIPE_PIPE] = ACTIONS(348), + [anon_sym_PIPE] = ACTIONS(346), + [anon_sym_SEMI_SEMI] = ACTIONS(8849), + [anon_sym_PIPE_AMP] = ACTIONS(346), + [anon_sym_AMP_AMP] = ACTIONS(350), + [anon_sym_PIPE_PIPE] = ACTIONS(350), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(346), - [anon_sym_LF] = ACTIONS(346), - [anon_sym_AMP] = ACTIONS(346), + [anon_sym_SEMI] = ACTIONS(348), + [anon_sym_LF] = ACTIONS(348), + [anon_sym_AMP] = ACTIONS(348), }, [4325] = { - [sym_file_descriptor] = ACTIONS(378), - [sym_variable_name] = ACTIONS(378), - [anon_sym_PIPE] = ACTIONS(344), - [anon_sym_SEMI_SEMI] = ACTIONS(8769), - [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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(346), + [anon_sym_SEMI_SEMI] = ACTIONS(8849), + [anon_sym_PIPE_AMP] = ACTIONS(346), + [anon_sym_AMP_AMP] = ACTIONS(350), + [anon_sym_PIPE_PIPE] = ACTIONS(350), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(382), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(382), + [anon_sym_LT_AMP] = ACTIONS(382), + [anon_sym_GT_AMP] = ACTIONS(382), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(382), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(382), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(382), + [anon_sym_BQUOTE] = ACTIONS(382), + [anon_sym_LT_LPAREN] = ACTIONS(382), + [anon_sym_GT_LPAREN] = ACTIONS(382), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(380), - [anon_sym_SEMI] = ACTIONS(346), - [anon_sym_LF] = ACTIONS(346), - [anon_sym_AMP] = ACTIONS(346), + [sym_word] = ACTIONS(382), + [anon_sym_SEMI] = ACTIONS(348), + [anon_sym_LF] = ACTIONS(348), + [anon_sym_AMP] = ACTIONS(348), }, [4326] = { - [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_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(8157), - [anon_sym_DQUOTE] = ACTIONS(8159), - [anon_sym_DOLLAR] = ACTIONS(8161), - [sym_raw_string] = ACTIONS(8159), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(8159), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(8159), - [anon_sym_BQUOTE] = ACTIONS(8159), - [anon_sym_LT_LPAREN] = ACTIONS(8159), - [anon_sym_GT_LPAREN] = ACTIONS(8159), + [sym_file_descriptor] = ACTIONS(1100), + [sym_variable_name] = ACTIONS(1100), + [anon_sym_for] = ACTIONS(1102), + [anon_sym_while] = ACTIONS(1102), + [anon_sym_if] = ACTIONS(1102), + [anon_sym_case] = ACTIONS(1102), + [anon_sym_SEMI_SEMI] = ACTIONS(1100), + [anon_sym_function] = ACTIONS(1102), + [anon_sym_LPAREN] = ACTIONS(1100), + [anon_sym_LBRACK] = ACTIONS(1102), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1100), + [anon_sym_declare] = ACTIONS(1102), + [anon_sym_typeset] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(1102), + [anon_sym_readonly] = ACTIONS(1102), + [anon_sym_local] = ACTIONS(1102), + [anon_sym_unset] = ACTIONS(1102), + [anon_sym_unsetenv] = ACTIONS(1102), + [anon_sym_LT] = ACTIONS(1102), + [anon_sym_GT] = ACTIONS(1102), + [anon_sym_GT_GT] = ACTIONS(1100), + [anon_sym_AMP_GT] = ACTIONS(1102), + [anon_sym_AMP_GT_GT] = ACTIONS(1100), + [anon_sym_LT_AMP] = ACTIONS(1100), + [anon_sym_GT_AMP] = ACTIONS(1100), + [sym__special_characters] = ACTIONS(8235), + [anon_sym_DQUOTE] = ACTIONS(8237), + [anon_sym_DOLLAR] = ACTIONS(8239), + [sym_raw_string] = ACTIONS(8237), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8237), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8237), + [anon_sym_BQUOTE] = ACTIONS(8237), + [anon_sym_LT_LPAREN] = ACTIONS(8237), + [anon_sym_GT_LPAREN] = ACTIONS(8237), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(8157), + [sym_word] = ACTIONS(8235), }, [4327] = { - [sym__special_characters] = ACTIONS(8161), - [anon_sym_DQUOTE] = ACTIONS(8159), - [anon_sym_DOLLAR] = ACTIONS(8161), - [sym_raw_string] = ACTIONS(8159), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(8159), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(8159), - [anon_sym_BQUOTE] = ACTIONS(8159), - [anon_sym_LT_LPAREN] = ACTIONS(8159), - [anon_sym_GT_LPAREN] = ACTIONS(8159), + [sym__special_characters] = ACTIONS(8239), + [anon_sym_DQUOTE] = ACTIONS(8237), + [anon_sym_DOLLAR] = ACTIONS(8239), + [sym_raw_string] = ACTIONS(8237), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8237), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8237), + [anon_sym_BQUOTE] = ACTIONS(8237), + [anon_sym_LT_LPAREN] = ACTIONS(8237), + [anon_sym_GT_LPAREN] = ACTIONS(8237), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(8161), + [sym_word] = ACTIONS(8239), }, [4328] = { - [anon_sym_PIPE] = ACTIONS(344), - [anon_sym_SEMI_SEMI] = ACTIONS(8771), - [anon_sym_PIPE_AMP] = ACTIONS(344), - [anon_sym_AMP_AMP] = ACTIONS(348), - [anon_sym_PIPE_PIPE] = ACTIONS(348), + [anon_sym_PIPE] = ACTIONS(346), + [anon_sym_SEMI_SEMI] = ACTIONS(8851), + [anon_sym_PIPE_AMP] = ACTIONS(346), + [anon_sym_AMP_AMP] = ACTIONS(350), + [anon_sym_PIPE_PIPE] = ACTIONS(350), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(346), - [anon_sym_LF] = ACTIONS(346), - [anon_sym_AMP] = ACTIONS(346), + [anon_sym_SEMI] = ACTIONS(348), + [anon_sym_LF] = ACTIONS(348), + [anon_sym_AMP] = ACTIONS(348), }, [4329] = { - [sym_file_descriptor] = ACTIONS(378), - [sym_variable_name] = ACTIONS(378), - [anon_sym_PIPE] = ACTIONS(344), - [anon_sym_SEMI_SEMI] = ACTIONS(8771), - [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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(346), + [anon_sym_SEMI_SEMI] = ACTIONS(8851), + [anon_sym_PIPE_AMP] = ACTIONS(346), + [anon_sym_AMP_AMP] = ACTIONS(350), + [anon_sym_PIPE_PIPE] = ACTIONS(350), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(382), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(382), + [anon_sym_LT_AMP] = ACTIONS(382), + [anon_sym_GT_AMP] = ACTIONS(382), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(382), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(382), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(382), + [anon_sym_BQUOTE] = ACTIONS(382), + [anon_sym_LT_LPAREN] = ACTIONS(382), + [anon_sym_GT_LPAREN] = ACTIONS(382), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(380), - [anon_sym_SEMI] = ACTIONS(346), - [anon_sym_LF] = ACTIONS(346), - [anon_sym_AMP] = ACTIONS(346), + [sym_word] = ACTIONS(382), + [anon_sym_SEMI] = ACTIONS(348), + [anon_sym_LF] = ACTIONS(348), + [anon_sym_AMP] = ACTIONS(348), }, [4330] = { - [sym__concat] = ACTIONS(6948), - [anon_sym_PIPE] = ACTIONS(6950), - [anon_sym_SEMI_SEMI] = ACTIONS(6950), - [anon_sym_PIPE_AMP] = ACTIONS(6950), - [anon_sym_AMP_AMP] = ACTIONS(6950), - [anon_sym_PIPE_PIPE] = ACTIONS(6950), + [sym__concat] = ACTIONS(7018), + [anon_sym_PIPE] = ACTIONS(7020), + [anon_sym_SEMI_SEMI] = ACTIONS(7020), + [anon_sym_PIPE_AMP] = ACTIONS(7020), + [anon_sym_AMP_AMP] = ACTIONS(7020), + [anon_sym_PIPE_PIPE] = ACTIONS(7020), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6950), - [anon_sym_LF] = ACTIONS(6950), - [anon_sym_AMP] = ACTIONS(6950), + [anon_sym_SEMI] = ACTIONS(7020), + [anon_sym_LF] = ACTIONS(7020), + [anon_sym_AMP] = ACTIONS(7020), }, [4331] = { - [sym__concat] = ACTIONS(6952), - [anon_sym_PIPE] = ACTIONS(6954), - [anon_sym_SEMI_SEMI] = ACTIONS(6954), - [anon_sym_PIPE_AMP] = ACTIONS(6954), - [anon_sym_AMP_AMP] = ACTIONS(6954), - [anon_sym_PIPE_PIPE] = ACTIONS(6954), + [sym__concat] = ACTIONS(7022), + [anon_sym_PIPE] = ACTIONS(7024), + [anon_sym_SEMI_SEMI] = ACTIONS(7024), + [anon_sym_PIPE_AMP] = ACTIONS(7024), + [anon_sym_AMP_AMP] = ACTIONS(7024), + [anon_sym_PIPE_PIPE] = ACTIONS(7024), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6954), - [anon_sym_LF] = ACTIONS(6954), - [anon_sym_AMP] = ACTIONS(6954), + [anon_sym_SEMI] = ACTIONS(7024), + [anon_sym_LF] = ACTIONS(7024), + [anon_sym_AMP] = ACTIONS(7024), }, [4332] = { - [sym__concat] = ACTIONS(6956), - [anon_sym_PIPE] = ACTIONS(6958), - [anon_sym_SEMI_SEMI] = ACTIONS(6958), - [anon_sym_PIPE_AMP] = ACTIONS(6958), - [anon_sym_AMP_AMP] = ACTIONS(6958), - [anon_sym_PIPE_PIPE] = ACTIONS(6958), + [sym__concat] = ACTIONS(7026), + [anon_sym_PIPE] = ACTIONS(7028), + [anon_sym_SEMI_SEMI] = ACTIONS(7028), + [anon_sym_PIPE_AMP] = ACTIONS(7028), + [anon_sym_AMP_AMP] = ACTIONS(7028), + [anon_sym_PIPE_PIPE] = ACTIONS(7028), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6958), - [anon_sym_LF] = ACTIONS(6958), - [anon_sym_AMP] = ACTIONS(6958), + [anon_sym_SEMI] = ACTIONS(7028), + [anon_sym_LF] = ACTIONS(7028), + [anon_sym_AMP] = ACTIONS(7028), }, [4333] = { - [sym__concat] = ACTIONS(5961), - [anon_sym_PIPE] = ACTIONS(5963), - [anon_sym_RPAREN] = ACTIONS(5963), - [anon_sym_SEMI_SEMI] = ACTIONS(5963), - [anon_sym_PIPE_AMP] = ACTIONS(5963), - [anon_sym_AMP_AMP] = ACTIONS(5963), - [anon_sym_PIPE_PIPE] = ACTIONS(5963), + [sym__concat] = ACTIONS(6025), + [anon_sym_PIPE] = ACTIONS(6027), + [anon_sym_RPAREN] = ACTIONS(6027), + [anon_sym_SEMI_SEMI] = ACTIONS(6027), + [anon_sym_PIPE_AMP] = ACTIONS(6027), + [anon_sym_AMP_AMP] = ACTIONS(6027), + [anon_sym_PIPE_PIPE] = ACTIONS(6027), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(5963), - [anon_sym_LF] = ACTIONS(5963), - [anon_sym_AMP] = ACTIONS(5963), + [anon_sym_SEMI] = ACTIONS(6027), + [anon_sym_LF] = ACTIONS(6027), + [anon_sym_AMP] = ACTIONS(6027), }, [4334] = { - [sym__concat] = ACTIONS(5965), - [anon_sym_PIPE] = ACTIONS(5967), - [anon_sym_RPAREN] = ACTIONS(5967), - [anon_sym_SEMI_SEMI] = ACTIONS(5967), - [anon_sym_PIPE_AMP] = ACTIONS(5967), - [anon_sym_AMP_AMP] = ACTIONS(5967), - [anon_sym_PIPE_PIPE] = ACTIONS(5967), + [sym__concat] = ACTIONS(6029), + [anon_sym_PIPE] = ACTIONS(6031), + [anon_sym_RPAREN] = ACTIONS(6031), + [anon_sym_SEMI_SEMI] = ACTIONS(6031), + [anon_sym_PIPE_AMP] = ACTIONS(6031), + [anon_sym_AMP_AMP] = ACTIONS(6031), + [anon_sym_PIPE_PIPE] = ACTIONS(6031), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(5967), - [anon_sym_LF] = ACTIONS(5967), - [anon_sym_AMP] = ACTIONS(5967), + [anon_sym_SEMI] = ACTIONS(6031), + [anon_sym_LF] = ACTIONS(6031), + [anon_sym_AMP] = ACTIONS(6031), }, [4335] = { - [sym__concat] = ACTIONS(5969), - [anon_sym_PIPE] = ACTIONS(5971), - [anon_sym_RPAREN] = ACTIONS(5971), - [anon_sym_SEMI_SEMI] = ACTIONS(5971), - [anon_sym_PIPE_AMP] = ACTIONS(5971), - [anon_sym_AMP_AMP] = ACTIONS(5971), - [anon_sym_PIPE_PIPE] = ACTIONS(5971), + [sym__concat] = ACTIONS(6033), + [anon_sym_PIPE] = ACTIONS(6035), + [anon_sym_RPAREN] = ACTIONS(6035), + [anon_sym_SEMI_SEMI] = ACTIONS(6035), + [anon_sym_PIPE_AMP] = ACTIONS(6035), + [anon_sym_AMP_AMP] = ACTIONS(6035), + [anon_sym_PIPE_PIPE] = ACTIONS(6035), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(5971), - [anon_sym_LF] = ACTIONS(5971), - [anon_sym_AMP] = ACTIONS(5971), + [anon_sym_SEMI] = ACTIONS(6035), + [anon_sym_LF] = ACTIONS(6035), + [anon_sym_AMP] = ACTIONS(6035), }, [4336] = { - [sym__concat] = ACTIONS(5973), - [anon_sym_PIPE] = ACTIONS(5975), - [anon_sym_RPAREN] = ACTIONS(5975), - [anon_sym_SEMI_SEMI] = ACTIONS(5975), - [anon_sym_PIPE_AMP] = ACTIONS(5975), - [anon_sym_AMP_AMP] = ACTIONS(5975), - [anon_sym_PIPE_PIPE] = ACTIONS(5975), + [sym__concat] = ACTIONS(6037), + [anon_sym_PIPE] = ACTIONS(6039), + [anon_sym_RPAREN] = ACTIONS(6039), + [anon_sym_SEMI_SEMI] = ACTIONS(6039), + [anon_sym_PIPE_AMP] = ACTIONS(6039), + [anon_sym_AMP_AMP] = ACTIONS(6039), + [anon_sym_PIPE_PIPE] = ACTIONS(6039), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(5975), - [anon_sym_LF] = ACTIONS(5975), - [anon_sym_AMP] = ACTIONS(5975), + [anon_sym_SEMI] = ACTIONS(6039), + [anon_sym_LF] = ACTIONS(6039), + [anon_sym_AMP] = ACTIONS(6039), }, [4337] = { [sym_concatenation] = STATE(451), @@ -105559,38 +105961,38 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8773), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8853), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4338] = { - [sym__concat] = ACTIONS(5979), - [anon_sym_PIPE] = ACTIONS(5981), - [anon_sym_RPAREN] = ACTIONS(5981), - [anon_sym_SEMI_SEMI] = ACTIONS(5981), - [anon_sym_PIPE_AMP] = ACTIONS(5981), - [anon_sym_AMP_AMP] = ACTIONS(5981), - [anon_sym_PIPE_PIPE] = ACTIONS(5981), + [sym__concat] = ACTIONS(6043), + [anon_sym_PIPE] = ACTIONS(6045), + [anon_sym_RPAREN] = ACTIONS(6045), + [anon_sym_SEMI_SEMI] = ACTIONS(6045), + [anon_sym_PIPE_AMP] = ACTIONS(6045), + [anon_sym_AMP_AMP] = ACTIONS(6045), + [anon_sym_PIPE_PIPE] = ACTIONS(6045), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(5981), - [anon_sym_LF] = ACTIONS(5981), - [anon_sym_AMP] = ACTIONS(5981), + [anon_sym_SEMI] = ACTIONS(6045), + [anon_sym_LF] = ACTIONS(6045), + [anon_sym_AMP] = ACTIONS(6045), }, [4339] = { [sym_concatenation] = STATE(451), @@ -105601,38 +106003,38 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8775), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8855), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4340] = { - [sym__concat] = ACTIONS(5985), - [anon_sym_PIPE] = ACTIONS(5987), - [anon_sym_RPAREN] = ACTIONS(5987), - [anon_sym_SEMI_SEMI] = ACTIONS(5987), - [anon_sym_PIPE_AMP] = ACTIONS(5987), - [anon_sym_AMP_AMP] = ACTIONS(5987), - [anon_sym_PIPE_PIPE] = ACTIONS(5987), + [sym__concat] = ACTIONS(6049), + [anon_sym_PIPE] = ACTIONS(6051), + [anon_sym_RPAREN] = ACTIONS(6051), + [anon_sym_SEMI_SEMI] = ACTIONS(6051), + [anon_sym_PIPE_AMP] = ACTIONS(6051), + [anon_sym_AMP_AMP] = ACTIONS(6051), + [anon_sym_PIPE_PIPE] = ACTIONS(6051), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(5987), - [anon_sym_LF] = ACTIONS(5987), - [anon_sym_AMP] = ACTIONS(5987), + [anon_sym_SEMI] = ACTIONS(6051), + [anon_sym_LF] = ACTIONS(6051), + [anon_sym_AMP] = ACTIONS(6051), }, [4341] = { [sym_concatenation] = STATE(451), @@ -105643,86 +106045,86 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8777), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8857), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4342] = { - [sym__concat] = ACTIONS(5991), - [anon_sym_PIPE] = ACTIONS(5993), - [anon_sym_RPAREN] = ACTIONS(5993), - [anon_sym_SEMI_SEMI] = ACTIONS(5993), - [anon_sym_PIPE_AMP] = ACTIONS(5993), - [anon_sym_AMP_AMP] = ACTIONS(5993), - [anon_sym_PIPE_PIPE] = ACTIONS(5993), + [sym__concat] = ACTIONS(6055), + [anon_sym_PIPE] = ACTIONS(6057), + [anon_sym_RPAREN] = ACTIONS(6057), + [anon_sym_SEMI_SEMI] = ACTIONS(6057), + [anon_sym_PIPE_AMP] = ACTIONS(6057), + [anon_sym_AMP_AMP] = ACTIONS(6057), + [anon_sym_PIPE_PIPE] = ACTIONS(6057), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(5993), - [anon_sym_LF] = ACTIONS(5993), - [anon_sym_AMP] = ACTIONS(5993), + [anon_sym_SEMI] = ACTIONS(6057), + [anon_sym_LF] = ACTIONS(6057), + [anon_sym_AMP] = ACTIONS(6057), }, [4343] = { - [sym__concat] = ACTIONS(5995), - [anon_sym_PIPE] = ACTIONS(5997), - [anon_sym_RPAREN] = ACTIONS(5997), - [anon_sym_SEMI_SEMI] = ACTIONS(5997), - [anon_sym_PIPE_AMP] = ACTIONS(5997), - [anon_sym_AMP_AMP] = ACTIONS(5997), - [anon_sym_PIPE_PIPE] = ACTIONS(5997), + [sym__concat] = ACTIONS(6059), + [anon_sym_PIPE] = ACTIONS(6061), + [anon_sym_RPAREN] = ACTIONS(6061), + [anon_sym_SEMI_SEMI] = ACTIONS(6061), + [anon_sym_PIPE_AMP] = ACTIONS(6061), + [anon_sym_AMP_AMP] = ACTIONS(6061), + [anon_sym_PIPE_PIPE] = ACTIONS(6061), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(5997), - [anon_sym_LF] = ACTIONS(5997), - [anon_sym_AMP] = ACTIONS(5997), + [anon_sym_SEMI] = ACTIONS(6061), + [anon_sym_LF] = ACTIONS(6061), + [anon_sym_AMP] = ACTIONS(6061), }, [4344] = { - [sym__concat] = ACTIONS(5961), - [anon_sym_PIPE] = ACTIONS(6846), - [anon_sym_RPAREN] = ACTIONS(5961), - [anon_sym_PIPE_AMP] = ACTIONS(5961), - [anon_sym_AMP_AMP] = ACTIONS(5961), - [anon_sym_PIPE_PIPE] = ACTIONS(5961), + [sym__concat] = ACTIONS(6025), + [anon_sym_PIPE] = ACTIONS(6916), + [anon_sym_RPAREN] = ACTIONS(6025), + [anon_sym_PIPE_AMP] = ACTIONS(6025), + [anon_sym_AMP_AMP] = ACTIONS(6025), + [anon_sym_PIPE_PIPE] = ACTIONS(6025), [sym_comment] = ACTIONS(56), }, [4345] = { - [sym__concat] = ACTIONS(5965), - [anon_sym_PIPE] = ACTIONS(6848), - [anon_sym_RPAREN] = ACTIONS(5965), - [anon_sym_PIPE_AMP] = ACTIONS(5965), - [anon_sym_AMP_AMP] = ACTIONS(5965), - [anon_sym_PIPE_PIPE] = ACTIONS(5965), + [sym__concat] = ACTIONS(6029), + [anon_sym_PIPE] = ACTIONS(6918), + [anon_sym_RPAREN] = ACTIONS(6029), + [anon_sym_PIPE_AMP] = ACTIONS(6029), + [anon_sym_AMP_AMP] = ACTIONS(6029), + [anon_sym_PIPE_PIPE] = ACTIONS(6029), [sym_comment] = ACTIONS(56), }, [4346] = { - [sym__concat] = ACTIONS(5969), - [anon_sym_PIPE] = ACTIONS(6850), - [anon_sym_RPAREN] = ACTIONS(5969), - [anon_sym_PIPE_AMP] = ACTIONS(5969), - [anon_sym_AMP_AMP] = ACTIONS(5969), - [anon_sym_PIPE_PIPE] = ACTIONS(5969), + [sym__concat] = ACTIONS(6033), + [anon_sym_PIPE] = ACTIONS(6920), + [anon_sym_RPAREN] = ACTIONS(6033), + [anon_sym_PIPE_AMP] = ACTIONS(6033), + [anon_sym_AMP_AMP] = ACTIONS(6033), + [anon_sym_PIPE_PIPE] = ACTIONS(6033), [sym_comment] = ACTIONS(56), }, [4347] = { - [sym__concat] = ACTIONS(5973), - [anon_sym_PIPE] = ACTIONS(6852), - [anon_sym_RPAREN] = ACTIONS(5973), - [anon_sym_PIPE_AMP] = ACTIONS(5973), - [anon_sym_AMP_AMP] = ACTIONS(5973), - [anon_sym_PIPE_PIPE] = ACTIONS(5973), + [sym__concat] = ACTIONS(6037), + [anon_sym_PIPE] = ACTIONS(6922), + [anon_sym_RPAREN] = ACTIONS(6037), + [anon_sym_PIPE_AMP] = ACTIONS(6037), + [anon_sym_AMP_AMP] = ACTIONS(6037), + [anon_sym_PIPE_PIPE] = ACTIONS(6037), [sym_comment] = ACTIONS(56), }, [4348] = { @@ -105734,33 +106136,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8779), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8859), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4349] = { - [sym__concat] = ACTIONS(5979), - [anon_sym_PIPE] = ACTIONS(6856), - [anon_sym_RPAREN] = ACTIONS(5979), - [anon_sym_PIPE_AMP] = ACTIONS(5979), - [anon_sym_AMP_AMP] = ACTIONS(5979), - [anon_sym_PIPE_PIPE] = ACTIONS(5979), + [sym__concat] = ACTIONS(6043), + [anon_sym_PIPE] = ACTIONS(6926), + [anon_sym_RPAREN] = ACTIONS(6043), + [anon_sym_PIPE_AMP] = ACTIONS(6043), + [anon_sym_AMP_AMP] = ACTIONS(6043), + [anon_sym_PIPE_PIPE] = ACTIONS(6043), [sym_comment] = ACTIONS(56), }, [4350] = { @@ -105772,33 +106174,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8781), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8861), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4351] = { - [sym__concat] = ACTIONS(5985), - [anon_sym_PIPE] = ACTIONS(6860), - [anon_sym_RPAREN] = ACTIONS(5985), - [anon_sym_PIPE_AMP] = ACTIONS(5985), - [anon_sym_AMP_AMP] = ACTIONS(5985), - [anon_sym_PIPE_PIPE] = ACTIONS(5985), + [sym__concat] = ACTIONS(6049), + [anon_sym_PIPE] = ACTIONS(6930), + [anon_sym_RPAREN] = ACTIONS(6049), + [anon_sym_PIPE_AMP] = ACTIONS(6049), + [anon_sym_AMP_AMP] = ACTIONS(6049), + [anon_sym_PIPE_PIPE] = ACTIONS(6049), [sym_comment] = ACTIONS(56), }, [4352] = { @@ -105810,78 +106212,78 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8783), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8863), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4353] = { - [sym__concat] = ACTIONS(5991), - [anon_sym_PIPE] = ACTIONS(6864), - [anon_sym_RPAREN] = ACTIONS(5991), - [anon_sym_PIPE_AMP] = ACTIONS(5991), - [anon_sym_AMP_AMP] = ACTIONS(5991), - [anon_sym_PIPE_PIPE] = ACTIONS(5991), + [sym__concat] = ACTIONS(6055), + [anon_sym_PIPE] = ACTIONS(6934), + [anon_sym_RPAREN] = ACTIONS(6055), + [anon_sym_PIPE_AMP] = ACTIONS(6055), + [anon_sym_AMP_AMP] = ACTIONS(6055), + [anon_sym_PIPE_PIPE] = ACTIONS(6055), [sym_comment] = ACTIONS(56), }, [4354] = { - [sym__concat] = ACTIONS(5995), - [anon_sym_PIPE] = ACTIONS(6866), - [anon_sym_RPAREN] = ACTIONS(5995), - [anon_sym_PIPE_AMP] = ACTIONS(5995), - [anon_sym_AMP_AMP] = ACTIONS(5995), - [anon_sym_PIPE_PIPE] = ACTIONS(5995), + [sym__concat] = ACTIONS(6059), + [anon_sym_PIPE] = ACTIONS(6936), + [anon_sym_RPAREN] = ACTIONS(6059), + [anon_sym_PIPE_AMP] = ACTIONS(6059), + [anon_sym_AMP_AMP] = ACTIONS(6059), + [anon_sym_PIPE_PIPE] = ACTIONS(6059), [sym_comment] = ACTIONS(56), }, [4355] = { - [sym__concat] = ACTIONS(5961), - [anon_sym_PIPE] = ACTIONS(6846), - [anon_sym_PIPE_AMP] = ACTIONS(5961), - [anon_sym_AMP_AMP] = ACTIONS(5961), - [anon_sym_PIPE_PIPE] = ACTIONS(5961), - [anon_sym_BQUOTE] = ACTIONS(5961), + [sym__concat] = ACTIONS(6025), + [anon_sym_PIPE] = ACTIONS(6916), + [anon_sym_PIPE_AMP] = ACTIONS(6025), + [anon_sym_AMP_AMP] = ACTIONS(6025), + [anon_sym_PIPE_PIPE] = ACTIONS(6025), + [anon_sym_BQUOTE] = ACTIONS(6025), [sym_comment] = ACTIONS(56), }, [4356] = { - [sym__concat] = ACTIONS(5965), - [anon_sym_PIPE] = ACTIONS(6848), - [anon_sym_PIPE_AMP] = ACTIONS(5965), - [anon_sym_AMP_AMP] = ACTIONS(5965), - [anon_sym_PIPE_PIPE] = ACTIONS(5965), - [anon_sym_BQUOTE] = ACTIONS(5965), + [sym__concat] = ACTIONS(6029), + [anon_sym_PIPE] = ACTIONS(6918), + [anon_sym_PIPE_AMP] = ACTIONS(6029), + [anon_sym_AMP_AMP] = ACTIONS(6029), + [anon_sym_PIPE_PIPE] = ACTIONS(6029), + [anon_sym_BQUOTE] = ACTIONS(6029), [sym_comment] = ACTIONS(56), }, [4357] = { - [sym__concat] = ACTIONS(5969), - [anon_sym_PIPE] = ACTIONS(6850), - [anon_sym_PIPE_AMP] = ACTIONS(5969), - [anon_sym_AMP_AMP] = ACTIONS(5969), - [anon_sym_PIPE_PIPE] = ACTIONS(5969), - [anon_sym_BQUOTE] = ACTIONS(5969), + [sym__concat] = ACTIONS(6033), + [anon_sym_PIPE] = ACTIONS(6920), + [anon_sym_PIPE_AMP] = ACTIONS(6033), + [anon_sym_AMP_AMP] = ACTIONS(6033), + [anon_sym_PIPE_PIPE] = ACTIONS(6033), + [anon_sym_BQUOTE] = ACTIONS(6033), [sym_comment] = ACTIONS(56), }, [4358] = { - [sym__concat] = ACTIONS(5973), - [anon_sym_PIPE] = ACTIONS(6852), - [anon_sym_PIPE_AMP] = ACTIONS(5973), - [anon_sym_AMP_AMP] = ACTIONS(5973), - [anon_sym_PIPE_PIPE] = ACTIONS(5973), - [anon_sym_BQUOTE] = ACTIONS(5973), + [sym__concat] = ACTIONS(6037), + [anon_sym_PIPE] = ACTIONS(6922), + [anon_sym_PIPE_AMP] = ACTIONS(6037), + [anon_sym_AMP_AMP] = ACTIONS(6037), + [anon_sym_PIPE_PIPE] = ACTIONS(6037), + [anon_sym_BQUOTE] = ACTIONS(6037), [sym_comment] = ACTIONS(56), }, [4359] = { @@ -105893,33 +106295,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8785), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8865), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4360] = { - [sym__concat] = ACTIONS(5979), - [anon_sym_PIPE] = ACTIONS(6856), - [anon_sym_PIPE_AMP] = ACTIONS(5979), - [anon_sym_AMP_AMP] = ACTIONS(5979), - [anon_sym_PIPE_PIPE] = ACTIONS(5979), - [anon_sym_BQUOTE] = ACTIONS(5979), + [sym__concat] = ACTIONS(6043), + [anon_sym_PIPE] = ACTIONS(6926), + [anon_sym_PIPE_AMP] = ACTIONS(6043), + [anon_sym_AMP_AMP] = ACTIONS(6043), + [anon_sym_PIPE_PIPE] = ACTIONS(6043), + [anon_sym_BQUOTE] = ACTIONS(6043), [sym_comment] = ACTIONS(56), }, [4361] = { @@ -105931,33 +106333,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8787), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8867), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4362] = { - [sym__concat] = ACTIONS(5985), - [anon_sym_PIPE] = ACTIONS(6860), - [anon_sym_PIPE_AMP] = ACTIONS(5985), - [anon_sym_AMP_AMP] = ACTIONS(5985), - [anon_sym_PIPE_PIPE] = ACTIONS(5985), - [anon_sym_BQUOTE] = ACTIONS(5985), + [sym__concat] = ACTIONS(6049), + [anon_sym_PIPE] = ACTIONS(6930), + [anon_sym_PIPE_AMP] = ACTIONS(6049), + [anon_sym_AMP_AMP] = ACTIONS(6049), + [anon_sym_PIPE_PIPE] = ACTIONS(6049), + [anon_sym_BQUOTE] = ACTIONS(6049), [sym_comment] = ACTIONS(56), }, [4363] = { @@ -105969,90 +106371,90 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8789), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8869), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4364] = { - [sym__concat] = ACTIONS(5991), - [anon_sym_PIPE] = ACTIONS(6864), - [anon_sym_PIPE_AMP] = ACTIONS(5991), - [anon_sym_AMP_AMP] = ACTIONS(5991), - [anon_sym_PIPE_PIPE] = ACTIONS(5991), - [anon_sym_BQUOTE] = ACTIONS(5991), + [sym__concat] = ACTIONS(6055), + [anon_sym_PIPE] = ACTIONS(6934), + [anon_sym_PIPE_AMP] = ACTIONS(6055), + [anon_sym_AMP_AMP] = ACTIONS(6055), + [anon_sym_PIPE_PIPE] = ACTIONS(6055), + [anon_sym_BQUOTE] = ACTIONS(6055), [sym_comment] = ACTIONS(56), }, [4365] = { - [sym__concat] = ACTIONS(5995), - [anon_sym_PIPE] = ACTIONS(6866), - [anon_sym_PIPE_AMP] = ACTIONS(5995), - [anon_sym_AMP_AMP] = ACTIONS(5995), - [anon_sym_PIPE_PIPE] = ACTIONS(5995), - [anon_sym_BQUOTE] = ACTIONS(5995), + [sym__concat] = ACTIONS(6059), + [anon_sym_PIPE] = ACTIONS(6936), + [anon_sym_PIPE_AMP] = ACTIONS(6059), + [anon_sym_AMP_AMP] = ACTIONS(6059), + [anon_sym_PIPE_PIPE] = ACTIONS(6059), + [anon_sym_BQUOTE] = ACTIONS(6059), [sym_comment] = ACTIONS(56), }, [4366] = { - [sym_file_descriptor] = ACTIONS(3235), - [sym__concat] = ACTIONS(3235), - [sym_variable_name] = ACTIONS(3235), - [anon_sym_esac] = ACTIONS(3237), - [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_file_descriptor] = ACTIONS(3283), + [sym__concat] = ACTIONS(3283), + [sym_variable_name] = ACTIONS(3283), + [anon_sym_esac] = ACTIONS(3285), + [anon_sym_PIPE] = ACTIONS(3285), + [anon_sym_SEMI_SEMI] = ACTIONS(3285), + [anon_sym_PIPE_AMP] = ACTIONS(3285), + [anon_sym_AMP_AMP] = ACTIONS(3285), + [anon_sym_PIPE_PIPE] = ACTIONS(3285), + [anon_sym_LT] = ACTIONS(3285), + [anon_sym_GT] = ACTIONS(3285), + [anon_sym_GT_GT] = ACTIONS(3285), + [anon_sym_AMP_GT] = ACTIONS(3285), + [anon_sym_AMP_GT_GT] = ACTIONS(3285), + [anon_sym_LT_AMP] = ACTIONS(3285), + [anon_sym_GT_AMP] = ACTIONS(3285), + [sym__special_characters] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3285), + [anon_sym_DOLLAR] = ACTIONS(3285), + [sym_raw_string] = ACTIONS(3285), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3285), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3285), + [anon_sym_BQUOTE] = ACTIONS(3285), + [anon_sym_LT_LPAREN] = ACTIONS(3285), + [anon_sym_GT_LPAREN] = ACTIONS(3285), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3237), - [anon_sym_SEMI] = ACTIONS(3237), - [anon_sym_LF] = ACTIONS(3237), - [anon_sym_AMP] = ACTIONS(3237), + [sym_word] = ACTIONS(3285), + [anon_sym_SEMI] = ACTIONS(3285), + [anon_sym_LF] = ACTIONS(3285), + [anon_sym_AMP] = ACTIONS(3285), }, [4367] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(8791), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(8871), [sym_comment] = ACTIONS(56), }, [4368] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(8793), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(8873), [sym_comment] = ACTIONS(56), }, [4369] = { - [anon_sym_RBRACE] = ACTIONS(8793), + [anon_sym_RBRACE] = ACTIONS(8873), [sym_comment] = ACTIONS(56), }, [4370] = { @@ -106064,57 +106466,57 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(4480), - [anon_sym_RBRACE] = ACTIONS(8795), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8875), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4371] = { - [sym_file_descriptor] = ACTIONS(3297), - [sym__concat] = ACTIONS(3297), - [sym_variable_name] = ACTIONS(3297), - [anon_sym_esac] = ACTIONS(3299), - [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_file_descriptor] = ACTIONS(3347), + [sym__concat] = ACTIONS(3347), + [sym_variable_name] = ACTIONS(3347), + [anon_sym_esac] = ACTIONS(3349), + [anon_sym_PIPE] = ACTIONS(3349), + [anon_sym_SEMI_SEMI] = ACTIONS(3349), + [anon_sym_PIPE_AMP] = ACTIONS(3349), + [anon_sym_AMP_AMP] = ACTIONS(3349), + [anon_sym_PIPE_PIPE] = ACTIONS(3349), + [anon_sym_LT] = ACTIONS(3349), + [anon_sym_GT] = ACTIONS(3349), + [anon_sym_GT_GT] = ACTIONS(3349), + [anon_sym_AMP_GT] = ACTIONS(3349), + [anon_sym_AMP_GT_GT] = ACTIONS(3349), + [anon_sym_LT_AMP] = ACTIONS(3349), + [anon_sym_GT_AMP] = ACTIONS(3349), + [sym__special_characters] = ACTIONS(3349), + [anon_sym_DQUOTE] = ACTIONS(3349), + [anon_sym_DOLLAR] = ACTIONS(3349), + [sym_raw_string] = ACTIONS(3349), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3349), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3349), + [anon_sym_BQUOTE] = ACTIONS(3349), + [anon_sym_LT_LPAREN] = ACTIONS(3349), + [anon_sym_GT_LPAREN] = ACTIONS(3349), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3299), - [anon_sym_SEMI] = ACTIONS(3299), - [anon_sym_LF] = ACTIONS(3299), - [anon_sym_AMP] = ACTIONS(3299), + [sym_word] = ACTIONS(3349), + [anon_sym_SEMI] = ACTIONS(3349), + [anon_sym_LF] = ACTIONS(3349), + [anon_sym_AMP] = ACTIONS(3349), }, [4372] = { [sym_concatenation] = STATE(4483), @@ -106124,54 +106526,54 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(4482), [sym_command_substitution] = STATE(4482), [sym_process_substitution] = STATE(4482), - [anon_sym_RBRACE] = ACTIONS(8793), - [sym__special_characters] = ACTIONS(8797), - [anon_sym_DQUOTE] = ACTIONS(1924), - [anon_sym_DOLLAR] = ACTIONS(1926), - [sym_raw_string] = ACTIONS(8799), - [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), + [anon_sym_RBRACE] = ACTIONS(8873), + [sym__special_characters] = ACTIONS(8877), + [anon_sym_DQUOTE] = ACTIONS(1952), + [anon_sym_DOLLAR] = ACTIONS(1954), + [sym_raw_string] = ACTIONS(8879), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), + [anon_sym_BQUOTE] = ACTIONS(1962), + [anon_sym_LT_LPAREN] = ACTIONS(1964), + [anon_sym_GT_LPAREN] = ACTIONS(1964), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(8801), + [sym_word] = ACTIONS(8881), }, [4373] = { - [sym_file_descriptor] = ACTIONS(3342), - [sym__concat] = ACTIONS(3342), - [sym_variable_name] = ACTIONS(3342), - [anon_sym_esac] = ACTIONS(3344), - [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_file_descriptor] = ACTIONS(3392), + [sym__concat] = ACTIONS(3392), + [sym_variable_name] = ACTIONS(3392), + [anon_sym_esac] = ACTIONS(3394), + [anon_sym_PIPE] = ACTIONS(3394), + [anon_sym_SEMI_SEMI] = ACTIONS(3394), + [anon_sym_PIPE_AMP] = ACTIONS(3394), + [anon_sym_AMP_AMP] = ACTIONS(3394), + [anon_sym_PIPE_PIPE] = ACTIONS(3394), + [anon_sym_LT] = ACTIONS(3394), + [anon_sym_GT] = ACTIONS(3394), + [anon_sym_GT_GT] = ACTIONS(3394), + [anon_sym_AMP_GT] = ACTIONS(3394), + [anon_sym_AMP_GT_GT] = ACTIONS(3394), + [anon_sym_LT_AMP] = ACTIONS(3394), + [anon_sym_GT_AMP] = ACTIONS(3394), + [sym__special_characters] = ACTIONS(3394), + [anon_sym_DQUOTE] = ACTIONS(3394), + [anon_sym_DOLLAR] = ACTIONS(3394), + [sym_raw_string] = ACTIONS(3394), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3394), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3394), + [anon_sym_BQUOTE] = ACTIONS(3394), + [anon_sym_LT_LPAREN] = ACTIONS(3394), + [anon_sym_GT_LPAREN] = ACTIONS(3394), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(3344), - [anon_sym_LF] = ACTIONS(3344), - [anon_sym_AMP] = ACTIONS(3344), + [sym_word] = ACTIONS(3394), + [anon_sym_SEMI] = ACTIONS(3394), + [anon_sym_LF] = ACTIONS(3394), + [anon_sym_AMP] = ACTIONS(3394), }, [4374] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8803), + [sym_regex_without_right_brace] = ACTIONS(8883), }, [4375] = { [sym_concatenation] = STATE(451), @@ -106182,61 +106584,61 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8805), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8885), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4376] = { - [sym_file_descriptor] = ACTIONS(3350), - [sym__concat] = ACTIONS(3350), - [sym_variable_name] = ACTIONS(3350), - [anon_sym_esac] = ACTIONS(3352), - [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_file_descriptor] = ACTIONS(3400), + [sym__concat] = ACTIONS(3400), + [sym_variable_name] = ACTIONS(3400), + [anon_sym_esac] = ACTIONS(3402), + [anon_sym_PIPE] = ACTIONS(3402), + [anon_sym_SEMI_SEMI] = ACTIONS(3402), + [anon_sym_PIPE_AMP] = ACTIONS(3402), + [anon_sym_AMP_AMP] = ACTIONS(3402), + [anon_sym_PIPE_PIPE] = ACTIONS(3402), + [anon_sym_LT] = ACTIONS(3402), + [anon_sym_GT] = ACTIONS(3402), + [anon_sym_GT_GT] = ACTIONS(3402), + [anon_sym_AMP_GT] = ACTIONS(3402), + [anon_sym_AMP_GT_GT] = ACTIONS(3402), + [anon_sym_LT_AMP] = ACTIONS(3402), + [anon_sym_GT_AMP] = ACTIONS(3402), + [sym__special_characters] = ACTIONS(3402), + [anon_sym_DQUOTE] = ACTIONS(3402), + [anon_sym_DOLLAR] = ACTIONS(3402), + [sym_raw_string] = ACTIONS(3402), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3402), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3402), + [anon_sym_BQUOTE] = ACTIONS(3402), + [anon_sym_LT_LPAREN] = ACTIONS(3402), + [anon_sym_GT_LPAREN] = ACTIONS(3402), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3352), - [anon_sym_SEMI] = ACTIONS(3352), - [anon_sym_LF] = ACTIONS(3352), - [anon_sym_AMP] = ACTIONS(3352), + [sym_word] = ACTIONS(3402), + [anon_sym_SEMI] = ACTIONS(3402), + [anon_sym_LF] = ACTIONS(3402), + [anon_sym_AMP] = ACTIONS(3402), }, [4377] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8807), + [sym_regex_without_right_brace] = ACTIONS(8887), }, [4378] = { [sym_concatenation] = STATE(451), @@ -106247,29 +106649,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8809), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8889), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4379] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8811), + [sym_regex_without_right_brace] = ACTIONS(8891), }, [4380] = { [sym_concatenation] = STATE(451), @@ -106280,25 +106682,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8793), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8873), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4381] = { [sym_concatenation] = STATE(451), @@ -106309,57 +106711,57 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(4490), - [anon_sym_RBRACE] = ACTIONS(8813), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8893), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4382] = { - [sym_file_descriptor] = ACTIONS(3362), - [sym__concat] = ACTIONS(3362), - [sym_variable_name] = ACTIONS(3362), - [anon_sym_esac] = ACTIONS(3364), - [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_file_descriptor] = ACTIONS(3412), + [sym__concat] = ACTIONS(3412), + [sym_variable_name] = ACTIONS(3412), + [anon_sym_esac] = ACTIONS(3414), + [anon_sym_PIPE] = ACTIONS(3414), + [anon_sym_SEMI_SEMI] = ACTIONS(3414), + [anon_sym_PIPE_AMP] = ACTIONS(3414), + [anon_sym_AMP_AMP] = ACTIONS(3414), + [anon_sym_PIPE_PIPE] = ACTIONS(3414), + [anon_sym_LT] = ACTIONS(3414), + [anon_sym_GT] = ACTIONS(3414), + [anon_sym_GT_GT] = ACTIONS(3414), + [anon_sym_AMP_GT] = ACTIONS(3414), + [anon_sym_AMP_GT_GT] = ACTIONS(3414), + [anon_sym_LT_AMP] = ACTIONS(3414), + [anon_sym_GT_AMP] = ACTIONS(3414), + [sym__special_characters] = ACTIONS(3414), + [anon_sym_DQUOTE] = ACTIONS(3414), + [anon_sym_DOLLAR] = ACTIONS(3414), + [sym_raw_string] = ACTIONS(3414), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3414), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3414), + [anon_sym_BQUOTE] = ACTIONS(3414), + [anon_sym_LT_LPAREN] = ACTIONS(3414), + [anon_sym_GT_LPAREN] = ACTIONS(3414), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3364), - [anon_sym_SEMI] = ACTIONS(3364), - [anon_sym_LF] = ACTIONS(3364), - [anon_sym_AMP] = ACTIONS(3364), + [sym_word] = ACTIONS(3414), + [anon_sym_SEMI] = ACTIONS(3414), + [anon_sym_LF] = ACTIONS(3414), + [anon_sym_AMP] = ACTIONS(3414), }, [4383] = { [sym_concatenation] = STATE(451), @@ -106370,53 +106772,53 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(4492), - [anon_sym_RBRACE] = ACTIONS(8815), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8895), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4384] = { [aux_sym_concatenation_repeat1] = STATE(4387), - [sym__concat] = ACTIONS(8646), - [anon_sym_esac] = ACTIONS(3974), - [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__concat] = ACTIONS(8724), + [anon_sym_esac] = ACTIONS(4032), + [anon_sym_PIPE] = ACTIONS(4032), + [anon_sym_SEMI_SEMI] = ACTIONS(4032), + [anon_sym_PIPE_AMP] = ACTIONS(4032), + [anon_sym_AMP_AMP] = ACTIONS(4032), + [anon_sym_PIPE_PIPE] = ACTIONS(4032), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3974), - [anon_sym_LF] = ACTIONS(3974), - [anon_sym_AMP] = ACTIONS(3974), + [anon_sym_SEMI] = ACTIONS(4032), + [anon_sym_LF] = ACTIONS(4032), + [anon_sym_AMP] = ACTIONS(4032), }, [4385] = { [aux_sym_concatenation_repeat1] = STATE(4387), - [sym__concat] = ACTIONS(8646), - [anon_sym_esac] = ACTIONS(3976), - [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__concat] = ACTIONS(8724), + [anon_sym_esac] = ACTIONS(4034), + [anon_sym_PIPE] = ACTIONS(4034), + [anon_sym_SEMI_SEMI] = ACTIONS(4034), + [anon_sym_PIPE_AMP] = ACTIONS(4034), + [anon_sym_AMP_AMP] = ACTIONS(4034), + [anon_sym_PIPE_PIPE] = ACTIONS(4034), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3976), - [anon_sym_LF] = ACTIONS(3976), - [anon_sym_AMP] = ACTIONS(3976), + [anon_sym_SEMI] = ACTIONS(4034), + [anon_sym_LF] = ACTIONS(4034), + [anon_sym_AMP] = ACTIONS(4034), }, [4386] = { [sym_string] = STATE(4493), @@ -106425,51 +106827,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(4493), [sym_command_substitution] = STATE(4493), [sym_process_substitution] = STATE(4493), - [sym__special_characters] = ACTIONS(8817), - [anon_sym_DQUOTE] = ACTIONS(8381), - [anon_sym_DOLLAR] = ACTIONS(8383), - [sym_raw_string] = ACTIONS(8819), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(8387), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(8389), - [anon_sym_BQUOTE] = ACTIONS(8391), - [anon_sym_LT_LPAREN] = ACTIONS(8393), - [anon_sym_GT_LPAREN] = ACTIONS(8393), + [sym__special_characters] = ACTIONS(8897), + [anon_sym_DQUOTE] = ACTIONS(8459), + [anon_sym_DOLLAR] = ACTIONS(8461), + [sym_raw_string] = ACTIONS(8899), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8465), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8467), + [anon_sym_BQUOTE] = ACTIONS(8469), + [anon_sym_LT_LPAREN] = ACTIONS(8471), + [anon_sym_GT_LPAREN] = ACTIONS(8471), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(8817), + [sym_word] = ACTIONS(8897), }, [4387] = { [aux_sym_concatenation_repeat1] = STATE(4494), - [sym__concat] = ACTIONS(8646), - [anon_sym_esac] = ACTIONS(774), - [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__concat] = ACTIONS(8724), + [anon_sym_esac] = ACTIONS(790), + [anon_sym_PIPE] = ACTIONS(790), + [anon_sym_SEMI_SEMI] = ACTIONS(790), + [anon_sym_PIPE_AMP] = ACTIONS(790), + [anon_sym_AMP_AMP] = ACTIONS(790), + [anon_sym_PIPE_PIPE] = ACTIONS(790), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(774), - [anon_sym_LF] = ACTIONS(774), - [anon_sym_AMP] = ACTIONS(774), + [anon_sym_SEMI] = ACTIONS(790), + [anon_sym_LF] = ACTIONS(790), + [anon_sym_AMP] = ACTIONS(790), }, [4388] = { - [sym__concat] = ACTIONS(776), - [anon_sym_esac] = ACTIONS(778), - [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__concat] = ACTIONS(792), + [anon_sym_esac] = ACTIONS(794), + [anon_sym_PIPE] = ACTIONS(794), + [anon_sym_SEMI_SEMI] = ACTIONS(794), + [anon_sym_PIPE_AMP] = ACTIONS(794), + [anon_sym_AMP_AMP] = ACTIONS(794), + [anon_sym_PIPE_PIPE] = ACTIONS(794), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(778), - [anon_sym_LF] = ACTIONS(778), - [anon_sym_AMP] = ACTIONS(778), + [anon_sym_SEMI] = ACTIONS(794), + [anon_sym_LF] = ACTIONS(794), + [anon_sym_AMP] = ACTIONS(794), }, [4389] = { [sym_simple_expansion] = STATE(134), [sym_expansion] = STATE(134), [sym_command_substitution] = STATE(134), [aux_sym_string_repeat1] = STATE(447), - [anon_sym_DQUOTE] = ACTIONS(8821), + [anon_sym_DQUOTE] = ACTIONS(8901), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -106478,47 +106880,47 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(182), }, [4390] = { - [sym__concat] = ACTIONS(808), - [anon_sym_esac] = ACTIONS(810), - [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__concat] = ACTIONS(824), + [anon_sym_esac] = ACTIONS(826), + [anon_sym_PIPE] = ACTIONS(826), + [anon_sym_SEMI_SEMI] = ACTIONS(826), + [anon_sym_PIPE_AMP] = ACTIONS(826), + [anon_sym_AMP_AMP] = ACTIONS(826), + [anon_sym_PIPE_PIPE] = ACTIONS(826), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(810), - [anon_sym_LF] = ACTIONS(810), - [anon_sym_AMP] = ACTIONS(810), + [anon_sym_SEMI] = ACTIONS(826), + [anon_sym_LF] = ACTIONS(826), + [anon_sym_AMP] = ACTIONS(826), }, [4391] = { - [sym__concat] = ACTIONS(812), - [anon_sym_esac] = ACTIONS(814), - [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__concat] = ACTIONS(828), + [anon_sym_esac] = ACTIONS(830), + [anon_sym_PIPE] = ACTIONS(830), + [anon_sym_SEMI_SEMI] = ACTIONS(830), + [anon_sym_PIPE_AMP] = ACTIONS(830), + [anon_sym_AMP_AMP] = ACTIONS(830), + [anon_sym_PIPE_PIPE] = ACTIONS(830), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(814), - [anon_sym_LF] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(814), + [anon_sym_SEMI] = ACTIONS(830), + [anon_sym_LF] = ACTIONS(830), + [anon_sym_AMP] = ACTIONS(830), }, [4392] = { - [sym__concat] = ACTIONS(816), - [anon_sym_esac] = ACTIONS(818), - [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__concat] = ACTIONS(832), + [anon_sym_esac] = ACTIONS(834), + [anon_sym_PIPE] = ACTIONS(834), + [anon_sym_SEMI_SEMI] = ACTIONS(834), + [anon_sym_PIPE_AMP] = ACTIONS(834), + [anon_sym_AMP_AMP] = ACTIONS(834), + [anon_sym_PIPE_PIPE] = ACTIONS(834), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(818), - [anon_sym_LF] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(818), + [anon_sym_SEMI] = ACTIONS(834), + [anon_sym_LF] = ACTIONS(834), + [anon_sym_AMP] = ACTIONS(834), }, [4393] = { - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(8823), + [anon_sym_LBRACK] = ACTIONS(836), + [anon_sym_EQ] = ACTIONS(8903), [sym_comment] = ACTIONS(56), }, [4394] = { @@ -106530,39 +106932,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(4499), - [anon_sym_RBRACE] = ACTIONS(8825), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_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(8827), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8905), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(8907), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4395] = { [sym_subscript] = STATE(4503), - [sym_variable_name] = ACTIONS(8829), - [anon_sym_DOLLAR] = ACTIONS(8831), - [anon_sym_DASH] = ACTIONS(8831), + [sym_variable_name] = ACTIONS(8909), + [anon_sym_DOLLAR] = ACTIONS(8911), + [anon_sym_DASH] = ACTIONS(8911), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(8833), - [anon_sym_STAR] = ACTIONS(8831), - [anon_sym_AT] = ACTIONS(8831), - [anon_sym_QMARK] = ACTIONS(8831), - [anon_sym_0] = ACTIONS(8835), - [anon_sym__] = ACTIONS(8835), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(8913), + [anon_sym_STAR] = ACTIONS(8911), + [anon_sym_AT] = ACTIONS(8911), + [anon_sym_QMARK] = ACTIONS(8911), + [anon_sym_0] = ACTIONS(8915), + [anon_sym__] = ACTIONS(8915), }, [4396] = { [sym_concatenation] = STATE(451), @@ -106573,26 +106975,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(4506), - [anon_sym_RBRACE] = ACTIONS(8837), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_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(8839), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8917), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(8919), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4397] = { [sym_concatenation] = STATE(451), @@ -106603,229 +107005,229 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(4509), - [anon_sym_RBRACE] = ACTIONS(8841), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_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(8843), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8921), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(8923), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4398] = { - [anon_sym_PIPE] = ACTIONS(954), - [anon_sym_RPAREN] = ACTIONS(8845), - [anon_sym_PIPE_AMP] = ACTIONS(958), - [anon_sym_AMP_AMP] = ACTIONS(960), - [anon_sym_PIPE_PIPE] = ACTIONS(960), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(8925), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), [sym_comment] = ACTIONS(56), }, [4399] = { - [sym_file_descriptor] = ACTIONS(378), - [sym_variable_name] = ACTIONS(378), - [anon_sym_PIPE] = ACTIONS(954), - [anon_sym_RPAREN] = ACTIONS(8845), - [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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(8925), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [4400] = { - [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(8845), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_PIPE_AMP] = ACTIONS(1072), + [anon_sym_AMP_AMP] = ACTIONS(1074), + [anon_sym_PIPE_PIPE] = ACTIONS(1074), + [anon_sym_BQUOTE] = ACTIONS(8925), [sym_comment] = ACTIONS(56), }, [4401] = { - [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(8845), - [anon_sym_LT_LPAREN] = ACTIONS(378), - [anon_sym_GT_LPAREN] = ACTIONS(378), + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_PIPE_AMP] = ACTIONS(1072), + [anon_sym_AMP_AMP] = ACTIONS(1074), + [anon_sym_PIPE_PIPE] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(8925), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [4402] = { - [anon_sym_PIPE] = ACTIONS(954), - [anon_sym_RPAREN] = ACTIONS(8847), - [anon_sym_PIPE_AMP] = ACTIONS(958), - [anon_sym_AMP_AMP] = ACTIONS(960), - [anon_sym_PIPE_PIPE] = ACTIONS(960), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(8927), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), [sym_comment] = ACTIONS(56), }, [4403] = { - [sym_file_descriptor] = ACTIONS(378), - [sym_variable_name] = ACTIONS(378), - [anon_sym_PIPE] = ACTIONS(954), - [anon_sym_RPAREN] = ACTIONS(8847), - [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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(8927), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(382), + [sym_word] = ACTIONS(384), }, [4404] = { - [sym_variable_name] = ACTIONS(4111), - [anon_sym_esac] = ACTIONS(4113), - [anon_sym_PIPE] = 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_variable_name] = ACTIONS(4169), + [anon_sym_esac] = ACTIONS(4171), + [anon_sym_PIPE] = ACTIONS(4171), + [anon_sym_SEMI_SEMI] = ACTIONS(4171), + [anon_sym_PIPE_AMP] = ACTIONS(4171), + [anon_sym_AMP_AMP] = ACTIONS(4171), + [anon_sym_PIPE_PIPE] = ACTIONS(4171), + [sym__special_characters] = ACTIONS(4171), + [anon_sym_DQUOTE] = ACTIONS(4171), + [anon_sym_DOLLAR] = ACTIONS(4171), + [sym_raw_string] = ACTIONS(4171), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4171), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4171), + [anon_sym_BQUOTE] = ACTIONS(4171), + [anon_sym_LT_LPAREN] = ACTIONS(4171), + [anon_sym_GT_LPAREN] = ACTIONS(4171), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4113), - [sym_word] = ACTIONS(4113), - [anon_sym_SEMI] = ACTIONS(4113), - [anon_sym_LF] = ACTIONS(4113), - [anon_sym_AMP] = ACTIONS(4113), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4171), + [sym_word] = ACTIONS(4171), + [anon_sym_SEMI] = ACTIONS(4171), + [anon_sym_LF] = ACTIONS(4171), + [anon_sym_AMP] = ACTIONS(4171), }, [4405] = { - [sym__concat] = ACTIONS(4728), - [sym_variable_name] = ACTIONS(4728), - [anon_sym_esac] = ACTIONS(4730), - [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__concat] = ACTIONS(4790), + [sym_variable_name] = ACTIONS(4790), + [anon_sym_esac] = ACTIONS(4792), + [anon_sym_PIPE] = ACTIONS(4792), + [anon_sym_SEMI_SEMI] = ACTIONS(4792), + [anon_sym_PIPE_AMP] = ACTIONS(4792), + [anon_sym_AMP_AMP] = ACTIONS(4792), + [anon_sym_PIPE_PIPE] = ACTIONS(4792), + [sym__special_characters] = ACTIONS(4792), + [anon_sym_DQUOTE] = ACTIONS(4792), + [anon_sym_DOLLAR] = ACTIONS(4792), + [sym_raw_string] = ACTIONS(4792), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4792), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4792), + [anon_sym_BQUOTE] = ACTIONS(4792), + [anon_sym_LT_LPAREN] = ACTIONS(4792), + [anon_sym_GT_LPAREN] = ACTIONS(4792), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4730), - [sym_word] = ACTIONS(4730), - [anon_sym_SEMI] = ACTIONS(4730), - [anon_sym_LF] = ACTIONS(4730), - [anon_sym_AMP] = ACTIONS(4730), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4792), + [sym_word] = ACTIONS(4792), + [anon_sym_SEMI] = ACTIONS(4792), + [anon_sym_LF] = ACTIONS(4792), + [anon_sym_AMP] = ACTIONS(4792), }, [4406] = { - [sym__concat] = ACTIONS(4734), - [sym_variable_name] = ACTIONS(4734), - [anon_sym_esac] = ACTIONS(4736), - [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__concat] = ACTIONS(4796), + [sym_variable_name] = ACTIONS(4796), + [anon_sym_esac] = ACTIONS(4798), + [anon_sym_PIPE] = ACTIONS(4798), + [anon_sym_SEMI_SEMI] = ACTIONS(4798), + [anon_sym_PIPE_AMP] = ACTIONS(4798), + [anon_sym_AMP_AMP] = ACTIONS(4798), + [anon_sym_PIPE_PIPE] = ACTIONS(4798), + [sym__special_characters] = ACTIONS(4798), + [anon_sym_DQUOTE] = ACTIONS(4798), + [anon_sym_DOLLAR] = ACTIONS(4798), + [sym_raw_string] = ACTIONS(4798), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4798), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4798), + [anon_sym_BQUOTE] = ACTIONS(4798), + [anon_sym_LT_LPAREN] = ACTIONS(4798), + [anon_sym_GT_LPAREN] = ACTIONS(4798), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4736), - [sym_word] = ACTIONS(4736), - [anon_sym_SEMI] = ACTIONS(4736), - [anon_sym_LF] = ACTIONS(4736), - [anon_sym_AMP] = ACTIONS(4736), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4798), + [sym_word] = ACTIONS(4798), + [anon_sym_SEMI] = ACTIONS(4798), + [anon_sym_LF] = ACTIONS(4798), + [anon_sym_AMP] = ACTIONS(4798), }, [4407] = { - [sym__concat] = ACTIONS(4797), - [sym_variable_name] = ACTIONS(4797), - [anon_sym_esac] = ACTIONS(4799), - [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__concat] = ACTIONS(4859), + [sym_variable_name] = ACTIONS(4859), + [anon_sym_esac] = ACTIONS(4861), + [anon_sym_PIPE] = ACTIONS(4861), + [anon_sym_SEMI_SEMI] = ACTIONS(4861), + [anon_sym_PIPE_AMP] = ACTIONS(4861), + [anon_sym_AMP_AMP] = ACTIONS(4861), + [anon_sym_PIPE_PIPE] = ACTIONS(4861), + [sym__special_characters] = ACTIONS(4861), + [anon_sym_DQUOTE] = ACTIONS(4861), + [anon_sym_DOLLAR] = ACTIONS(4861), + [sym_raw_string] = ACTIONS(4861), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4861), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4861), + [anon_sym_BQUOTE] = ACTIONS(4861), + [anon_sym_LT_LPAREN] = ACTIONS(4861), + [anon_sym_GT_LPAREN] = ACTIONS(4861), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4799), - [sym_word] = ACTIONS(4799), - [anon_sym_SEMI] = ACTIONS(4799), - [anon_sym_LF] = ACTIONS(4799), - [anon_sym_AMP] = ACTIONS(4799), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4861), + [sym_word] = ACTIONS(4861), + [anon_sym_SEMI] = ACTIONS(4861), + [anon_sym_LF] = ACTIONS(4861), + [anon_sym_AMP] = ACTIONS(4861), }, [4408] = { [sym_concatenation] = STATE(451), @@ -106836,40 +107238,40 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8849), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8929), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4409] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(8851), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(8931), [sym_comment] = ACTIONS(56), }, [4410] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(8853), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(8933), [sym_comment] = ACTIONS(56), }, [4411] = { - [anon_sym_RBRACE] = ACTIONS(8853), + [anon_sym_RBRACE] = ACTIONS(8933), [sym_comment] = ACTIONS(56), }, [4412] = { @@ -106881,50 +107283,50 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(4516), - [anon_sym_RBRACE] = ACTIONS(8855), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8935), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4413] = { - [sym__concat] = ACTIONS(4809), - [sym_variable_name] = ACTIONS(4809), - [anon_sym_esac] = ACTIONS(4811), - [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__concat] = ACTIONS(4871), + [sym_variable_name] = ACTIONS(4871), + [anon_sym_esac] = ACTIONS(4873), + [anon_sym_PIPE] = ACTIONS(4873), + [anon_sym_SEMI_SEMI] = ACTIONS(4873), + [anon_sym_PIPE_AMP] = ACTIONS(4873), + [anon_sym_AMP_AMP] = ACTIONS(4873), + [anon_sym_PIPE_PIPE] = ACTIONS(4873), + [sym__special_characters] = ACTIONS(4873), + [anon_sym_DQUOTE] = ACTIONS(4873), + [anon_sym_DOLLAR] = ACTIONS(4873), + [sym_raw_string] = ACTIONS(4873), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4873), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4873), + [anon_sym_BQUOTE] = ACTIONS(4873), + [anon_sym_LT_LPAREN] = ACTIONS(4873), + [anon_sym_GT_LPAREN] = ACTIONS(4873), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4811), - [sym_word] = ACTIONS(4811), - [anon_sym_SEMI] = ACTIONS(4811), - [anon_sym_LF] = ACTIONS(4811), - [anon_sym_AMP] = ACTIONS(4811), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4873), + [sym_word] = ACTIONS(4873), + [anon_sym_SEMI] = ACTIONS(4873), + [anon_sym_LF] = ACTIONS(4873), + [anon_sym_AMP] = ACTIONS(4873), }, [4414] = { [sym_concatenation] = STATE(451), @@ -106935,50 +107337,50 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(4518), - [anon_sym_RBRACE] = ACTIONS(8857), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8937), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4415] = { - [sym__concat] = ACTIONS(4815), - [sym_variable_name] = ACTIONS(4815), - [anon_sym_esac] = ACTIONS(4817), - [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__concat] = ACTIONS(4877), + [sym_variable_name] = ACTIONS(4877), + [anon_sym_esac] = ACTIONS(4879), + [anon_sym_PIPE] = ACTIONS(4879), + [anon_sym_SEMI_SEMI] = ACTIONS(4879), + [anon_sym_PIPE_AMP] = ACTIONS(4879), + [anon_sym_AMP_AMP] = ACTIONS(4879), + [anon_sym_PIPE_PIPE] = ACTIONS(4879), + [sym__special_characters] = ACTIONS(4879), + [anon_sym_DQUOTE] = ACTIONS(4879), + [anon_sym_DOLLAR] = ACTIONS(4879), + [sym_raw_string] = ACTIONS(4879), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4879), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4879), + [anon_sym_BQUOTE] = ACTIONS(4879), + [anon_sym_LT_LPAREN] = ACTIONS(4879), + [anon_sym_GT_LPAREN] = ACTIONS(4879), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4817), - [sym_word] = ACTIONS(4817), - [anon_sym_SEMI] = ACTIONS(4817), - [anon_sym_LF] = ACTIONS(4817), - [anon_sym_AMP] = ACTIONS(4817), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4879), + [sym_word] = ACTIONS(4879), + [anon_sym_SEMI] = ACTIONS(4879), + [anon_sym_LF] = ACTIONS(4879), + [anon_sym_AMP] = ACTIONS(4879), }, [4416] = { [sym_concatenation] = STATE(451), @@ -106989,50 +107391,50 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(4520), - [anon_sym_RBRACE] = ACTIONS(8859), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8939), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4417] = { - [sym__concat] = ACTIONS(4821), - [sym_variable_name] = ACTIONS(4821), - [anon_sym_esac] = ACTIONS(4823), - [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__concat] = ACTIONS(4883), + [sym_variable_name] = ACTIONS(4883), + [anon_sym_esac] = ACTIONS(4885), + [anon_sym_PIPE] = ACTIONS(4885), + [anon_sym_SEMI_SEMI] = ACTIONS(4885), + [anon_sym_PIPE_AMP] = ACTIONS(4885), + [anon_sym_AMP_AMP] = ACTIONS(4885), + [anon_sym_PIPE_PIPE] = ACTIONS(4885), + [sym__special_characters] = ACTIONS(4885), + [anon_sym_DQUOTE] = ACTIONS(4885), + [anon_sym_DOLLAR] = ACTIONS(4885), + [sym_raw_string] = ACTIONS(4885), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4885), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4885), + [anon_sym_BQUOTE] = ACTIONS(4885), + [anon_sym_LT_LPAREN] = ACTIONS(4885), + [anon_sym_GT_LPAREN] = ACTIONS(4885), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4823), - [sym_word] = ACTIONS(4823), - [anon_sym_SEMI] = ACTIONS(4823), - [anon_sym_LF] = ACTIONS(4823), - [anon_sym_AMP] = ACTIONS(4823), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4885), + [sym_word] = ACTIONS(4885), + [anon_sym_SEMI] = ACTIONS(4885), + [anon_sym_LF] = ACTIONS(4885), + [anon_sym_AMP] = ACTIONS(4885), }, [4418] = { [sym_concatenation] = STATE(451), @@ -107043,50 +107445,50 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8861), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8941), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4419] = { - [sym__concat] = ACTIONS(4827), - [sym_variable_name] = ACTIONS(4827), - [anon_sym_esac] = ACTIONS(4829), - [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__concat] = ACTIONS(4889), + [sym_variable_name] = ACTIONS(4889), + [anon_sym_esac] = ACTIONS(4891), + [anon_sym_PIPE] = ACTIONS(4891), + [anon_sym_SEMI_SEMI] = ACTIONS(4891), + [anon_sym_PIPE_AMP] = ACTIONS(4891), + [anon_sym_AMP_AMP] = ACTIONS(4891), + [anon_sym_PIPE_PIPE] = ACTIONS(4891), + [sym__special_characters] = ACTIONS(4891), + [anon_sym_DQUOTE] = ACTIONS(4891), + [anon_sym_DOLLAR] = ACTIONS(4891), + [sym_raw_string] = ACTIONS(4891), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4891), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4891), + [anon_sym_BQUOTE] = ACTIONS(4891), + [anon_sym_LT_LPAREN] = ACTIONS(4891), + [anon_sym_GT_LPAREN] = ACTIONS(4891), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4829), - [sym_word] = ACTIONS(4829), - [anon_sym_SEMI] = ACTIONS(4829), - [anon_sym_LF] = ACTIONS(4829), - [anon_sym_AMP] = ACTIONS(4829), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4891), + [sym_word] = ACTIONS(4891), + [anon_sym_SEMI] = ACTIONS(4891), + [anon_sym_LF] = ACTIONS(4891), + [anon_sym_AMP] = ACTIONS(4891), }, [4420] = { [sym_concatenation] = STATE(451), @@ -107097,97 +107499,97 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8863), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8943), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4421] = { - [sym__concat] = ACTIONS(4728), - [anon_sym_esac] = ACTIONS(4730), - [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__concat] = ACTIONS(4790), + [anon_sym_esac] = ACTIONS(4792), + [anon_sym_PIPE] = ACTIONS(4792), + [anon_sym_SEMI_SEMI] = ACTIONS(4792), + [anon_sym_PIPE_AMP] = ACTIONS(4792), + [anon_sym_AMP_AMP] = ACTIONS(4792), + [anon_sym_PIPE_PIPE] = ACTIONS(4792), + [sym__special_characters] = ACTIONS(4792), + [anon_sym_DQUOTE] = ACTIONS(4792), + [anon_sym_DOLLAR] = ACTIONS(4792), + [sym_raw_string] = ACTIONS(4792), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4792), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4792), + [anon_sym_BQUOTE] = ACTIONS(4792), + [anon_sym_LT_LPAREN] = ACTIONS(4792), + [anon_sym_GT_LPAREN] = ACTIONS(4792), [sym_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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4792), + [sym_word] = ACTIONS(4792), + [anon_sym_SEMI] = ACTIONS(4792), + [anon_sym_LF] = ACTIONS(4792), + [anon_sym_AMP] = ACTIONS(4792), }, [4422] = { - [sym__concat] = ACTIONS(4734), - [anon_sym_esac] = ACTIONS(4736), - [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__concat] = ACTIONS(4796), + [anon_sym_esac] = ACTIONS(4798), + [anon_sym_PIPE] = ACTIONS(4798), + [anon_sym_SEMI_SEMI] = ACTIONS(4798), + [anon_sym_PIPE_AMP] = ACTIONS(4798), + [anon_sym_AMP_AMP] = ACTIONS(4798), + [anon_sym_PIPE_PIPE] = ACTIONS(4798), + [sym__special_characters] = ACTIONS(4798), + [anon_sym_DQUOTE] = ACTIONS(4798), + [anon_sym_DOLLAR] = ACTIONS(4798), + [sym_raw_string] = ACTIONS(4798), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4798), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4798), + [anon_sym_BQUOTE] = ACTIONS(4798), + [anon_sym_LT_LPAREN] = ACTIONS(4798), + [anon_sym_GT_LPAREN] = ACTIONS(4798), [sym_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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4798), + [sym_word] = ACTIONS(4798), + [anon_sym_SEMI] = ACTIONS(4798), + [anon_sym_LF] = ACTIONS(4798), + [anon_sym_AMP] = ACTIONS(4798), }, [4423] = { - [sym__concat] = ACTIONS(4797), - [anon_sym_esac] = ACTIONS(4799), - [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__concat] = ACTIONS(4859), + [anon_sym_esac] = ACTIONS(4861), + [anon_sym_PIPE] = ACTIONS(4861), + [anon_sym_SEMI_SEMI] = ACTIONS(4861), + [anon_sym_PIPE_AMP] = ACTIONS(4861), + [anon_sym_AMP_AMP] = ACTIONS(4861), + [anon_sym_PIPE_PIPE] = ACTIONS(4861), + [sym__special_characters] = ACTIONS(4861), + [anon_sym_DQUOTE] = ACTIONS(4861), + [anon_sym_DOLLAR] = ACTIONS(4861), + [sym_raw_string] = ACTIONS(4861), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4861), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4861), + [anon_sym_BQUOTE] = ACTIONS(4861), + [anon_sym_LT_LPAREN] = ACTIONS(4861), + [anon_sym_GT_LPAREN] = ACTIONS(4861), [sym_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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4861), + [sym_word] = ACTIONS(4861), + [anon_sym_SEMI] = ACTIONS(4861), + [anon_sym_LF] = ACTIONS(4861), + [anon_sym_AMP] = ACTIONS(4861), }, [4424] = { [sym_concatenation] = STATE(451), @@ -107198,40 +107600,40 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8865), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8945), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4425] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(8867), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(8947), [sym_comment] = ACTIONS(56), }, [4426] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(8869), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(8949), [sym_comment] = ACTIONS(56), }, [4427] = { - [anon_sym_RBRACE] = ACTIONS(8869), + [anon_sym_RBRACE] = ACTIONS(8949), [sym_comment] = ACTIONS(56), }, [4428] = { @@ -107243,49 +107645,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(4527), - [anon_sym_RBRACE] = ACTIONS(8871), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8951), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4429] = { - [sym__concat] = ACTIONS(4809), - [anon_sym_esac] = ACTIONS(4811), - [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__concat] = ACTIONS(4871), + [anon_sym_esac] = ACTIONS(4873), + [anon_sym_PIPE] = ACTIONS(4873), + [anon_sym_SEMI_SEMI] = ACTIONS(4873), + [anon_sym_PIPE_AMP] = ACTIONS(4873), + [anon_sym_AMP_AMP] = ACTIONS(4873), + [anon_sym_PIPE_PIPE] = ACTIONS(4873), + [sym__special_characters] = ACTIONS(4873), + [anon_sym_DQUOTE] = ACTIONS(4873), + [anon_sym_DOLLAR] = ACTIONS(4873), + [sym_raw_string] = ACTIONS(4873), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4873), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4873), + [anon_sym_BQUOTE] = ACTIONS(4873), + [anon_sym_LT_LPAREN] = ACTIONS(4873), + [anon_sym_GT_LPAREN] = ACTIONS(4873), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4811), - [sym_word] = ACTIONS(4811), - [anon_sym_SEMI] = ACTIONS(4811), - [anon_sym_LF] = ACTIONS(4811), - [anon_sym_AMP] = ACTIONS(4811), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4873), + [sym_word] = ACTIONS(4873), + [anon_sym_SEMI] = ACTIONS(4873), + [anon_sym_LF] = ACTIONS(4873), + [anon_sym_AMP] = ACTIONS(4873), }, [4430] = { [sym_concatenation] = STATE(451), @@ -107296,49 +107698,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(4529), - [anon_sym_RBRACE] = ACTIONS(8873), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8953), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4431] = { - [sym__concat] = ACTIONS(4815), - [anon_sym_esac] = ACTIONS(4817), - [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__concat] = ACTIONS(4877), + [anon_sym_esac] = ACTIONS(4879), + [anon_sym_PIPE] = ACTIONS(4879), + [anon_sym_SEMI_SEMI] = ACTIONS(4879), + [anon_sym_PIPE_AMP] = ACTIONS(4879), + [anon_sym_AMP_AMP] = ACTIONS(4879), + [anon_sym_PIPE_PIPE] = ACTIONS(4879), + [sym__special_characters] = ACTIONS(4879), + [anon_sym_DQUOTE] = ACTIONS(4879), + [anon_sym_DOLLAR] = ACTIONS(4879), + [sym_raw_string] = ACTIONS(4879), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4879), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4879), + [anon_sym_BQUOTE] = ACTIONS(4879), + [anon_sym_LT_LPAREN] = ACTIONS(4879), + [anon_sym_GT_LPAREN] = ACTIONS(4879), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4817), - [sym_word] = ACTIONS(4817), - [anon_sym_SEMI] = ACTIONS(4817), - [anon_sym_LF] = ACTIONS(4817), - [anon_sym_AMP] = ACTIONS(4817), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4879), + [sym_word] = ACTIONS(4879), + [anon_sym_SEMI] = ACTIONS(4879), + [anon_sym_LF] = ACTIONS(4879), + [anon_sym_AMP] = ACTIONS(4879), }, [4432] = { [sym_concatenation] = STATE(451), @@ -107349,49 +107751,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(4531), - [anon_sym_RBRACE] = ACTIONS(8875), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8955), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4433] = { - [sym__concat] = ACTIONS(4821), - [anon_sym_esac] = ACTIONS(4823), - [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__concat] = ACTIONS(4883), + [anon_sym_esac] = ACTIONS(4885), + [anon_sym_PIPE] = ACTIONS(4885), + [anon_sym_SEMI_SEMI] = ACTIONS(4885), + [anon_sym_PIPE_AMP] = ACTIONS(4885), + [anon_sym_AMP_AMP] = ACTIONS(4885), + [anon_sym_PIPE_PIPE] = ACTIONS(4885), + [sym__special_characters] = ACTIONS(4885), + [anon_sym_DQUOTE] = ACTIONS(4885), + [anon_sym_DOLLAR] = ACTIONS(4885), + [sym_raw_string] = ACTIONS(4885), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4885), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4885), + [anon_sym_BQUOTE] = ACTIONS(4885), + [anon_sym_LT_LPAREN] = ACTIONS(4885), + [anon_sym_GT_LPAREN] = ACTIONS(4885), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4823), - [sym_word] = ACTIONS(4823), - [anon_sym_SEMI] = ACTIONS(4823), - [anon_sym_LF] = ACTIONS(4823), - [anon_sym_AMP] = ACTIONS(4823), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4885), + [sym_word] = ACTIONS(4885), + [anon_sym_SEMI] = ACTIONS(4885), + [anon_sym_LF] = ACTIONS(4885), + [anon_sym_AMP] = ACTIONS(4885), }, [4434] = { [sym_concatenation] = STATE(451), @@ -107402,49 +107804,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8877), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8957), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4435] = { - [sym__concat] = ACTIONS(4827), - [anon_sym_esac] = ACTIONS(4829), - [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__concat] = ACTIONS(4889), + [anon_sym_esac] = ACTIONS(4891), + [anon_sym_PIPE] = ACTIONS(4891), + [anon_sym_SEMI_SEMI] = ACTIONS(4891), + [anon_sym_PIPE_AMP] = ACTIONS(4891), + [anon_sym_AMP_AMP] = ACTIONS(4891), + [anon_sym_PIPE_PIPE] = ACTIONS(4891), + [sym__special_characters] = ACTIONS(4891), + [anon_sym_DQUOTE] = ACTIONS(4891), + [anon_sym_DOLLAR] = ACTIONS(4891), + [sym_raw_string] = ACTIONS(4891), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4891), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4891), + [anon_sym_BQUOTE] = ACTIONS(4891), + [anon_sym_LT_LPAREN] = ACTIONS(4891), + [anon_sym_GT_LPAREN] = ACTIONS(4891), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4829), - [sym_word] = ACTIONS(4829), - [anon_sym_SEMI] = ACTIONS(4829), - [anon_sym_LF] = ACTIONS(4829), - [anon_sym_AMP] = ACTIONS(4829), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4891), + [sym_word] = ACTIONS(4891), + [anon_sym_SEMI] = ACTIONS(4891), + [anon_sym_LF] = ACTIONS(4891), + [anon_sym_AMP] = ACTIONS(4891), }, [4436] = { [sym_concatenation] = STATE(451), @@ -107455,165 +107857,169 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8879), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8959), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4437] = { - [sym_file_descriptor] = ACTIONS(5961), - [sym__concat] = ACTIONS(5961), - [anon_sym_esac] = ACTIONS(5963), - [anon_sym_PIPE] = ACTIONS(5963), - [anon_sym_SEMI_SEMI] = 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(5963), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_GT] = ACTIONS(5963), - [anon_sym_GT_GT] = ACTIONS(5963), - [anon_sym_AMP_GT] = ACTIONS(5963), - [anon_sym_AMP_GT_GT] = ACTIONS(5963), - [anon_sym_LT_AMP] = ACTIONS(5963), - [anon_sym_GT_AMP] = ACTIONS(5963), - [anon_sym_LT_LT] = ACTIONS(5963), - [anon_sym_LT_LT_DASH] = ACTIONS(5963), - [anon_sym_LT_LT_LT] = ACTIONS(5963), - [sym__special_characters] = ACTIONS(5963), - [anon_sym_DQUOTE] = ACTIONS(5963), - [anon_sym_DOLLAR] = ACTIONS(5963), - [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_file_descriptor] = ACTIONS(6025), + [sym__concat] = ACTIONS(6025), + [anon_sym_esac] = ACTIONS(6027), + [anon_sym_PIPE] = ACTIONS(6027), + [anon_sym_SEMI_SEMI] = ACTIONS(6027), + [anon_sym_PIPE_AMP] = ACTIONS(6027), + [anon_sym_AMP_AMP] = ACTIONS(6027), + [anon_sym_PIPE_PIPE] = ACTIONS(6027), + [anon_sym_EQ_TILDE] = ACTIONS(6027), + [anon_sym_EQ_EQ] = ACTIONS(6027), + [anon_sym_LT] = ACTIONS(6027), + [anon_sym_GT] = ACTIONS(6027), + [anon_sym_GT_GT] = ACTIONS(6027), + [anon_sym_AMP_GT] = ACTIONS(6027), + [anon_sym_AMP_GT_GT] = ACTIONS(6027), + [anon_sym_LT_AMP] = ACTIONS(6027), + [anon_sym_GT_AMP] = ACTIONS(6027), + [anon_sym_LT_LT] = ACTIONS(6027), + [anon_sym_LT_LT_DASH] = ACTIONS(6027), + [anon_sym_LT_LT_LT] = ACTIONS(6027), + [sym__special_characters] = ACTIONS(6027), + [anon_sym_DQUOTE] = ACTIONS(6027), + [anon_sym_DOLLAR] = ACTIONS(6027), + [sym_raw_string] = ACTIONS(6027), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6027), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6027), + [anon_sym_BQUOTE] = ACTIONS(6027), + [anon_sym_LT_LPAREN] = ACTIONS(6027), + [anon_sym_GT_LPAREN] = ACTIONS(6027), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(5963), - [anon_sym_SEMI] = ACTIONS(5963), - [anon_sym_LF] = ACTIONS(5963), - [anon_sym_AMP] = ACTIONS(5963), + [sym_word] = ACTIONS(6027), + [anon_sym_SEMI] = ACTIONS(6027), + [anon_sym_LF] = ACTIONS(6027), + [anon_sym_AMP] = ACTIONS(6027), }, [4438] = { - [sym_file_descriptor] = ACTIONS(5965), - [sym__concat] = ACTIONS(5965), - [anon_sym_esac] = ACTIONS(5967), - [anon_sym_PIPE] = ACTIONS(5967), - [anon_sym_SEMI_SEMI] = ACTIONS(5967), - [anon_sym_PIPE_AMP] = ACTIONS(5967), - [anon_sym_AMP_AMP] = ACTIONS(5967), - [anon_sym_PIPE_PIPE] = ACTIONS(5967), - [anon_sym_EQ_TILDE] = ACTIONS(5967), - [anon_sym_LT] = ACTIONS(5967), - [anon_sym_GT] = ACTIONS(5967), - [anon_sym_GT_GT] = ACTIONS(5967), - [anon_sym_AMP_GT] = ACTIONS(5967), - [anon_sym_AMP_GT_GT] = ACTIONS(5967), - [anon_sym_LT_AMP] = ACTIONS(5967), - [anon_sym_GT_AMP] = ACTIONS(5967), - [anon_sym_LT_LT] = ACTIONS(5967), - [anon_sym_LT_LT_DASH] = ACTIONS(5967), - [anon_sym_LT_LT_LT] = ACTIONS(5967), - [sym__special_characters] = ACTIONS(5967), - [anon_sym_DQUOTE] = ACTIONS(5967), - [anon_sym_DOLLAR] = ACTIONS(5967), - [sym_raw_string] = ACTIONS(5967), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5967), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5967), - [anon_sym_BQUOTE] = ACTIONS(5967), - [anon_sym_LT_LPAREN] = ACTIONS(5967), - [anon_sym_GT_LPAREN] = ACTIONS(5967), + [sym_file_descriptor] = ACTIONS(6029), + [sym__concat] = ACTIONS(6029), + [anon_sym_esac] = ACTIONS(6031), + [anon_sym_PIPE] = ACTIONS(6031), + [anon_sym_SEMI_SEMI] = ACTIONS(6031), + [anon_sym_PIPE_AMP] = ACTIONS(6031), + [anon_sym_AMP_AMP] = ACTIONS(6031), + [anon_sym_PIPE_PIPE] = ACTIONS(6031), + [anon_sym_EQ_TILDE] = ACTIONS(6031), + [anon_sym_EQ_EQ] = ACTIONS(6031), + [anon_sym_LT] = ACTIONS(6031), + [anon_sym_GT] = ACTIONS(6031), + [anon_sym_GT_GT] = ACTIONS(6031), + [anon_sym_AMP_GT] = ACTIONS(6031), + [anon_sym_AMP_GT_GT] = ACTIONS(6031), + [anon_sym_LT_AMP] = ACTIONS(6031), + [anon_sym_GT_AMP] = ACTIONS(6031), + [anon_sym_LT_LT] = ACTIONS(6031), + [anon_sym_LT_LT_DASH] = ACTIONS(6031), + [anon_sym_LT_LT_LT] = ACTIONS(6031), + [sym__special_characters] = ACTIONS(6031), + [anon_sym_DQUOTE] = ACTIONS(6031), + [anon_sym_DOLLAR] = ACTIONS(6031), + [sym_raw_string] = ACTIONS(6031), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6031), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6031), + [anon_sym_BQUOTE] = ACTIONS(6031), + [anon_sym_LT_LPAREN] = ACTIONS(6031), + [anon_sym_GT_LPAREN] = ACTIONS(6031), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(5967), - [anon_sym_SEMI] = ACTIONS(5967), - [anon_sym_LF] = ACTIONS(5967), - [anon_sym_AMP] = ACTIONS(5967), + [sym_word] = ACTIONS(6031), + [anon_sym_SEMI] = ACTIONS(6031), + [anon_sym_LF] = ACTIONS(6031), + [anon_sym_AMP] = ACTIONS(6031), }, [4439] = { - [sym_file_descriptor] = ACTIONS(5969), - [sym__concat] = ACTIONS(5969), - [anon_sym_esac] = ACTIONS(5971), - [anon_sym_PIPE] = ACTIONS(5971), - [anon_sym_SEMI_SEMI] = ACTIONS(5971), - [anon_sym_PIPE_AMP] = ACTIONS(5971), - [anon_sym_AMP_AMP] = ACTIONS(5971), - [anon_sym_PIPE_PIPE] = ACTIONS(5971), - [anon_sym_EQ_TILDE] = ACTIONS(5971), - [anon_sym_LT] = ACTIONS(5971), - [anon_sym_GT] = ACTIONS(5971), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_AMP_GT] = ACTIONS(5971), - [anon_sym_AMP_GT_GT] = ACTIONS(5971), - [anon_sym_LT_AMP] = ACTIONS(5971), - [anon_sym_GT_AMP] = ACTIONS(5971), - [anon_sym_LT_LT] = ACTIONS(5971), - [anon_sym_LT_LT_DASH] = ACTIONS(5971), - [anon_sym_LT_LT_LT] = ACTIONS(5971), - [sym__special_characters] = ACTIONS(5971), - [anon_sym_DQUOTE] = ACTIONS(5971), - [anon_sym_DOLLAR] = ACTIONS(5971), - [sym_raw_string] = ACTIONS(5971), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5971), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5971), - [anon_sym_BQUOTE] = ACTIONS(5971), - [anon_sym_LT_LPAREN] = ACTIONS(5971), - [anon_sym_GT_LPAREN] = ACTIONS(5971), + [sym_file_descriptor] = ACTIONS(6033), + [sym__concat] = ACTIONS(6033), + [anon_sym_esac] = ACTIONS(6035), + [anon_sym_PIPE] = ACTIONS(6035), + [anon_sym_SEMI_SEMI] = ACTIONS(6035), + [anon_sym_PIPE_AMP] = ACTIONS(6035), + [anon_sym_AMP_AMP] = ACTIONS(6035), + [anon_sym_PIPE_PIPE] = ACTIONS(6035), + [anon_sym_EQ_TILDE] = ACTIONS(6035), + [anon_sym_EQ_EQ] = ACTIONS(6035), + [anon_sym_LT] = ACTIONS(6035), + [anon_sym_GT] = ACTIONS(6035), + [anon_sym_GT_GT] = ACTIONS(6035), + [anon_sym_AMP_GT] = ACTIONS(6035), + [anon_sym_AMP_GT_GT] = ACTIONS(6035), + [anon_sym_LT_AMP] = ACTIONS(6035), + [anon_sym_GT_AMP] = ACTIONS(6035), + [anon_sym_LT_LT] = ACTIONS(6035), + [anon_sym_LT_LT_DASH] = ACTIONS(6035), + [anon_sym_LT_LT_LT] = ACTIONS(6035), + [sym__special_characters] = ACTIONS(6035), + [anon_sym_DQUOTE] = ACTIONS(6035), + [anon_sym_DOLLAR] = ACTIONS(6035), + [sym_raw_string] = ACTIONS(6035), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6035), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6035), + [anon_sym_BQUOTE] = ACTIONS(6035), + [anon_sym_LT_LPAREN] = ACTIONS(6035), + [anon_sym_GT_LPAREN] = ACTIONS(6035), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(5971), - [anon_sym_SEMI] = ACTIONS(5971), - [anon_sym_LF] = ACTIONS(5971), - [anon_sym_AMP] = ACTIONS(5971), + [sym_word] = ACTIONS(6035), + [anon_sym_SEMI] = ACTIONS(6035), + [anon_sym_LF] = ACTIONS(6035), + [anon_sym_AMP] = ACTIONS(6035), }, [4440] = { - [sym_file_descriptor] = ACTIONS(5973), - [sym__concat] = ACTIONS(5973), - [anon_sym_esac] = ACTIONS(5975), - [anon_sym_PIPE] = ACTIONS(5975), - [anon_sym_SEMI_SEMI] = ACTIONS(5975), - [anon_sym_PIPE_AMP] = ACTIONS(5975), - [anon_sym_AMP_AMP] = ACTIONS(5975), - [anon_sym_PIPE_PIPE] = ACTIONS(5975), - [anon_sym_EQ_TILDE] = ACTIONS(5975), - [anon_sym_LT] = ACTIONS(5975), - [anon_sym_GT] = ACTIONS(5975), - [anon_sym_GT_GT] = ACTIONS(5975), - [anon_sym_AMP_GT] = ACTIONS(5975), - [anon_sym_AMP_GT_GT] = ACTIONS(5975), - [anon_sym_LT_AMP] = ACTIONS(5975), - [anon_sym_GT_AMP] = ACTIONS(5975), - [anon_sym_LT_LT] = ACTIONS(5975), - [anon_sym_LT_LT_DASH] = ACTIONS(5975), - [anon_sym_LT_LT_LT] = ACTIONS(5975), - [sym__special_characters] = ACTIONS(5975), - [anon_sym_DQUOTE] = ACTIONS(5975), - [anon_sym_DOLLAR] = ACTIONS(5975), - [sym_raw_string] = ACTIONS(5975), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5975), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5975), - [anon_sym_BQUOTE] = ACTIONS(5975), - [anon_sym_LT_LPAREN] = ACTIONS(5975), - [anon_sym_GT_LPAREN] = ACTIONS(5975), + [sym_file_descriptor] = ACTIONS(6037), + [sym__concat] = ACTIONS(6037), + [anon_sym_esac] = ACTIONS(6039), + [anon_sym_PIPE] = ACTIONS(6039), + [anon_sym_SEMI_SEMI] = ACTIONS(6039), + [anon_sym_PIPE_AMP] = ACTIONS(6039), + [anon_sym_AMP_AMP] = ACTIONS(6039), + [anon_sym_PIPE_PIPE] = ACTIONS(6039), + [anon_sym_EQ_TILDE] = ACTIONS(6039), + [anon_sym_EQ_EQ] = ACTIONS(6039), + [anon_sym_LT] = ACTIONS(6039), + [anon_sym_GT] = ACTIONS(6039), + [anon_sym_GT_GT] = ACTIONS(6039), + [anon_sym_AMP_GT] = ACTIONS(6039), + [anon_sym_AMP_GT_GT] = ACTIONS(6039), + [anon_sym_LT_AMP] = ACTIONS(6039), + [anon_sym_GT_AMP] = ACTIONS(6039), + [anon_sym_LT_LT] = ACTIONS(6039), + [anon_sym_LT_LT_DASH] = ACTIONS(6039), + [anon_sym_LT_LT_LT] = ACTIONS(6039), + [sym__special_characters] = ACTIONS(6039), + [anon_sym_DQUOTE] = ACTIONS(6039), + [anon_sym_DOLLAR] = ACTIONS(6039), + [sym_raw_string] = ACTIONS(6039), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6039), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6039), + [anon_sym_BQUOTE] = ACTIONS(6039), + [anon_sym_LT_LPAREN] = ACTIONS(6039), + [anon_sym_GT_LPAREN] = ACTIONS(6039), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(5975), - [anon_sym_SEMI] = ACTIONS(5975), - [anon_sym_LF] = ACTIONS(5975), - [anon_sym_AMP] = ACTIONS(5975), + [sym_word] = ACTIONS(6039), + [anon_sym_SEMI] = ACTIONS(6039), + [anon_sym_LF] = ACTIONS(6039), + [anon_sym_AMP] = ACTIONS(6039), }, [4441] = { [sym_concatenation] = STATE(451), @@ -107624,60 +108030,61 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8881), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8961), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4442] = { - [sym_file_descriptor] = ACTIONS(5979), - [sym__concat] = ACTIONS(5979), - [anon_sym_esac] = ACTIONS(5981), - [anon_sym_PIPE] = ACTIONS(5981), - [anon_sym_SEMI_SEMI] = ACTIONS(5981), - [anon_sym_PIPE_AMP] = ACTIONS(5981), - [anon_sym_AMP_AMP] = ACTIONS(5981), - [anon_sym_PIPE_PIPE] = ACTIONS(5981), - [anon_sym_EQ_TILDE] = ACTIONS(5981), - [anon_sym_LT] = ACTIONS(5981), - [anon_sym_GT] = ACTIONS(5981), - [anon_sym_GT_GT] = ACTIONS(5981), - [anon_sym_AMP_GT] = ACTIONS(5981), - [anon_sym_AMP_GT_GT] = ACTIONS(5981), - [anon_sym_LT_AMP] = ACTIONS(5981), - [anon_sym_GT_AMP] = ACTIONS(5981), - [anon_sym_LT_LT] = ACTIONS(5981), - [anon_sym_LT_LT_DASH] = ACTIONS(5981), - [anon_sym_LT_LT_LT] = ACTIONS(5981), - [sym__special_characters] = ACTIONS(5981), - [anon_sym_DQUOTE] = ACTIONS(5981), - [anon_sym_DOLLAR] = ACTIONS(5981), - [sym_raw_string] = ACTIONS(5981), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5981), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5981), - [anon_sym_BQUOTE] = ACTIONS(5981), - [anon_sym_LT_LPAREN] = ACTIONS(5981), - [anon_sym_GT_LPAREN] = ACTIONS(5981), + [sym_file_descriptor] = ACTIONS(6043), + [sym__concat] = ACTIONS(6043), + [anon_sym_esac] = ACTIONS(6045), + [anon_sym_PIPE] = ACTIONS(6045), + [anon_sym_SEMI_SEMI] = ACTIONS(6045), + [anon_sym_PIPE_AMP] = ACTIONS(6045), + [anon_sym_AMP_AMP] = ACTIONS(6045), + [anon_sym_PIPE_PIPE] = ACTIONS(6045), + [anon_sym_EQ_TILDE] = ACTIONS(6045), + [anon_sym_EQ_EQ] = ACTIONS(6045), + [anon_sym_LT] = ACTIONS(6045), + [anon_sym_GT] = ACTIONS(6045), + [anon_sym_GT_GT] = ACTIONS(6045), + [anon_sym_AMP_GT] = ACTIONS(6045), + [anon_sym_AMP_GT_GT] = ACTIONS(6045), + [anon_sym_LT_AMP] = ACTIONS(6045), + [anon_sym_GT_AMP] = ACTIONS(6045), + [anon_sym_LT_LT] = ACTIONS(6045), + [anon_sym_LT_LT_DASH] = ACTIONS(6045), + [anon_sym_LT_LT_LT] = ACTIONS(6045), + [sym__special_characters] = ACTIONS(6045), + [anon_sym_DQUOTE] = ACTIONS(6045), + [anon_sym_DOLLAR] = ACTIONS(6045), + [sym_raw_string] = ACTIONS(6045), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6045), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6045), + [anon_sym_BQUOTE] = ACTIONS(6045), + [anon_sym_LT_LPAREN] = ACTIONS(6045), + [anon_sym_GT_LPAREN] = ACTIONS(6045), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(5981), - [anon_sym_SEMI] = ACTIONS(5981), - [anon_sym_LF] = ACTIONS(5981), - [anon_sym_AMP] = ACTIONS(5981), + [sym_word] = ACTIONS(6045), + [anon_sym_SEMI] = ACTIONS(6045), + [anon_sym_LF] = ACTIONS(6045), + [anon_sym_AMP] = ACTIONS(6045), }, [4443] = { [sym_concatenation] = STATE(451), @@ -107688,60 +108095,61 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8883), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8963), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4444] = { - [sym_file_descriptor] = ACTIONS(5985), - [sym__concat] = ACTIONS(5985), - [anon_sym_esac] = ACTIONS(5987), - [anon_sym_PIPE] = ACTIONS(5987), - [anon_sym_SEMI_SEMI] = ACTIONS(5987), - [anon_sym_PIPE_AMP] = ACTIONS(5987), - [anon_sym_AMP_AMP] = ACTIONS(5987), - [anon_sym_PIPE_PIPE] = ACTIONS(5987), - [anon_sym_EQ_TILDE] = ACTIONS(5987), - [anon_sym_LT] = ACTIONS(5987), - [anon_sym_GT] = ACTIONS(5987), - [anon_sym_GT_GT] = ACTIONS(5987), - [anon_sym_AMP_GT] = ACTIONS(5987), - [anon_sym_AMP_GT_GT] = ACTIONS(5987), - [anon_sym_LT_AMP] = ACTIONS(5987), - [anon_sym_GT_AMP] = ACTIONS(5987), - [anon_sym_LT_LT] = ACTIONS(5987), - [anon_sym_LT_LT_DASH] = ACTIONS(5987), - [anon_sym_LT_LT_LT] = ACTIONS(5987), - [sym__special_characters] = ACTIONS(5987), - [anon_sym_DQUOTE] = ACTIONS(5987), - [anon_sym_DOLLAR] = ACTIONS(5987), - [sym_raw_string] = ACTIONS(5987), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5987), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5987), - [anon_sym_BQUOTE] = ACTIONS(5987), - [anon_sym_LT_LPAREN] = ACTIONS(5987), - [anon_sym_GT_LPAREN] = ACTIONS(5987), + [sym_file_descriptor] = ACTIONS(6049), + [sym__concat] = ACTIONS(6049), + [anon_sym_esac] = ACTIONS(6051), + [anon_sym_PIPE] = ACTIONS(6051), + [anon_sym_SEMI_SEMI] = ACTIONS(6051), + [anon_sym_PIPE_AMP] = ACTIONS(6051), + [anon_sym_AMP_AMP] = ACTIONS(6051), + [anon_sym_PIPE_PIPE] = ACTIONS(6051), + [anon_sym_EQ_TILDE] = ACTIONS(6051), + [anon_sym_EQ_EQ] = ACTIONS(6051), + [anon_sym_LT] = ACTIONS(6051), + [anon_sym_GT] = ACTIONS(6051), + [anon_sym_GT_GT] = ACTIONS(6051), + [anon_sym_AMP_GT] = ACTIONS(6051), + [anon_sym_AMP_GT_GT] = ACTIONS(6051), + [anon_sym_LT_AMP] = ACTIONS(6051), + [anon_sym_GT_AMP] = ACTIONS(6051), + [anon_sym_LT_LT] = ACTIONS(6051), + [anon_sym_LT_LT_DASH] = ACTIONS(6051), + [anon_sym_LT_LT_LT] = ACTIONS(6051), + [sym__special_characters] = ACTIONS(6051), + [anon_sym_DQUOTE] = ACTIONS(6051), + [anon_sym_DOLLAR] = ACTIONS(6051), + [sym_raw_string] = ACTIONS(6051), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6051), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6051), + [anon_sym_BQUOTE] = ACTIONS(6051), + [anon_sym_LT_LPAREN] = ACTIONS(6051), + [anon_sym_GT_LPAREN] = ACTIONS(6051), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(5987), - [anon_sym_SEMI] = ACTIONS(5987), - [anon_sym_LF] = ACTIONS(5987), - [anon_sym_AMP] = ACTIONS(5987), + [sym_word] = ACTIONS(6051), + [anon_sym_SEMI] = ACTIONS(6051), + [anon_sym_LF] = ACTIONS(6051), + [anon_sym_AMP] = ACTIONS(6051), }, [4445] = { [sym_concatenation] = STATE(451), @@ -107752,134 +108160,136 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8885), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8965), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4446] = { - [sym_file_descriptor] = ACTIONS(5991), - [sym__concat] = ACTIONS(5991), - [anon_sym_esac] = ACTIONS(5993), - [anon_sym_PIPE] = ACTIONS(5993), - [anon_sym_SEMI_SEMI] = ACTIONS(5993), - [anon_sym_PIPE_AMP] = ACTIONS(5993), - [anon_sym_AMP_AMP] = ACTIONS(5993), - [anon_sym_PIPE_PIPE] = ACTIONS(5993), - [anon_sym_EQ_TILDE] = ACTIONS(5993), - [anon_sym_LT] = ACTIONS(5993), - [anon_sym_GT] = ACTIONS(5993), - [anon_sym_GT_GT] = ACTIONS(5993), - [anon_sym_AMP_GT] = ACTIONS(5993), - [anon_sym_AMP_GT_GT] = ACTIONS(5993), - [anon_sym_LT_AMP] = ACTIONS(5993), - [anon_sym_GT_AMP] = ACTIONS(5993), - [anon_sym_LT_LT] = ACTIONS(5993), - [anon_sym_LT_LT_DASH] = ACTIONS(5993), - [anon_sym_LT_LT_LT] = ACTIONS(5993), - [sym__special_characters] = ACTIONS(5993), - [anon_sym_DQUOTE] = ACTIONS(5993), - [anon_sym_DOLLAR] = ACTIONS(5993), - [sym_raw_string] = ACTIONS(5993), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5993), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5993), - [anon_sym_BQUOTE] = ACTIONS(5993), - [anon_sym_LT_LPAREN] = ACTIONS(5993), - [anon_sym_GT_LPAREN] = ACTIONS(5993), + [sym_file_descriptor] = ACTIONS(6055), + [sym__concat] = ACTIONS(6055), + [anon_sym_esac] = ACTIONS(6057), + [anon_sym_PIPE] = ACTIONS(6057), + [anon_sym_SEMI_SEMI] = ACTIONS(6057), + [anon_sym_PIPE_AMP] = ACTIONS(6057), + [anon_sym_AMP_AMP] = ACTIONS(6057), + [anon_sym_PIPE_PIPE] = ACTIONS(6057), + [anon_sym_EQ_TILDE] = ACTIONS(6057), + [anon_sym_EQ_EQ] = ACTIONS(6057), + [anon_sym_LT] = ACTIONS(6057), + [anon_sym_GT] = ACTIONS(6057), + [anon_sym_GT_GT] = ACTIONS(6057), + [anon_sym_AMP_GT] = ACTIONS(6057), + [anon_sym_AMP_GT_GT] = ACTIONS(6057), + [anon_sym_LT_AMP] = ACTIONS(6057), + [anon_sym_GT_AMP] = ACTIONS(6057), + [anon_sym_LT_LT] = ACTIONS(6057), + [anon_sym_LT_LT_DASH] = ACTIONS(6057), + [anon_sym_LT_LT_LT] = ACTIONS(6057), + [sym__special_characters] = ACTIONS(6057), + [anon_sym_DQUOTE] = ACTIONS(6057), + [anon_sym_DOLLAR] = ACTIONS(6057), + [sym_raw_string] = ACTIONS(6057), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6057), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6057), + [anon_sym_BQUOTE] = ACTIONS(6057), + [anon_sym_LT_LPAREN] = ACTIONS(6057), + [anon_sym_GT_LPAREN] = ACTIONS(6057), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(5993), - [anon_sym_SEMI] = ACTIONS(5993), - [anon_sym_LF] = ACTIONS(5993), - [anon_sym_AMP] = ACTIONS(5993), + [sym_word] = ACTIONS(6057), + [anon_sym_SEMI] = ACTIONS(6057), + [anon_sym_LF] = ACTIONS(6057), + [anon_sym_AMP] = ACTIONS(6057), }, [4447] = { - [sym_file_descriptor] = ACTIONS(5995), - [sym__concat] = ACTIONS(5995), - [anon_sym_esac] = ACTIONS(5997), - [anon_sym_PIPE] = ACTIONS(5997), - [anon_sym_SEMI_SEMI] = ACTIONS(5997), - [anon_sym_PIPE_AMP] = ACTIONS(5997), - [anon_sym_AMP_AMP] = ACTIONS(5997), - [anon_sym_PIPE_PIPE] = ACTIONS(5997), - [anon_sym_EQ_TILDE] = ACTIONS(5997), - [anon_sym_LT] = ACTIONS(5997), - [anon_sym_GT] = ACTIONS(5997), - [anon_sym_GT_GT] = ACTIONS(5997), - [anon_sym_AMP_GT] = ACTIONS(5997), - [anon_sym_AMP_GT_GT] = ACTIONS(5997), - [anon_sym_LT_AMP] = ACTIONS(5997), - [anon_sym_GT_AMP] = ACTIONS(5997), - [anon_sym_LT_LT] = ACTIONS(5997), - [anon_sym_LT_LT_DASH] = ACTIONS(5997), - [anon_sym_LT_LT_LT] = ACTIONS(5997), - [sym__special_characters] = ACTIONS(5997), - [anon_sym_DQUOTE] = ACTIONS(5997), - [anon_sym_DOLLAR] = ACTIONS(5997), - [sym_raw_string] = ACTIONS(5997), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5997), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5997), - [anon_sym_BQUOTE] = ACTIONS(5997), - [anon_sym_LT_LPAREN] = ACTIONS(5997), - [anon_sym_GT_LPAREN] = ACTIONS(5997), + [sym_file_descriptor] = ACTIONS(6059), + [sym__concat] = ACTIONS(6059), + [anon_sym_esac] = ACTIONS(6061), + [anon_sym_PIPE] = ACTIONS(6061), + [anon_sym_SEMI_SEMI] = ACTIONS(6061), + [anon_sym_PIPE_AMP] = ACTIONS(6061), + [anon_sym_AMP_AMP] = ACTIONS(6061), + [anon_sym_PIPE_PIPE] = ACTIONS(6061), + [anon_sym_EQ_TILDE] = ACTIONS(6061), + [anon_sym_EQ_EQ] = ACTIONS(6061), + [anon_sym_LT] = ACTIONS(6061), + [anon_sym_GT] = ACTIONS(6061), + [anon_sym_GT_GT] = ACTIONS(6061), + [anon_sym_AMP_GT] = ACTIONS(6061), + [anon_sym_AMP_GT_GT] = ACTIONS(6061), + [anon_sym_LT_AMP] = ACTIONS(6061), + [anon_sym_GT_AMP] = ACTIONS(6061), + [anon_sym_LT_LT] = ACTIONS(6061), + [anon_sym_LT_LT_DASH] = ACTIONS(6061), + [anon_sym_LT_LT_LT] = ACTIONS(6061), + [sym__special_characters] = ACTIONS(6061), + [anon_sym_DQUOTE] = ACTIONS(6061), + [anon_sym_DOLLAR] = ACTIONS(6061), + [sym_raw_string] = ACTIONS(6061), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6061), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6061), + [anon_sym_BQUOTE] = ACTIONS(6061), + [anon_sym_LT_LPAREN] = ACTIONS(6061), + [anon_sym_GT_LPAREN] = ACTIONS(6061), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(5997), - [anon_sym_SEMI] = ACTIONS(5997), - [anon_sym_LF] = ACTIONS(5997), - [anon_sym_AMP] = ACTIONS(5997), + [sym_word] = ACTIONS(6061), + [anon_sym_SEMI] = ACTIONS(6061), + [anon_sym_LF] = ACTIONS(6061), + [anon_sym_AMP] = ACTIONS(6061), }, [4448] = { - [sym_file_descriptor] = ACTIONS(3235), - [sym__concat] = ACTIONS(3235), - [anon_sym_esac] = ACTIONS(3237), - [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_file_descriptor] = ACTIONS(3283), + [sym__concat] = ACTIONS(3283), + [anon_sym_esac] = ACTIONS(3285), + [anon_sym_PIPE] = ACTIONS(3285), + [anon_sym_SEMI_SEMI] = ACTIONS(3285), + [anon_sym_PIPE_AMP] = ACTIONS(3285), + [anon_sym_AMP_AMP] = ACTIONS(3285), + [anon_sym_PIPE_PIPE] = ACTIONS(3285), + [anon_sym_LT] = ACTIONS(3285), + [anon_sym_GT] = ACTIONS(3285), + [anon_sym_GT_GT] = ACTIONS(3285), + [anon_sym_AMP_GT] = ACTIONS(3285), + [anon_sym_AMP_GT_GT] = ACTIONS(3285), + [anon_sym_LT_AMP] = ACTIONS(3285), + [anon_sym_GT_AMP] = ACTIONS(3285), + [anon_sym_LT_LT] = ACTIONS(3285), + [anon_sym_LT_LT_DASH] = ACTIONS(3285), + [anon_sym_LT_LT_LT] = ACTIONS(3285), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3237), - [anon_sym_LF] = ACTIONS(3237), - [anon_sym_AMP] = ACTIONS(3237), + [anon_sym_SEMI] = ACTIONS(3285), + [anon_sym_LF] = ACTIONS(3285), + [anon_sym_AMP] = ACTIONS(3285), }, [4449] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(8887), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(8967), [sym_comment] = ACTIONS(56), }, [4450] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(8889), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(8969), [sym_comment] = ACTIONS(56), }, [4451] = { - [anon_sym_RBRACE] = ACTIONS(8889), + [anon_sym_RBRACE] = ACTIONS(8969), [sym_comment] = ACTIONS(56), }, [4452] = { @@ -107891,49 +108301,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(4540), - [anon_sym_RBRACE] = ACTIONS(8891), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8971), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4453] = { - [sym_file_descriptor] = ACTIONS(3297), - [sym__concat] = ACTIONS(3297), - [anon_sym_esac] = ACTIONS(3299), - [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_file_descriptor] = ACTIONS(3347), + [sym__concat] = ACTIONS(3347), + [anon_sym_esac] = ACTIONS(3349), + [anon_sym_PIPE] = ACTIONS(3349), + [anon_sym_SEMI_SEMI] = ACTIONS(3349), + [anon_sym_PIPE_AMP] = ACTIONS(3349), + [anon_sym_AMP_AMP] = ACTIONS(3349), + [anon_sym_PIPE_PIPE] = ACTIONS(3349), + [anon_sym_LT] = ACTIONS(3349), + [anon_sym_GT] = ACTIONS(3349), + [anon_sym_GT_GT] = ACTIONS(3349), + [anon_sym_AMP_GT] = ACTIONS(3349), + [anon_sym_AMP_GT_GT] = ACTIONS(3349), + [anon_sym_LT_AMP] = ACTIONS(3349), + [anon_sym_GT_AMP] = ACTIONS(3349), + [anon_sym_LT_LT] = ACTIONS(3349), + [anon_sym_LT_LT_DASH] = ACTIONS(3349), + [anon_sym_LT_LT_LT] = ACTIONS(3349), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3299), - [anon_sym_LF] = ACTIONS(3299), - [anon_sym_AMP] = ACTIONS(3299), + [anon_sym_SEMI] = ACTIONS(3349), + [anon_sym_LF] = ACTIONS(3349), + [anon_sym_AMP] = ACTIONS(3349), }, [4454] = { [sym_concatenation] = STATE(4543), @@ -107943,46 +108353,46 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(4542), [sym_command_substitution] = STATE(4542), [sym_process_substitution] = STATE(4542), - [anon_sym_RBRACE] = ACTIONS(8889), - [sym__special_characters] = ACTIONS(8893), - [anon_sym_DQUOTE] = ACTIONS(1924), - [anon_sym_DOLLAR] = ACTIONS(1926), - [sym_raw_string] = ACTIONS(8895), - [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), + [anon_sym_RBRACE] = ACTIONS(8969), + [sym__special_characters] = ACTIONS(8973), + [anon_sym_DQUOTE] = ACTIONS(1952), + [anon_sym_DOLLAR] = ACTIONS(1954), + [sym_raw_string] = ACTIONS(8975), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), + [anon_sym_BQUOTE] = ACTIONS(1962), + [anon_sym_LT_LPAREN] = ACTIONS(1964), + [anon_sym_GT_LPAREN] = ACTIONS(1964), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(8897), + [sym_word] = ACTIONS(8977), }, [4455] = { - [sym_file_descriptor] = ACTIONS(3342), - [sym__concat] = ACTIONS(3342), - [anon_sym_esac] = ACTIONS(3344), - [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_file_descriptor] = ACTIONS(3392), + [sym__concat] = ACTIONS(3392), + [anon_sym_esac] = ACTIONS(3394), + [anon_sym_PIPE] = ACTIONS(3394), + [anon_sym_SEMI_SEMI] = ACTIONS(3394), + [anon_sym_PIPE_AMP] = ACTIONS(3394), + [anon_sym_AMP_AMP] = ACTIONS(3394), + [anon_sym_PIPE_PIPE] = ACTIONS(3394), + [anon_sym_LT] = ACTIONS(3394), + [anon_sym_GT] = ACTIONS(3394), + [anon_sym_GT_GT] = ACTIONS(3394), + [anon_sym_AMP_GT] = ACTIONS(3394), + [anon_sym_AMP_GT_GT] = ACTIONS(3394), + [anon_sym_LT_AMP] = ACTIONS(3394), + [anon_sym_GT_AMP] = ACTIONS(3394), + [anon_sym_LT_LT] = ACTIONS(3394), + [anon_sym_LT_LT_DASH] = ACTIONS(3394), + [anon_sym_LT_LT_LT] = ACTIONS(3394), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3344), - [anon_sym_LF] = ACTIONS(3344), - [anon_sym_AMP] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(3394), + [anon_sym_LF] = ACTIONS(3394), + [anon_sym_AMP] = ACTIONS(3394), }, [4456] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8899), + [sym_regex_without_right_brace] = ACTIONS(8979), }, [4457] = { [sym_concatenation] = STATE(451), @@ -107993,53 +108403,53 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8901), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8981), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4458] = { - [sym_file_descriptor] = ACTIONS(3350), - [sym__concat] = ACTIONS(3350), - [anon_sym_esac] = ACTIONS(3352), - [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_file_descriptor] = ACTIONS(3400), + [sym__concat] = ACTIONS(3400), + [anon_sym_esac] = ACTIONS(3402), + [anon_sym_PIPE] = ACTIONS(3402), + [anon_sym_SEMI_SEMI] = ACTIONS(3402), + [anon_sym_PIPE_AMP] = ACTIONS(3402), + [anon_sym_AMP_AMP] = ACTIONS(3402), + [anon_sym_PIPE_PIPE] = ACTIONS(3402), + [anon_sym_LT] = ACTIONS(3402), + [anon_sym_GT] = ACTIONS(3402), + [anon_sym_GT_GT] = ACTIONS(3402), + [anon_sym_AMP_GT] = ACTIONS(3402), + [anon_sym_AMP_GT_GT] = ACTIONS(3402), + [anon_sym_LT_AMP] = ACTIONS(3402), + [anon_sym_GT_AMP] = ACTIONS(3402), + [anon_sym_LT_LT] = ACTIONS(3402), + [anon_sym_LT_LT_DASH] = ACTIONS(3402), + [anon_sym_LT_LT_LT] = ACTIONS(3402), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3352), - [anon_sym_LF] = ACTIONS(3352), - [anon_sym_AMP] = ACTIONS(3352), + [anon_sym_SEMI] = ACTIONS(3402), + [anon_sym_LF] = ACTIONS(3402), + [anon_sym_AMP] = ACTIONS(3402), }, [4459] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8903), + [sym_regex_without_right_brace] = ACTIONS(8983), }, [4460] = { [sym_concatenation] = STATE(451), @@ -108050,29 +108460,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8905), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8985), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4461] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8907), + [sym_regex_without_right_brace] = ACTIONS(8987), }, [4462] = { [sym_concatenation] = STATE(451), @@ -108083,25 +108493,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8889), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8969), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4463] = { [sym_concatenation] = STATE(451), @@ -108112,49 +108522,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(4550), - [anon_sym_RBRACE] = ACTIONS(8909), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8989), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4464] = { - [sym_file_descriptor] = ACTIONS(3362), - [sym__concat] = ACTIONS(3362), - [anon_sym_esac] = ACTIONS(3364), - [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_file_descriptor] = ACTIONS(3412), + [sym__concat] = ACTIONS(3412), + [anon_sym_esac] = ACTIONS(3414), + [anon_sym_PIPE] = ACTIONS(3414), + [anon_sym_SEMI_SEMI] = ACTIONS(3414), + [anon_sym_PIPE_AMP] = ACTIONS(3414), + [anon_sym_AMP_AMP] = ACTIONS(3414), + [anon_sym_PIPE_PIPE] = ACTIONS(3414), + [anon_sym_LT] = ACTIONS(3414), + [anon_sym_GT] = ACTIONS(3414), + [anon_sym_GT_GT] = ACTIONS(3414), + [anon_sym_AMP_GT] = ACTIONS(3414), + [anon_sym_AMP_GT_GT] = ACTIONS(3414), + [anon_sym_LT_AMP] = ACTIONS(3414), + [anon_sym_GT_AMP] = ACTIONS(3414), + [anon_sym_LT_LT] = ACTIONS(3414), + [anon_sym_LT_LT_DASH] = ACTIONS(3414), + [anon_sym_LT_LT_LT] = ACTIONS(3414), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3364), - [anon_sym_LF] = ACTIONS(3364), - [anon_sym_AMP] = ACTIONS(3364), + [anon_sym_SEMI] = ACTIONS(3414), + [anon_sym_LF] = ACTIONS(3414), + [anon_sym_AMP] = ACTIONS(3414), }, [4465] = { [sym_concatenation] = STATE(451), @@ -108165,290 +108575,290 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(4552), - [anon_sym_RBRACE] = ACTIONS(8911), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8991), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4466] = { - [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_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(8525), - [anon_sym_DQUOTE] = ACTIONS(8527), - [anon_sym_DOLLAR] = ACTIONS(8529), - [sym_raw_string] = ACTIONS(8527), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(8527), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(8527), - [anon_sym_BQUOTE] = ACTIONS(8527), - [anon_sym_LT_LPAREN] = ACTIONS(8527), - [anon_sym_GT_LPAREN] = ACTIONS(8527), + [sym_file_descriptor] = ACTIONS(1100), + [sym_variable_name] = ACTIONS(1100), + [anon_sym_for] = ACTIONS(1102), + [anon_sym_while] = ACTIONS(1102), + [anon_sym_if] = ACTIONS(1102), + [anon_sym_case] = ACTIONS(1102), + [anon_sym_SEMI_SEMI] = ACTIONS(1100), + [anon_sym_function] = ACTIONS(1102), + [anon_sym_LPAREN] = ACTIONS(1100), + [anon_sym_LBRACK] = ACTIONS(1102), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1100), + [anon_sym_declare] = ACTIONS(1102), + [anon_sym_typeset] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(1102), + [anon_sym_readonly] = ACTIONS(1102), + [anon_sym_local] = ACTIONS(1102), + [anon_sym_unset] = ACTIONS(1102), + [anon_sym_unsetenv] = ACTIONS(1102), + [anon_sym_LT] = ACTIONS(1102), + [anon_sym_GT] = ACTIONS(1102), + [anon_sym_GT_GT] = ACTIONS(1100), + [anon_sym_AMP_GT] = ACTIONS(1102), + [anon_sym_AMP_GT_GT] = ACTIONS(1100), + [anon_sym_LT_AMP] = ACTIONS(1100), + [anon_sym_GT_AMP] = ACTIONS(1100), + [sym__special_characters] = ACTIONS(8603), + [anon_sym_DQUOTE] = ACTIONS(8605), + [anon_sym_DOLLAR] = ACTIONS(8607), + [sym_raw_string] = ACTIONS(8605), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8605), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8605), + [anon_sym_BQUOTE] = ACTIONS(8605), + [anon_sym_LT_LPAREN] = ACTIONS(8605), + [anon_sym_GT_LPAREN] = ACTIONS(8605), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(8525), + [sym_word] = ACTIONS(8603), }, [4467] = { - [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_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(8533), - [anon_sym_DQUOTE] = ACTIONS(8535), - [anon_sym_DOLLAR] = ACTIONS(8537), - [sym_raw_string] = ACTIONS(8535), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(8535), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(8535), - [anon_sym_BQUOTE] = ACTIONS(8535), - [anon_sym_LT_LPAREN] = ACTIONS(8535), - [anon_sym_GT_LPAREN] = ACTIONS(8535), + [sym_file_descriptor] = ACTIONS(1100), + [sym_variable_name] = ACTIONS(1100), + [anon_sym_for] = ACTIONS(1102), + [anon_sym_while] = ACTIONS(1102), + [anon_sym_if] = ACTIONS(1102), + [anon_sym_case] = ACTIONS(1102), + [anon_sym_SEMI_SEMI] = ACTIONS(1100), + [anon_sym_function] = ACTIONS(1102), + [anon_sym_LPAREN] = ACTIONS(1100), + [anon_sym_LBRACK] = ACTIONS(1102), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1100), + [anon_sym_declare] = ACTIONS(1102), + [anon_sym_typeset] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(1102), + [anon_sym_readonly] = ACTIONS(1102), + [anon_sym_local] = ACTIONS(1102), + [anon_sym_unset] = ACTIONS(1102), + [anon_sym_unsetenv] = ACTIONS(1102), + [anon_sym_LT] = ACTIONS(1102), + [anon_sym_GT] = ACTIONS(1102), + [anon_sym_GT_GT] = ACTIONS(1100), + [anon_sym_AMP_GT] = ACTIONS(1102), + [anon_sym_AMP_GT_GT] = ACTIONS(1100), + [anon_sym_LT_AMP] = ACTIONS(1100), + [anon_sym_GT_AMP] = ACTIONS(1100), + [sym__special_characters] = ACTIONS(8611), + [anon_sym_DQUOTE] = ACTIONS(8613), + [anon_sym_DOLLAR] = ACTIONS(8615), + [sym_raw_string] = ACTIONS(8613), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8613), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8613), + [anon_sym_BQUOTE] = ACTIONS(8613), + [anon_sym_LT_LPAREN] = ACTIONS(8613), + [anon_sym_GT_LPAREN] = ACTIONS(8613), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(8533), + [sym_word] = ACTIONS(8611), }, [4468] = { - [sym__concat] = ACTIONS(6948), - [anon_sym_PIPE] = ACTIONS(6950), - [anon_sym_RPAREN] = ACTIONS(6950), - [anon_sym_SEMI_SEMI] = ACTIONS(6950), - [anon_sym_PIPE_AMP] = ACTIONS(6950), - [anon_sym_AMP_AMP] = ACTIONS(6950), - [anon_sym_PIPE_PIPE] = ACTIONS(6950), + [sym__concat] = ACTIONS(7018), + [anon_sym_PIPE] = ACTIONS(7020), + [anon_sym_RPAREN] = ACTIONS(7020), + [anon_sym_SEMI_SEMI] = ACTIONS(7020), + [anon_sym_PIPE_AMP] = ACTIONS(7020), + [anon_sym_AMP_AMP] = ACTIONS(7020), + [anon_sym_PIPE_PIPE] = ACTIONS(7020), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6950), - [anon_sym_LF] = ACTIONS(6950), - [anon_sym_AMP] = ACTIONS(6950), + [anon_sym_SEMI] = ACTIONS(7020), + [anon_sym_LF] = ACTIONS(7020), + [anon_sym_AMP] = ACTIONS(7020), }, [4469] = { - [sym__concat] = ACTIONS(6952), - [anon_sym_PIPE] = ACTIONS(6954), - [anon_sym_RPAREN] = ACTIONS(6954), - [anon_sym_SEMI_SEMI] = ACTIONS(6954), - [anon_sym_PIPE_AMP] = ACTIONS(6954), - [anon_sym_AMP_AMP] = ACTIONS(6954), - [anon_sym_PIPE_PIPE] = ACTIONS(6954), + [sym__concat] = ACTIONS(7022), + [anon_sym_PIPE] = ACTIONS(7024), + [anon_sym_RPAREN] = ACTIONS(7024), + [anon_sym_SEMI_SEMI] = ACTIONS(7024), + [anon_sym_PIPE_AMP] = ACTIONS(7024), + [anon_sym_AMP_AMP] = ACTIONS(7024), + [anon_sym_PIPE_PIPE] = ACTIONS(7024), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6954), - [anon_sym_LF] = ACTIONS(6954), - [anon_sym_AMP] = ACTIONS(6954), + [anon_sym_SEMI] = ACTIONS(7024), + [anon_sym_LF] = ACTIONS(7024), + [anon_sym_AMP] = ACTIONS(7024), }, [4470] = { - [sym__concat] = ACTIONS(6956), - [anon_sym_PIPE] = ACTIONS(6958), - [anon_sym_RPAREN] = ACTIONS(6958), - [anon_sym_SEMI_SEMI] = ACTIONS(6958), - [anon_sym_PIPE_AMP] = ACTIONS(6958), - [anon_sym_AMP_AMP] = ACTIONS(6958), - [anon_sym_PIPE_PIPE] = ACTIONS(6958), + [sym__concat] = ACTIONS(7026), + [anon_sym_PIPE] = ACTIONS(7028), + [anon_sym_RPAREN] = ACTIONS(7028), + [anon_sym_SEMI_SEMI] = ACTIONS(7028), + [anon_sym_PIPE_AMP] = ACTIONS(7028), + [anon_sym_AMP_AMP] = ACTIONS(7028), + [anon_sym_PIPE_PIPE] = ACTIONS(7028), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6958), - [anon_sym_LF] = ACTIONS(6958), - [anon_sym_AMP] = ACTIONS(6958), + [anon_sym_SEMI] = ACTIONS(7028), + [anon_sym_LF] = ACTIONS(7028), + [anon_sym_AMP] = ACTIONS(7028), }, [4471] = { - [sym__concat] = ACTIONS(6948), - [anon_sym_PIPE] = ACTIONS(7635), - [anon_sym_RPAREN] = ACTIONS(6948), - [anon_sym_PIPE_AMP] = ACTIONS(6948), - [anon_sym_AMP_AMP] = ACTIONS(6948), - [anon_sym_PIPE_PIPE] = ACTIONS(6948), + [sym__concat] = ACTIONS(7018), + [anon_sym_PIPE] = ACTIONS(7709), + [anon_sym_RPAREN] = ACTIONS(7018), + [anon_sym_PIPE_AMP] = ACTIONS(7018), + [anon_sym_AMP_AMP] = ACTIONS(7018), + [anon_sym_PIPE_PIPE] = ACTIONS(7018), [sym_comment] = ACTIONS(56), }, [4472] = { - [sym__concat] = ACTIONS(6952), - [anon_sym_PIPE] = ACTIONS(7637), - [anon_sym_RPAREN] = ACTIONS(6952), - [anon_sym_PIPE_AMP] = ACTIONS(6952), - [anon_sym_AMP_AMP] = ACTIONS(6952), - [anon_sym_PIPE_PIPE] = ACTIONS(6952), + [sym__concat] = ACTIONS(7022), + [anon_sym_PIPE] = ACTIONS(7711), + [anon_sym_RPAREN] = ACTIONS(7022), + [anon_sym_PIPE_AMP] = ACTIONS(7022), + [anon_sym_AMP_AMP] = ACTIONS(7022), + [anon_sym_PIPE_PIPE] = ACTIONS(7022), [sym_comment] = ACTIONS(56), }, [4473] = { - [sym__concat] = ACTIONS(6956), - [anon_sym_PIPE] = ACTIONS(7639), - [anon_sym_RPAREN] = ACTIONS(6956), - [anon_sym_PIPE_AMP] = ACTIONS(6956), - [anon_sym_AMP_AMP] = ACTIONS(6956), - [anon_sym_PIPE_PIPE] = ACTIONS(6956), + [sym__concat] = ACTIONS(7026), + [anon_sym_PIPE] = ACTIONS(7713), + [anon_sym_RPAREN] = ACTIONS(7026), + [anon_sym_PIPE_AMP] = ACTIONS(7026), + [anon_sym_AMP_AMP] = ACTIONS(7026), + [anon_sym_PIPE_PIPE] = ACTIONS(7026), [sym_comment] = ACTIONS(56), }, [4474] = { - [sym__concat] = ACTIONS(6948), - [anon_sym_PIPE] = ACTIONS(7635), - [anon_sym_PIPE_AMP] = ACTIONS(6948), - [anon_sym_AMP_AMP] = ACTIONS(6948), - [anon_sym_PIPE_PIPE] = ACTIONS(6948), - [anon_sym_BQUOTE] = ACTIONS(6948), + [sym__concat] = ACTIONS(7018), + [anon_sym_PIPE] = ACTIONS(7709), + [anon_sym_PIPE_AMP] = ACTIONS(7018), + [anon_sym_AMP_AMP] = ACTIONS(7018), + [anon_sym_PIPE_PIPE] = ACTIONS(7018), + [anon_sym_BQUOTE] = ACTIONS(7018), [sym_comment] = ACTIONS(56), }, [4475] = { - [sym__concat] = ACTIONS(6952), - [anon_sym_PIPE] = ACTIONS(7637), - [anon_sym_PIPE_AMP] = ACTIONS(6952), - [anon_sym_AMP_AMP] = ACTIONS(6952), - [anon_sym_PIPE_PIPE] = ACTIONS(6952), - [anon_sym_BQUOTE] = ACTIONS(6952), + [sym__concat] = ACTIONS(7022), + [anon_sym_PIPE] = ACTIONS(7711), + [anon_sym_PIPE_AMP] = ACTIONS(7022), + [anon_sym_AMP_AMP] = ACTIONS(7022), + [anon_sym_PIPE_PIPE] = ACTIONS(7022), + [anon_sym_BQUOTE] = ACTIONS(7022), [sym_comment] = ACTIONS(56), }, [4476] = { - [sym__concat] = ACTIONS(6956), - [anon_sym_PIPE] = ACTIONS(7639), - [anon_sym_PIPE_AMP] = ACTIONS(6956), - [anon_sym_AMP_AMP] = ACTIONS(6956), - [anon_sym_PIPE_PIPE] = ACTIONS(6956), - [anon_sym_BQUOTE] = ACTIONS(6956), + [sym__concat] = ACTIONS(7026), + [anon_sym_PIPE] = ACTIONS(7713), + [anon_sym_PIPE_AMP] = ACTIONS(7026), + [anon_sym_AMP_AMP] = ACTIONS(7026), + [anon_sym_PIPE_PIPE] = ACTIONS(7026), + [anon_sym_BQUOTE] = ACTIONS(7026), [sym_comment] = ACTIONS(56), }, [4477] = { - [sym_file_descriptor] = ACTIONS(4728), - [sym__concat] = ACTIONS(4728), - [sym_variable_name] = ACTIONS(4728), - [anon_sym_esac] = ACTIONS(4730), - [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_file_descriptor] = ACTIONS(4790), + [sym__concat] = ACTIONS(4790), + [sym_variable_name] = ACTIONS(4790), + [anon_sym_esac] = ACTIONS(4792), + [anon_sym_PIPE] = ACTIONS(4792), + [anon_sym_SEMI_SEMI] = ACTIONS(4792), + [anon_sym_PIPE_AMP] = ACTIONS(4792), + [anon_sym_AMP_AMP] = ACTIONS(4792), + [anon_sym_PIPE_PIPE] = ACTIONS(4792), + [anon_sym_LT] = ACTIONS(4792), + [anon_sym_GT] = ACTIONS(4792), + [anon_sym_GT_GT] = ACTIONS(4792), + [anon_sym_AMP_GT] = ACTIONS(4792), + [anon_sym_AMP_GT_GT] = ACTIONS(4792), + [anon_sym_LT_AMP] = ACTIONS(4792), + [anon_sym_GT_AMP] = ACTIONS(4792), + [sym__special_characters] = ACTIONS(4792), + [anon_sym_DQUOTE] = ACTIONS(4792), + [anon_sym_DOLLAR] = ACTIONS(4792), + [sym_raw_string] = ACTIONS(4792), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4792), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4792), + [anon_sym_BQUOTE] = ACTIONS(4792), + [anon_sym_LT_LPAREN] = ACTIONS(4792), + [anon_sym_GT_LPAREN] = ACTIONS(4792), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4730), - [anon_sym_SEMI] = ACTIONS(4730), - [anon_sym_LF] = ACTIONS(4730), - [anon_sym_AMP] = ACTIONS(4730), + [sym_word] = ACTIONS(4792), + [anon_sym_SEMI] = ACTIONS(4792), + [anon_sym_LF] = ACTIONS(4792), + [anon_sym_AMP] = ACTIONS(4792), }, [4478] = { - [sym_file_descriptor] = ACTIONS(4734), - [sym__concat] = ACTIONS(4734), - [sym_variable_name] = ACTIONS(4734), - [anon_sym_esac] = ACTIONS(4736), - [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_file_descriptor] = ACTIONS(4796), + [sym__concat] = ACTIONS(4796), + [sym_variable_name] = ACTIONS(4796), + [anon_sym_esac] = ACTIONS(4798), + [anon_sym_PIPE] = ACTIONS(4798), + [anon_sym_SEMI_SEMI] = ACTIONS(4798), + [anon_sym_PIPE_AMP] = ACTIONS(4798), + [anon_sym_AMP_AMP] = ACTIONS(4798), + [anon_sym_PIPE_PIPE] = ACTIONS(4798), + [anon_sym_LT] = ACTIONS(4798), + [anon_sym_GT] = ACTIONS(4798), + [anon_sym_GT_GT] = ACTIONS(4798), + [anon_sym_AMP_GT] = ACTIONS(4798), + [anon_sym_AMP_GT_GT] = ACTIONS(4798), + [anon_sym_LT_AMP] = ACTIONS(4798), + [anon_sym_GT_AMP] = ACTIONS(4798), + [sym__special_characters] = ACTIONS(4798), + [anon_sym_DQUOTE] = ACTIONS(4798), + [anon_sym_DOLLAR] = ACTIONS(4798), + [sym_raw_string] = ACTIONS(4798), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4798), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4798), + [anon_sym_BQUOTE] = ACTIONS(4798), + [anon_sym_LT_LPAREN] = ACTIONS(4798), + [anon_sym_GT_LPAREN] = ACTIONS(4798), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4736), - [anon_sym_SEMI] = ACTIONS(4736), - [anon_sym_LF] = ACTIONS(4736), - [anon_sym_AMP] = ACTIONS(4736), + [sym_word] = ACTIONS(4798), + [anon_sym_SEMI] = ACTIONS(4798), + [anon_sym_LF] = ACTIONS(4798), + [anon_sym_AMP] = ACTIONS(4798), }, [4479] = { - [sym_file_descriptor] = ACTIONS(4797), - [sym__concat] = ACTIONS(4797), - [sym_variable_name] = ACTIONS(4797), - [anon_sym_esac] = ACTIONS(4799), - [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_file_descriptor] = ACTIONS(4859), + [sym__concat] = ACTIONS(4859), + [sym_variable_name] = ACTIONS(4859), + [anon_sym_esac] = ACTIONS(4861), + [anon_sym_PIPE] = ACTIONS(4861), + [anon_sym_SEMI_SEMI] = ACTIONS(4861), + [anon_sym_PIPE_AMP] = ACTIONS(4861), + [anon_sym_AMP_AMP] = ACTIONS(4861), + [anon_sym_PIPE_PIPE] = ACTIONS(4861), + [anon_sym_LT] = ACTIONS(4861), + [anon_sym_GT] = ACTIONS(4861), + [anon_sym_GT_GT] = ACTIONS(4861), + [anon_sym_AMP_GT] = ACTIONS(4861), + [anon_sym_AMP_GT_GT] = ACTIONS(4861), + [anon_sym_LT_AMP] = ACTIONS(4861), + [anon_sym_GT_AMP] = ACTIONS(4861), + [sym__special_characters] = ACTIONS(4861), + [anon_sym_DQUOTE] = ACTIONS(4861), + [anon_sym_DOLLAR] = ACTIONS(4861), + [sym_raw_string] = ACTIONS(4861), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4861), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4861), + [anon_sym_BQUOTE] = ACTIONS(4861), + [anon_sym_LT_LPAREN] = ACTIONS(4861), + [anon_sym_GT_LPAREN] = ACTIONS(4861), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4799), - [anon_sym_SEMI] = ACTIONS(4799), - [anon_sym_LF] = ACTIONS(4799), - [anon_sym_AMP] = ACTIONS(4799), + [sym_word] = ACTIONS(4861), + [anon_sym_SEMI] = ACTIONS(4861), + [anon_sym_LF] = ACTIONS(4861), + [anon_sym_AMP] = ACTIONS(4861), }, [4480] = { [sym_concatenation] = STATE(451), @@ -108459,40 +108869,40 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8913), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8993), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4481] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(8915), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(8995), [sym_comment] = ACTIONS(56), }, [4482] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(8917), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(8997), [sym_comment] = ACTIONS(56), }, [4483] = { - [anon_sym_RBRACE] = ACTIONS(8917), + [anon_sym_RBRACE] = ACTIONS(8997), [sym_comment] = ACTIONS(56), }, [4484] = { @@ -108504,57 +108914,57 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(4557), - [anon_sym_RBRACE] = ACTIONS(8919), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(8999), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4485] = { - [sym_file_descriptor] = ACTIONS(4809), - [sym__concat] = ACTIONS(4809), - [sym_variable_name] = ACTIONS(4809), - [anon_sym_esac] = ACTIONS(4811), - [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_file_descriptor] = ACTIONS(4871), + [sym__concat] = ACTIONS(4871), + [sym_variable_name] = ACTIONS(4871), + [anon_sym_esac] = ACTIONS(4873), + [anon_sym_PIPE] = ACTIONS(4873), + [anon_sym_SEMI_SEMI] = ACTIONS(4873), + [anon_sym_PIPE_AMP] = ACTIONS(4873), + [anon_sym_AMP_AMP] = ACTIONS(4873), + [anon_sym_PIPE_PIPE] = ACTIONS(4873), + [anon_sym_LT] = ACTIONS(4873), + [anon_sym_GT] = ACTIONS(4873), + [anon_sym_GT_GT] = ACTIONS(4873), + [anon_sym_AMP_GT] = ACTIONS(4873), + [anon_sym_AMP_GT_GT] = ACTIONS(4873), + [anon_sym_LT_AMP] = ACTIONS(4873), + [anon_sym_GT_AMP] = ACTIONS(4873), + [sym__special_characters] = ACTIONS(4873), + [anon_sym_DQUOTE] = ACTIONS(4873), + [anon_sym_DOLLAR] = ACTIONS(4873), + [sym_raw_string] = ACTIONS(4873), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4873), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4873), + [anon_sym_BQUOTE] = ACTIONS(4873), + [anon_sym_LT_LPAREN] = ACTIONS(4873), + [anon_sym_GT_LPAREN] = ACTIONS(4873), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4811), - [anon_sym_SEMI] = ACTIONS(4811), - [anon_sym_LF] = ACTIONS(4811), - [anon_sym_AMP] = ACTIONS(4811), + [sym_word] = ACTIONS(4873), + [anon_sym_SEMI] = ACTIONS(4873), + [anon_sym_LF] = ACTIONS(4873), + [anon_sym_AMP] = ACTIONS(4873), }, [4486] = { [sym_concatenation] = STATE(451), @@ -108565,57 +108975,57 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(4559), - [anon_sym_RBRACE] = ACTIONS(8921), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(9001), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4487] = { - [sym_file_descriptor] = ACTIONS(4815), - [sym__concat] = ACTIONS(4815), - [sym_variable_name] = ACTIONS(4815), - [anon_sym_esac] = ACTIONS(4817), - [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_file_descriptor] = ACTIONS(4877), + [sym__concat] = ACTIONS(4877), + [sym_variable_name] = ACTIONS(4877), + [anon_sym_esac] = ACTIONS(4879), + [anon_sym_PIPE] = ACTIONS(4879), + [anon_sym_SEMI_SEMI] = ACTIONS(4879), + [anon_sym_PIPE_AMP] = ACTIONS(4879), + [anon_sym_AMP_AMP] = ACTIONS(4879), + [anon_sym_PIPE_PIPE] = ACTIONS(4879), + [anon_sym_LT] = ACTIONS(4879), + [anon_sym_GT] = ACTIONS(4879), + [anon_sym_GT_GT] = ACTIONS(4879), + [anon_sym_AMP_GT] = ACTIONS(4879), + [anon_sym_AMP_GT_GT] = ACTIONS(4879), + [anon_sym_LT_AMP] = ACTIONS(4879), + [anon_sym_GT_AMP] = ACTIONS(4879), + [sym__special_characters] = ACTIONS(4879), + [anon_sym_DQUOTE] = ACTIONS(4879), + [anon_sym_DOLLAR] = ACTIONS(4879), + [sym_raw_string] = ACTIONS(4879), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4879), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4879), + [anon_sym_BQUOTE] = ACTIONS(4879), + [anon_sym_LT_LPAREN] = ACTIONS(4879), + [anon_sym_GT_LPAREN] = ACTIONS(4879), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4817), - [anon_sym_SEMI] = ACTIONS(4817), - [anon_sym_LF] = ACTIONS(4817), - [anon_sym_AMP] = ACTIONS(4817), + [sym_word] = ACTIONS(4879), + [anon_sym_SEMI] = ACTIONS(4879), + [anon_sym_LF] = ACTIONS(4879), + [anon_sym_AMP] = ACTIONS(4879), }, [4488] = { [sym_concatenation] = STATE(451), @@ -108626,57 +109036,57 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(4561), - [anon_sym_RBRACE] = ACTIONS(8923), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(9003), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4489] = { - [sym_file_descriptor] = ACTIONS(4821), - [sym__concat] = ACTIONS(4821), - [sym_variable_name] = ACTIONS(4821), - [anon_sym_esac] = ACTIONS(4823), - [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_file_descriptor] = ACTIONS(4883), + [sym__concat] = ACTIONS(4883), + [sym_variable_name] = ACTIONS(4883), + [anon_sym_esac] = ACTIONS(4885), + [anon_sym_PIPE] = ACTIONS(4885), + [anon_sym_SEMI_SEMI] = ACTIONS(4885), + [anon_sym_PIPE_AMP] = ACTIONS(4885), + [anon_sym_AMP_AMP] = ACTIONS(4885), + [anon_sym_PIPE_PIPE] = ACTIONS(4885), + [anon_sym_LT] = ACTIONS(4885), + [anon_sym_GT] = ACTIONS(4885), + [anon_sym_GT_GT] = ACTIONS(4885), + [anon_sym_AMP_GT] = ACTIONS(4885), + [anon_sym_AMP_GT_GT] = ACTIONS(4885), + [anon_sym_LT_AMP] = ACTIONS(4885), + [anon_sym_GT_AMP] = ACTIONS(4885), + [sym__special_characters] = ACTIONS(4885), + [anon_sym_DQUOTE] = ACTIONS(4885), + [anon_sym_DOLLAR] = ACTIONS(4885), + [sym_raw_string] = ACTIONS(4885), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4885), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4885), + [anon_sym_BQUOTE] = ACTIONS(4885), + [anon_sym_LT_LPAREN] = ACTIONS(4885), + [anon_sym_GT_LPAREN] = ACTIONS(4885), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4823), - [anon_sym_SEMI] = ACTIONS(4823), - [anon_sym_LF] = ACTIONS(4823), - [anon_sym_AMP] = ACTIONS(4823), + [sym_word] = ACTIONS(4885), + [anon_sym_SEMI] = ACTIONS(4885), + [anon_sym_LF] = ACTIONS(4885), + [anon_sym_AMP] = ACTIONS(4885), }, [4490] = { [sym_concatenation] = STATE(451), @@ -108687,57 +109097,57 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8925), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(9005), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4491] = { - [sym_file_descriptor] = ACTIONS(4827), - [sym__concat] = ACTIONS(4827), - [sym_variable_name] = ACTIONS(4827), - [anon_sym_esac] = ACTIONS(4829), - [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_file_descriptor] = ACTIONS(4889), + [sym__concat] = ACTIONS(4889), + [sym_variable_name] = ACTIONS(4889), + [anon_sym_esac] = ACTIONS(4891), + [anon_sym_PIPE] = ACTIONS(4891), + [anon_sym_SEMI_SEMI] = ACTIONS(4891), + [anon_sym_PIPE_AMP] = ACTIONS(4891), + [anon_sym_AMP_AMP] = ACTIONS(4891), + [anon_sym_PIPE_PIPE] = ACTIONS(4891), + [anon_sym_LT] = ACTIONS(4891), + [anon_sym_GT] = ACTIONS(4891), + [anon_sym_GT_GT] = ACTIONS(4891), + [anon_sym_AMP_GT] = ACTIONS(4891), + [anon_sym_AMP_GT_GT] = ACTIONS(4891), + [anon_sym_LT_AMP] = ACTIONS(4891), + [anon_sym_GT_AMP] = ACTIONS(4891), + [sym__special_characters] = ACTIONS(4891), + [anon_sym_DQUOTE] = ACTIONS(4891), + [anon_sym_DOLLAR] = ACTIONS(4891), + [sym_raw_string] = ACTIONS(4891), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4891), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4891), + [anon_sym_BQUOTE] = ACTIONS(4891), + [anon_sym_LT_LPAREN] = ACTIONS(4891), + [anon_sym_GT_LPAREN] = ACTIONS(4891), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4829), - [anon_sym_SEMI] = ACTIONS(4829), - [anon_sym_LF] = ACTIONS(4829), - [anon_sym_AMP] = ACTIONS(4829), + [sym_word] = ACTIONS(4891), + [anon_sym_SEMI] = ACTIONS(4891), + [anon_sym_LF] = ACTIONS(4891), + [anon_sym_AMP] = ACTIONS(4891), }, [4492] = { [sym_concatenation] = STATE(451), @@ -108748,65 +109158,65 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8927), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(9007), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4493] = { - [sym__concat] = ACTIONS(1858), - [anon_sym_esac] = ACTIONS(1860), - [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__concat] = ACTIONS(1886), + [anon_sym_esac] = ACTIONS(1888), + [anon_sym_PIPE] = ACTIONS(1888), + [anon_sym_SEMI_SEMI] = ACTIONS(1888), + [anon_sym_PIPE_AMP] = ACTIONS(1888), + [anon_sym_AMP_AMP] = ACTIONS(1888), + [anon_sym_PIPE_PIPE] = ACTIONS(1888), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1860), - [anon_sym_LF] = ACTIONS(1860), - [anon_sym_AMP] = ACTIONS(1860), + [anon_sym_SEMI] = ACTIONS(1888), + [anon_sym_LF] = ACTIONS(1888), + [anon_sym_AMP] = ACTIONS(1888), }, [4494] = { [aux_sym_concatenation_repeat1] = STATE(4494), - [sym__concat] = ACTIONS(8929), - [anon_sym_esac] = ACTIONS(1860), - [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__concat] = ACTIONS(9009), + [anon_sym_esac] = ACTIONS(1888), + [anon_sym_PIPE] = ACTIONS(1888), + [anon_sym_SEMI_SEMI] = ACTIONS(1888), + [anon_sym_PIPE_AMP] = ACTIONS(1888), + [anon_sym_AMP_AMP] = ACTIONS(1888), + [anon_sym_PIPE_PIPE] = ACTIONS(1888), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1860), - [anon_sym_LF] = ACTIONS(1860), - [anon_sym_AMP] = ACTIONS(1860), + [anon_sym_SEMI] = ACTIONS(1888), + [anon_sym_LF] = ACTIONS(1888), + [anon_sym_AMP] = ACTIONS(1888), }, [4495] = { - [sym__concat] = ACTIONS(1895), - [anon_sym_esac] = ACTIONS(1897), - [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__concat] = ACTIONS(1923), + [anon_sym_esac] = ACTIONS(1925), + [anon_sym_PIPE] = ACTIONS(1925), + [anon_sym_SEMI_SEMI] = ACTIONS(1925), + [anon_sym_PIPE_AMP] = ACTIONS(1925), + [anon_sym_AMP_AMP] = ACTIONS(1925), + [anon_sym_PIPE_PIPE] = ACTIONS(1925), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1897), - [anon_sym_LF] = ACTIONS(1897), - [anon_sym_AMP] = ACTIONS(1897), + [anon_sym_SEMI] = ACTIONS(1925), + [anon_sym_LF] = ACTIONS(1925), + [anon_sym_AMP] = ACTIONS(1925), }, [4496] = { [sym_concatenation] = STATE(4567), @@ -108816,35 +109226,35 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(4566), [sym_command_substitution] = STATE(4566), [sym_process_substitution] = STATE(4566), - [anon_sym_RBRACE] = ACTIONS(8932), - [sym__special_characters] = ACTIONS(8934), - [anon_sym_DQUOTE] = ACTIONS(1924), - [anon_sym_DOLLAR] = ACTIONS(1926), - [sym_raw_string] = ACTIONS(8936), - [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), + [anon_sym_RBRACE] = ACTIONS(9012), + [sym__special_characters] = ACTIONS(9014), + [anon_sym_DQUOTE] = ACTIONS(1952), + [anon_sym_DOLLAR] = ACTIONS(1954), + [sym_raw_string] = ACTIONS(9016), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), + [anon_sym_BQUOTE] = ACTIONS(1962), + [anon_sym_LT_LPAREN] = ACTIONS(1964), + [anon_sym_GT_LPAREN] = ACTIONS(1964), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(8938), + [sym_word] = ACTIONS(9018), }, [4497] = { - [sym__concat] = ACTIONS(1940), - [anon_sym_esac] = ACTIONS(1942), - [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__concat] = ACTIONS(1968), + [anon_sym_esac] = ACTIONS(1970), + [anon_sym_PIPE] = ACTIONS(1970), + [anon_sym_SEMI_SEMI] = ACTIONS(1970), + [anon_sym_PIPE_AMP] = ACTIONS(1970), + [anon_sym_AMP_AMP] = ACTIONS(1970), + [anon_sym_PIPE_PIPE] = ACTIONS(1970), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1942), - [anon_sym_LF] = ACTIONS(1942), - [anon_sym_AMP] = ACTIONS(1942), + [anon_sym_SEMI] = ACTIONS(1970), + [anon_sym_LF] = ACTIONS(1970), + [anon_sym_AMP] = ACTIONS(1970), }, [4498] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8940), + [sym_regex_without_right_brace] = ACTIONS(9020), }, [4499] = { [sym_concatenation] = STATE(451), @@ -108855,29 +109265,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8942), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(9022), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4500] = { - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(8944), + [anon_sym_LBRACK] = ACTIONS(836), + [anon_sym_EQ] = ACTIONS(9024), [sym_comment] = ACTIONS(56), }, [4501] = { @@ -108889,26 +109299,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(4573), - [anon_sym_RBRACE] = ACTIONS(8946), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_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(8948), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(9026), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(9028), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4502] = { [sym_concatenation] = STATE(451), @@ -108919,26 +109329,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(4576), - [anon_sym_RBRACE] = ACTIONS(8950), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_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(8952), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(9030), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(9032), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4503] = { [sym_concatenation] = STATE(451), @@ -108949,43 +109359,43 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(4578), - [anon_sym_RBRACE] = ACTIONS(8932), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_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(8954), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(9012), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [aux_sym_SLASH] = ACTIONS(9034), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4504] = { - [sym__concat] = ACTIONS(1992), - [anon_sym_esac] = ACTIONS(1994), - [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__concat] = ACTIONS(2022), + [anon_sym_esac] = ACTIONS(2024), + [anon_sym_PIPE] = ACTIONS(2024), + [anon_sym_SEMI_SEMI] = ACTIONS(2024), + [anon_sym_PIPE_AMP] = ACTIONS(2024), + [anon_sym_AMP_AMP] = ACTIONS(2024), + [anon_sym_PIPE_PIPE] = ACTIONS(2024), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1994), - [anon_sym_LF] = ACTIONS(1994), - [anon_sym_AMP] = ACTIONS(1994), + [anon_sym_SEMI] = ACTIONS(2024), + [anon_sym_LF] = ACTIONS(2024), + [anon_sym_AMP] = ACTIONS(2024), }, [4505] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8956), + [sym_regex_without_right_brace] = ACTIONS(9036), }, [4506] = { [sym_concatenation] = STATE(451), @@ -108996,42 +109406,42 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8958), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(9038), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4507] = { - [sym__concat] = ACTIONS(2000), - [anon_sym_esac] = ACTIONS(2002), - [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__concat] = ACTIONS(2030), + [anon_sym_esac] = ACTIONS(2032), + [anon_sym_PIPE] = ACTIONS(2032), + [anon_sym_SEMI_SEMI] = ACTIONS(2032), + [anon_sym_PIPE_AMP] = ACTIONS(2032), + [anon_sym_AMP_AMP] = ACTIONS(2032), + [anon_sym_PIPE_PIPE] = ACTIONS(2032), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2002), - [anon_sym_LF] = ACTIONS(2002), - [anon_sym_AMP] = ACTIONS(2002), + [anon_sym_SEMI] = ACTIONS(2032), + [anon_sym_LF] = ACTIONS(2032), + [anon_sym_AMP] = ACTIONS(2032), }, [4508] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8960), + [sym_regex_without_right_brace] = ACTIONS(9040), }, [4509] = { [sym_concatenation] = STATE(451), @@ -109042,151 +109452,151 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8932), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(9012), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4510] = { - [sym__concat] = ACTIONS(2156), - [anon_sym_esac] = ACTIONS(2158), - [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__concat] = ACTIONS(2190), + [anon_sym_esac] = ACTIONS(2192), + [anon_sym_PIPE] = ACTIONS(2192), + [anon_sym_SEMI_SEMI] = ACTIONS(2192), + [anon_sym_PIPE_AMP] = ACTIONS(2192), + [anon_sym_AMP_AMP] = ACTIONS(2192), + [anon_sym_PIPE_PIPE] = ACTIONS(2192), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2158), - [anon_sym_LF] = ACTIONS(2158), - [anon_sym_AMP] = ACTIONS(2158), + [anon_sym_SEMI] = ACTIONS(2192), + [anon_sym_LF] = ACTIONS(2192), + [anon_sym_AMP] = ACTIONS(2192), }, [4511] = { - [sym__concat] = ACTIONS(2358), - [anon_sym_esac] = ACTIONS(2360), - [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__concat] = ACTIONS(2396), + [anon_sym_esac] = ACTIONS(2398), + [anon_sym_PIPE] = ACTIONS(2398), + [anon_sym_SEMI_SEMI] = ACTIONS(2398), + [anon_sym_PIPE_AMP] = ACTIONS(2398), + [anon_sym_AMP_AMP] = ACTIONS(2398), + [anon_sym_PIPE_PIPE] = ACTIONS(2398), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2360), - [anon_sym_LF] = ACTIONS(2360), - [anon_sym_AMP] = ACTIONS(2360), + [anon_sym_SEMI] = ACTIONS(2398), + [anon_sym_LF] = ACTIONS(2398), + [anon_sym_AMP] = ACTIONS(2398), }, [4512] = { - [sym__concat] = ACTIONS(5961), - [sym_variable_name] = ACTIONS(5961), - [anon_sym_esac] = ACTIONS(5963), - [anon_sym_PIPE] = ACTIONS(5963), - [anon_sym_SEMI_SEMI] = ACTIONS(5963), - [anon_sym_PIPE_AMP] = ACTIONS(5963), - [anon_sym_AMP_AMP] = ACTIONS(5963), - [anon_sym_PIPE_PIPE] = ACTIONS(5963), - [sym__special_characters] = ACTIONS(5963), - [anon_sym_DQUOTE] = ACTIONS(5963), - [anon_sym_DOLLAR] = ACTIONS(5963), - [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__concat] = ACTIONS(6025), + [sym_variable_name] = ACTIONS(6025), + [anon_sym_esac] = ACTIONS(6027), + [anon_sym_PIPE] = ACTIONS(6027), + [anon_sym_SEMI_SEMI] = ACTIONS(6027), + [anon_sym_PIPE_AMP] = ACTIONS(6027), + [anon_sym_AMP_AMP] = ACTIONS(6027), + [anon_sym_PIPE_PIPE] = ACTIONS(6027), + [sym__special_characters] = ACTIONS(6027), + [anon_sym_DQUOTE] = ACTIONS(6027), + [anon_sym_DOLLAR] = ACTIONS(6027), + [sym_raw_string] = ACTIONS(6027), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6027), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6027), + [anon_sym_BQUOTE] = ACTIONS(6027), + [anon_sym_LT_LPAREN] = ACTIONS(6027), + [anon_sym_GT_LPAREN] = ACTIONS(6027), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5963), - [sym_word] = ACTIONS(5963), - [anon_sym_SEMI] = ACTIONS(5963), - [anon_sym_LF] = ACTIONS(5963), - [anon_sym_AMP] = ACTIONS(5963), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6027), + [sym_word] = ACTIONS(6027), + [anon_sym_SEMI] = ACTIONS(6027), + [anon_sym_LF] = ACTIONS(6027), + [anon_sym_AMP] = ACTIONS(6027), }, [4513] = { - [sym__concat] = ACTIONS(5965), - [sym_variable_name] = ACTIONS(5965), - [anon_sym_esac] = ACTIONS(5967), - [anon_sym_PIPE] = ACTIONS(5967), - [anon_sym_SEMI_SEMI] = ACTIONS(5967), - [anon_sym_PIPE_AMP] = ACTIONS(5967), - [anon_sym_AMP_AMP] = ACTIONS(5967), - [anon_sym_PIPE_PIPE] = ACTIONS(5967), - [sym__special_characters] = ACTIONS(5967), - [anon_sym_DQUOTE] = ACTIONS(5967), - [anon_sym_DOLLAR] = ACTIONS(5967), - [sym_raw_string] = ACTIONS(5967), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5967), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5967), - [anon_sym_BQUOTE] = ACTIONS(5967), - [anon_sym_LT_LPAREN] = ACTIONS(5967), - [anon_sym_GT_LPAREN] = ACTIONS(5967), + [sym__concat] = ACTIONS(6029), + [sym_variable_name] = ACTIONS(6029), + [anon_sym_esac] = ACTIONS(6031), + [anon_sym_PIPE] = ACTIONS(6031), + [anon_sym_SEMI_SEMI] = ACTIONS(6031), + [anon_sym_PIPE_AMP] = ACTIONS(6031), + [anon_sym_AMP_AMP] = ACTIONS(6031), + [anon_sym_PIPE_PIPE] = ACTIONS(6031), + [sym__special_characters] = ACTIONS(6031), + [anon_sym_DQUOTE] = ACTIONS(6031), + [anon_sym_DOLLAR] = ACTIONS(6031), + [sym_raw_string] = ACTIONS(6031), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6031), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6031), + [anon_sym_BQUOTE] = ACTIONS(6031), + [anon_sym_LT_LPAREN] = ACTIONS(6031), + [anon_sym_GT_LPAREN] = ACTIONS(6031), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5967), - [sym_word] = ACTIONS(5967), - [anon_sym_SEMI] = ACTIONS(5967), - [anon_sym_LF] = ACTIONS(5967), - [anon_sym_AMP] = ACTIONS(5967), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6031), + [sym_word] = ACTIONS(6031), + [anon_sym_SEMI] = ACTIONS(6031), + [anon_sym_LF] = ACTIONS(6031), + [anon_sym_AMP] = ACTIONS(6031), }, [4514] = { - [sym__concat] = ACTIONS(5969), - [sym_variable_name] = ACTIONS(5969), - [anon_sym_esac] = ACTIONS(5971), - [anon_sym_PIPE] = ACTIONS(5971), - [anon_sym_SEMI_SEMI] = ACTIONS(5971), - [anon_sym_PIPE_AMP] = ACTIONS(5971), - [anon_sym_AMP_AMP] = ACTIONS(5971), - [anon_sym_PIPE_PIPE] = ACTIONS(5971), - [sym__special_characters] = ACTIONS(5971), - [anon_sym_DQUOTE] = ACTIONS(5971), - [anon_sym_DOLLAR] = ACTIONS(5971), - [sym_raw_string] = ACTIONS(5971), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5971), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5971), - [anon_sym_BQUOTE] = ACTIONS(5971), - [anon_sym_LT_LPAREN] = ACTIONS(5971), - [anon_sym_GT_LPAREN] = ACTIONS(5971), + [sym__concat] = ACTIONS(6033), + [sym_variable_name] = ACTIONS(6033), + [anon_sym_esac] = ACTIONS(6035), + [anon_sym_PIPE] = ACTIONS(6035), + [anon_sym_SEMI_SEMI] = ACTIONS(6035), + [anon_sym_PIPE_AMP] = ACTIONS(6035), + [anon_sym_AMP_AMP] = ACTIONS(6035), + [anon_sym_PIPE_PIPE] = ACTIONS(6035), + [sym__special_characters] = ACTIONS(6035), + [anon_sym_DQUOTE] = ACTIONS(6035), + [anon_sym_DOLLAR] = ACTIONS(6035), + [sym_raw_string] = ACTIONS(6035), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6035), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6035), + [anon_sym_BQUOTE] = ACTIONS(6035), + [anon_sym_LT_LPAREN] = ACTIONS(6035), + [anon_sym_GT_LPAREN] = ACTIONS(6035), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5971), - [sym_word] = ACTIONS(5971), - [anon_sym_SEMI] = ACTIONS(5971), - [anon_sym_LF] = ACTIONS(5971), - [anon_sym_AMP] = ACTIONS(5971), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6035), + [sym_word] = ACTIONS(6035), + [anon_sym_SEMI] = ACTIONS(6035), + [anon_sym_LF] = ACTIONS(6035), + [anon_sym_AMP] = ACTIONS(6035), }, [4515] = { - [sym__concat] = ACTIONS(5973), - [sym_variable_name] = ACTIONS(5973), - [anon_sym_esac] = ACTIONS(5975), - [anon_sym_PIPE] = ACTIONS(5975), - [anon_sym_SEMI_SEMI] = ACTIONS(5975), - [anon_sym_PIPE_AMP] = ACTIONS(5975), - [anon_sym_AMP_AMP] = ACTIONS(5975), - [anon_sym_PIPE_PIPE] = ACTIONS(5975), - [sym__special_characters] = ACTIONS(5975), - [anon_sym_DQUOTE] = ACTIONS(5975), - [anon_sym_DOLLAR] = ACTIONS(5975), - [sym_raw_string] = ACTIONS(5975), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5975), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5975), - [anon_sym_BQUOTE] = ACTIONS(5975), - [anon_sym_LT_LPAREN] = ACTIONS(5975), - [anon_sym_GT_LPAREN] = ACTIONS(5975), + [sym__concat] = ACTIONS(6037), + [sym_variable_name] = ACTIONS(6037), + [anon_sym_esac] = ACTIONS(6039), + [anon_sym_PIPE] = ACTIONS(6039), + [anon_sym_SEMI_SEMI] = ACTIONS(6039), + [anon_sym_PIPE_AMP] = ACTIONS(6039), + [anon_sym_AMP_AMP] = ACTIONS(6039), + [anon_sym_PIPE_PIPE] = ACTIONS(6039), + [sym__special_characters] = ACTIONS(6039), + [anon_sym_DQUOTE] = ACTIONS(6039), + [anon_sym_DOLLAR] = ACTIONS(6039), + [sym_raw_string] = ACTIONS(6039), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6039), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6039), + [anon_sym_BQUOTE] = ACTIONS(6039), + [anon_sym_LT_LPAREN] = ACTIONS(6039), + [anon_sym_GT_LPAREN] = ACTIONS(6039), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5975), - [sym_word] = ACTIONS(5975), - [anon_sym_SEMI] = ACTIONS(5975), - [anon_sym_LF] = ACTIONS(5975), - [anon_sym_AMP] = ACTIONS(5975), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6039), + [sym_word] = ACTIONS(6039), + [anon_sym_SEMI] = ACTIONS(6039), + [anon_sym_LF] = ACTIONS(6039), + [anon_sym_AMP] = ACTIONS(6039), }, [4516] = { [sym_concatenation] = STATE(451), @@ -109197,50 +109607,50 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8962), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(9042), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4517] = { - [sym__concat] = ACTIONS(5979), - [sym_variable_name] = ACTIONS(5979), - [anon_sym_esac] = ACTIONS(5981), - [anon_sym_PIPE] = ACTIONS(5981), - [anon_sym_SEMI_SEMI] = ACTIONS(5981), - [anon_sym_PIPE_AMP] = ACTIONS(5981), - [anon_sym_AMP_AMP] = ACTIONS(5981), - [anon_sym_PIPE_PIPE] = ACTIONS(5981), - [sym__special_characters] = ACTIONS(5981), - [anon_sym_DQUOTE] = ACTIONS(5981), - [anon_sym_DOLLAR] = ACTIONS(5981), - [sym_raw_string] = ACTIONS(5981), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5981), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5981), - [anon_sym_BQUOTE] = ACTIONS(5981), - [anon_sym_LT_LPAREN] = ACTIONS(5981), - [anon_sym_GT_LPAREN] = ACTIONS(5981), + [sym__concat] = ACTIONS(6043), + [sym_variable_name] = ACTIONS(6043), + [anon_sym_esac] = ACTIONS(6045), + [anon_sym_PIPE] = ACTIONS(6045), + [anon_sym_SEMI_SEMI] = ACTIONS(6045), + [anon_sym_PIPE_AMP] = ACTIONS(6045), + [anon_sym_AMP_AMP] = ACTIONS(6045), + [anon_sym_PIPE_PIPE] = ACTIONS(6045), + [sym__special_characters] = ACTIONS(6045), + [anon_sym_DQUOTE] = ACTIONS(6045), + [anon_sym_DOLLAR] = ACTIONS(6045), + [sym_raw_string] = ACTIONS(6045), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6045), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6045), + [anon_sym_BQUOTE] = ACTIONS(6045), + [anon_sym_LT_LPAREN] = ACTIONS(6045), + [anon_sym_GT_LPAREN] = ACTIONS(6045), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5981), - [sym_word] = ACTIONS(5981), - [anon_sym_SEMI] = ACTIONS(5981), - [anon_sym_LF] = ACTIONS(5981), - [anon_sym_AMP] = ACTIONS(5981), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6045), + [sym_word] = ACTIONS(6045), + [anon_sym_SEMI] = ACTIONS(6045), + [anon_sym_LF] = ACTIONS(6045), + [anon_sym_AMP] = ACTIONS(6045), }, [4518] = { [sym_concatenation] = STATE(451), @@ -109251,50 +109661,50 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8964), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(9044), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4519] = { - [sym__concat] = ACTIONS(5985), - [sym_variable_name] = ACTIONS(5985), - [anon_sym_esac] = ACTIONS(5987), - [anon_sym_PIPE] = ACTIONS(5987), - [anon_sym_SEMI_SEMI] = ACTIONS(5987), - [anon_sym_PIPE_AMP] = ACTIONS(5987), - [anon_sym_AMP_AMP] = ACTIONS(5987), - [anon_sym_PIPE_PIPE] = ACTIONS(5987), - [sym__special_characters] = ACTIONS(5987), - [anon_sym_DQUOTE] = ACTIONS(5987), - [anon_sym_DOLLAR] = ACTIONS(5987), - [sym_raw_string] = ACTIONS(5987), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5987), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5987), - [anon_sym_BQUOTE] = ACTIONS(5987), - [anon_sym_LT_LPAREN] = ACTIONS(5987), - [anon_sym_GT_LPAREN] = ACTIONS(5987), + [sym__concat] = ACTIONS(6049), + [sym_variable_name] = ACTIONS(6049), + [anon_sym_esac] = ACTIONS(6051), + [anon_sym_PIPE] = ACTIONS(6051), + [anon_sym_SEMI_SEMI] = ACTIONS(6051), + [anon_sym_PIPE_AMP] = ACTIONS(6051), + [anon_sym_AMP_AMP] = ACTIONS(6051), + [anon_sym_PIPE_PIPE] = ACTIONS(6051), + [sym__special_characters] = ACTIONS(6051), + [anon_sym_DQUOTE] = ACTIONS(6051), + [anon_sym_DOLLAR] = ACTIONS(6051), + [sym_raw_string] = ACTIONS(6051), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6051), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6051), + [anon_sym_BQUOTE] = ACTIONS(6051), + [anon_sym_LT_LPAREN] = ACTIONS(6051), + [anon_sym_GT_LPAREN] = ACTIONS(6051), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5987), - [sym_word] = ACTIONS(5987), - [anon_sym_SEMI] = ACTIONS(5987), - [anon_sym_LF] = ACTIONS(5987), - [anon_sym_AMP] = ACTIONS(5987), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6051), + [sym_word] = ACTIONS(6051), + [anon_sym_SEMI] = ACTIONS(6051), + [anon_sym_LF] = ACTIONS(6051), + [anon_sym_AMP] = ACTIONS(6051), }, [4520] = { [sym_concatenation] = STATE(451), @@ -109305,171 +109715,171 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8966), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(9046), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4521] = { - [sym__concat] = ACTIONS(5991), - [sym_variable_name] = ACTIONS(5991), - [anon_sym_esac] = ACTIONS(5993), - [anon_sym_PIPE] = ACTIONS(5993), - [anon_sym_SEMI_SEMI] = ACTIONS(5993), - [anon_sym_PIPE_AMP] = ACTIONS(5993), - [anon_sym_AMP_AMP] = ACTIONS(5993), - [anon_sym_PIPE_PIPE] = ACTIONS(5993), - [sym__special_characters] = ACTIONS(5993), - [anon_sym_DQUOTE] = ACTIONS(5993), - [anon_sym_DOLLAR] = ACTIONS(5993), - [sym_raw_string] = ACTIONS(5993), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5993), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5993), - [anon_sym_BQUOTE] = ACTIONS(5993), - [anon_sym_LT_LPAREN] = ACTIONS(5993), - [anon_sym_GT_LPAREN] = ACTIONS(5993), + [sym__concat] = ACTIONS(6055), + [sym_variable_name] = ACTIONS(6055), + [anon_sym_esac] = ACTIONS(6057), + [anon_sym_PIPE] = ACTIONS(6057), + [anon_sym_SEMI_SEMI] = ACTIONS(6057), + [anon_sym_PIPE_AMP] = ACTIONS(6057), + [anon_sym_AMP_AMP] = ACTIONS(6057), + [anon_sym_PIPE_PIPE] = ACTIONS(6057), + [sym__special_characters] = ACTIONS(6057), + [anon_sym_DQUOTE] = ACTIONS(6057), + [anon_sym_DOLLAR] = ACTIONS(6057), + [sym_raw_string] = ACTIONS(6057), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6057), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6057), + [anon_sym_BQUOTE] = ACTIONS(6057), + [anon_sym_LT_LPAREN] = ACTIONS(6057), + [anon_sym_GT_LPAREN] = ACTIONS(6057), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5993), - [sym_word] = ACTIONS(5993), - [anon_sym_SEMI] = ACTIONS(5993), - [anon_sym_LF] = ACTIONS(5993), - [anon_sym_AMP] = ACTIONS(5993), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6057), + [sym_word] = ACTIONS(6057), + [anon_sym_SEMI] = ACTIONS(6057), + [anon_sym_LF] = ACTIONS(6057), + [anon_sym_AMP] = ACTIONS(6057), }, [4522] = { - [sym__concat] = ACTIONS(5995), - [sym_variable_name] = ACTIONS(5995), - [anon_sym_esac] = ACTIONS(5997), - [anon_sym_PIPE] = ACTIONS(5997), - [anon_sym_SEMI_SEMI] = ACTIONS(5997), - [anon_sym_PIPE_AMP] = ACTIONS(5997), - [anon_sym_AMP_AMP] = ACTIONS(5997), - [anon_sym_PIPE_PIPE] = ACTIONS(5997), - [sym__special_characters] = ACTIONS(5997), - [anon_sym_DQUOTE] = ACTIONS(5997), - [anon_sym_DOLLAR] = ACTIONS(5997), - [sym_raw_string] = ACTIONS(5997), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5997), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5997), - [anon_sym_BQUOTE] = ACTIONS(5997), - [anon_sym_LT_LPAREN] = ACTIONS(5997), - [anon_sym_GT_LPAREN] = ACTIONS(5997), + [sym__concat] = ACTIONS(6059), + [sym_variable_name] = ACTIONS(6059), + [anon_sym_esac] = ACTIONS(6061), + [anon_sym_PIPE] = ACTIONS(6061), + [anon_sym_SEMI_SEMI] = ACTIONS(6061), + [anon_sym_PIPE_AMP] = ACTIONS(6061), + [anon_sym_AMP_AMP] = ACTIONS(6061), + [anon_sym_PIPE_PIPE] = ACTIONS(6061), + [sym__special_characters] = ACTIONS(6061), + [anon_sym_DQUOTE] = ACTIONS(6061), + [anon_sym_DOLLAR] = ACTIONS(6061), + [sym_raw_string] = ACTIONS(6061), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6061), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6061), + [anon_sym_BQUOTE] = ACTIONS(6061), + [anon_sym_LT_LPAREN] = ACTIONS(6061), + [anon_sym_GT_LPAREN] = ACTIONS(6061), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5997), - [sym_word] = ACTIONS(5997), - [anon_sym_SEMI] = ACTIONS(5997), - [anon_sym_LF] = ACTIONS(5997), - [anon_sym_AMP] = ACTIONS(5997), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6061), + [sym_word] = ACTIONS(6061), + [anon_sym_SEMI] = ACTIONS(6061), + [anon_sym_LF] = ACTIONS(6061), + [anon_sym_AMP] = ACTIONS(6061), }, [4523] = { - [sym__concat] = ACTIONS(5961), - [anon_sym_esac] = ACTIONS(5963), - [anon_sym_PIPE] = ACTIONS(5963), - [anon_sym_SEMI_SEMI] = ACTIONS(5963), - [anon_sym_PIPE_AMP] = ACTIONS(5963), - [anon_sym_AMP_AMP] = ACTIONS(5963), - [anon_sym_PIPE_PIPE] = ACTIONS(5963), - [sym__special_characters] = ACTIONS(5963), - [anon_sym_DQUOTE] = ACTIONS(5963), - [anon_sym_DOLLAR] = ACTIONS(5963), - [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__concat] = ACTIONS(6025), + [anon_sym_esac] = ACTIONS(6027), + [anon_sym_PIPE] = ACTIONS(6027), + [anon_sym_SEMI_SEMI] = ACTIONS(6027), + [anon_sym_PIPE_AMP] = ACTIONS(6027), + [anon_sym_AMP_AMP] = ACTIONS(6027), + [anon_sym_PIPE_PIPE] = ACTIONS(6027), + [sym__special_characters] = ACTIONS(6027), + [anon_sym_DQUOTE] = ACTIONS(6027), + [anon_sym_DOLLAR] = ACTIONS(6027), + [sym_raw_string] = ACTIONS(6027), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6027), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6027), + [anon_sym_BQUOTE] = ACTIONS(6027), + [anon_sym_LT_LPAREN] = ACTIONS(6027), + [anon_sym_GT_LPAREN] = ACTIONS(6027), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5963), - [sym_word] = ACTIONS(5963), - [anon_sym_SEMI] = ACTIONS(5963), - [anon_sym_LF] = ACTIONS(5963), - [anon_sym_AMP] = ACTIONS(5963), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6027), + [sym_word] = ACTIONS(6027), + [anon_sym_SEMI] = ACTIONS(6027), + [anon_sym_LF] = ACTIONS(6027), + [anon_sym_AMP] = ACTIONS(6027), }, [4524] = { - [sym__concat] = ACTIONS(5965), - [anon_sym_esac] = ACTIONS(5967), - [anon_sym_PIPE] = ACTIONS(5967), - [anon_sym_SEMI_SEMI] = ACTIONS(5967), - [anon_sym_PIPE_AMP] = ACTIONS(5967), - [anon_sym_AMP_AMP] = ACTIONS(5967), - [anon_sym_PIPE_PIPE] = ACTIONS(5967), - [sym__special_characters] = ACTIONS(5967), - [anon_sym_DQUOTE] = ACTIONS(5967), - [anon_sym_DOLLAR] = ACTIONS(5967), - [sym_raw_string] = ACTIONS(5967), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5967), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5967), - [anon_sym_BQUOTE] = ACTIONS(5967), - [anon_sym_LT_LPAREN] = ACTIONS(5967), - [anon_sym_GT_LPAREN] = ACTIONS(5967), + [sym__concat] = ACTIONS(6029), + [anon_sym_esac] = ACTIONS(6031), + [anon_sym_PIPE] = ACTIONS(6031), + [anon_sym_SEMI_SEMI] = ACTIONS(6031), + [anon_sym_PIPE_AMP] = ACTIONS(6031), + [anon_sym_AMP_AMP] = ACTIONS(6031), + [anon_sym_PIPE_PIPE] = ACTIONS(6031), + [sym__special_characters] = ACTIONS(6031), + [anon_sym_DQUOTE] = ACTIONS(6031), + [anon_sym_DOLLAR] = ACTIONS(6031), + [sym_raw_string] = ACTIONS(6031), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6031), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6031), + [anon_sym_BQUOTE] = ACTIONS(6031), + [anon_sym_LT_LPAREN] = ACTIONS(6031), + [anon_sym_GT_LPAREN] = ACTIONS(6031), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5967), - [sym_word] = ACTIONS(5967), - [anon_sym_SEMI] = ACTIONS(5967), - [anon_sym_LF] = ACTIONS(5967), - [anon_sym_AMP] = ACTIONS(5967), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6031), + [sym_word] = ACTIONS(6031), + [anon_sym_SEMI] = ACTIONS(6031), + [anon_sym_LF] = ACTIONS(6031), + [anon_sym_AMP] = ACTIONS(6031), }, [4525] = { - [sym__concat] = ACTIONS(5969), - [anon_sym_esac] = ACTIONS(5971), - [anon_sym_PIPE] = ACTIONS(5971), - [anon_sym_SEMI_SEMI] = ACTIONS(5971), - [anon_sym_PIPE_AMP] = ACTIONS(5971), - [anon_sym_AMP_AMP] = ACTIONS(5971), - [anon_sym_PIPE_PIPE] = ACTIONS(5971), - [sym__special_characters] = ACTIONS(5971), - [anon_sym_DQUOTE] = ACTIONS(5971), - [anon_sym_DOLLAR] = ACTIONS(5971), - [sym_raw_string] = ACTIONS(5971), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5971), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5971), - [anon_sym_BQUOTE] = ACTIONS(5971), - [anon_sym_LT_LPAREN] = ACTIONS(5971), - [anon_sym_GT_LPAREN] = ACTIONS(5971), + [sym__concat] = ACTIONS(6033), + [anon_sym_esac] = ACTIONS(6035), + [anon_sym_PIPE] = ACTIONS(6035), + [anon_sym_SEMI_SEMI] = ACTIONS(6035), + [anon_sym_PIPE_AMP] = ACTIONS(6035), + [anon_sym_AMP_AMP] = ACTIONS(6035), + [anon_sym_PIPE_PIPE] = ACTIONS(6035), + [sym__special_characters] = ACTIONS(6035), + [anon_sym_DQUOTE] = ACTIONS(6035), + [anon_sym_DOLLAR] = ACTIONS(6035), + [sym_raw_string] = ACTIONS(6035), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6035), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6035), + [anon_sym_BQUOTE] = ACTIONS(6035), + [anon_sym_LT_LPAREN] = ACTIONS(6035), + [anon_sym_GT_LPAREN] = ACTIONS(6035), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5971), - [sym_word] = ACTIONS(5971), - [anon_sym_SEMI] = ACTIONS(5971), - [anon_sym_LF] = ACTIONS(5971), - [anon_sym_AMP] = ACTIONS(5971), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6035), + [sym_word] = ACTIONS(6035), + [anon_sym_SEMI] = ACTIONS(6035), + [anon_sym_LF] = ACTIONS(6035), + [anon_sym_AMP] = ACTIONS(6035), }, [4526] = { - [sym__concat] = ACTIONS(5973), - [anon_sym_esac] = ACTIONS(5975), - [anon_sym_PIPE] = ACTIONS(5975), - [anon_sym_SEMI_SEMI] = ACTIONS(5975), - [anon_sym_PIPE_AMP] = ACTIONS(5975), - [anon_sym_AMP_AMP] = ACTIONS(5975), - [anon_sym_PIPE_PIPE] = ACTIONS(5975), - [sym__special_characters] = ACTIONS(5975), - [anon_sym_DQUOTE] = ACTIONS(5975), - [anon_sym_DOLLAR] = ACTIONS(5975), - [sym_raw_string] = ACTIONS(5975), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5975), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5975), - [anon_sym_BQUOTE] = ACTIONS(5975), - [anon_sym_LT_LPAREN] = ACTIONS(5975), - [anon_sym_GT_LPAREN] = ACTIONS(5975), + [sym__concat] = ACTIONS(6037), + [anon_sym_esac] = ACTIONS(6039), + [anon_sym_PIPE] = ACTIONS(6039), + [anon_sym_SEMI_SEMI] = ACTIONS(6039), + [anon_sym_PIPE_AMP] = ACTIONS(6039), + [anon_sym_AMP_AMP] = ACTIONS(6039), + [anon_sym_PIPE_PIPE] = ACTIONS(6039), + [sym__special_characters] = ACTIONS(6039), + [anon_sym_DQUOTE] = ACTIONS(6039), + [anon_sym_DOLLAR] = ACTIONS(6039), + [sym_raw_string] = ACTIONS(6039), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6039), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6039), + [anon_sym_BQUOTE] = ACTIONS(6039), + [anon_sym_LT_LPAREN] = ACTIONS(6039), + [anon_sym_GT_LPAREN] = ACTIONS(6039), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5975), - [sym_word] = ACTIONS(5975), - [anon_sym_SEMI] = ACTIONS(5975), - [anon_sym_LF] = ACTIONS(5975), - [anon_sym_AMP] = ACTIONS(5975), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6039), + [sym_word] = ACTIONS(6039), + [anon_sym_SEMI] = ACTIONS(6039), + [anon_sym_LF] = ACTIONS(6039), + [anon_sym_AMP] = ACTIONS(6039), }, [4527] = { [sym_concatenation] = STATE(451), @@ -109480,49 +109890,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8968), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(9048), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4528] = { - [sym__concat] = ACTIONS(5979), - [anon_sym_esac] = ACTIONS(5981), - [anon_sym_PIPE] = ACTIONS(5981), - [anon_sym_SEMI_SEMI] = ACTIONS(5981), - [anon_sym_PIPE_AMP] = ACTIONS(5981), - [anon_sym_AMP_AMP] = ACTIONS(5981), - [anon_sym_PIPE_PIPE] = ACTIONS(5981), - [sym__special_characters] = ACTIONS(5981), - [anon_sym_DQUOTE] = ACTIONS(5981), - [anon_sym_DOLLAR] = ACTIONS(5981), - [sym_raw_string] = ACTIONS(5981), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5981), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5981), - [anon_sym_BQUOTE] = ACTIONS(5981), - [anon_sym_LT_LPAREN] = ACTIONS(5981), - [anon_sym_GT_LPAREN] = ACTIONS(5981), + [sym__concat] = ACTIONS(6043), + [anon_sym_esac] = ACTIONS(6045), + [anon_sym_PIPE] = ACTIONS(6045), + [anon_sym_SEMI_SEMI] = ACTIONS(6045), + [anon_sym_PIPE_AMP] = ACTIONS(6045), + [anon_sym_AMP_AMP] = ACTIONS(6045), + [anon_sym_PIPE_PIPE] = ACTIONS(6045), + [sym__special_characters] = ACTIONS(6045), + [anon_sym_DQUOTE] = ACTIONS(6045), + [anon_sym_DOLLAR] = ACTIONS(6045), + [sym_raw_string] = ACTIONS(6045), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6045), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6045), + [anon_sym_BQUOTE] = ACTIONS(6045), + [anon_sym_LT_LPAREN] = ACTIONS(6045), + [anon_sym_GT_LPAREN] = ACTIONS(6045), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5981), - [sym_word] = ACTIONS(5981), - [anon_sym_SEMI] = ACTIONS(5981), - [anon_sym_LF] = ACTIONS(5981), - [anon_sym_AMP] = ACTIONS(5981), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6045), + [sym_word] = ACTIONS(6045), + [anon_sym_SEMI] = ACTIONS(6045), + [anon_sym_LF] = ACTIONS(6045), + [anon_sym_AMP] = ACTIONS(6045), }, [4529] = { [sym_concatenation] = STATE(451), @@ -109533,49 +109943,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8970), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(9050), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4530] = { - [sym__concat] = ACTIONS(5985), - [anon_sym_esac] = ACTIONS(5987), - [anon_sym_PIPE] = ACTIONS(5987), - [anon_sym_SEMI_SEMI] = ACTIONS(5987), - [anon_sym_PIPE_AMP] = ACTIONS(5987), - [anon_sym_AMP_AMP] = ACTIONS(5987), - [anon_sym_PIPE_PIPE] = ACTIONS(5987), - [sym__special_characters] = ACTIONS(5987), - [anon_sym_DQUOTE] = ACTIONS(5987), - [anon_sym_DOLLAR] = ACTIONS(5987), - [sym_raw_string] = ACTIONS(5987), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5987), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5987), - [anon_sym_BQUOTE] = ACTIONS(5987), - [anon_sym_LT_LPAREN] = ACTIONS(5987), - [anon_sym_GT_LPAREN] = ACTIONS(5987), + [sym__concat] = ACTIONS(6049), + [anon_sym_esac] = ACTIONS(6051), + [anon_sym_PIPE] = ACTIONS(6051), + [anon_sym_SEMI_SEMI] = ACTIONS(6051), + [anon_sym_PIPE_AMP] = ACTIONS(6051), + [anon_sym_AMP_AMP] = ACTIONS(6051), + [anon_sym_PIPE_PIPE] = ACTIONS(6051), + [sym__special_characters] = ACTIONS(6051), + [anon_sym_DQUOTE] = ACTIONS(6051), + [anon_sym_DOLLAR] = ACTIONS(6051), + [sym_raw_string] = ACTIONS(6051), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6051), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6051), + [anon_sym_BQUOTE] = ACTIONS(6051), + [anon_sym_LT_LPAREN] = ACTIONS(6051), + [anon_sym_GT_LPAREN] = ACTIONS(6051), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5987), - [sym_word] = ACTIONS(5987), - [anon_sym_SEMI] = ACTIONS(5987), - [anon_sym_LF] = ACTIONS(5987), - [anon_sym_AMP] = ACTIONS(5987), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6051), + [sym_word] = ACTIONS(6051), + [anon_sym_SEMI] = ACTIONS(6051), + [anon_sym_LF] = ACTIONS(6051), + [anon_sym_AMP] = ACTIONS(6051), }, [4531] = { [sym_concatenation] = STATE(451), @@ -109586,250 +109996,253 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8972), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(9052), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4532] = { - [sym__concat] = ACTIONS(5991), - [anon_sym_esac] = ACTIONS(5993), - [anon_sym_PIPE] = ACTIONS(5993), - [anon_sym_SEMI_SEMI] = ACTIONS(5993), - [anon_sym_PIPE_AMP] = ACTIONS(5993), - [anon_sym_AMP_AMP] = ACTIONS(5993), - [anon_sym_PIPE_PIPE] = ACTIONS(5993), - [sym__special_characters] = ACTIONS(5993), - [anon_sym_DQUOTE] = ACTIONS(5993), - [anon_sym_DOLLAR] = ACTIONS(5993), - [sym_raw_string] = ACTIONS(5993), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5993), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5993), - [anon_sym_BQUOTE] = ACTIONS(5993), - [anon_sym_LT_LPAREN] = ACTIONS(5993), - [anon_sym_GT_LPAREN] = ACTIONS(5993), + [sym__concat] = ACTIONS(6055), + [anon_sym_esac] = ACTIONS(6057), + [anon_sym_PIPE] = ACTIONS(6057), + [anon_sym_SEMI_SEMI] = ACTIONS(6057), + [anon_sym_PIPE_AMP] = ACTIONS(6057), + [anon_sym_AMP_AMP] = ACTIONS(6057), + [anon_sym_PIPE_PIPE] = ACTIONS(6057), + [sym__special_characters] = ACTIONS(6057), + [anon_sym_DQUOTE] = ACTIONS(6057), + [anon_sym_DOLLAR] = ACTIONS(6057), + [sym_raw_string] = ACTIONS(6057), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6057), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6057), + [anon_sym_BQUOTE] = ACTIONS(6057), + [anon_sym_LT_LPAREN] = ACTIONS(6057), + [anon_sym_GT_LPAREN] = ACTIONS(6057), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5993), - [sym_word] = ACTIONS(5993), - [anon_sym_SEMI] = ACTIONS(5993), - [anon_sym_LF] = ACTIONS(5993), - [anon_sym_AMP] = ACTIONS(5993), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6057), + [sym_word] = ACTIONS(6057), + [anon_sym_SEMI] = ACTIONS(6057), + [anon_sym_LF] = ACTIONS(6057), + [anon_sym_AMP] = ACTIONS(6057), }, [4533] = { - [sym__concat] = ACTIONS(5995), - [anon_sym_esac] = ACTIONS(5997), - [anon_sym_PIPE] = ACTIONS(5997), - [anon_sym_SEMI_SEMI] = ACTIONS(5997), - [anon_sym_PIPE_AMP] = ACTIONS(5997), - [anon_sym_AMP_AMP] = ACTIONS(5997), - [anon_sym_PIPE_PIPE] = ACTIONS(5997), - [sym__special_characters] = ACTIONS(5997), - [anon_sym_DQUOTE] = ACTIONS(5997), - [anon_sym_DOLLAR] = ACTIONS(5997), - [sym_raw_string] = ACTIONS(5997), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5997), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5997), - [anon_sym_BQUOTE] = ACTIONS(5997), - [anon_sym_LT_LPAREN] = ACTIONS(5997), - [anon_sym_GT_LPAREN] = ACTIONS(5997), + [sym__concat] = ACTIONS(6059), + [anon_sym_esac] = ACTIONS(6061), + [anon_sym_PIPE] = ACTIONS(6061), + [anon_sym_SEMI_SEMI] = ACTIONS(6061), + [anon_sym_PIPE_AMP] = ACTIONS(6061), + [anon_sym_AMP_AMP] = ACTIONS(6061), + [anon_sym_PIPE_PIPE] = ACTIONS(6061), + [sym__special_characters] = ACTIONS(6061), + [anon_sym_DQUOTE] = ACTIONS(6061), + [anon_sym_DOLLAR] = ACTIONS(6061), + [sym_raw_string] = ACTIONS(6061), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6061), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6061), + [anon_sym_BQUOTE] = ACTIONS(6061), + [anon_sym_LT_LPAREN] = ACTIONS(6061), + [anon_sym_GT_LPAREN] = ACTIONS(6061), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5997), - [sym_word] = ACTIONS(5997), - [anon_sym_SEMI] = ACTIONS(5997), - [anon_sym_LF] = ACTIONS(5997), - [anon_sym_AMP] = ACTIONS(5997), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6061), + [sym_word] = ACTIONS(6061), + [anon_sym_SEMI] = ACTIONS(6061), + [anon_sym_LF] = ACTIONS(6061), + [anon_sym_AMP] = ACTIONS(6061), }, [4534] = { - [sym_file_descriptor] = ACTIONS(6948), - [sym__concat] = ACTIONS(6948), - [anon_sym_esac] = ACTIONS(6950), - [anon_sym_PIPE] = ACTIONS(6950), - [anon_sym_SEMI_SEMI] = ACTIONS(6950), - [anon_sym_PIPE_AMP] = ACTIONS(6950), - [anon_sym_AMP_AMP] = ACTIONS(6950), - [anon_sym_PIPE_PIPE] = ACTIONS(6950), - [anon_sym_EQ_TILDE] = ACTIONS(6950), - [anon_sym_LT] = ACTIONS(6950), - [anon_sym_GT] = ACTIONS(6950), - [anon_sym_GT_GT] = ACTIONS(6950), - [anon_sym_AMP_GT] = ACTIONS(6950), - [anon_sym_AMP_GT_GT] = ACTIONS(6950), - [anon_sym_LT_AMP] = ACTIONS(6950), - [anon_sym_GT_AMP] = ACTIONS(6950), - [anon_sym_LT_LT] = ACTIONS(6950), - [anon_sym_LT_LT_DASH] = ACTIONS(6950), - [anon_sym_LT_LT_LT] = ACTIONS(6950), - [sym__special_characters] = ACTIONS(6950), - [anon_sym_DQUOTE] = ACTIONS(6950), - [anon_sym_DOLLAR] = ACTIONS(6950), - [sym_raw_string] = ACTIONS(6950), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6950), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6950), - [anon_sym_BQUOTE] = ACTIONS(6950), - [anon_sym_LT_LPAREN] = ACTIONS(6950), - [anon_sym_GT_LPAREN] = ACTIONS(6950), + [sym_file_descriptor] = ACTIONS(7018), + [sym__concat] = ACTIONS(7018), + [anon_sym_esac] = ACTIONS(7020), + [anon_sym_PIPE] = ACTIONS(7020), + [anon_sym_SEMI_SEMI] = ACTIONS(7020), + [anon_sym_PIPE_AMP] = ACTIONS(7020), + [anon_sym_AMP_AMP] = ACTIONS(7020), + [anon_sym_PIPE_PIPE] = ACTIONS(7020), + [anon_sym_EQ_TILDE] = ACTIONS(7020), + [anon_sym_EQ_EQ] = ACTIONS(7020), + [anon_sym_LT] = ACTIONS(7020), + [anon_sym_GT] = ACTIONS(7020), + [anon_sym_GT_GT] = ACTIONS(7020), + [anon_sym_AMP_GT] = ACTIONS(7020), + [anon_sym_AMP_GT_GT] = ACTIONS(7020), + [anon_sym_LT_AMP] = ACTIONS(7020), + [anon_sym_GT_AMP] = ACTIONS(7020), + [anon_sym_LT_LT] = ACTIONS(7020), + [anon_sym_LT_LT_DASH] = ACTIONS(7020), + [anon_sym_LT_LT_LT] = ACTIONS(7020), + [sym__special_characters] = ACTIONS(7020), + [anon_sym_DQUOTE] = ACTIONS(7020), + [anon_sym_DOLLAR] = ACTIONS(7020), + [sym_raw_string] = ACTIONS(7020), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7020), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7020), + [anon_sym_BQUOTE] = ACTIONS(7020), + [anon_sym_LT_LPAREN] = ACTIONS(7020), + [anon_sym_GT_LPAREN] = ACTIONS(7020), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6950), - [anon_sym_SEMI] = ACTIONS(6950), - [anon_sym_LF] = ACTIONS(6950), - [anon_sym_AMP] = ACTIONS(6950), + [sym_word] = ACTIONS(7020), + [anon_sym_SEMI] = ACTIONS(7020), + [anon_sym_LF] = ACTIONS(7020), + [anon_sym_AMP] = ACTIONS(7020), }, [4535] = { - [sym_file_descriptor] = ACTIONS(6952), - [sym__concat] = ACTIONS(6952), - [anon_sym_esac] = ACTIONS(6954), - [anon_sym_PIPE] = ACTIONS(6954), - [anon_sym_SEMI_SEMI] = ACTIONS(6954), - [anon_sym_PIPE_AMP] = ACTIONS(6954), - [anon_sym_AMP_AMP] = ACTIONS(6954), - [anon_sym_PIPE_PIPE] = ACTIONS(6954), - [anon_sym_EQ_TILDE] = ACTIONS(6954), - [anon_sym_LT] = ACTIONS(6954), - [anon_sym_GT] = ACTIONS(6954), - [anon_sym_GT_GT] = ACTIONS(6954), - [anon_sym_AMP_GT] = ACTIONS(6954), - [anon_sym_AMP_GT_GT] = ACTIONS(6954), - [anon_sym_LT_AMP] = ACTIONS(6954), - [anon_sym_GT_AMP] = ACTIONS(6954), - [anon_sym_LT_LT] = ACTIONS(6954), - [anon_sym_LT_LT_DASH] = ACTIONS(6954), - [anon_sym_LT_LT_LT] = ACTIONS(6954), - [sym__special_characters] = ACTIONS(6954), - [anon_sym_DQUOTE] = ACTIONS(6954), - [anon_sym_DOLLAR] = ACTIONS(6954), - [sym_raw_string] = ACTIONS(6954), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6954), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6954), - [anon_sym_BQUOTE] = ACTIONS(6954), - [anon_sym_LT_LPAREN] = ACTIONS(6954), - [anon_sym_GT_LPAREN] = ACTIONS(6954), + [sym_file_descriptor] = ACTIONS(7022), + [sym__concat] = ACTIONS(7022), + [anon_sym_esac] = ACTIONS(7024), + [anon_sym_PIPE] = ACTIONS(7024), + [anon_sym_SEMI_SEMI] = ACTIONS(7024), + [anon_sym_PIPE_AMP] = ACTIONS(7024), + [anon_sym_AMP_AMP] = ACTIONS(7024), + [anon_sym_PIPE_PIPE] = ACTIONS(7024), + [anon_sym_EQ_TILDE] = ACTIONS(7024), + [anon_sym_EQ_EQ] = ACTIONS(7024), + [anon_sym_LT] = ACTIONS(7024), + [anon_sym_GT] = ACTIONS(7024), + [anon_sym_GT_GT] = ACTIONS(7024), + [anon_sym_AMP_GT] = ACTIONS(7024), + [anon_sym_AMP_GT_GT] = ACTIONS(7024), + [anon_sym_LT_AMP] = ACTIONS(7024), + [anon_sym_GT_AMP] = ACTIONS(7024), + [anon_sym_LT_LT] = ACTIONS(7024), + [anon_sym_LT_LT_DASH] = ACTIONS(7024), + [anon_sym_LT_LT_LT] = ACTIONS(7024), + [sym__special_characters] = ACTIONS(7024), + [anon_sym_DQUOTE] = ACTIONS(7024), + [anon_sym_DOLLAR] = ACTIONS(7024), + [sym_raw_string] = ACTIONS(7024), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7024), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7024), + [anon_sym_BQUOTE] = ACTIONS(7024), + [anon_sym_LT_LPAREN] = ACTIONS(7024), + [anon_sym_GT_LPAREN] = ACTIONS(7024), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6954), - [anon_sym_SEMI] = ACTIONS(6954), - [anon_sym_LF] = ACTIONS(6954), - [anon_sym_AMP] = ACTIONS(6954), + [sym_word] = ACTIONS(7024), + [anon_sym_SEMI] = ACTIONS(7024), + [anon_sym_LF] = ACTIONS(7024), + [anon_sym_AMP] = ACTIONS(7024), }, [4536] = { - [sym_file_descriptor] = ACTIONS(6956), - [sym__concat] = ACTIONS(6956), - [anon_sym_esac] = ACTIONS(6958), - [anon_sym_PIPE] = ACTIONS(6958), - [anon_sym_SEMI_SEMI] = ACTIONS(6958), - [anon_sym_PIPE_AMP] = ACTIONS(6958), - [anon_sym_AMP_AMP] = ACTIONS(6958), - [anon_sym_PIPE_PIPE] = ACTIONS(6958), - [anon_sym_EQ_TILDE] = ACTIONS(6958), - [anon_sym_LT] = ACTIONS(6958), - [anon_sym_GT] = ACTIONS(6958), - [anon_sym_GT_GT] = ACTIONS(6958), - [anon_sym_AMP_GT] = ACTIONS(6958), - [anon_sym_AMP_GT_GT] = ACTIONS(6958), - [anon_sym_LT_AMP] = ACTIONS(6958), - [anon_sym_GT_AMP] = ACTIONS(6958), - [anon_sym_LT_LT] = ACTIONS(6958), - [anon_sym_LT_LT_DASH] = ACTIONS(6958), - [anon_sym_LT_LT_LT] = ACTIONS(6958), - [sym__special_characters] = ACTIONS(6958), - [anon_sym_DQUOTE] = ACTIONS(6958), - [anon_sym_DOLLAR] = ACTIONS(6958), - [sym_raw_string] = ACTIONS(6958), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6958), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6958), - [anon_sym_BQUOTE] = ACTIONS(6958), - [anon_sym_LT_LPAREN] = ACTIONS(6958), - [anon_sym_GT_LPAREN] = ACTIONS(6958), + [sym_file_descriptor] = ACTIONS(7026), + [sym__concat] = ACTIONS(7026), + [anon_sym_esac] = ACTIONS(7028), + [anon_sym_PIPE] = ACTIONS(7028), + [anon_sym_SEMI_SEMI] = ACTIONS(7028), + [anon_sym_PIPE_AMP] = ACTIONS(7028), + [anon_sym_AMP_AMP] = ACTIONS(7028), + [anon_sym_PIPE_PIPE] = ACTIONS(7028), + [anon_sym_EQ_TILDE] = ACTIONS(7028), + [anon_sym_EQ_EQ] = ACTIONS(7028), + [anon_sym_LT] = ACTIONS(7028), + [anon_sym_GT] = ACTIONS(7028), + [anon_sym_GT_GT] = ACTIONS(7028), + [anon_sym_AMP_GT] = ACTIONS(7028), + [anon_sym_AMP_GT_GT] = ACTIONS(7028), + [anon_sym_LT_AMP] = ACTIONS(7028), + [anon_sym_GT_AMP] = ACTIONS(7028), + [anon_sym_LT_LT] = ACTIONS(7028), + [anon_sym_LT_LT_DASH] = ACTIONS(7028), + [anon_sym_LT_LT_LT] = ACTIONS(7028), + [sym__special_characters] = ACTIONS(7028), + [anon_sym_DQUOTE] = ACTIONS(7028), + [anon_sym_DOLLAR] = ACTIONS(7028), + [sym_raw_string] = ACTIONS(7028), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7028), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7028), + [anon_sym_BQUOTE] = ACTIONS(7028), + [anon_sym_LT_LPAREN] = ACTIONS(7028), + [anon_sym_GT_LPAREN] = ACTIONS(7028), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6958), - [anon_sym_SEMI] = ACTIONS(6958), - [anon_sym_LF] = ACTIONS(6958), - [anon_sym_AMP] = ACTIONS(6958), + [sym_word] = ACTIONS(7028), + [anon_sym_SEMI] = ACTIONS(7028), + [anon_sym_LF] = ACTIONS(7028), + [anon_sym_AMP] = ACTIONS(7028), }, [4537] = { - [sym_file_descriptor] = ACTIONS(4728), - [sym__concat] = ACTIONS(4728), - [anon_sym_esac] = ACTIONS(4730), - [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_file_descriptor] = ACTIONS(4790), + [sym__concat] = ACTIONS(4790), + [anon_sym_esac] = ACTIONS(4792), + [anon_sym_PIPE] = ACTIONS(4792), + [anon_sym_SEMI_SEMI] = ACTIONS(4792), + [anon_sym_PIPE_AMP] = ACTIONS(4792), + [anon_sym_AMP_AMP] = ACTIONS(4792), + [anon_sym_PIPE_PIPE] = ACTIONS(4792), + [anon_sym_LT] = ACTIONS(4792), + [anon_sym_GT] = ACTIONS(4792), + [anon_sym_GT_GT] = ACTIONS(4792), + [anon_sym_AMP_GT] = ACTIONS(4792), + [anon_sym_AMP_GT_GT] = ACTIONS(4792), + [anon_sym_LT_AMP] = ACTIONS(4792), + [anon_sym_GT_AMP] = ACTIONS(4792), + [anon_sym_LT_LT] = ACTIONS(4792), + [anon_sym_LT_LT_DASH] = ACTIONS(4792), + [anon_sym_LT_LT_LT] = ACTIONS(4792), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4730), - [anon_sym_LF] = ACTIONS(4730), - [anon_sym_AMP] = ACTIONS(4730), + [anon_sym_SEMI] = ACTIONS(4792), + [anon_sym_LF] = ACTIONS(4792), + [anon_sym_AMP] = ACTIONS(4792), }, [4538] = { - [sym_file_descriptor] = ACTIONS(4734), - [sym__concat] = ACTIONS(4734), - [anon_sym_esac] = ACTIONS(4736), - [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_file_descriptor] = ACTIONS(4796), + [sym__concat] = ACTIONS(4796), + [anon_sym_esac] = ACTIONS(4798), + [anon_sym_PIPE] = ACTIONS(4798), + [anon_sym_SEMI_SEMI] = ACTIONS(4798), + [anon_sym_PIPE_AMP] = ACTIONS(4798), + [anon_sym_AMP_AMP] = ACTIONS(4798), + [anon_sym_PIPE_PIPE] = ACTIONS(4798), + [anon_sym_LT] = ACTIONS(4798), + [anon_sym_GT] = ACTIONS(4798), + [anon_sym_GT_GT] = ACTIONS(4798), + [anon_sym_AMP_GT] = ACTIONS(4798), + [anon_sym_AMP_GT_GT] = ACTIONS(4798), + [anon_sym_LT_AMP] = ACTIONS(4798), + [anon_sym_GT_AMP] = ACTIONS(4798), + [anon_sym_LT_LT] = ACTIONS(4798), + [anon_sym_LT_LT_DASH] = ACTIONS(4798), + [anon_sym_LT_LT_LT] = ACTIONS(4798), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4736), - [anon_sym_LF] = ACTIONS(4736), - [anon_sym_AMP] = ACTIONS(4736), + [anon_sym_SEMI] = ACTIONS(4798), + [anon_sym_LF] = ACTIONS(4798), + [anon_sym_AMP] = ACTIONS(4798), }, [4539] = { - [sym_file_descriptor] = ACTIONS(4797), - [sym__concat] = ACTIONS(4797), - [anon_sym_esac] = ACTIONS(4799), - [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_file_descriptor] = ACTIONS(4859), + [sym__concat] = ACTIONS(4859), + [anon_sym_esac] = ACTIONS(4861), + [anon_sym_PIPE] = ACTIONS(4861), + [anon_sym_SEMI_SEMI] = ACTIONS(4861), + [anon_sym_PIPE_AMP] = ACTIONS(4861), + [anon_sym_AMP_AMP] = ACTIONS(4861), + [anon_sym_PIPE_PIPE] = ACTIONS(4861), + [anon_sym_LT] = ACTIONS(4861), + [anon_sym_GT] = ACTIONS(4861), + [anon_sym_GT_GT] = ACTIONS(4861), + [anon_sym_AMP_GT] = ACTIONS(4861), + [anon_sym_AMP_GT_GT] = ACTIONS(4861), + [anon_sym_LT_AMP] = ACTIONS(4861), + [anon_sym_GT_AMP] = ACTIONS(4861), + [anon_sym_LT_LT] = ACTIONS(4861), + [anon_sym_LT_LT_DASH] = ACTIONS(4861), + [anon_sym_LT_LT_LT] = ACTIONS(4861), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4799), - [anon_sym_LF] = ACTIONS(4799), - [anon_sym_AMP] = ACTIONS(4799), + [anon_sym_SEMI] = ACTIONS(4861), + [anon_sym_LF] = ACTIONS(4861), + [anon_sym_AMP] = ACTIONS(4861), }, [4540] = { [sym_concatenation] = STATE(451), @@ -109840,40 +110253,40 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8974), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(9054), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4541] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(8976), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(9056), [sym_comment] = ACTIONS(56), }, [4542] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(8978), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(9058), [sym_comment] = ACTIONS(56), }, [4543] = { - [anon_sym_RBRACE] = ACTIONS(8978), + [anon_sym_RBRACE] = ACTIONS(9058), [sym_comment] = ACTIONS(56), }, [4544] = { @@ -109885,49 +110298,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(4592), - [anon_sym_RBRACE] = ACTIONS(8980), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(9060), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4545] = { - [sym_file_descriptor] = ACTIONS(4809), - [sym__concat] = ACTIONS(4809), - [anon_sym_esac] = ACTIONS(4811), - [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_file_descriptor] = ACTIONS(4871), + [sym__concat] = ACTIONS(4871), + [anon_sym_esac] = ACTIONS(4873), + [anon_sym_PIPE] = ACTIONS(4873), + [anon_sym_SEMI_SEMI] = ACTIONS(4873), + [anon_sym_PIPE_AMP] = ACTIONS(4873), + [anon_sym_AMP_AMP] = ACTIONS(4873), + [anon_sym_PIPE_PIPE] = ACTIONS(4873), + [anon_sym_LT] = ACTIONS(4873), + [anon_sym_GT] = ACTIONS(4873), + [anon_sym_GT_GT] = ACTIONS(4873), + [anon_sym_AMP_GT] = ACTIONS(4873), + [anon_sym_AMP_GT_GT] = ACTIONS(4873), + [anon_sym_LT_AMP] = ACTIONS(4873), + [anon_sym_GT_AMP] = ACTIONS(4873), + [anon_sym_LT_LT] = ACTIONS(4873), + [anon_sym_LT_LT_DASH] = ACTIONS(4873), + [anon_sym_LT_LT_LT] = ACTIONS(4873), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4811), - [anon_sym_LF] = ACTIONS(4811), - [anon_sym_AMP] = ACTIONS(4811), + [anon_sym_SEMI] = ACTIONS(4873), + [anon_sym_LF] = ACTIONS(4873), + [anon_sym_AMP] = ACTIONS(4873), }, [4546] = { [sym_concatenation] = STATE(451), @@ -109938,49 +110351,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(4594), - [anon_sym_RBRACE] = ACTIONS(8982), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(9062), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4547] = { - [sym_file_descriptor] = ACTIONS(4815), - [sym__concat] = ACTIONS(4815), - [anon_sym_esac] = ACTIONS(4817), - [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_file_descriptor] = ACTIONS(4877), + [sym__concat] = ACTIONS(4877), + [anon_sym_esac] = ACTIONS(4879), + [anon_sym_PIPE] = ACTIONS(4879), + [anon_sym_SEMI_SEMI] = ACTIONS(4879), + [anon_sym_PIPE_AMP] = ACTIONS(4879), + [anon_sym_AMP_AMP] = ACTIONS(4879), + [anon_sym_PIPE_PIPE] = ACTIONS(4879), + [anon_sym_LT] = ACTIONS(4879), + [anon_sym_GT] = ACTIONS(4879), + [anon_sym_GT_GT] = ACTIONS(4879), + [anon_sym_AMP_GT] = ACTIONS(4879), + [anon_sym_AMP_GT_GT] = ACTIONS(4879), + [anon_sym_LT_AMP] = ACTIONS(4879), + [anon_sym_GT_AMP] = ACTIONS(4879), + [anon_sym_LT_LT] = ACTIONS(4879), + [anon_sym_LT_LT_DASH] = ACTIONS(4879), + [anon_sym_LT_LT_LT] = ACTIONS(4879), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4817), - [anon_sym_LF] = ACTIONS(4817), - [anon_sym_AMP] = ACTIONS(4817), + [anon_sym_SEMI] = ACTIONS(4879), + [anon_sym_LF] = ACTIONS(4879), + [anon_sym_AMP] = ACTIONS(4879), }, [4548] = { [sym_concatenation] = STATE(451), @@ -109991,49 +110404,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(4596), - [anon_sym_RBRACE] = ACTIONS(8984), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(9064), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4549] = { - [sym_file_descriptor] = ACTIONS(4821), - [sym__concat] = ACTIONS(4821), - [anon_sym_esac] = ACTIONS(4823), - [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_file_descriptor] = ACTIONS(4883), + [sym__concat] = ACTIONS(4883), + [anon_sym_esac] = ACTIONS(4885), + [anon_sym_PIPE] = ACTIONS(4885), + [anon_sym_SEMI_SEMI] = ACTIONS(4885), + [anon_sym_PIPE_AMP] = ACTIONS(4885), + [anon_sym_AMP_AMP] = ACTIONS(4885), + [anon_sym_PIPE_PIPE] = ACTIONS(4885), + [anon_sym_LT] = ACTIONS(4885), + [anon_sym_GT] = ACTIONS(4885), + [anon_sym_GT_GT] = ACTIONS(4885), + [anon_sym_AMP_GT] = ACTIONS(4885), + [anon_sym_AMP_GT_GT] = ACTIONS(4885), + [anon_sym_LT_AMP] = ACTIONS(4885), + [anon_sym_GT_AMP] = ACTIONS(4885), + [anon_sym_LT_LT] = ACTIONS(4885), + [anon_sym_LT_LT_DASH] = ACTIONS(4885), + [anon_sym_LT_LT_LT] = ACTIONS(4885), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4823), - [anon_sym_LF] = ACTIONS(4823), - [anon_sym_AMP] = ACTIONS(4823), + [anon_sym_SEMI] = ACTIONS(4885), + [anon_sym_LF] = ACTIONS(4885), + [anon_sym_AMP] = ACTIONS(4885), }, [4550] = { [sym_concatenation] = STATE(451), @@ -110044,49 +110457,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8986), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(9066), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4551] = { - [sym_file_descriptor] = ACTIONS(4827), - [sym__concat] = ACTIONS(4827), - [anon_sym_esac] = ACTIONS(4829), - [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_file_descriptor] = ACTIONS(4889), + [sym__concat] = ACTIONS(4889), + [anon_sym_esac] = ACTIONS(4891), + [anon_sym_PIPE] = ACTIONS(4891), + [anon_sym_SEMI_SEMI] = ACTIONS(4891), + [anon_sym_PIPE_AMP] = ACTIONS(4891), + [anon_sym_AMP_AMP] = ACTIONS(4891), + [anon_sym_PIPE_PIPE] = ACTIONS(4891), + [anon_sym_LT] = ACTIONS(4891), + [anon_sym_GT] = ACTIONS(4891), + [anon_sym_GT_GT] = ACTIONS(4891), + [anon_sym_AMP_GT] = ACTIONS(4891), + [anon_sym_AMP_GT_GT] = ACTIONS(4891), + [anon_sym_LT_AMP] = ACTIONS(4891), + [anon_sym_GT_AMP] = ACTIONS(4891), + [anon_sym_LT_LT] = ACTIONS(4891), + [anon_sym_LT_LT_DASH] = ACTIONS(4891), + [anon_sym_LT_LT_LT] = ACTIONS(4891), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4829), - [anon_sym_LF] = ACTIONS(4829), - [anon_sym_AMP] = ACTIONS(4829), + [anon_sym_SEMI] = ACTIONS(4891), + [anon_sym_LF] = ACTIONS(4891), + [anon_sym_AMP] = ACTIONS(4891), }, [4552] = { [sym_concatenation] = STATE(451), @@ -110097,153 +110510,153 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8988), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(9068), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4553] = { - [sym_file_descriptor] = ACTIONS(5961), - [sym__concat] = ACTIONS(5961), - [sym_variable_name] = ACTIONS(5961), - [anon_sym_esac] = ACTIONS(5963), - [anon_sym_PIPE] = ACTIONS(5963), - [anon_sym_SEMI_SEMI] = ACTIONS(5963), - [anon_sym_PIPE_AMP] = ACTIONS(5963), - [anon_sym_AMP_AMP] = ACTIONS(5963), - [anon_sym_PIPE_PIPE] = ACTIONS(5963), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_GT] = ACTIONS(5963), - [anon_sym_GT_GT] = ACTIONS(5963), - [anon_sym_AMP_GT] = ACTIONS(5963), - [anon_sym_AMP_GT_GT] = ACTIONS(5963), - [anon_sym_LT_AMP] = ACTIONS(5963), - [anon_sym_GT_AMP] = ACTIONS(5963), - [sym__special_characters] = ACTIONS(5963), - [anon_sym_DQUOTE] = ACTIONS(5963), - [anon_sym_DOLLAR] = ACTIONS(5963), - [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_file_descriptor] = ACTIONS(6025), + [sym__concat] = ACTIONS(6025), + [sym_variable_name] = ACTIONS(6025), + [anon_sym_esac] = ACTIONS(6027), + [anon_sym_PIPE] = ACTIONS(6027), + [anon_sym_SEMI_SEMI] = ACTIONS(6027), + [anon_sym_PIPE_AMP] = ACTIONS(6027), + [anon_sym_AMP_AMP] = ACTIONS(6027), + [anon_sym_PIPE_PIPE] = ACTIONS(6027), + [anon_sym_LT] = ACTIONS(6027), + [anon_sym_GT] = ACTIONS(6027), + [anon_sym_GT_GT] = ACTIONS(6027), + [anon_sym_AMP_GT] = ACTIONS(6027), + [anon_sym_AMP_GT_GT] = ACTIONS(6027), + [anon_sym_LT_AMP] = ACTIONS(6027), + [anon_sym_GT_AMP] = ACTIONS(6027), + [sym__special_characters] = ACTIONS(6027), + [anon_sym_DQUOTE] = ACTIONS(6027), + [anon_sym_DOLLAR] = ACTIONS(6027), + [sym_raw_string] = ACTIONS(6027), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6027), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6027), + [anon_sym_BQUOTE] = ACTIONS(6027), + [anon_sym_LT_LPAREN] = ACTIONS(6027), + [anon_sym_GT_LPAREN] = ACTIONS(6027), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(5963), - [anon_sym_SEMI] = ACTIONS(5963), - [anon_sym_LF] = ACTIONS(5963), - [anon_sym_AMP] = ACTIONS(5963), + [sym_word] = ACTIONS(6027), + [anon_sym_SEMI] = ACTIONS(6027), + [anon_sym_LF] = ACTIONS(6027), + [anon_sym_AMP] = ACTIONS(6027), }, [4554] = { - [sym_file_descriptor] = ACTIONS(5965), - [sym__concat] = ACTIONS(5965), - [sym_variable_name] = ACTIONS(5965), - [anon_sym_esac] = ACTIONS(5967), - [anon_sym_PIPE] = ACTIONS(5967), - [anon_sym_SEMI_SEMI] = ACTIONS(5967), - [anon_sym_PIPE_AMP] = ACTIONS(5967), - [anon_sym_AMP_AMP] = ACTIONS(5967), - [anon_sym_PIPE_PIPE] = ACTIONS(5967), - [anon_sym_LT] = ACTIONS(5967), - [anon_sym_GT] = ACTIONS(5967), - [anon_sym_GT_GT] = ACTIONS(5967), - [anon_sym_AMP_GT] = ACTIONS(5967), - [anon_sym_AMP_GT_GT] = ACTIONS(5967), - [anon_sym_LT_AMP] = ACTIONS(5967), - [anon_sym_GT_AMP] = ACTIONS(5967), - [sym__special_characters] = ACTIONS(5967), - [anon_sym_DQUOTE] = ACTIONS(5967), - [anon_sym_DOLLAR] = ACTIONS(5967), - [sym_raw_string] = ACTIONS(5967), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5967), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5967), - [anon_sym_BQUOTE] = ACTIONS(5967), - [anon_sym_LT_LPAREN] = ACTIONS(5967), - [anon_sym_GT_LPAREN] = ACTIONS(5967), + [sym_file_descriptor] = ACTIONS(6029), + [sym__concat] = ACTIONS(6029), + [sym_variable_name] = ACTIONS(6029), + [anon_sym_esac] = ACTIONS(6031), + [anon_sym_PIPE] = ACTIONS(6031), + [anon_sym_SEMI_SEMI] = ACTIONS(6031), + [anon_sym_PIPE_AMP] = ACTIONS(6031), + [anon_sym_AMP_AMP] = ACTIONS(6031), + [anon_sym_PIPE_PIPE] = ACTIONS(6031), + [anon_sym_LT] = ACTIONS(6031), + [anon_sym_GT] = ACTIONS(6031), + [anon_sym_GT_GT] = ACTIONS(6031), + [anon_sym_AMP_GT] = ACTIONS(6031), + [anon_sym_AMP_GT_GT] = ACTIONS(6031), + [anon_sym_LT_AMP] = ACTIONS(6031), + [anon_sym_GT_AMP] = ACTIONS(6031), + [sym__special_characters] = ACTIONS(6031), + [anon_sym_DQUOTE] = ACTIONS(6031), + [anon_sym_DOLLAR] = ACTIONS(6031), + [sym_raw_string] = ACTIONS(6031), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6031), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6031), + [anon_sym_BQUOTE] = ACTIONS(6031), + [anon_sym_LT_LPAREN] = ACTIONS(6031), + [anon_sym_GT_LPAREN] = ACTIONS(6031), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(5967), - [anon_sym_SEMI] = ACTIONS(5967), - [anon_sym_LF] = ACTIONS(5967), - [anon_sym_AMP] = ACTIONS(5967), + [sym_word] = ACTIONS(6031), + [anon_sym_SEMI] = ACTIONS(6031), + [anon_sym_LF] = ACTIONS(6031), + [anon_sym_AMP] = ACTIONS(6031), }, [4555] = { - [sym_file_descriptor] = ACTIONS(5969), - [sym__concat] = ACTIONS(5969), - [sym_variable_name] = ACTIONS(5969), - [anon_sym_esac] = ACTIONS(5971), - [anon_sym_PIPE] = ACTIONS(5971), - [anon_sym_SEMI_SEMI] = ACTIONS(5971), - [anon_sym_PIPE_AMP] = ACTIONS(5971), - [anon_sym_AMP_AMP] = ACTIONS(5971), - [anon_sym_PIPE_PIPE] = ACTIONS(5971), - [anon_sym_LT] = ACTIONS(5971), - [anon_sym_GT] = ACTIONS(5971), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_AMP_GT] = ACTIONS(5971), - [anon_sym_AMP_GT_GT] = ACTIONS(5971), - [anon_sym_LT_AMP] = ACTIONS(5971), - [anon_sym_GT_AMP] = ACTIONS(5971), - [sym__special_characters] = ACTIONS(5971), - [anon_sym_DQUOTE] = ACTIONS(5971), - [anon_sym_DOLLAR] = ACTIONS(5971), - [sym_raw_string] = ACTIONS(5971), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5971), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5971), - [anon_sym_BQUOTE] = ACTIONS(5971), - [anon_sym_LT_LPAREN] = ACTIONS(5971), - [anon_sym_GT_LPAREN] = ACTIONS(5971), + [sym_file_descriptor] = ACTIONS(6033), + [sym__concat] = ACTIONS(6033), + [sym_variable_name] = ACTIONS(6033), + [anon_sym_esac] = ACTIONS(6035), + [anon_sym_PIPE] = ACTIONS(6035), + [anon_sym_SEMI_SEMI] = ACTIONS(6035), + [anon_sym_PIPE_AMP] = ACTIONS(6035), + [anon_sym_AMP_AMP] = ACTIONS(6035), + [anon_sym_PIPE_PIPE] = ACTIONS(6035), + [anon_sym_LT] = ACTIONS(6035), + [anon_sym_GT] = ACTIONS(6035), + [anon_sym_GT_GT] = ACTIONS(6035), + [anon_sym_AMP_GT] = ACTIONS(6035), + [anon_sym_AMP_GT_GT] = ACTIONS(6035), + [anon_sym_LT_AMP] = ACTIONS(6035), + [anon_sym_GT_AMP] = ACTIONS(6035), + [sym__special_characters] = ACTIONS(6035), + [anon_sym_DQUOTE] = ACTIONS(6035), + [anon_sym_DOLLAR] = ACTIONS(6035), + [sym_raw_string] = ACTIONS(6035), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6035), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6035), + [anon_sym_BQUOTE] = ACTIONS(6035), + [anon_sym_LT_LPAREN] = ACTIONS(6035), + [anon_sym_GT_LPAREN] = ACTIONS(6035), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(5971), - [anon_sym_SEMI] = ACTIONS(5971), - [anon_sym_LF] = ACTIONS(5971), - [anon_sym_AMP] = ACTIONS(5971), + [sym_word] = ACTIONS(6035), + [anon_sym_SEMI] = ACTIONS(6035), + [anon_sym_LF] = ACTIONS(6035), + [anon_sym_AMP] = ACTIONS(6035), }, [4556] = { - [sym_file_descriptor] = ACTIONS(5973), - [sym__concat] = ACTIONS(5973), - [sym_variable_name] = ACTIONS(5973), - [anon_sym_esac] = ACTIONS(5975), - [anon_sym_PIPE] = ACTIONS(5975), - [anon_sym_SEMI_SEMI] = ACTIONS(5975), - [anon_sym_PIPE_AMP] = ACTIONS(5975), - [anon_sym_AMP_AMP] = ACTIONS(5975), - [anon_sym_PIPE_PIPE] = ACTIONS(5975), - [anon_sym_LT] = ACTIONS(5975), - [anon_sym_GT] = ACTIONS(5975), - [anon_sym_GT_GT] = ACTIONS(5975), - [anon_sym_AMP_GT] = ACTIONS(5975), - [anon_sym_AMP_GT_GT] = ACTIONS(5975), - [anon_sym_LT_AMP] = ACTIONS(5975), - [anon_sym_GT_AMP] = ACTIONS(5975), - [sym__special_characters] = ACTIONS(5975), - [anon_sym_DQUOTE] = ACTIONS(5975), - [anon_sym_DOLLAR] = ACTIONS(5975), - [sym_raw_string] = ACTIONS(5975), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5975), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5975), - [anon_sym_BQUOTE] = ACTIONS(5975), - [anon_sym_LT_LPAREN] = ACTIONS(5975), - [anon_sym_GT_LPAREN] = ACTIONS(5975), + [sym_file_descriptor] = ACTIONS(6037), + [sym__concat] = ACTIONS(6037), + [sym_variable_name] = ACTIONS(6037), + [anon_sym_esac] = ACTIONS(6039), + [anon_sym_PIPE] = ACTIONS(6039), + [anon_sym_SEMI_SEMI] = ACTIONS(6039), + [anon_sym_PIPE_AMP] = ACTIONS(6039), + [anon_sym_AMP_AMP] = ACTIONS(6039), + [anon_sym_PIPE_PIPE] = ACTIONS(6039), + [anon_sym_LT] = ACTIONS(6039), + [anon_sym_GT] = ACTIONS(6039), + [anon_sym_GT_GT] = ACTIONS(6039), + [anon_sym_AMP_GT] = ACTIONS(6039), + [anon_sym_AMP_GT_GT] = ACTIONS(6039), + [anon_sym_LT_AMP] = ACTIONS(6039), + [anon_sym_GT_AMP] = ACTIONS(6039), + [sym__special_characters] = ACTIONS(6039), + [anon_sym_DQUOTE] = ACTIONS(6039), + [anon_sym_DOLLAR] = ACTIONS(6039), + [sym_raw_string] = ACTIONS(6039), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6039), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6039), + [anon_sym_BQUOTE] = ACTIONS(6039), + [anon_sym_LT_LPAREN] = ACTIONS(6039), + [anon_sym_GT_LPAREN] = ACTIONS(6039), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(5975), - [anon_sym_SEMI] = ACTIONS(5975), - [anon_sym_LF] = ACTIONS(5975), - [anon_sym_AMP] = ACTIONS(5975), + [sym_word] = ACTIONS(6039), + [anon_sym_SEMI] = ACTIONS(6039), + [anon_sym_LF] = ACTIONS(6039), + [anon_sym_AMP] = ACTIONS(6039), }, [4557] = { [sym_concatenation] = STATE(451), @@ -110254,57 +110667,57 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8990), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(9070), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4558] = { - [sym_file_descriptor] = ACTIONS(5979), - [sym__concat] = ACTIONS(5979), - [sym_variable_name] = ACTIONS(5979), - [anon_sym_esac] = ACTIONS(5981), - [anon_sym_PIPE] = ACTIONS(5981), - [anon_sym_SEMI_SEMI] = ACTIONS(5981), - [anon_sym_PIPE_AMP] = ACTIONS(5981), - [anon_sym_AMP_AMP] = ACTIONS(5981), - [anon_sym_PIPE_PIPE] = ACTIONS(5981), - [anon_sym_LT] = ACTIONS(5981), - [anon_sym_GT] = ACTIONS(5981), - [anon_sym_GT_GT] = ACTIONS(5981), - [anon_sym_AMP_GT] = ACTIONS(5981), - [anon_sym_AMP_GT_GT] = ACTIONS(5981), - [anon_sym_LT_AMP] = ACTIONS(5981), - [anon_sym_GT_AMP] = ACTIONS(5981), - [sym__special_characters] = ACTIONS(5981), - [anon_sym_DQUOTE] = ACTIONS(5981), - [anon_sym_DOLLAR] = ACTIONS(5981), - [sym_raw_string] = ACTIONS(5981), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5981), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5981), - [anon_sym_BQUOTE] = ACTIONS(5981), - [anon_sym_LT_LPAREN] = ACTIONS(5981), - [anon_sym_GT_LPAREN] = ACTIONS(5981), + [sym_file_descriptor] = ACTIONS(6043), + [sym__concat] = ACTIONS(6043), + [sym_variable_name] = ACTIONS(6043), + [anon_sym_esac] = ACTIONS(6045), + [anon_sym_PIPE] = ACTIONS(6045), + [anon_sym_SEMI_SEMI] = ACTIONS(6045), + [anon_sym_PIPE_AMP] = ACTIONS(6045), + [anon_sym_AMP_AMP] = ACTIONS(6045), + [anon_sym_PIPE_PIPE] = ACTIONS(6045), + [anon_sym_LT] = ACTIONS(6045), + [anon_sym_GT] = ACTIONS(6045), + [anon_sym_GT_GT] = ACTIONS(6045), + [anon_sym_AMP_GT] = ACTIONS(6045), + [anon_sym_AMP_GT_GT] = ACTIONS(6045), + [anon_sym_LT_AMP] = ACTIONS(6045), + [anon_sym_GT_AMP] = ACTIONS(6045), + [sym__special_characters] = ACTIONS(6045), + [anon_sym_DQUOTE] = ACTIONS(6045), + [anon_sym_DOLLAR] = ACTIONS(6045), + [sym_raw_string] = ACTIONS(6045), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6045), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6045), + [anon_sym_BQUOTE] = ACTIONS(6045), + [anon_sym_LT_LPAREN] = ACTIONS(6045), + [anon_sym_GT_LPAREN] = ACTIONS(6045), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(5981), - [anon_sym_SEMI] = ACTIONS(5981), - [anon_sym_LF] = ACTIONS(5981), - [anon_sym_AMP] = ACTIONS(5981), + [sym_word] = ACTIONS(6045), + [anon_sym_SEMI] = ACTIONS(6045), + [anon_sym_LF] = ACTIONS(6045), + [anon_sym_AMP] = ACTIONS(6045), }, [4559] = { [sym_concatenation] = STATE(451), @@ -110315,57 +110728,57 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8992), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(9072), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4560] = { - [sym_file_descriptor] = ACTIONS(5985), - [sym__concat] = ACTIONS(5985), - [sym_variable_name] = ACTIONS(5985), - [anon_sym_esac] = ACTIONS(5987), - [anon_sym_PIPE] = ACTIONS(5987), - [anon_sym_SEMI_SEMI] = ACTIONS(5987), - [anon_sym_PIPE_AMP] = ACTIONS(5987), - [anon_sym_AMP_AMP] = ACTIONS(5987), - [anon_sym_PIPE_PIPE] = ACTIONS(5987), - [anon_sym_LT] = ACTIONS(5987), - [anon_sym_GT] = ACTIONS(5987), - [anon_sym_GT_GT] = ACTIONS(5987), - [anon_sym_AMP_GT] = ACTIONS(5987), - [anon_sym_AMP_GT_GT] = ACTIONS(5987), - [anon_sym_LT_AMP] = ACTIONS(5987), - [anon_sym_GT_AMP] = ACTIONS(5987), - [sym__special_characters] = ACTIONS(5987), - [anon_sym_DQUOTE] = ACTIONS(5987), - [anon_sym_DOLLAR] = ACTIONS(5987), - [sym_raw_string] = ACTIONS(5987), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5987), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5987), - [anon_sym_BQUOTE] = ACTIONS(5987), - [anon_sym_LT_LPAREN] = ACTIONS(5987), - [anon_sym_GT_LPAREN] = ACTIONS(5987), + [sym_file_descriptor] = ACTIONS(6049), + [sym__concat] = ACTIONS(6049), + [sym_variable_name] = ACTIONS(6049), + [anon_sym_esac] = ACTIONS(6051), + [anon_sym_PIPE] = ACTIONS(6051), + [anon_sym_SEMI_SEMI] = ACTIONS(6051), + [anon_sym_PIPE_AMP] = ACTIONS(6051), + [anon_sym_AMP_AMP] = ACTIONS(6051), + [anon_sym_PIPE_PIPE] = ACTIONS(6051), + [anon_sym_LT] = ACTIONS(6051), + [anon_sym_GT] = ACTIONS(6051), + [anon_sym_GT_GT] = ACTIONS(6051), + [anon_sym_AMP_GT] = ACTIONS(6051), + [anon_sym_AMP_GT_GT] = ACTIONS(6051), + [anon_sym_LT_AMP] = ACTIONS(6051), + [anon_sym_GT_AMP] = ACTIONS(6051), + [sym__special_characters] = ACTIONS(6051), + [anon_sym_DQUOTE] = ACTIONS(6051), + [anon_sym_DOLLAR] = ACTIONS(6051), + [sym_raw_string] = ACTIONS(6051), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6051), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6051), + [anon_sym_BQUOTE] = ACTIONS(6051), + [anon_sym_LT_LPAREN] = ACTIONS(6051), + [anon_sym_GT_LPAREN] = ACTIONS(6051), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(5987), - [anon_sym_SEMI] = ACTIONS(5987), - [anon_sym_LF] = ACTIONS(5987), - [anon_sym_AMP] = ACTIONS(5987), + [sym_word] = ACTIONS(6051), + [anon_sym_SEMI] = ACTIONS(6051), + [anon_sym_LF] = ACTIONS(6051), + [anon_sym_AMP] = ACTIONS(6051), }, [4561] = { [sym_concatenation] = STATE(451), @@ -110376,117 +110789,117 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8994), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(9074), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4562] = { - [sym_file_descriptor] = ACTIONS(5991), - [sym__concat] = ACTIONS(5991), - [sym_variable_name] = ACTIONS(5991), - [anon_sym_esac] = ACTIONS(5993), - [anon_sym_PIPE] = ACTIONS(5993), - [anon_sym_SEMI_SEMI] = ACTIONS(5993), - [anon_sym_PIPE_AMP] = ACTIONS(5993), - [anon_sym_AMP_AMP] = ACTIONS(5993), - [anon_sym_PIPE_PIPE] = ACTIONS(5993), - [anon_sym_LT] = ACTIONS(5993), - [anon_sym_GT] = ACTIONS(5993), - [anon_sym_GT_GT] = ACTIONS(5993), - [anon_sym_AMP_GT] = ACTIONS(5993), - [anon_sym_AMP_GT_GT] = ACTIONS(5993), - [anon_sym_LT_AMP] = ACTIONS(5993), - [anon_sym_GT_AMP] = ACTIONS(5993), - [sym__special_characters] = ACTIONS(5993), - [anon_sym_DQUOTE] = ACTIONS(5993), - [anon_sym_DOLLAR] = ACTIONS(5993), - [sym_raw_string] = ACTIONS(5993), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5993), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5993), - [anon_sym_BQUOTE] = ACTIONS(5993), - [anon_sym_LT_LPAREN] = ACTIONS(5993), - [anon_sym_GT_LPAREN] = ACTIONS(5993), + [sym_file_descriptor] = ACTIONS(6055), + [sym__concat] = ACTIONS(6055), + [sym_variable_name] = ACTIONS(6055), + [anon_sym_esac] = ACTIONS(6057), + [anon_sym_PIPE] = ACTIONS(6057), + [anon_sym_SEMI_SEMI] = ACTIONS(6057), + [anon_sym_PIPE_AMP] = ACTIONS(6057), + [anon_sym_AMP_AMP] = ACTIONS(6057), + [anon_sym_PIPE_PIPE] = ACTIONS(6057), + [anon_sym_LT] = ACTIONS(6057), + [anon_sym_GT] = ACTIONS(6057), + [anon_sym_GT_GT] = ACTIONS(6057), + [anon_sym_AMP_GT] = ACTIONS(6057), + [anon_sym_AMP_GT_GT] = ACTIONS(6057), + [anon_sym_LT_AMP] = ACTIONS(6057), + [anon_sym_GT_AMP] = ACTIONS(6057), + [sym__special_characters] = ACTIONS(6057), + [anon_sym_DQUOTE] = ACTIONS(6057), + [anon_sym_DOLLAR] = ACTIONS(6057), + [sym_raw_string] = ACTIONS(6057), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6057), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6057), + [anon_sym_BQUOTE] = ACTIONS(6057), + [anon_sym_LT_LPAREN] = ACTIONS(6057), + [anon_sym_GT_LPAREN] = ACTIONS(6057), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(5993), - [anon_sym_SEMI] = ACTIONS(5993), - [anon_sym_LF] = ACTIONS(5993), - [anon_sym_AMP] = ACTIONS(5993), + [sym_word] = ACTIONS(6057), + [anon_sym_SEMI] = ACTIONS(6057), + [anon_sym_LF] = ACTIONS(6057), + [anon_sym_AMP] = ACTIONS(6057), }, [4563] = { - [sym_file_descriptor] = ACTIONS(5995), - [sym__concat] = ACTIONS(5995), - [sym_variable_name] = ACTIONS(5995), - [anon_sym_esac] = ACTIONS(5997), - [anon_sym_PIPE] = ACTIONS(5997), - [anon_sym_SEMI_SEMI] = ACTIONS(5997), - [anon_sym_PIPE_AMP] = ACTIONS(5997), - [anon_sym_AMP_AMP] = ACTIONS(5997), - [anon_sym_PIPE_PIPE] = ACTIONS(5997), - [anon_sym_LT] = ACTIONS(5997), - [anon_sym_GT] = ACTIONS(5997), - [anon_sym_GT_GT] = ACTIONS(5997), - [anon_sym_AMP_GT] = ACTIONS(5997), - [anon_sym_AMP_GT_GT] = ACTIONS(5997), - [anon_sym_LT_AMP] = ACTIONS(5997), - [anon_sym_GT_AMP] = ACTIONS(5997), - [sym__special_characters] = ACTIONS(5997), - [anon_sym_DQUOTE] = ACTIONS(5997), - [anon_sym_DOLLAR] = ACTIONS(5997), - [sym_raw_string] = ACTIONS(5997), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5997), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5997), - [anon_sym_BQUOTE] = ACTIONS(5997), - [anon_sym_LT_LPAREN] = ACTIONS(5997), - [anon_sym_GT_LPAREN] = ACTIONS(5997), + [sym_file_descriptor] = ACTIONS(6059), + [sym__concat] = ACTIONS(6059), + [sym_variable_name] = ACTIONS(6059), + [anon_sym_esac] = ACTIONS(6061), + [anon_sym_PIPE] = ACTIONS(6061), + [anon_sym_SEMI_SEMI] = ACTIONS(6061), + [anon_sym_PIPE_AMP] = ACTIONS(6061), + [anon_sym_AMP_AMP] = ACTIONS(6061), + [anon_sym_PIPE_PIPE] = ACTIONS(6061), + [anon_sym_LT] = ACTIONS(6061), + [anon_sym_GT] = ACTIONS(6061), + [anon_sym_GT_GT] = ACTIONS(6061), + [anon_sym_AMP_GT] = ACTIONS(6061), + [anon_sym_AMP_GT_GT] = ACTIONS(6061), + [anon_sym_LT_AMP] = ACTIONS(6061), + [anon_sym_GT_AMP] = ACTIONS(6061), + [sym__special_characters] = ACTIONS(6061), + [anon_sym_DQUOTE] = ACTIONS(6061), + [anon_sym_DOLLAR] = ACTIONS(6061), + [sym_raw_string] = ACTIONS(6061), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6061), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6061), + [anon_sym_BQUOTE] = ACTIONS(6061), + [anon_sym_LT_LPAREN] = ACTIONS(6061), + [anon_sym_GT_LPAREN] = ACTIONS(6061), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(5997), - [anon_sym_SEMI] = ACTIONS(5997), - [anon_sym_LF] = ACTIONS(5997), - [anon_sym_AMP] = ACTIONS(5997), + [sym_word] = ACTIONS(6061), + [anon_sym_SEMI] = ACTIONS(6061), + [anon_sym_LF] = ACTIONS(6061), + [anon_sym_AMP] = ACTIONS(6061), }, [4564] = { - [sym__concat] = ACTIONS(3235), - [anon_sym_esac] = ACTIONS(3237), - [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__concat] = ACTIONS(3283), + [anon_sym_esac] = ACTIONS(3285), + [anon_sym_PIPE] = ACTIONS(3285), + [anon_sym_SEMI_SEMI] = ACTIONS(3285), + [anon_sym_PIPE_AMP] = ACTIONS(3285), + [anon_sym_AMP_AMP] = ACTIONS(3285), + [anon_sym_PIPE_PIPE] = ACTIONS(3285), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3237), - [anon_sym_LF] = ACTIONS(3237), - [anon_sym_AMP] = ACTIONS(3237), + [anon_sym_SEMI] = ACTIONS(3285), + [anon_sym_LF] = ACTIONS(3285), + [anon_sym_AMP] = ACTIONS(3285), }, [4565] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(8996), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(9076), [sym_comment] = ACTIONS(56), }, [4566] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(8998), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(9078), [sym_comment] = ACTIONS(56), }, [4567] = { - [anon_sym_RBRACE] = ACTIONS(8998), + [anon_sym_RBRACE] = ACTIONS(9078), [sym_comment] = ACTIONS(56), }, [4568] = { @@ -110498,38 +110911,38 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(4605), - [anon_sym_RBRACE] = ACTIONS(9000), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(9080), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4569] = { - [sym__concat] = ACTIONS(3297), - [anon_sym_esac] = ACTIONS(3299), - [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__concat] = ACTIONS(3347), + [anon_sym_esac] = ACTIONS(3349), + [anon_sym_PIPE] = ACTIONS(3349), + [anon_sym_SEMI_SEMI] = ACTIONS(3349), + [anon_sym_PIPE_AMP] = ACTIONS(3349), + [anon_sym_AMP_AMP] = ACTIONS(3349), + [anon_sym_PIPE_PIPE] = ACTIONS(3349), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3299), - [anon_sym_LF] = ACTIONS(3299), - [anon_sym_AMP] = ACTIONS(3299), + [anon_sym_SEMI] = ACTIONS(3349), + [anon_sym_LF] = ACTIONS(3349), + [anon_sym_AMP] = ACTIONS(3349), }, [4570] = { [sym_concatenation] = STATE(4608), @@ -110539,35 +110952,35 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(4607), [sym_command_substitution] = STATE(4607), [sym_process_substitution] = STATE(4607), - [anon_sym_RBRACE] = ACTIONS(8998), - [sym__special_characters] = ACTIONS(9002), - [anon_sym_DQUOTE] = ACTIONS(1924), - [anon_sym_DOLLAR] = ACTIONS(1926), - [sym_raw_string] = ACTIONS(9004), - [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), + [anon_sym_RBRACE] = ACTIONS(9078), + [sym__special_characters] = ACTIONS(9082), + [anon_sym_DQUOTE] = ACTIONS(1952), + [anon_sym_DOLLAR] = ACTIONS(1954), + [sym_raw_string] = ACTIONS(9084), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), + [anon_sym_BQUOTE] = ACTIONS(1962), + [anon_sym_LT_LPAREN] = ACTIONS(1964), + [anon_sym_GT_LPAREN] = ACTIONS(1964), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(9006), + [sym_word] = ACTIONS(9086), }, [4571] = { - [sym__concat] = ACTIONS(3342), - [anon_sym_esac] = ACTIONS(3344), - [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__concat] = ACTIONS(3392), + [anon_sym_esac] = ACTIONS(3394), + [anon_sym_PIPE] = ACTIONS(3394), + [anon_sym_SEMI_SEMI] = ACTIONS(3394), + [anon_sym_PIPE_AMP] = ACTIONS(3394), + [anon_sym_AMP_AMP] = ACTIONS(3394), + [anon_sym_PIPE_PIPE] = ACTIONS(3394), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3344), - [anon_sym_LF] = ACTIONS(3344), - [anon_sym_AMP] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(3394), + [anon_sym_LF] = ACTIONS(3394), + [anon_sym_AMP] = ACTIONS(3394), }, [4572] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(9008), + [sym_regex_without_right_brace] = ACTIONS(9088), }, [4573] = { [sym_concatenation] = STATE(451), @@ -110578,42 +110991,42 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(9010), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(9090), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4574] = { - [sym__concat] = ACTIONS(3350), - [anon_sym_esac] = ACTIONS(3352), - [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__concat] = ACTIONS(3400), + [anon_sym_esac] = ACTIONS(3402), + [anon_sym_PIPE] = ACTIONS(3402), + [anon_sym_SEMI_SEMI] = ACTIONS(3402), + [anon_sym_PIPE_AMP] = ACTIONS(3402), + [anon_sym_AMP_AMP] = ACTIONS(3402), + [anon_sym_PIPE_PIPE] = ACTIONS(3402), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3352), - [anon_sym_LF] = ACTIONS(3352), - [anon_sym_AMP] = ACTIONS(3352), + [anon_sym_SEMI] = ACTIONS(3402), + [anon_sym_LF] = ACTIONS(3402), + [anon_sym_AMP] = ACTIONS(3402), }, [4575] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(9012), + [sym_regex_without_right_brace] = ACTIONS(9092), }, [4576] = { [sym_concatenation] = STATE(451), @@ -110624,29 +111037,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(9014), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(9094), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4577] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(9016), + [sym_regex_without_right_brace] = ACTIONS(9096), }, [4578] = { [sym_concatenation] = STATE(451), @@ -110657,25 +111070,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8998), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(9078), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4579] = { [sym_concatenation] = STATE(451), @@ -110686,38 +111099,38 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(4615), - [anon_sym_RBRACE] = ACTIONS(9018), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(9098), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4580] = { - [sym__concat] = ACTIONS(3362), - [anon_sym_esac] = ACTIONS(3364), - [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__concat] = ACTIONS(3412), + [anon_sym_esac] = ACTIONS(3414), + [anon_sym_PIPE] = ACTIONS(3414), + [anon_sym_SEMI_SEMI] = ACTIONS(3414), + [anon_sym_PIPE_AMP] = ACTIONS(3414), + [anon_sym_AMP_AMP] = ACTIONS(3414), + [anon_sym_PIPE_PIPE] = ACTIONS(3414), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3364), - [anon_sym_LF] = ACTIONS(3364), - [anon_sym_AMP] = ACTIONS(3364), + [anon_sym_SEMI] = ACTIONS(3414), + [anon_sym_LF] = ACTIONS(3414), + [anon_sym_AMP] = ACTIONS(3414), }, [4581] = { [sym_concatenation] = STATE(451), @@ -110728,268 +111141,268 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(4617), - [anon_sym_RBRACE] = ACTIONS(9020), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(9100), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4582] = { - [sym__concat] = ACTIONS(6948), - [sym_variable_name] = ACTIONS(6948), - [anon_sym_esac] = ACTIONS(6950), - [anon_sym_PIPE] = ACTIONS(6950), - [anon_sym_SEMI_SEMI] = ACTIONS(6950), - [anon_sym_PIPE_AMP] = ACTIONS(6950), - [anon_sym_AMP_AMP] = ACTIONS(6950), - [anon_sym_PIPE_PIPE] = ACTIONS(6950), - [sym__special_characters] = ACTIONS(6950), - [anon_sym_DQUOTE] = ACTIONS(6950), - [anon_sym_DOLLAR] = ACTIONS(6950), - [sym_raw_string] = ACTIONS(6950), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6950), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6950), - [anon_sym_BQUOTE] = ACTIONS(6950), - [anon_sym_LT_LPAREN] = ACTIONS(6950), - [anon_sym_GT_LPAREN] = ACTIONS(6950), + [sym__concat] = ACTIONS(7018), + [sym_variable_name] = ACTIONS(7018), + [anon_sym_esac] = ACTIONS(7020), + [anon_sym_PIPE] = ACTIONS(7020), + [anon_sym_SEMI_SEMI] = ACTIONS(7020), + [anon_sym_PIPE_AMP] = ACTIONS(7020), + [anon_sym_AMP_AMP] = ACTIONS(7020), + [anon_sym_PIPE_PIPE] = ACTIONS(7020), + [sym__special_characters] = ACTIONS(7020), + [anon_sym_DQUOTE] = ACTIONS(7020), + [anon_sym_DOLLAR] = ACTIONS(7020), + [sym_raw_string] = ACTIONS(7020), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7020), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7020), + [anon_sym_BQUOTE] = ACTIONS(7020), + [anon_sym_LT_LPAREN] = ACTIONS(7020), + [anon_sym_GT_LPAREN] = ACTIONS(7020), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6950), - [sym_word] = ACTIONS(6950), - [anon_sym_SEMI] = ACTIONS(6950), - [anon_sym_LF] = ACTIONS(6950), - [anon_sym_AMP] = ACTIONS(6950), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7020), + [sym_word] = ACTIONS(7020), + [anon_sym_SEMI] = ACTIONS(7020), + [anon_sym_LF] = ACTIONS(7020), + [anon_sym_AMP] = ACTIONS(7020), }, [4583] = { - [sym__concat] = ACTIONS(6952), - [sym_variable_name] = ACTIONS(6952), - [anon_sym_esac] = ACTIONS(6954), - [anon_sym_PIPE] = ACTIONS(6954), - [anon_sym_SEMI_SEMI] = ACTIONS(6954), - [anon_sym_PIPE_AMP] = ACTIONS(6954), - [anon_sym_AMP_AMP] = ACTIONS(6954), - [anon_sym_PIPE_PIPE] = ACTIONS(6954), - [sym__special_characters] = ACTIONS(6954), - [anon_sym_DQUOTE] = ACTIONS(6954), - [anon_sym_DOLLAR] = ACTIONS(6954), - [sym_raw_string] = ACTIONS(6954), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6954), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6954), - [anon_sym_BQUOTE] = ACTIONS(6954), - [anon_sym_LT_LPAREN] = ACTIONS(6954), - [anon_sym_GT_LPAREN] = ACTIONS(6954), + [sym__concat] = ACTIONS(7022), + [sym_variable_name] = ACTIONS(7022), + [anon_sym_esac] = ACTIONS(7024), + [anon_sym_PIPE] = ACTIONS(7024), + [anon_sym_SEMI_SEMI] = ACTIONS(7024), + [anon_sym_PIPE_AMP] = ACTIONS(7024), + [anon_sym_AMP_AMP] = ACTIONS(7024), + [anon_sym_PIPE_PIPE] = ACTIONS(7024), + [sym__special_characters] = ACTIONS(7024), + [anon_sym_DQUOTE] = ACTIONS(7024), + [anon_sym_DOLLAR] = ACTIONS(7024), + [sym_raw_string] = ACTIONS(7024), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7024), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7024), + [anon_sym_BQUOTE] = ACTIONS(7024), + [anon_sym_LT_LPAREN] = ACTIONS(7024), + [anon_sym_GT_LPAREN] = ACTIONS(7024), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6954), - [sym_word] = ACTIONS(6954), - [anon_sym_SEMI] = ACTIONS(6954), - [anon_sym_LF] = ACTIONS(6954), - [anon_sym_AMP] = ACTIONS(6954), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7024), + [sym_word] = ACTIONS(7024), + [anon_sym_SEMI] = ACTIONS(7024), + [anon_sym_LF] = ACTIONS(7024), + [anon_sym_AMP] = ACTIONS(7024), }, [4584] = { - [sym__concat] = ACTIONS(6956), - [sym_variable_name] = ACTIONS(6956), - [anon_sym_esac] = ACTIONS(6958), - [anon_sym_PIPE] = ACTIONS(6958), - [anon_sym_SEMI_SEMI] = ACTIONS(6958), - [anon_sym_PIPE_AMP] = ACTIONS(6958), - [anon_sym_AMP_AMP] = ACTIONS(6958), - [anon_sym_PIPE_PIPE] = ACTIONS(6958), - [sym__special_characters] = ACTIONS(6958), - [anon_sym_DQUOTE] = ACTIONS(6958), - [anon_sym_DOLLAR] = ACTIONS(6958), - [sym_raw_string] = ACTIONS(6958), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6958), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6958), - [anon_sym_BQUOTE] = ACTIONS(6958), - [anon_sym_LT_LPAREN] = ACTIONS(6958), - [anon_sym_GT_LPAREN] = ACTIONS(6958), + [sym__concat] = ACTIONS(7026), + [sym_variable_name] = ACTIONS(7026), + [anon_sym_esac] = ACTIONS(7028), + [anon_sym_PIPE] = ACTIONS(7028), + [anon_sym_SEMI_SEMI] = ACTIONS(7028), + [anon_sym_PIPE_AMP] = ACTIONS(7028), + [anon_sym_AMP_AMP] = ACTIONS(7028), + [anon_sym_PIPE_PIPE] = ACTIONS(7028), + [sym__special_characters] = ACTIONS(7028), + [anon_sym_DQUOTE] = ACTIONS(7028), + [anon_sym_DOLLAR] = ACTIONS(7028), + [sym_raw_string] = ACTIONS(7028), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7028), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7028), + [anon_sym_BQUOTE] = ACTIONS(7028), + [anon_sym_LT_LPAREN] = ACTIONS(7028), + [anon_sym_GT_LPAREN] = ACTIONS(7028), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6958), - [sym_word] = ACTIONS(6958), - [anon_sym_SEMI] = ACTIONS(6958), - [anon_sym_LF] = ACTIONS(6958), - [anon_sym_AMP] = ACTIONS(6958), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7028), + [sym_word] = ACTIONS(7028), + [anon_sym_SEMI] = ACTIONS(7028), + [anon_sym_LF] = ACTIONS(7028), + [anon_sym_AMP] = ACTIONS(7028), }, [4585] = { - [sym__concat] = ACTIONS(6948), - [anon_sym_esac] = ACTIONS(6950), - [anon_sym_PIPE] = ACTIONS(6950), - [anon_sym_SEMI_SEMI] = ACTIONS(6950), - [anon_sym_PIPE_AMP] = ACTIONS(6950), - [anon_sym_AMP_AMP] = ACTIONS(6950), - [anon_sym_PIPE_PIPE] = ACTIONS(6950), - [sym__special_characters] = ACTIONS(6950), - [anon_sym_DQUOTE] = ACTIONS(6950), - [anon_sym_DOLLAR] = ACTIONS(6950), - [sym_raw_string] = ACTIONS(6950), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6950), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6950), - [anon_sym_BQUOTE] = ACTIONS(6950), - [anon_sym_LT_LPAREN] = ACTIONS(6950), - [anon_sym_GT_LPAREN] = ACTIONS(6950), + [sym__concat] = ACTIONS(7018), + [anon_sym_esac] = ACTIONS(7020), + [anon_sym_PIPE] = ACTIONS(7020), + [anon_sym_SEMI_SEMI] = ACTIONS(7020), + [anon_sym_PIPE_AMP] = ACTIONS(7020), + [anon_sym_AMP_AMP] = ACTIONS(7020), + [anon_sym_PIPE_PIPE] = ACTIONS(7020), + [sym__special_characters] = ACTIONS(7020), + [anon_sym_DQUOTE] = ACTIONS(7020), + [anon_sym_DOLLAR] = ACTIONS(7020), + [sym_raw_string] = ACTIONS(7020), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7020), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7020), + [anon_sym_BQUOTE] = ACTIONS(7020), + [anon_sym_LT_LPAREN] = ACTIONS(7020), + [anon_sym_GT_LPAREN] = ACTIONS(7020), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6950), - [sym_word] = ACTIONS(6950), - [anon_sym_SEMI] = ACTIONS(6950), - [anon_sym_LF] = ACTIONS(6950), - [anon_sym_AMP] = ACTIONS(6950), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7020), + [sym_word] = ACTIONS(7020), + [anon_sym_SEMI] = ACTIONS(7020), + [anon_sym_LF] = ACTIONS(7020), + [anon_sym_AMP] = ACTIONS(7020), }, [4586] = { - [sym__concat] = ACTIONS(6952), - [anon_sym_esac] = ACTIONS(6954), - [anon_sym_PIPE] = ACTIONS(6954), - [anon_sym_SEMI_SEMI] = ACTIONS(6954), - [anon_sym_PIPE_AMP] = ACTIONS(6954), - [anon_sym_AMP_AMP] = ACTIONS(6954), - [anon_sym_PIPE_PIPE] = ACTIONS(6954), - [sym__special_characters] = ACTIONS(6954), - [anon_sym_DQUOTE] = ACTIONS(6954), - [anon_sym_DOLLAR] = ACTIONS(6954), - [sym_raw_string] = ACTIONS(6954), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6954), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6954), - [anon_sym_BQUOTE] = ACTIONS(6954), - [anon_sym_LT_LPAREN] = ACTIONS(6954), - [anon_sym_GT_LPAREN] = ACTIONS(6954), + [sym__concat] = ACTIONS(7022), + [anon_sym_esac] = ACTIONS(7024), + [anon_sym_PIPE] = ACTIONS(7024), + [anon_sym_SEMI_SEMI] = ACTIONS(7024), + [anon_sym_PIPE_AMP] = ACTIONS(7024), + [anon_sym_AMP_AMP] = ACTIONS(7024), + [anon_sym_PIPE_PIPE] = ACTIONS(7024), + [sym__special_characters] = ACTIONS(7024), + [anon_sym_DQUOTE] = ACTIONS(7024), + [anon_sym_DOLLAR] = ACTIONS(7024), + [sym_raw_string] = ACTIONS(7024), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7024), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7024), + [anon_sym_BQUOTE] = ACTIONS(7024), + [anon_sym_LT_LPAREN] = ACTIONS(7024), + [anon_sym_GT_LPAREN] = ACTIONS(7024), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6954), - [sym_word] = ACTIONS(6954), - [anon_sym_SEMI] = ACTIONS(6954), - [anon_sym_LF] = ACTIONS(6954), - [anon_sym_AMP] = ACTIONS(6954), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7024), + [sym_word] = ACTIONS(7024), + [anon_sym_SEMI] = ACTIONS(7024), + [anon_sym_LF] = ACTIONS(7024), + [anon_sym_AMP] = ACTIONS(7024), }, [4587] = { - [sym__concat] = ACTIONS(6956), - [anon_sym_esac] = ACTIONS(6958), - [anon_sym_PIPE] = ACTIONS(6958), - [anon_sym_SEMI_SEMI] = ACTIONS(6958), - [anon_sym_PIPE_AMP] = ACTIONS(6958), - [anon_sym_AMP_AMP] = ACTIONS(6958), - [anon_sym_PIPE_PIPE] = ACTIONS(6958), - [sym__special_characters] = ACTIONS(6958), - [anon_sym_DQUOTE] = ACTIONS(6958), - [anon_sym_DOLLAR] = ACTIONS(6958), - [sym_raw_string] = ACTIONS(6958), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6958), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6958), - [anon_sym_BQUOTE] = ACTIONS(6958), - [anon_sym_LT_LPAREN] = ACTIONS(6958), - [anon_sym_GT_LPAREN] = ACTIONS(6958), + [sym__concat] = ACTIONS(7026), + [anon_sym_esac] = ACTIONS(7028), + [anon_sym_PIPE] = ACTIONS(7028), + [anon_sym_SEMI_SEMI] = ACTIONS(7028), + [anon_sym_PIPE_AMP] = ACTIONS(7028), + [anon_sym_AMP_AMP] = ACTIONS(7028), + [anon_sym_PIPE_PIPE] = ACTIONS(7028), + [sym__special_characters] = ACTIONS(7028), + [anon_sym_DQUOTE] = ACTIONS(7028), + [anon_sym_DOLLAR] = ACTIONS(7028), + [sym_raw_string] = ACTIONS(7028), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7028), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7028), + [anon_sym_BQUOTE] = ACTIONS(7028), + [anon_sym_LT_LPAREN] = ACTIONS(7028), + [anon_sym_GT_LPAREN] = ACTIONS(7028), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6958), - [sym_word] = ACTIONS(6958), - [anon_sym_SEMI] = ACTIONS(6958), - [anon_sym_LF] = ACTIONS(6958), - [anon_sym_AMP] = ACTIONS(6958), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7028), + [sym_word] = ACTIONS(7028), + [anon_sym_SEMI] = ACTIONS(7028), + [anon_sym_LF] = ACTIONS(7028), + [anon_sym_AMP] = ACTIONS(7028), }, [4588] = { - [sym_file_descriptor] = ACTIONS(5961), - [sym__concat] = ACTIONS(5961), - [anon_sym_esac] = ACTIONS(5963), - [anon_sym_PIPE] = ACTIONS(5963), - [anon_sym_SEMI_SEMI] = ACTIONS(5963), - [anon_sym_PIPE_AMP] = ACTIONS(5963), - [anon_sym_AMP_AMP] = ACTIONS(5963), - [anon_sym_PIPE_PIPE] = ACTIONS(5963), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_GT] = ACTIONS(5963), - [anon_sym_GT_GT] = ACTIONS(5963), - [anon_sym_AMP_GT] = ACTIONS(5963), - [anon_sym_AMP_GT_GT] = ACTIONS(5963), - [anon_sym_LT_AMP] = ACTIONS(5963), - [anon_sym_GT_AMP] = ACTIONS(5963), - [anon_sym_LT_LT] = ACTIONS(5963), - [anon_sym_LT_LT_DASH] = ACTIONS(5963), - [anon_sym_LT_LT_LT] = ACTIONS(5963), + [sym_file_descriptor] = ACTIONS(6025), + [sym__concat] = ACTIONS(6025), + [anon_sym_esac] = ACTIONS(6027), + [anon_sym_PIPE] = ACTIONS(6027), + [anon_sym_SEMI_SEMI] = ACTIONS(6027), + [anon_sym_PIPE_AMP] = ACTIONS(6027), + [anon_sym_AMP_AMP] = ACTIONS(6027), + [anon_sym_PIPE_PIPE] = ACTIONS(6027), + [anon_sym_LT] = ACTIONS(6027), + [anon_sym_GT] = ACTIONS(6027), + [anon_sym_GT_GT] = ACTIONS(6027), + [anon_sym_AMP_GT] = ACTIONS(6027), + [anon_sym_AMP_GT_GT] = ACTIONS(6027), + [anon_sym_LT_AMP] = ACTIONS(6027), + [anon_sym_GT_AMP] = ACTIONS(6027), + [anon_sym_LT_LT] = ACTIONS(6027), + [anon_sym_LT_LT_DASH] = ACTIONS(6027), + [anon_sym_LT_LT_LT] = ACTIONS(6027), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(5963), - [anon_sym_LF] = ACTIONS(5963), - [anon_sym_AMP] = ACTIONS(5963), + [anon_sym_SEMI] = ACTIONS(6027), + [anon_sym_LF] = ACTIONS(6027), + [anon_sym_AMP] = ACTIONS(6027), }, [4589] = { - [sym_file_descriptor] = ACTIONS(5965), - [sym__concat] = ACTIONS(5965), - [anon_sym_esac] = ACTIONS(5967), - [anon_sym_PIPE] = ACTIONS(5967), - [anon_sym_SEMI_SEMI] = ACTIONS(5967), - [anon_sym_PIPE_AMP] = ACTIONS(5967), - [anon_sym_AMP_AMP] = ACTIONS(5967), - [anon_sym_PIPE_PIPE] = ACTIONS(5967), - [anon_sym_LT] = ACTIONS(5967), - [anon_sym_GT] = ACTIONS(5967), - [anon_sym_GT_GT] = ACTIONS(5967), - [anon_sym_AMP_GT] = ACTIONS(5967), - [anon_sym_AMP_GT_GT] = ACTIONS(5967), - [anon_sym_LT_AMP] = ACTIONS(5967), - [anon_sym_GT_AMP] = ACTIONS(5967), - [anon_sym_LT_LT] = ACTIONS(5967), - [anon_sym_LT_LT_DASH] = ACTIONS(5967), - [anon_sym_LT_LT_LT] = ACTIONS(5967), + [sym_file_descriptor] = ACTIONS(6029), + [sym__concat] = ACTIONS(6029), + [anon_sym_esac] = ACTIONS(6031), + [anon_sym_PIPE] = ACTIONS(6031), + [anon_sym_SEMI_SEMI] = ACTIONS(6031), + [anon_sym_PIPE_AMP] = ACTIONS(6031), + [anon_sym_AMP_AMP] = ACTIONS(6031), + [anon_sym_PIPE_PIPE] = ACTIONS(6031), + [anon_sym_LT] = ACTIONS(6031), + [anon_sym_GT] = ACTIONS(6031), + [anon_sym_GT_GT] = ACTIONS(6031), + [anon_sym_AMP_GT] = ACTIONS(6031), + [anon_sym_AMP_GT_GT] = ACTIONS(6031), + [anon_sym_LT_AMP] = ACTIONS(6031), + [anon_sym_GT_AMP] = ACTIONS(6031), + [anon_sym_LT_LT] = ACTIONS(6031), + [anon_sym_LT_LT_DASH] = ACTIONS(6031), + [anon_sym_LT_LT_LT] = ACTIONS(6031), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(5967), - [anon_sym_LF] = ACTIONS(5967), - [anon_sym_AMP] = ACTIONS(5967), + [anon_sym_SEMI] = ACTIONS(6031), + [anon_sym_LF] = ACTIONS(6031), + [anon_sym_AMP] = ACTIONS(6031), }, [4590] = { - [sym_file_descriptor] = ACTIONS(5969), - [sym__concat] = ACTIONS(5969), - [anon_sym_esac] = ACTIONS(5971), - [anon_sym_PIPE] = ACTIONS(5971), - [anon_sym_SEMI_SEMI] = ACTIONS(5971), - [anon_sym_PIPE_AMP] = ACTIONS(5971), - [anon_sym_AMP_AMP] = ACTIONS(5971), - [anon_sym_PIPE_PIPE] = ACTIONS(5971), - [anon_sym_LT] = ACTIONS(5971), - [anon_sym_GT] = ACTIONS(5971), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_AMP_GT] = ACTIONS(5971), - [anon_sym_AMP_GT_GT] = ACTIONS(5971), - [anon_sym_LT_AMP] = ACTIONS(5971), - [anon_sym_GT_AMP] = ACTIONS(5971), - [anon_sym_LT_LT] = ACTIONS(5971), - [anon_sym_LT_LT_DASH] = ACTIONS(5971), - [anon_sym_LT_LT_LT] = ACTIONS(5971), + [sym_file_descriptor] = ACTIONS(6033), + [sym__concat] = ACTIONS(6033), + [anon_sym_esac] = ACTIONS(6035), + [anon_sym_PIPE] = ACTIONS(6035), + [anon_sym_SEMI_SEMI] = ACTIONS(6035), + [anon_sym_PIPE_AMP] = ACTIONS(6035), + [anon_sym_AMP_AMP] = ACTIONS(6035), + [anon_sym_PIPE_PIPE] = ACTIONS(6035), + [anon_sym_LT] = ACTIONS(6035), + [anon_sym_GT] = ACTIONS(6035), + [anon_sym_GT_GT] = ACTIONS(6035), + [anon_sym_AMP_GT] = ACTIONS(6035), + [anon_sym_AMP_GT_GT] = ACTIONS(6035), + [anon_sym_LT_AMP] = ACTIONS(6035), + [anon_sym_GT_AMP] = ACTIONS(6035), + [anon_sym_LT_LT] = ACTIONS(6035), + [anon_sym_LT_LT_DASH] = ACTIONS(6035), + [anon_sym_LT_LT_LT] = ACTIONS(6035), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(5971), - [anon_sym_LF] = ACTIONS(5971), - [anon_sym_AMP] = ACTIONS(5971), + [anon_sym_SEMI] = ACTIONS(6035), + [anon_sym_LF] = ACTIONS(6035), + [anon_sym_AMP] = ACTIONS(6035), }, [4591] = { - [sym_file_descriptor] = ACTIONS(5973), - [sym__concat] = ACTIONS(5973), - [anon_sym_esac] = ACTIONS(5975), - [anon_sym_PIPE] = ACTIONS(5975), - [anon_sym_SEMI_SEMI] = ACTIONS(5975), - [anon_sym_PIPE_AMP] = ACTIONS(5975), - [anon_sym_AMP_AMP] = ACTIONS(5975), - [anon_sym_PIPE_PIPE] = ACTIONS(5975), - [anon_sym_LT] = ACTIONS(5975), - [anon_sym_GT] = ACTIONS(5975), - [anon_sym_GT_GT] = ACTIONS(5975), - [anon_sym_AMP_GT] = ACTIONS(5975), - [anon_sym_AMP_GT_GT] = ACTIONS(5975), - [anon_sym_LT_AMP] = ACTIONS(5975), - [anon_sym_GT_AMP] = ACTIONS(5975), - [anon_sym_LT_LT] = ACTIONS(5975), - [anon_sym_LT_LT_DASH] = ACTIONS(5975), - [anon_sym_LT_LT_LT] = ACTIONS(5975), + [sym_file_descriptor] = ACTIONS(6037), + [sym__concat] = ACTIONS(6037), + [anon_sym_esac] = ACTIONS(6039), + [anon_sym_PIPE] = ACTIONS(6039), + [anon_sym_SEMI_SEMI] = ACTIONS(6039), + [anon_sym_PIPE_AMP] = ACTIONS(6039), + [anon_sym_AMP_AMP] = ACTIONS(6039), + [anon_sym_PIPE_PIPE] = ACTIONS(6039), + [anon_sym_LT] = ACTIONS(6039), + [anon_sym_GT] = ACTIONS(6039), + [anon_sym_GT_GT] = ACTIONS(6039), + [anon_sym_AMP_GT] = ACTIONS(6039), + [anon_sym_AMP_GT_GT] = ACTIONS(6039), + [anon_sym_LT_AMP] = ACTIONS(6039), + [anon_sym_GT_AMP] = ACTIONS(6039), + [anon_sym_LT_LT] = ACTIONS(6039), + [anon_sym_LT_LT_DASH] = ACTIONS(6039), + [anon_sym_LT_LT_LT] = ACTIONS(6039), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(5975), - [anon_sym_LF] = ACTIONS(5975), - [anon_sym_AMP] = ACTIONS(5975), + [anon_sym_SEMI] = ACTIONS(6039), + [anon_sym_LF] = ACTIONS(6039), + [anon_sym_AMP] = ACTIONS(6039), }, [4592] = { [sym_concatenation] = STATE(451), @@ -111000,49 +111413,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(9022), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(9102), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4593] = { - [sym_file_descriptor] = ACTIONS(5979), - [sym__concat] = ACTIONS(5979), - [anon_sym_esac] = ACTIONS(5981), - [anon_sym_PIPE] = ACTIONS(5981), - [anon_sym_SEMI_SEMI] = ACTIONS(5981), - [anon_sym_PIPE_AMP] = ACTIONS(5981), - [anon_sym_AMP_AMP] = ACTIONS(5981), - [anon_sym_PIPE_PIPE] = ACTIONS(5981), - [anon_sym_LT] = ACTIONS(5981), - [anon_sym_GT] = ACTIONS(5981), - [anon_sym_GT_GT] = ACTIONS(5981), - [anon_sym_AMP_GT] = ACTIONS(5981), - [anon_sym_AMP_GT_GT] = ACTIONS(5981), - [anon_sym_LT_AMP] = ACTIONS(5981), - [anon_sym_GT_AMP] = ACTIONS(5981), - [anon_sym_LT_LT] = ACTIONS(5981), - [anon_sym_LT_LT_DASH] = ACTIONS(5981), - [anon_sym_LT_LT_LT] = ACTIONS(5981), + [sym_file_descriptor] = ACTIONS(6043), + [sym__concat] = ACTIONS(6043), + [anon_sym_esac] = ACTIONS(6045), + [anon_sym_PIPE] = ACTIONS(6045), + [anon_sym_SEMI_SEMI] = ACTIONS(6045), + [anon_sym_PIPE_AMP] = ACTIONS(6045), + [anon_sym_AMP_AMP] = ACTIONS(6045), + [anon_sym_PIPE_PIPE] = ACTIONS(6045), + [anon_sym_LT] = ACTIONS(6045), + [anon_sym_GT] = ACTIONS(6045), + [anon_sym_GT_GT] = ACTIONS(6045), + [anon_sym_AMP_GT] = ACTIONS(6045), + [anon_sym_AMP_GT_GT] = ACTIONS(6045), + [anon_sym_LT_AMP] = ACTIONS(6045), + [anon_sym_GT_AMP] = ACTIONS(6045), + [anon_sym_LT_LT] = ACTIONS(6045), + [anon_sym_LT_LT_DASH] = ACTIONS(6045), + [anon_sym_LT_LT_LT] = ACTIONS(6045), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(5981), - [anon_sym_LF] = ACTIONS(5981), - [anon_sym_AMP] = ACTIONS(5981), + [anon_sym_SEMI] = ACTIONS(6045), + [anon_sym_LF] = ACTIONS(6045), + [anon_sym_AMP] = ACTIONS(6045), }, [4594] = { [sym_concatenation] = STATE(451), @@ -111053,49 +111466,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(9024), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(9104), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4595] = { - [sym_file_descriptor] = ACTIONS(5985), - [sym__concat] = ACTIONS(5985), - [anon_sym_esac] = ACTIONS(5987), - [anon_sym_PIPE] = ACTIONS(5987), - [anon_sym_SEMI_SEMI] = ACTIONS(5987), - [anon_sym_PIPE_AMP] = ACTIONS(5987), - [anon_sym_AMP_AMP] = ACTIONS(5987), - [anon_sym_PIPE_PIPE] = ACTIONS(5987), - [anon_sym_LT] = ACTIONS(5987), - [anon_sym_GT] = ACTIONS(5987), - [anon_sym_GT_GT] = ACTIONS(5987), - [anon_sym_AMP_GT] = ACTIONS(5987), - [anon_sym_AMP_GT_GT] = ACTIONS(5987), - [anon_sym_LT_AMP] = ACTIONS(5987), - [anon_sym_GT_AMP] = ACTIONS(5987), - [anon_sym_LT_LT] = ACTIONS(5987), - [anon_sym_LT_LT_DASH] = ACTIONS(5987), - [anon_sym_LT_LT_LT] = ACTIONS(5987), + [sym_file_descriptor] = ACTIONS(6049), + [sym__concat] = ACTIONS(6049), + [anon_sym_esac] = ACTIONS(6051), + [anon_sym_PIPE] = ACTIONS(6051), + [anon_sym_SEMI_SEMI] = ACTIONS(6051), + [anon_sym_PIPE_AMP] = ACTIONS(6051), + [anon_sym_AMP_AMP] = ACTIONS(6051), + [anon_sym_PIPE_PIPE] = ACTIONS(6051), + [anon_sym_LT] = ACTIONS(6051), + [anon_sym_GT] = ACTIONS(6051), + [anon_sym_GT_GT] = ACTIONS(6051), + [anon_sym_AMP_GT] = ACTIONS(6051), + [anon_sym_AMP_GT_GT] = ACTIONS(6051), + [anon_sym_LT_AMP] = ACTIONS(6051), + [anon_sym_GT_AMP] = ACTIONS(6051), + [anon_sym_LT_LT] = ACTIONS(6051), + [anon_sym_LT_LT_DASH] = ACTIONS(6051), + [anon_sym_LT_LT_LT] = ACTIONS(6051), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(5987), - [anon_sym_LF] = ACTIONS(5987), - [anon_sym_AMP] = ACTIONS(5987), + [anon_sym_SEMI] = ACTIONS(6051), + [anon_sym_LF] = ACTIONS(6051), + [anon_sym_AMP] = ACTIONS(6051), }, [4596] = { [sym_concatenation] = STATE(451), @@ -111106,208 +111519,208 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(9026), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(9106), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4597] = { - [sym_file_descriptor] = ACTIONS(5991), - [sym__concat] = ACTIONS(5991), - [anon_sym_esac] = ACTIONS(5993), - [anon_sym_PIPE] = ACTIONS(5993), - [anon_sym_SEMI_SEMI] = ACTIONS(5993), - [anon_sym_PIPE_AMP] = ACTIONS(5993), - [anon_sym_AMP_AMP] = ACTIONS(5993), - [anon_sym_PIPE_PIPE] = ACTIONS(5993), - [anon_sym_LT] = ACTIONS(5993), - [anon_sym_GT] = ACTIONS(5993), - [anon_sym_GT_GT] = ACTIONS(5993), - [anon_sym_AMP_GT] = ACTIONS(5993), - [anon_sym_AMP_GT_GT] = ACTIONS(5993), - [anon_sym_LT_AMP] = ACTIONS(5993), - [anon_sym_GT_AMP] = ACTIONS(5993), - [anon_sym_LT_LT] = ACTIONS(5993), - [anon_sym_LT_LT_DASH] = ACTIONS(5993), - [anon_sym_LT_LT_LT] = ACTIONS(5993), + [sym_file_descriptor] = ACTIONS(6055), + [sym__concat] = ACTIONS(6055), + [anon_sym_esac] = ACTIONS(6057), + [anon_sym_PIPE] = ACTIONS(6057), + [anon_sym_SEMI_SEMI] = ACTIONS(6057), + [anon_sym_PIPE_AMP] = ACTIONS(6057), + [anon_sym_AMP_AMP] = ACTIONS(6057), + [anon_sym_PIPE_PIPE] = ACTIONS(6057), + [anon_sym_LT] = ACTIONS(6057), + [anon_sym_GT] = ACTIONS(6057), + [anon_sym_GT_GT] = ACTIONS(6057), + [anon_sym_AMP_GT] = ACTIONS(6057), + [anon_sym_AMP_GT_GT] = ACTIONS(6057), + [anon_sym_LT_AMP] = ACTIONS(6057), + [anon_sym_GT_AMP] = ACTIONS(6057), + [anon_sym_LT_LT] = ACTIONS(6057), + [anon_sym_LT_LT_DASH] = ACTIONS(6057), + [anon_sym_LT_LT_LT] = ACTIONS(6057), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(5993), - [anon_sym_LF] = ACTIONS(5993), - [anon_sym_AMP] = ACTIONS(5993), + [anon_sym_SEMI] = ACTIONS(6057), + [anon_sym_LF] = ACTIONS(6057), + [anon_sym_AMP] = ACTIONS(6057), }, [4598] = { - [sym_file_descriptor] = ACTIONS(5995), - [sym__concat] = ACTIONS(5995), - [anon_sym_esac] = ACTIONS(5997), - [anon_sym_PIPE] = ACTIONS(5997), - [anon_sym_SEMI_SEMI] = ACTIONS(5997), - [anon_sym_PIPE_AMP] = ACTIONS(5997), - [anon_sym_AMP_AMP] = ACTIONS(5997), - [anon_sym_PIPE_PIPE] = ACTIONS(5997), - [anon_sym_LT] = ACTIONS(5997), - [anon_sym_GT] = ACTIONS(5997), - [anon_sym_GT_GT] = ACTIONS(5997), - [anon_sym_AMP_GT] = ACTIONS(5997), - [anon_sym_AMP_GT_GT] = ACTIONS(5997), - [anon_sym_LT_AMP] = ACTIONS(5997), - [anon_sym_GT_AMP] = ACTIONS(5997), - [anon_sym_LT_LT] = ACTIONS(5997), - [anon_sym_LT_LT_DASH] = ACTIONS(5997), - [anon_sym_LT_LT_LT] = ACTIONS(5997), + [sym_file_descriptor] = ACTIONS(6059), + [sym__concat] = ACTIONS(6059), + [anon_sym_esac] = ACTIONS(6061), + [anon_sym_PIPE] = ACTIONS(6061), + [anon_sym_SEMI_SEMI] = ACTIONS(6061), + [anon_sym_PIPE_AMP] = ACTIONS(6061), + [anon_sym_AMP_AMP] = ACTIONS(6061), + [anon_sym_PIPE_PIPE] = ACTIONS(6061), + [anon_sym_LT] = ACTIONS(6061), + [anon_sym_GT] = ACTIONS(6061), + [anon_sym_GT_GT] = ACTIONS(6061), + [anon_sym_AMP_GT] = ACTIONS(6061), + [anon_sym_AMP_GT_GT] = ACTIONS(6061), + [anon_sym_LT_AMP] = ACTIONS(6061), + [anon_sym_GT_AMP] = ACTIONS(6061), + [anon_sym_LT_LT] = ACTIONS(6061), + [anon_sym_LT_LT_DASH] = ACTIONS(6061), + [anon_sym_LT_LT_LT] = ACTIONS(6061), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(5997), - [anon_sym_LF] = ACTIONS(5997), - [anon_sym_AMP] = ACTIONS(5997), + [anon_sym_SEMI] = ACTIONS(6061), + [anon_sym_LF] = ACTIONS(6061), + [anon_sym_AMP] = ACTIONS(6061), }, [4599] = { - [sym_file_descriptor] = ACTIONS(6948), - [sym__concat] = ACTIONS(6948), - [sym_variable_name] = ACTIONS(6948), - [anon_sym_esac] = ACTIONS(6950), - [anon_sym_PIPE] = ACTIONS(6950), - [anon_sym_SEMI_SEMI] = ACTIONS(6950), - [anon_sym_PIPE_AMP] = ACTIONS(6950), - [anon_sym_AMP_AMP] = ACTIONS(6950), - [anon_sym_PIPE_PIPE] = ACTIONS(6950), - [anon_sym_LT] = ACTIONS(6950), - [anon_sym_GT] = ACTIONS(6950), - [anon_sym_GT_GT] = ACTIONS(6950), - [anon_sym_AMP_GT] = ACTIONS(6950), - [anon_sym_AMP_GT_GT] = ACTIONS(6950), - [anon_sym_LT_AMP] = ACTIONS(6950), - [anon_sym_GT_AMP] = ACTIONS(6950), - [sym__special_characters] = ACTIONS(6950), - [anon_sym_DQUOTE] = ACTIONS(6950), - [anon_sym_DOLLAR] = ACTIONS(6950), - [sym_raw_string] = ACTIONS(6950), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6950), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6950), - [anon_sym_BQUOTE] = ACTIONS(6950), - [anon_sym_LT_LPAREN] = ACTIONS(6950), - [anon_sym_GT_LPAREN] = ACTIONS(6950), + [sym_file_descriptor] = ACTIONS(7018), + [sym__concat] = ACTIONS(7018), + [sym_variable_name] = ACTIONS(7018), + [anon_sym_esac] = ACTIONS(7020), + [anon_sym_PIPE] = ACTIONS(7020), + [anon_sym_SEMI_SEMI] = ACTIONS(7020), + [anon_sym_PIPE_AMP] = ACTIONS(7020), + [anon_sym_AMP_AMP] = ACTIONS(7020), + [anon_sym_PIPE_PIPE] = ACTIONS(7020), + [anon_sym_LT] = ACTIONS(7020), + [anon_sym_GT] = ACTIONS(7020), + [anon_sym_GT_GT] = ACTIONS(7020), + [anon_sym_AMP_GT] = ACTIONS(7020), + [anon_sym_AMP_GT_GT] = ACTIONS(7020), + [anon_sym_LT_AMP] = ACTIONS(7020), + [anon_sym_GT_AMP] = ACTIONS(7020), + [sym__special_characters] = ACTIONS(7020), + [anon_sym_DQUOTE] = ACTIONS(7020), + [anon_sym_DOLLAR] = ACTIONS(7020), + [sym_raw_string] = ACTIONS(7020), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7020), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7020), + [anon_sym_BQUOTE] = ACTIONS(7020), + [anon_sym_LT_LPAREN] = ACTIONS(7020), + [anon_sym_GT_LPAREN] = ACTIONS(7020), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6950), - [anon_sym_SEMI] = ACTIONS(6950), - [anon_sym_LF] = ACTIONS(6950), - [anon_sym_AMP] = ACTIONS(6950), + [sym_word] = ACTIONS(7020), + [anon_sym_SEMI] = ACTIONS(7020), + [anon_sym_LF] = ACTIONS(7020), + [anon_sym_AMP] = ACTIONS(7020), }, [4600] = { - [sym_file_descriptor] = ACTIONS(6952), - [sym__concat] = ACTIONS(6952), - [sym_variable_name] = ACTIONS(6952), - [anon_sym_esac] = ACTIONS(6954), - [anon_sym_PIPE] = ACTIONS(6954), - [anon_sym_SEMI_SEMI] = ACTIONS(6954), - [anon_sym_PIPE_AMP] = ACTIONS(6954), - [anon_sym_AMP_AMP] = ACTIONS(6954), - [anon_sym_PIPE_PIPE] = ACTIONS(6954), - [anon_sym_LT] = ACTIONS(6954), - [anon_sym_GT] = ACTIONS(6954), - [anon_sym_GT_GT] = ACTIONS(6954), - [anon_sym_AMP_GT] = ACTIONS(6954), - [anon_sym_AMP_GT_GT] = ACTIONS(6954), - [anon_sym_LT_AMP] = ACTIONS(6954), - [anon_sym_GT_AMP] = ACTIONS(6954), - [sym__special_characters] = ACTIONS(6954), - [anon_sym_DQUOTE] = ACTIONS(6954), - [anon_sym_DOLLAR] = ACTIONS(6954), - [sym_raw_string] = ACTIONS(6954), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6954), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6954), - [anon_sym_BQUOTE] = ACTIONS(6954), - [anon_sym_LT_LPAREN] = ACTIONS(6954), - [anon_sym_GT_LPAREN] = ACTIONS(6954), + [sym_file_descriptor] = ACTIONS(7022), + [sym__concat] = ACTIONS(7022), + [sym_variable_name] = ACTIONS(7022), + [anon_sym_esac] = ACTIONS(7024), + [anon_sym_PIPE] = ACTIONS(7024), + [anon_sym_SEMI_SEMI] = ACTIONS(7024), + [anon_sym_PIPE_AMP] = ACTIONS(7024), + [anon_sym_AMP_AMP] = ACTIONS(7024), + [anon_sym_PIPE_PIPE] = ACTIONS(7024), + [anon_sym_LT] = ACTIONS(7024), + [anon_sym_GT] = ACTIONS(7024), + [anon_sym_GT_GT] = ACTIONS(7024), + [anon_sym_AMP_GT] = ACTIONS(7024), + [anon_sym_AMP_GT_GT] = ACTIONS(7024), + [anon_sym_LT_AMP] = ACTIONS(7024), + [anon_sym_GT_AMP] = ACTIONS(7024), + [sym__special_characters] = ACTIONS(7024), + [anon_sym_DQUOTE] = ACTIONS(7024), + [anon_sym_DOLLAR] = ACTIONS(7024), + [sym_raw_string] = ACTIONS(7024), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7024), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7024), + [anon_sym_BQUOTE] = ACTIONS(7024), + [anon_sym_LT_LPAREN] = ACTIONS(7024), + [anon_sym_GT_LPAREN] = ACTIONS(7024), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6954), - [anon_sym_SEMI] = ACTIONS(6954), - [anon_sym_LF] = ACTIONS(6954), - [anon_sym_AMP] = ACTIONS(6954), + [sym_word] = ACTIONS(7024), + [anon_sym_SEMI] = ACTIONS(7024), + [anon_sym_LF] = ACTIONS(7024), + [anon_sym_AMP] = ACTIONS(7024), }, [4601] = { - [sym_file_descriptor] = ACTIONS(6956), - [sym__concat] = ACTIONS(6956), - [sym_variable_name] = ACTIONS(6956), - [anon_sym_esac] = ACTIONS(6958), - [anon_sym_PIPE] = ACTIONS(6958), - [anon_sym_SEMI_SEMI] = ACTIONS(6958), - [anon_sym_PIPE_AMP] = ACTIONS(6958), - [anon_sym_AMP_AMP] = ACTIONS(6958), - [anon_sym_PIPE_PIPE] = ACTIONS(6958), - [anon_sym_LT] = ACTIONS(6958), - [anon_sym_GT] = ACTIONS(6958), - [anon_sym_GT_GT] = ACTIONS(6958), - [anon_sym_AMP_GT] = ACTIONS(6958), - [anon_sym_AMP_GT_GT] = ACTIONS(6958), - [anon_sym_LT_AMP] = ACTIONS(6958), - [anon_sym_GT_AMP] = ACTIONS(6958), - [sym__special_characters] = ACTIONS(6958), - [anon_sym_DQUOTE] = ACTIONS(6958), - [anon_sym_DOLLAR] = ACTIONS(6958), - [sym_raw_string] = ACTIONS(6958), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6958), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6958), - [anon_sym_BQUOTE] = ACTIONS(6958), - [anon_sym_LT_LPAREN] = ACTIONS(6958), - [anon_sym_GT_LPAREN] = ACTIONS(6958), + [sym_file_descriptor] = ACTIONS(7026), + [sym__concat] = ACTIONS(7026), + [sym_variable_name] = ACTIONS(7026), + [anon_sym_esac] = ACTIONS(7028), + [anon_sym_PIPE] = ACTIONS(7028), + [anon_sym_SEMI_SEMI] = ACTIONS(7028), + [anon_sym_PIPE_AMP] = ACTIONS(7028), + [anon_sym_AMP_AMP] = ACTIONS(7028), + [anon_sym_PIPE_PIPE] = ACTIONS(7028), + [anon_sym_LT] = ACTIONS(7028), + [anon_sym_GT] = ACTIONS(7028), + [anon_sym_GT_GT] = ACTIONS(7028), + [anon_sym_AMP_GT] = ACTIONS(7028), + [anon_sym_AMP_GT_GT] = ACTIONS(7028), + [anon_sym_LT_AMP] = ACTIONS(7028), + [anon_sym_GT_AMP] = ACTIONS(7028), + [sym__special_characters] = ACTIONS(7028), + [anon_sym_DQUOTE] = ACTIONS(7028), + [anon_sym_DOLLAR] = ACTIONS(7028), + [sym_raw_string] = ACTIONS(7028), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7028), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7028), + [anon_sym_BQUOTE] = ACTIONS(7028), + [anon_sym_LT_LPAREN] = ACTIONS(7028), + [anon_sym_GT_LPAREN] = ACTIONS(7028), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6958), - [anon_sym_SEMI] = ACTIONS(6958), - [anon_sym_LF] = ACTIONS(6958), - [anon_sym_AMP] = ACTIONS(6958), + [sym_word] = ACTIONS(7028), + [anon_sym_SEMI] = ACTIONS(7028), + [anon_sym_LF] = ACTIONS(7028), + [anon_sym_AMP] = ACTIONS(7028), }, [4602] = { - [sym__concat] = ACTIONS(4728), - [anon_sym_esac] = ACTIONS(4730), - [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__concat] = ACTIONS(4790), + [anon_sym_esac] = ACTIONS(4792), + [anon_sym_PIPE] = ACTIONS(4792), + [anon_sym_SEMI_SEMI] = ACTIONS(4792), + [anon_sym_PIPE_AMP] = ACTIONS(4792), + [anon_sym_AMP_AMP] = ACTIONS(4792), + [anon_sym_PIPE_PIPE] = ACTIONS(4792), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4730), - [anon_sym_LF] = ACTIONS(4730), - [anon_sym_AMP] = ACTIONS(4730), + [anon_sym_SEMI] = ACTIONS(4792), + [anon_sym_LF] = ACTIONS(4792), + [anon_sym_AMP] = ACTIONS(4792), }, [4603] = { - [sym__concat] = ACTIONS(4734), - [anon_sym_esac] = ACTIONS(4736), - [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__concat] = ACTIONS(4796), + [anon_sym_esac] = ACTIONS(4798), + [anon_sym_PIPE] = ACTIONS(4798), + [anon_sym_SEMI_SEMI] = ACTIONS(4798), + [anon_sym_PIPE_AMP] = ACTIONS(4798), + [anon_sym_AMP_AMP] = ACTIONS(4798), + [anon_sym_PIPE_PIPE] = ACTIONS(4798), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4736), - [anon_sym_LF] = ACTIONS(4736), - [anon_sym_AMP] = ACTIONS(4736), + [anon_sym_SEMI] = ACTIONS(4798), + [anon_sym_LF] = ACTIONS(4798), + [anon_sym_AMP] = ACTIONS(4798), }, [4604] = { - [sym__concat] = ACTIONS(4797), - [anon_sym_esac] = ACTIONS(4799), - [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__concat] = ACTIONS(4859), + [anon_sym_esac] = ACTIONS(4861), + [anon_sym_PIPE] = ACTIONS(4861), + [anon_sym_SEMI_SEMI] = ACTIONS(4861), + [anon_sym_PIPE_AMP] = ACTIONS(4861), + [anon_sym_AMP_AMP] = ACTIONS(4861), + [anon_sym_PIPE_PIPE] = ACTIONS(4861), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4799), - [anon_sym_LF] = ACTIONS(4799), - [anon_sym_AMP] = ACTIONS(4799), + [anon_sym_SEMI] = ACTIONS(4861), + [anon_sym_LF] = ACTIONS(4861), + [anon_sym_AMP] = ACTIONS(4861), }, [4605] = { [sym_concatenation] = STATE(451), @@ -111318,40 +111731,40 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(9028), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(9108), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4606] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(9030), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(9110), [sym_comment] = ACTIONS(56), }, [4607] = { [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(9032), + [sym__concat] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(9112), [sym_comment] = ACTIONS(56), }, [4608] = { - [anon_sym_RBRACE] = ACTIONS(9032), + [anon_sym_RBRACE] = ACTIONS(9112), [sym_comment] = ACTIONS(56), }, [4609] = { @@ -111363,38 +111776,38 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(4625), - [anon_sym_RBRACE] = ACTIONS(9034), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(9114), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4610] = { - [sym__concat] = ACTIONS(4809), - [anon_sym_esac] = ACTIONS(4811), - [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__concat] = ACTIONS(4871), + [anon_sym_esac] = ACTIONS(4873), + [anon_sym_PIPE] = ACTIONS(4873), + [anon_sym_SEMI_SEMI] = ACTIONS(4873), + [anon_sym_PIPE_AMP] = ACTIONS(4873), + [anon_sym_AMP_AMP] = ACTIONS(4873), + [anon_sym_PIPE_PIPE] = ACTIONS(4873), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4811), - [anon_sym_LF] = ACTIONS(4811), - [anon_sym_AMP] = ACTIONS(4811), + [anon_sym_SEMI] = ACTIONS(4873), + [anon_sym_LF] = ACTIONS(4873), + [anon_sym_AMP] = ACTIONS(4873), }, [4611] = { [sym_concatenation] = STATE(451), @@ -111405,38 +111818,38 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(4627), - [anon_sym_RBRACE] = ACTIONS(9036), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(9116), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4612] = { - [sym__concat] = ACTIONS(4815), - [anon_sym_esac] = ACTIONS(4817), - [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__concat] = ACTIONS(4877), + [anon_sym_esac] = ACTIONS(4879), + [anon_sym_PIPE] = ACTIONS(4879), + [anon_sym_SEMI_SEMI] = ACTIONS(4879), + [anon_sym_PIPE_AMP] = ACTIONS(4879), + [anon_sym_AMP_AMP] = ACTIONS(4879), + [anon_sym_PIPE_PIPE] = ACTIONS(4879), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4817), - [anon_sym_LF] = ACTIONS(4817), - [anon_sym_AMP] = ACTIONS(4817), + [anon_sym_SEMI] = ACTIONS(4879), + [anon_sym_LF] = ACTIONS(4879), + [anon_sym_AMP] = ACTIONS(4879), }, [4613] = { [sym_concatenation] = STATE(451), @@ -111447,38 +111860,38 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(4629), - [anon_sym_RBRACE] = ACTIONS(9038), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(9118), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4614] = { - [sym__concat] = ACTIONS(4821), - [anon_sym_esac] = ACTIONS(4823), - [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__concat] = ACTIONS(4883), + [anon_sym_esac] = ACTIONS(4885), + [anon_sym_PIPE] = ACTIONS(4885), + [anon_sym_SEMI_SEMI] = ACTIONS(4885), + [anon_sym_PIPE_AMP] = ACTIONS(4885), + [anon_sym_AMP_AMP] = ACTIONS(4885), + [anon_sym_PIPE_PIPE] = ACTIONS(4885), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4823), - [anon_sym_LF] = ACTIONS(4823), - [anon_sym_AMP] = ACTIONS(4823), + [anon_sym_SEMI] = ACTIONS(4885), + [anon_sym_LF] = ACTIONS(4885), + [anon_sym_AMP] = ACTIONS(4885), }, [4615] = { [sym_concatenation] = STATE(451), @@ -111489,38 +111902,38 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(9040), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(9120), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4616] = { - [sym__concat] = ACTIONS(4827), - [anon_sym_esac] = ACTIONS(4829), - [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__concat] = ACTIONS(4889), + [anon_sym_esac] = ACTIONS(4891), + [anon_sym_PIPE] = ACTIONS(4891), + [anon_sym_SEMI_SEMI] = ACTIONS(4891), + [anon_sym_PIPE_AMP] = ACTIONS(4891), + [anon_sym_AMP_AMP] = ACTIONS(4891), + [anon_sym_PIPE_PIPE] = ACTIONS(4891), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4829), - [anon_sym_LF] = ACTIONS(4829), - [anon_sym_AMP] = ACTIONS(4829), + [anon_sym_SEMI] = ACTIONS(4891), + [anon_sym_LF] = ACTIONS(4891), + [anon_sym_AMP] = ACTIONS(4891), }, [4617] = { [sym_concatenation] = STATE(451), @@ -111531,149 +111944,149 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(9042), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(9122), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4618] = { - [sym_file_descriptor] = ACTIONS(6948), - [sym__concat] = ACTIONS(6948), - [anon_sym_esac] = ACTIONS(6950), - [anon_sym_PIPE] = ACTIONS(6950), - [anon_sym_SEMI_SEMI] = ACTIONS(6950), - [anon_sym_PIPE_AMP] = ACTIONS(6950), - [anon_sym_AMP_AMP] = ACTIONS(6950), - [anon_sym_PIPE_PIPE] = ACTIONS(6950), - [anon_sym_LT] = ACTIONS(6950), - [anon_sym_GT] = ACTIONS(6950), - [anon_sym_GT_GT] = ACTIONS(6950), - [anon_sym_AMP_GT] = ACTIONS(6950), - [anon_sym_AMP_GT_GT] = ACTIONS(6950), - [anon_sym_LT_AMP] = ACTIONS(6950), - [anon_sym_GT_AMP] = ACTIONS(6950), - [anon_sym_LT_LT] = ACTIONS(6950), - [anon_sym_LT_LT_DASH] = ACTIONS(6950), - [anon_sym_LT_LT_LT] = ACTIONS(6950), + [sym_file_descriptor] = ACTIONS(7018), + [sym__concat] = ACTIONS(7018), + [anon_sym_esac] = ACTIONS(7020), + [anon_sym_PIPE] = ACTIONS(7020), + [anon_sym_SEMI_SEMI] = ACTIONS(7020), + [anon_sym_PIPE_AMP] = ACTIONS(7020), + [anon_sym_AMP_AMP] = ACTIONS(7020), + [anon_sym_PIPE_PIPE] = ACTIONS(7020), + [anon_sym_LT] = ACTIONS(7020), + [anon_sym_GT] = ACTIONS(7020), + [anon_sym_GT_GT] = ACTIONS(7020), + [anon_sym_AMP_GT] = ACTIONS(7020), + [anon_sym_AMP_GT_GT] = ACTIONS(7020), + [anon_sym_LT_AMP] = ACTIONS(7020), + [anon_sym_GT_AMP] = ACTIONS(7020), + [anon_sym_LT_LT] = ACTIONS(7020), + [anon_sym_LT_LT_DASH] = ACTIONS(7020), + [anon_sym_LT_LT_LT] = ACTIONS(7020), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6950), - [anon_sym_LF] = ACTIONS(6950), - [anon_sym_AMP] = ACTIONS(6950), + [anon_sym_SEMI] = ACTIONS(7020), + [anon_sym_LF] = ACTIONS(7020), + [anon_sym_AMP] = ACTIONS(7020), }, [4619] = { - [sym_file_descriptor] = ACTIONS(6952), - [sym__concat] = ACTIONS(6952), - [anon_sym_esac] = ACTIONS(6954), - [anon_sym_PIPE] = ACTIONS(6954), - [anon_sym_SEMI_SEMI] = ACTIONS(6954), - [anon_sym_PIPE_AMP] = ACTIONS(6954), - [anon_sym_AMP_AMP] = ACTIONS(6954), - [anon_sym_PIPE_PIPE] = ACTIONS(6954), - [anon_sym_LT] = ACTIONS(6954), - [anon_sym_GT] = ACTIONS(6954), - [anon_sym_GT_GT] = ACTIONS(6954), - [anon_sym_AMP_GT] = ACTIONS(6954), - [anon_sym_AMP_GT_GT] = ACTIONS(6954), - [anon_sym_LT_AMP] = ACTIONS(6954), - [anon_sym_GT_AMP] = ACTIONS(6954), - [anon_sym_LT_LT] = ACTIONS(6954), - [anon_sym_LT_LT_DASH] = ACTIONS(6954), - [anon_sym_LT_LT_LT] = ACTIONS(6954), + [sym_file_descriptor] = ACTIONS(7022), + [sym__concat] = ACTIONS(7022), + [anon_sym_esac] = ACTIONS(7024), + [anon_sym_PIPE] = ACTIONS(7024), + [anon_sym_SEMI_SEMI] = ACTIONS(7024), + [anon_sym_PIPE_AMP] = ACTIONS(7024), + [anon_sym_AMP_AMP] = ACTIONS(7024), + [anon_sym_PIPE_PIPE] = ACTIONS(7024), + [anon_sym_LT] = ACTIONS(7024), + [anon_sym_GT] = ACTIONS(7024), + [anon_sym_GT_GT] = ACTIONS(7024), + [anon_sym_AMP_GT] = ACTIONS(7024), + [anon_sym_AMP_GT_GT] = ACTIONS(7024), + [anon_sym_LT_AMP] = ACTIONS(7024), + [anon_sym_GT_AMP] = ACTIONS(7024), + [anon_sym_LT_LT] = ACTIONS(7024), + [anon_sym_LT_LT_DASH] = ACTIONS(7024), + [anon_sym_LT_LT_LT] = ACTIONS(7024), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6954), - [anon_sym_LF] = ACTIONS(6954), - [anon_sym_AMP] = ACTIONS(6954), + [anon_sym_SEMI] = ACTIONS(7024), + [anon_sym_LF] = ACTIONS(7024), + [anon_sym_AMP] = ACTIONS(7024), }, [4620] = { - [sym_file_descriptor] = ACTIONS(6956), - [sym__concat] = ACTIONS(6956), - [anon_sym_esac] = ACTIONS(6958), - [anon_sym_PIPE] = ACTIONS(6958), - [anon_sym_SEMI_SEMI] = ACTIONS(6958), - [anon_sym_PIPE_AMP] = ACTIONS(6958), - [anon_sym_AMP_AMP] = ACTIONS(6958), - [anon_sym_PIPE_PIPE] = ACTIONS(6958), - [anon_sym_LT] = ACTIONS(6958), - [anon_sym_GT] = ACTIONS(6958), - [anon_sym_GT_GT] = ACTIONS(6958), - [anon_sym_AMP_GT] = ACTIONS(6958), - [anon_sym_AMP_GT_GT] = ACTIONS(6958), - [anon_sym_LT_AMP] = ACTIONS(6958), - [anon_sym_GT_AMP] = ACTIONS(6958), - [anon_sym_LT_LT] = ACTIONS(6958), - [anon_sym_LT_LT_DASH] = ACTIONS(6958), - [anon_sym_LT_LT_LT] = ACTIONS(6958), + [sym_file_descriptor] = ACTIONS(7026), + [sym__concat] = ACTIONS(7026), + [anon_sym_esac] = ACTIONS(7028), + [anon_sym_PIPE] = ACTIONS(7028), + [anon_sym_SEMI_SEMI] = ACTIONS(7028), + [anon_sym_PIPE_AMP] = ACTIONS(7028), + [anon_sym_AMP_AMP] = ACTIONS(7028), + [anon_sym_PIPE_PIPE] = ACTIONS(7028), + [anon_sym_LT] = ACTIONS(7028), + [anon_sym_GT] = ACTIONS(7028), + [anon_sym_GT_GT] = ACTIONS(7028), + [anon_sym_AMP_GT] = ACTIONS(7028), + [anon_sym_AMP_GT_GT] = ACTIONS(7028), + [anon_sym_LT_AMP] = ACTIONS(7028), + [anon_sym_GT_AMP] = ACTIONS(7028), + [anon_sym_LT_LT] = ACTIONS(7028), + [anon_sym_LT_LT_DASH] = ACTIONS(7028), + [anon_sym_LT_LT_LT] = ACTIONS(7028), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6958), - [anon_sym_LF] = ACTIONS(6958), - [anon_sym_AMP] = ACTIONS(6958), + [anon_sym_SEMI] = ACTIONS(7028), + [anon_sym_LF] = ACTIONS(7028), + [anon_sym_AMP] = ACTIONS(7028), }, [4621] = { - [sym__concat] = ACTIONS(5961), - [anon_sym_esac] = ACTIONS(5963), - [anon_sym_PIPE] = ACTIONS(5963), - [anon_sym_SEMI_SEMI] = ACTIONS(5963), - [anon_sym_PIPE_AMP] = ACTIONS(5963), - [anon_sym_AMP_AMP] = ACTIONS(5963), - [anon_sym_PIPE_PIPE] = ACTIONS(5963), + [sym__concat] = ACTIONS(6025), + [anon_sym_esac] = ACTIONS(6027), + [anon_sym_PIPE] = ACTIONS(6027), + [anon_sym_SEMI_SEMI] = ACTIONS(6027), + [anon_sym_PIPE_AMP] = ACTIONS(6027), + [anon_sym_AMP_AMP] = ACTIONS(6027), + [anon_sym_PIPE_PIPE] = ACTIONS(6027), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(5963), - [anon_sym_LF] = ACTIONS(5963), - [anon_sym_AMP] = ACTIONS(5963), + [anon_sym_SEMI] = ACTIONS(6027), + [anon_sym_LF] = ACTIONS(6027), + [anon_sym_AMP] = ACTIONS(6027), }, [4622] = { - [sym__concat] = ACTIONS(5965), - [anon_sym_esac] = ACTIONS(5967), - [anon_sym_PIPE] = ACTIONS(5967), - [anon_sym_SEMI_SEMI] = ACTIONS(5967), - [anon_sym_PIPE_AMP] = ACTIONS(5967), - [anon_sym_AMP_AMP] = ACTIONS(5967), - [anon_sym_PIPE_PIPE] = ACTIONS(5967), + [sym__concat] = ACTIONS(6029), + [anon_sym_esac] = ACTIONS(6031), + [anon_sym_PIPE] = ACTIONS(6031), + [anon_sym_SEMI_SEMI] = ACTIONS(6031), + [anon_sym_PIPE_AMP] = ACTIONS(6031), + [anon_sym_AMP_AMP] = ACTIONS(6031), + [anon_sym_PIPE_PIPE] = ACTIONS(6031), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(5967), - [anon_sym_LF] = ACTIONS(5967), - [anon_sym_AMP] = ACTIONS(5967), + [anon_sym_SEMI] = ACTIONS(6031), + [anon_sym_LF] = ACTIONS(6031), + [anon_sym_AMP] = ACTIONS(6031), }, [4623] = { - [sym__concat] = ACTIONS(5969), - [anon_sym_esac] = ACTIONS(5971), - [anon_sym_PIPE] = ACTIONS(5971), - [anon_sym_SEMI_SEMI] = ACTIONS(5971), - [anon_sym_PIPE_AMP] = ACTIONS(5971), - [anon_sym_AMP_AMP] = ACTIONS(5971), - [anon_sym_PIPE_PIPE] = ACTIONS(5971), + [sym__concat] = ACTIONS(6033), + [anon_sym_esac] = ACTIONS(6035), + [anon_sym_PIPE] = ACTIONS(6035), + [anon_sym_SEMI_SEMI] = ACTIONS(6035), + [anon_sym_PIPE_AMP] = ACTIONS(6035), + [anon_sym_AMP_AMP] = ACTIONS(6035), + [anon_sym_PIPE_PIPE] = ACTIONS(6035), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(5971), - [anon_sym_LF] = ACTIONS(5971), - [anon_sym_AMP] = ACTIONS(5971), + [anon_sym_SEMI] = ACTIONS(6035), + [anon_sym_LF] = ACTIONS(6035), + [anon_sym_AMP] = ACTIONS(6035), }, [4624] = { - [sym__concat] = ACTIONS(5973), - [anon_sym_esac] = ACTIONS(5975), - [anon_sym_PIPE] = ACTIONS(5975), - [anon_sym_SEMI_SEMI] = ACTIONS(5975), - [anon_sym_PIPE_AMP] = ACTIONS(5975), - [anon_sym_AMP_AMP] = ACTIONS(5975), - [anon_sym_PIPE_PIPE] = ACTIONS(5975), + [sym__concat] = ACTIONS(6037), + [anon_sym_esac] = ACTIONS(6039), + [anon_sym_PIPE] = ACTIONS(6039), + [anon_sym_SEMI_SEMI] = ACTIONS(6039), + [anon_sym_PIPE_AMP] = ACTIONS(6039), + [anon_sym_AMP_AMP] = ACTIONS(6039), + [anon_sym_PIPE_PIPE] = ACTIONS(6039), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(5975), - [anon_sym_LF] = ACTIONS(5975), - [anon_sym_AMP] = ACTIONS(5975), + [anon_sym_SEMI] = ACTIONS(6039), + [anon_sym_LF] = ACTIONS(6039), + [anon_sym_AMP] = ACTIONS(6039), }, [4625] = { [sym_concatenation] = STATE(451), @@ -111684,38 +112097,38 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(9044), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(9124), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4626] = { - [sym__concat] = ACTIONS(5979), - [anon_sym_esac] = ACTIONS(5981), - [anon_sym_PIPE] = ACTIONS(5981), - [anon_sym_SEMI_SEMI] = ACTIONS(5981), - [anon_sym_PIPE_AMP] = ACTIONS(5981), - [anon_sym_AMP_AMP] = ACTIONS(5981), - [anon_sym_PIPE_PIPE] = ACTIONS(5981), + [sym__concat] = ACTIONS(6043), + [anon_sym_esac] = ACTIONS(6045), + [anon_sym_PIPE] = ACTIONS(6045), + [anon_sym_SEMI_SEMI] = ACTIONS(6045), + [anon_sym_PIPE_AMP] = ACTIONS(6045), + [anon_sym_AMP_AMP] = ACTIONS(6045), + [anon_sym_PIPE_PIPE] = ACTIONS(6045), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(5981), - [anon_sym_LF] = ACTIONS(5981), - [anon_sym_AMP] = ACTIONS(5981), + [anon_sym_SEMI] = ACTIONS(6045), + [anon_sym_LF] = ACTIONS(6045), + [anon_sym_AMP] = ACTIONS(6045), }, [4627] = { [sym_concatenation] = STATE(451), @@ -111726,38 +112139,38 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(9046), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(9126), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4628] = { - [sym__concat] = ACTIONS(5985), - [anon_sym_esac] = ACTIONS(5987), - [anon_sym_PIPE] = ACTIONS(5987), - [anon_sym_SEMI_SEMI] = ACTIONS(5987), - [anon_sym_PIPE_AMP] = ACTIONS(5987), - [anon_sym_AMP_AMP] = ACTIONS(5987), - [anon_sym_PIPE_PIPE] = ACTIONS(5987), + [sym__concat] = ACTIONS(6049), + [anon_sym_esac] = ACTIONS(6051), + [anon_sym_PIPE] = ACTIONS(6051), + [anon_sym_SEMI_SEMI] = ACTIONS(6051), + [anon_sym_PIPE_AMP] = ACTIONS(6051), + [anon_sym_AMP_AMP] = ACTIONS(6051), + [anon_sym_PIPE_PIPE] = ACTIONS(6051), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(5987), - [anon_sym_LF] = ACTIONS(5987), - [anon_sym_AMP] = ACTIONS(5987), + [anon_sym_SEMI] = ACTIONS(6051), + [anon_sym_LF] = ACTIONS(6051), + [anon_sym_AMP] = ACTIONS(6051), }, [4629] = { [sym_concatenation] = STATE(451), @@ -111768,90 +112181,90 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(455), [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(9048), - [anon_sym_EQ] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_COLON_QMARK] = ACTIONS(826), - [anon_sym_COLON_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(9128), + [anon_sym_EQ] = ACTIONS(842), + [sym__special_characters] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym_raw_string] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_COLON_QMARK] = ACTIONS(842), + [anon_sym_COLON_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(862), + [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(848), + [sym_word] = ACTIONS(864), }, [4630] = { - [sym__concat] = ACTIONS(5991), - [anon_sym_esac] = ACTIONS(5993), - [anon_sym_PIPE] = ACTIONS(5993), - [anon_sym_SEMI_SEMI] = ACTIONS(5993), - [anon_sym_PIPE_AMP] = ACTIONS(5993), - [anon_sym_AMP_AMP] = ACTIONS(5993), - [anon_sym_PIPE_PIPE] = ACTIONS(5993), + [sym__concat] = ACTIONS(6055), + [anon_sym_esac] = ACTIONS(6057), + [anon_sym_PIPE] = ACTIONS(6057), + [anon_sym_SEMI_SEMI] = ACTIONS(6057), + [anon_sym_PIPE_AMP] = ACTIONS(6057), + [anon_sym_AMP_AMP] = ACTIONS(6057), + [anon_sym_PIPE_PIPE] = ACTIONS(6057), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(5993), - [anon_sym_LF] = ACTIONS(5993), - [anon_sym_AMP] = ACTIONS(5993), + [anon_sym_SEMI] = ACTIONS(6057), + [anon_sym_LF] = ACTIONS(6057), + [anon_sym_AMP] = ACTIONS(6057), }, [4631] = { - [sym__concat] = ACTIONS(5995), - [anon_sym_esac] = ACTIONS(5997), - [anon_sym_PIPE] = ACTIONS(5997), - [anon_sym_SEMI_SEMI] = ACTIONS(5997), - [anon_sym_PIPE_AMP] = ACTIONS(5997), - [anon_sym_AMP_AMP] = ACTIONS(5997), - [anon_sym_PIPE_PIPE] = ACTIONS(5997), + [sym__concat] = ACTIONS(6059), + [anon_sym_esac] = ACTIONS(6061), + [anon_sym_PIPE] = ACTIONS(6061), + [anon_sym_SEMI_SEMI] = ACTIONS(6061), + [anon_sym_PIPE_AMP] = ACTIONS(6061), + [anon_sym_AMP_AMP] = ACTIONS(6061), + [anon_sym_PIPE_PIPE] = ACTIONS(6061), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(5997), - [anon_sym_LF] = ACTIONS(5997), - [anon_sym_AMP] = ACTIONS(5997), + [anon_sym_SEMI] = ACTIONS(6061), + [anon_sym_LF] = ACTIONS(6061), + [anon_sym_AMP] = ACTIONS(6061), }, [4632] = { - [sym__concat] = ACTIONS(6948), - [anon_sym_esac] = ACTIONS(6950), - [anon_sym_PIPE] = ACTIONS(6950), - [anon_sym_SEMI_SEMI] = ACTIONS(6950), - [anon_sym_PIPE_AMP] = ACTIONS(6950), - [anon_sym_AMP_AMP] = ACTIONS(6950), - [anon_sym_PIPE_PIPE] = ACTIONS(6950), + [sym__concat] = ACTIONS(7018), + [anon_sym_esac] = ACTIONS(7020), + [anon_sym_PIPE] = ACTIONS(7020), + [anon_sym_SEMI_SEMI] = ACTIONS(7020), + [anon_sym_PIPE_AMP] = ACTIONS(7020), + [anon_sym_AMP_AMP] = ACTIONS(7020), + [anon_sym_PIPE_PIPE] = ACTIONS(7020), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6950), - [anon_sym_LF] = ACTIONS(6950), - [anon_sym_AMP] = ACTIONS(6950), + [anon_sym_SEMI] = ACTIONS(7020), + [anon_sym_LF] = ACTIONS(7020), + [anon_sym_AMP] = ACTIONS(7020), }, [4633] = { - [sym__concat] = ACTIONS(6952), - [anon_sym_esac] = ACTIONS(6954), - [anon_sym_PIPE] = ACTIONS(6954), - [anon_sym_SEMI_SEMI] = ACTIONS(6954), - [anon_sym_PIPE_AMP] = ACTIONS(6954), - [anon_sym_AMP_AMP] = ACTIONS(6954), - [anon_sym_PIPE_PIPE] = ACTIONS(6954), + [sym__concat] = ACTIONS(7022), + [anon_sym_esac] = ACTIONS(7024), + [anon_sym_PIPE] = ACTIONS(7024), + [anon_sym_SEMI_SEMI] = ACTIONS(7024), + [anon_sym_PIPE_AMP] = ACTIONS(7024), + [anon_sym_AMP_AMP] = ACTIONS(7024), + [anon_sym_PIPE_PIPE] = ACTIONS(7024), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6954), - [anon_sym_LF] = ACTIONS(6954), - [anon_sym_AMP] = ACTIONS(6954), + [anon_sym_SEMI] = ACTIONS(7024), + [anon_sym_LF] = ACTIONS(7024), + [anon_sym_AMP] = ACTIONS(7024), }, [4634] = { - [sym__concat] = ACTIONS(6956), - [anon_sym_esac] = ACTIONS(6958), - [anon_sym_PIPE] = ACTIONS(6958), - [anon_sym_SEMI_SEMI] = ACTIONS(6958), - [anon_sym_PIPE_AMP] = ACTIONS(6958), - [anon_sym_AMP_AMP] = ACTIONS(6958), - [anon_sym_PIPE_PIPE] = ACTIONS(6958), + [sym__concat] = ACTIONS(7026), + [anon_sym_esac] = ACTIONS(7028), + [anon_sym_PIPE] = ACTIONS(7028), + [anon_sym_SEMI_SEMI] = ACTIONS(7028), + [anon_sym_PIPE_AMP] = ACTIONS(7028), + [anon_sym_AMP_AMP] = ACTIONS(7028), + [anon_sym_PIPE_PIPE] = ACTIONS(7028), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6958), - [anon_sym_LF] = ACTIONS(6958), - [anon_sym_AMP] = ACTIONS(6958), + [anon_sym_SEMI] = ACTIONS(7028), + [anon_sym_LF] = ACTIONS(7028), + [anon_sym_AMP] = ACTIONS(7028), }, }; @@ -111978,4261 +112391,4301 @@ static TSParseActionEntry ts_parse_actions[] = { [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 = 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 = 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 = 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 = 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 = 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 = 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 = 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 = true}, SHIFT(182), - [322] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(183), - [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 = 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 = 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 = false}, SHIFT(225), - [412] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(226), - [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 = true}, SHIFT(230), - [422] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(231), - [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 = 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 = 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(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 = 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 = 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 = 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 = 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(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 = 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, .fragile = true), - [1082] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__terminated_statement, 2, .fragile = true), - [1084] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__terminated_statement, 2, .fragile = true), - [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 = false}, SHIFT(275), - [1411] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(755), - [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 = 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(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 = 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 = 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(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 = 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 = false}, SHIFT(1028), - [2074] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1029), - [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(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(2095), - [4437] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2096), - [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}, 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(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 = false}, SHIFT(2634), - [5461] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2635), - [5463] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_last_case_item, 2, .alias_sequence_id = 1), - [5465] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2636), - [5467] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2637), - [5469] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2638), - [5471] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2639), - [5473] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2640), - [5475] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2641), - [5477] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2642), - [5479] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2643), - [5481] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2644), - [5483] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2645), - [5485] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2646), - [5487] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2647), - [5489] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2648), - [5491] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2649), - [5493] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2650), - [5495] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2659), - [5497] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2662), - [5499] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_last_case_item, 2), - [5501] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2663), - [5503] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2667), - [5505] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2668), - [5507] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2669), - [5509] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2670), - [5511] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2672), - [5513] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2673), - [5515] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2674), - [5517] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2673), - [5519] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2676), - [5521] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2677), - [5523] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2679), - [5525] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2680), - [5527] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2682), - [5529] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2683), - [5531] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 13), - [5533] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2684), - [5535] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2685), - [5538] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1325), - [5541] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1326), - [5544] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2686), - [5547] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1328), - [5550] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1329), - [5553] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1330), - [5556] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1331), - [5559] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2686), - [5562] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 3), - [5564] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 14), - [5566] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2689), - [5568] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 6), - [5570] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2691), - [5572] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2692), - [5574] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2693), - [5576] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2694), - [5578] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2696), - [5580] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2698), - [5582] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2700), - [5584] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2701), - [5586] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 6), - [5588] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2702), - [5590] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2702), - [5592] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2704), - [5594] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2705), - [5596] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2706), - [5598] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2707), - [5600] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2709), - [5602] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2710), - [5604] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2711), - [5606] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2710), - [5608] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2713), - [5610] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2714), - [5612] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2716), - [5614] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2717), - [5616] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2719), - [5618] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2720), - [5620] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1373), - [5623] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2721), - [5625] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2722), - [5627] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2723), - [5629] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2723), - [5631] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2725), - [5633] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2726), - [5635] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2727), - [5637] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2728), - [5639] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2729), - [5641] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2731), - [5643] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2732), - [5645] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2734), - [5647] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2736), - [5649] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2737), - [5651] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2738), - [5653] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2739), - [5655] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2740), - [5657] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2740), - [5659] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2741), - [5661] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2743), - [5663] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2745), - [5665] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2746), - [5667] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2745), - [5669] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2748), - [5671] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2749), - [5673] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2750), - [5675] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2751), - [5677] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2749), - [5679] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2759), - [5681] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2760), - [5683] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2761), - [5685] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2763), - [5687] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2764), - [5689] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2764), - [5691] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2766), - [5693] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2767), - [5695] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2768), - [5697] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2769), - [5699] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2770), - [5701] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2771), - [5703] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2773), - [5705] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2775), - [5707] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2776), - [5709] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2777), - [5711] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2779), - [5713] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2780), - [5715] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2780), - [5717] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2782), - [5719] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2783), - [5721] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2784), - [5723] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2785), - [5725] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2786), - [5727] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2787), - [5729] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2789), - [5731] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2791), - [5733] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2792), - [5735] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2793), - [5737] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2794), - [5739] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2796), - [5741] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2798), - [5743] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2800), - [5745] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2801), - [5747] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1457), - [5750] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2802), - [5752] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2803), - [5754] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2804), - [5756] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2804), - [5758] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2806), - [5760] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2807), - [5762] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2808), - [5764] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2809), - [5766] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2810), - [5768] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2812), - [5770] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2813), - [5772] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2815), - [5774] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2817), - [5776] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2818), - [5778] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2819), - [5780] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 9), - [5782] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 5), - [5784] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 10), - [5786] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2820), - [5788] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2821), - [5790] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2822), - [5792] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2823), - [5794] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 7), - [5796] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2825), - [5798] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 8), - [5800] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2827), - [5802] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 11), - [5804] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2829), - [5806] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 12), - [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 = false}, SHIFT(2865), - [5862] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2866), - [5864] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2867), - [5866] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2869), - [5868] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2871), - [5870] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2873), - [5872] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2874), - [5874] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2875), - [5876] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2876), - [5878] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2877), - [5880] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2878), - [5882] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2880), - [5884] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2882), - [5886] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2884), - [5888] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2885), - [5890] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2886), - [5892] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subscript, 5, .alias_sequence_id = 6), - [5894] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_subscript, 5, .alias_sequence_id = 6), - [5896] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2887), - [5898] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subscript, 5), - [5900] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_subscript, 5), - [5902] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1592), - [5905] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2888), - [5907] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2889), - [5909] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2890), - [5911] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2890), - [5913] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2892), - [5915] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2893), - [5917] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2894), - [5919] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2895), - [5921] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2896), - [5923] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2898), - [5925] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2899), - [5927] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2901), - [5929] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2903), - [5931] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2904), - [5933] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2905), - [5935] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2906), - [5937] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2907), - [5939] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2908), - [5941] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2910), - [5943] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2911), - [5945] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2911), - [5947] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2913), - [5949] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2914), - [5951] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2915), - [5953] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2916), - [5955] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2917), - [5957] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2918), - [5959] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2920), - [5961] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 10), - [5963] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 10), - [5965] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 15), - [5967] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 15), - [5969] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6), - [5971] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6), - [5973] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 16), - [5975] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 16), - [5977] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2922), - [5979] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 17), - [5981] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 17), - [5983] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2923), - [5985] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 18), - [5987] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 18), - [5989] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2924), - [5991] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 11), - [5993] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 11), - [5995] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 12), - [5997] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 12), - [5999] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_array, 3), - [6001] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1647), - [6004] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2925), - [6006] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2926), - [6008] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2927), - [6010] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2927), - [6012] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2929), - [6014] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2930), - [6016] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2931), - [6018] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2932), - [6020] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2933), - [6022] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2935), - [6024] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2936), - [6026] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2938), - [6028] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2940), - [6030] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2941), - [6032] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2942), - [6034] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2943), - [6036] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_group, 3), - [6038] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 5), - [6040] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 5), - [6042] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2945), - [6044] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 5, .alias_sequence_id = 3), - [6046] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 5, .alias_sequence_id = 3), - [6048] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2947), - [6050] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2949), - [6052] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 5), - [6054] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 5), - [6056] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2951), - [6058] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2953), - [6060] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 5), - [6062] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 5), - [6064] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_compound_statement, 3), - [6066] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2956), - [6068] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2957), - [6070] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2957), - [6072] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2959), - [6074] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2961), - [6076] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2963), - [6078] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2964), - [6080] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2963), - [6082] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2966), - [6084] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2967), - [6086] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2968), - [6088] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2969), - [6090] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2967), - [6092] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subshell, 5), - [6094] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subshell, 5), - [6096] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2977), - [6098] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2978), - [6100] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2979), - [6102] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2980), - [6104] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2982), - [6106] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2983), - [6108] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2983), - [6110] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2985), - [6112] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2986), - [6114] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2987), - [6116] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2988), - [6118] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2989), - [6120] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2990), - [6122] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2992), - [6124] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2994), - [6126] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2995), - [6128] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2996), - [6130] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2998), - [6132] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2999), - [6134] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2999), - [6136] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3001), - [6138] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3002), - [6140] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3003), - [6142] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3004), - [6144] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3005), - [6146] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3006), - [6148] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3008), - [6150] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3010), - [6152] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3011), - [6154] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3012), - [6156] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3013), - [6158] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3015), - [6160] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3017), - [6162] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3019), - [6164] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3020), - [6166] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1750), - [6169] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3021), - [6171] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3022), - [6173] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3023), - [6175] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3023), - [6177] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3025), - [6179] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3026), - [6181] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3027), - [6183] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3028), - [6185] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3029), - [6187] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3031), - [6189] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3032), - [6191] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3034), - [6193] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3036), - [6195] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3037), - [6197] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3038), - [6199] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_heredoc, 3), - [6201] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1771), - [6204] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3039), - [6206] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3040), - [6208] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3041), - [6210] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3041), - [6212] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3043), - [6214] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3044), - [6216] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3045), - [6218] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3046), - [6220] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3047), - [6222] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3049), - [6224] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3050), - [6226] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3052), - [6228] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3054), - [6230] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3055), - [6232] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3056), - [6234] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3057), - [6236] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3058), - [6238] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3058), - [6240] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3059), - [6242] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3061), - [6244] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3063), - [6246] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3064), - [6248] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3063), - [6250] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3066), - [6252] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3067), - [6254] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3068), - [6256] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3069), - [6258] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3067), - [6260] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3077), - [6262] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3078), - [6264] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3079), - [6266] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3081), - [6268] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3082), - [6270] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3082), - [6272] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3084), - [6274] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3085), - [6276] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3086), - [6278] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3087), - [6280] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3088), - [6282] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3089), - [6284] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3091), - [6286] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3093), - [6288] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3094), - [6290] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3095), - [6292] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3097), - [6294] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3098), - [6296] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3098), - [6298] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3100), - [6300] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3101), - [6302] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3102), - [6304] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3103), - [6306] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3104), - [6308] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3105), - [6310] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3107), - [6312] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3109), - [6314] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3110), - [6316] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3111), - [6318] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3112), - [6320] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3114), - [6322] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3116), - [6324] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3118), - [6326] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3119), - [6328] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1855), - [6331] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3120), - [6333] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3121), - [6335] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3122), - [6337] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3122), - [6339] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3124), - [6341] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3125), - [6343] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3126), - [6345] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3127), - [6347] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3128), - [6349] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3130), - [6351] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3131), - [6353] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3133), - [6355] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3135), - [6357] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3136), - [6359] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3137), - [6361] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3138), - [6363] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3139), - [6365] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3140), - [6367] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3142), - [6369] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3143), - [6371] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3143), - [6373] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3145), - [6375] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3146), - [6377] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3147), - [6379] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3148), - [6381] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3149), - [6383] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3150), - [6385] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3152), - [6387] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3154), - [6389] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3155), - [6391] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3156), - [6393] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3156), - [6395] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3158), - [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(3164), - [6407] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3165), - [6409] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3167), - [6411] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3169), - [6413] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3170), - [6415] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3171), - [6417] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3172), - [6419] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3173), - [6421] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3174), - [6423] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3175), - [6425] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3177), - [6427] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3179), - [6429] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3181), - [6431] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3182), - [6433] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3183), - [6435] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3184), - [6437] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3185), - [6439] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3187), - [6441] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3188), - [6443] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3188), - [6445] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3190), - [6447] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3191), - [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 = false, .depends_on_lookahead = false}, SHIFT(3194), - [6455] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3195), - [6457] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3197), - [6459] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3199), - [6461] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3200), - [6463] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3201), - [6465] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3202), - [6467] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3204), - [6469] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3206), - [6471] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3208), - [6473] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3209), - [6475] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3210), - [6477] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3211), - [6479] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3212), - [6481] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3214), - [6483] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3215), - [6485] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3215), - [6487] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3217), - [6489] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3218), - [6491] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3219), - [6493] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3220), - [6495] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3221), - [6497] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3222), - [6499] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3224), - [6501] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3226), - [6503] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_elif_clause, 4), - [6505] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 7), - [6507] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_item_repeat1, 2, .alias_sequence_id = 3), - [6509] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_item_repeat1, 2), - [6511] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3227), - [6513] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_last_case_item, 3, .alias_sequence_id = 1), - [6515] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 3, .alias_sequence_id = 1), - [6517] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 3, .alias_sequence_id = 1), - [6519] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 3, .alias_sequence_id = 1), - [6521] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3230), - [6523] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3233), - [6525] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3234), - [6527] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3235), - [6529] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3236), - [6531] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3237), - [6533] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3238), - [6535] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3239), - [6537] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3240), - [6539] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3241), - [6541] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3242), - [6543] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3246), - [6545] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3247), - [6547] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3248), - [6549] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3249), - [6551] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3250), - [6553] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3251), - [6555] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3252), - [6557] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3253), - [6559] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3254), - [6561] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3257), - [6563] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3259), - [6565] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3261), - [6567] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3262), - [6569] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3261), - [6571] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3264), - [6573] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3265), - [6575] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3266), - [6577] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3267), - [6579] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3265), - [6581] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3275), - [6583] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_last_case_item, 3, .alias_sequence_id = 1), - [6585] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3276), - [6587] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3277), - [6589] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3278), - [6591] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3279), - [6593] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3280), - [6595] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3281), - [6597] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3282), - [6599] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3283), - [6601] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3284), - [6603] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2643), - [6605] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2644), - [6607] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3285), - [6609] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2646), - [6611] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2647), - [6613] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2648), - [6615] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2649), - [6617] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3289), - [6619] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2642), - [6621] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2645), - [6623] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_item_repeat1, 2), SHIFT_REPEAT(1987), - [6626] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1986), - [6629] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_last_case_item, 3), - [6631] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 3), - [6633] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 3), - [6635] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 3), - [6637] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_last_case_item, 3), - [6639] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3295), - [6641] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3296), - [6643] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3300), - [6645] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3301), - [6647] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3302), - [6649] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3302), - [6651] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3304), - [6653] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3305), - [6655] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3306), - [6657] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3307), - [6659] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3308), - [6661] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3310), - [6663] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3311), - [6665] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3313), - [6667] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3315), - [6669] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3316), - [6671] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3317), - [6673] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 7, .alias_sequence_id = 19), - [6675] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3318), - [6677] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3320), - [6679] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3322), - [6681] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 7, .alias_sequence_id = 20), - [6683] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3323), - [6685] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3324), - [6687] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3325), - [6689] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3326), - [6691] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2038), - [6694] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3327), - [6696] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3328), - [6698] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3329), - [6700] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3329), - [6702] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3331), - [6704] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3332), - [6706] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3333), - [6708] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3334), - [6710] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3335), - [6712] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3337), - [6714] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3338), - [6716] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3340), - [6718] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3342), - [6720] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3343), - [6722] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3344), - [6724] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3345), - [6726] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3346), - [6728] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3347), - [6730] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3349), - [6732] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3350), - [6734] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3350), - [6736] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3352), - [6738] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3353), - [6740] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3354), - [6742] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3355), - [6744] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3356), - [6746] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3357), - [6748] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3359), - [6750] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3361), - [6752] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3361), - [6754] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3363), - [6756] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3364), - [6758] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3365), - [6760] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3366), - [6762] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3368), - [6764] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3369), - [6766] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3370), - [6768] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3369), - [6770] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3372), - [6772] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3373), - [6774] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3375), - [6776] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3376), - [6778] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3378), - [6780] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3379), - [6782] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3380), - [6784] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3381), - [6786] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3382), - [6788] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3383), - [6790] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3385), - [6792] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3387), - [6794] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3389), - [6796] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3390), - [6798] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3391), - [6800] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3392), - [6802] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3393), - [6804] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3394), - [6806] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3396), - [6808] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3398), - [6810] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3400), - [6812] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3401), - [6814] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3402), - [6816] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3403), - [6818] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3404), - [6820] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3405), - [6822] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3406), - [6824] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3407), - [6826] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3409), - [6828] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3410), - [6830] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3410), - [6832] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3412), - [6834] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3413), - [6836] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3414), - [6838] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3415), - [6840] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3416), - [6842] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3417), - [6844] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3419), - [6846] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 10), - [6848] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 15), - [6850] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 6), - [6852] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 16), - [6854] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3421), - [6856] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 17), - [6858] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3422), - [6860] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 18), - [6862] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3423), - [6864] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 11), - [6866] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 12), - [6868] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3424), - [6870] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3425), - [6872] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3426), - [6874] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3427), - [6876] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3428), - [6878] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3429), - [6880] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3430), - [6882] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3431), - [6884] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3432), - [6886] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3433), - [6888] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3434), - [6890] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3435), - [6892] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3436), - [6894] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3437), - [6896] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3438), - [6898] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subscript, 6, .alias_sequence_id = 6), - [6900] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_subscript, 6, .alias_sequence_id = 6), - [6902] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subscript, 6), - [6904] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_subscript, 6), - [6906] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3439), - [6908] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3440), - [6910] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3441), - [6912] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3443), - [6914] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3444), - [6916] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3444), - [6918] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3446), - [6920] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3447), - [6922] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3448), - [6924] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3449), - [6926] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3450), - [6928] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3451), - [6930] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3453), - [6932] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3455), - [6934] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3456), - [6936] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3457), - [6938] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3458), - [6940] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3460), - [6942] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3462), - [6944] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3464), - [6946] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3465), - [6948] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 7, .alias_sequence_id = 16), - [6950] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 7, .alias_sequence_id = 16), - [6952] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 7, .alias_sequence_id = 17), - [6954] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 7, .alias_sequence_id = 17), - [6956] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 7, .alias_sequence_id = 18), - [6958] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 7, .alias_sequence_id = 18), - [6960] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3466), - [6962] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3467), - [6964] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3468), - [6966] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3470), - [6968] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3471), - [6970] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3471), - [6972] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3473), - [6974] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3474), - [6976] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3475), - [6978] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3476), - [6980] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3477), - [6982] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3478), - [6984] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3480), - [6986] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3482), - [6988] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 6, .alias_sequence_id = 5), - [6990] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 6, .alias_sequence_id = 5), - [6992] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 6), - [6994] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 6), - [6996] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3484), - [6998] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 13), - [7000] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 13), - [7002] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3485), - [7004] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 3), - [7006] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 3), - [7008] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 14), - [7010] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 14), - [7012] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3487), - [7014] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 6), - [7016] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 6), - [7018] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 6), - [7020] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 6), - [7022] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3489), - [7024] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3489), - [7026] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3491), - [7028] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3492), - [7030] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3493), - [7032] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3494), - [7034] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3496), - [7036] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3497), - [7038] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3498), - [7040] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3497), - [7042] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3500), - [7044] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3501), - [7046] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3503), - [7048] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3504), - [7050] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3506), - [7052] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3507), - [7054] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3508), - [7056] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3509), - [7058] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3510), - [7060] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3511), - [7062] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3513), - [7064] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3515), - [7066] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3517), - [7068] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3518), - [7070] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3519), - [7072] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3520), - [7074] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3521), - [7076] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3522), - [7078] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3524), - [7080] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3526), - [7082] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3528), - [7084] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3529), - [7086] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3530), - [7088] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3531), - [7090] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3532), - [7092] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3533), - [7094] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3534), - [7096] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3535), - [7098] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3537), - [7100] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3538), - [7102] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3538), - [7104] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3540), - [7106] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3541), - [7108] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3542), - [7110] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3543), - [7112] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3544), - [7114] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3545), - [7116] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3547), - [7118] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3549), - [7120] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3550), - [7122] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3551), - [7124] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3553), - [7126] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3554), - [7128] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3554), - [7130] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3556), - [7132] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3557), - [7134] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3558), - [7136] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3559), - [7138] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3560), - [7140] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3561), - [7142] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3563), - [7144] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3565), - [7146] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3565), - [7148] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3567), - [7150] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3568), - [7152] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3569), - [7154] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3570), - [7156] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3572), - [7158] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3573), - [7160] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3574), - [7162] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3573), - [7164] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3576), - [7166] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3577), - [7168] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3579), - [7170] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3580), - [7172] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3582), - [7174] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3583), - [7176] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3584), - [7178] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3585), - [7180] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3586), - [7182] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3587), - [7184] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3589), - [7186] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3591), - [7188] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3593), - [7190] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3594), - [7192] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3595), - [7194] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3596), - [7196] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3597), - [7198] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3598), - [7200] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3600), - [7202] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3602), - [7204] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3604), - [7206] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3605), - [7208] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3606), - [7210] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3607), - [7212] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3608), - [7214] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3609), - [7216] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3610), - [7218] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3611), - [7220] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3613), - [7222] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3614), - [7224] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3614), - [7226] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3616), - [7228] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3617), - [7230] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3618), - [7232] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3619), - [7234] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3620), - [7236] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3621), - [7238] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3623), - [7240] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3625), - [7242] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3626), - [7244] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3627), - [7246] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3628), - [7248] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3630), - [7250] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3632), - [7252] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3634), - [7254] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3635), - [7256] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3636), - [7258] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3637), - [7260] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3638), - [7262] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3640), - [7264] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3641), - [7266] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3641), - [7268] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3643), - [7270] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3644), - [7272] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3645), - [7274] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3646), - [7276] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3647), - [7278] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3648), - [7280] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3650), - [7282] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3652), - [7284] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3653), - [7286] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3654), - [7288] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3655), - [7290] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3656), - [7292] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3657), - [7294] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3658), - [7296] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3660), - [7298] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3662), - [7300] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3664), - [7302] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3665), - [7304] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3666), - [7306] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3667), - [7308] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3668), - [7310] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3669), - [7312] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3670), - [7314] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3671), - [7316] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3672), - [7318] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3674), - [7320] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3676), - [7322] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3678), - [7324] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3679), - [7326] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3680), - [7328] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3681), - [7330] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3682), - [7332] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3683), - [7334] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3684), - [7336] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3685), - [7338] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3686), - [7340] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3687), - [7342] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3688), - [7344] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3689), - [7346] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3685), - [7348] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3691), - [7350] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3693), - [7352] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3694), - [7354] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3696), - [7356] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3698), - [7358] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3235), - [7360] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3700), - [7362] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3701), - [7364] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3700), - [7366] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3703), - [7368] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3704), - [7370] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3705), - [7372] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3706), - [7374] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3704), - [7376] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3715), - [7378] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3717), - [7380] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3247), - [7382] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3719), - [7384] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3720), - [7386] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3719), - [7388] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3722), - [7390] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3723), - [7392] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3724), - [7394] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3725), - [7396] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3723), - [7398] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3734), - [7400] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3734), - [7402] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3736), - [7404] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3737), - [7406] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3738), - [7408] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3739), - [7410] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3741), - [7412] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3742), - [7414] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3743), - [7416] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3742), - [7418] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3745), - [7420] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3746), - [7422] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3748), - [7424] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3749), - [7426] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3751), - [7428] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3752), - [7430] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3753), - [7432] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_last_case_item, 4, .alias_sequence_id = 1), - [7434] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 4, .alias_sequence_id = 1), - [7436] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 4, .alias_sequence_id = 1), - [7438] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 4, .alias_sequence_id = 1), - [7440] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3757), - [7442] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3757), - [7444] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3758), - [7446] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3759), - [7448] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3760), - [7450] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3761), - [7452] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3762), - [7454] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3763), - [7456] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3764), - [7458] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3765), - [7460] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3766), - [7462] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3767), - [7464] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3768), - [7466] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3764), - [7468] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3769), - [7470] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3770), - [7472] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3770), - [7474] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_last_case_item, 4, .alias_sequence_id = 1), - [7476] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3774), - [7478] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3778), - [7480] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_last_case_item, 4), - [7482] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 4), - [7484] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 4), - [7486] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 4), - [7488] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_last_case_item, 4), - [7490] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3781), - [7492] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3782), - [7494] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3785), - [7496] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3786), - [7498] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3787), - [7500] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3789), - [7502] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3790), - [7504] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3790), - [7506] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3792), - [7508] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3793), - [7510] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3794), - [7512] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3795), - [7514] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3796), - [7516] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3797), - [7518] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3799), - [7520] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3801), - [7522] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3805), - [7524] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3806), - [7526] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3810), - [7528] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 8, .alias_sequence_id = 21), - [7530] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 8, .alias_sequence_id = 22), - [7532] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3811), - [7534] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3812), - [7536] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3813), - [7538] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3815), - [7540] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3816), - [7542] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3816), - [7544] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3818), - [7546] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3819), - [7548] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3820), - [7550] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3821), - [7552] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3822), - [7554] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3823), - [7556] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3825), - [7558] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3827), - [7560] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3828), - [7562] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3829), - [7564] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3830), - [7566] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3832), - [7568] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3834), - [7570] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3836), - [7572] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3837), - [7574] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2741), - [7577] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3838), - [7579] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3839), - [7581] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3840), - [7583] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3840), - [7585] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3842), - [7587] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3843), - [7589] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3844), - [7591] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3845), - [7593] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3846), - [7595] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3848), - [7597] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3849), - [7599] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3851), - [7601] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3853), - [7603] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3854), - [7605] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3855), - [7607] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3856), - [7609] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3857), - [7611] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3858), - [7613] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3859), - [7615] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3860), - [7617] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3861), - [7619] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3862), - [7621] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3863), - [7623] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3864), - [7625] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3865), - [7627] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3867), - [7629] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3869), - [7631] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3871), - [7633] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3872), - [7635] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 7, .alias_sequence_id = 16), - [7637] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 7, .alias_sequence_id = 17), - [7639] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 7, .alias_sequence_id = 18), - [7641] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3873), - [7643] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3874), - [7645] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3875), - [7647] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3876), - [7649] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3878), - [7651] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3880), - [7653] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3882), - [7655] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3883), - [7657] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3884), - [7659] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3885), - [7661] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3886), - [7663] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3887), - [7665] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3888), - [7667] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3889), - [7669] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3890), - [7671] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3892), - [7673] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3894), - [7675] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3896), - [7677] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3897), - [7679] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3898), - [7681] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 7), - [7683] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 7), - [7685] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 7, .alias_sequence_id = 19), - [7687] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 7, .alias_sequence_id = 19), - [7689] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3899), - [7691] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 7, .alias_sequence_id = 20), - [7693] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 7, .alias_sequence_id = 20), - [7695] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3900), - [7697] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2959), - [7700] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3901), - [7702] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3902), - [7704] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3903), - [7706] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3903), - [7708] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3905), - [7710] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3906), - [7712] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3907), - [7714] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3908), - [7716] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3909), - [7718] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3911), - [7720] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3912), - [7722] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3914), - [7724] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3916), - [7726] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3917), - [7728] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3918), - [7730] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3919), - [7732] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3920), - [7734] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3921), - [7736] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3922), - [7738] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3923), - [7740] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3924), - [7742] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3925), - [7744] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3926), - [7746] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3927), - [7748] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3928), - [7750] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3930), - [7752] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3932), - [7754] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3934), - [7756] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3935), - [7758] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3936), - [7760] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3937), - [7762] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3938), - [7764] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3939), - [7766] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3941), - [7768] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3943), - [7770] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3945), - [7772] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3946), - [7774] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3059), - [7777] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3947), - [7779] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3948), - [7781] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3949), - [7783] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3949), - [7785] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3951), - [7787] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3952), - [7789] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3953), - [7791] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3954), - [7793] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3955), - [7795] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3957), - [7797] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3958), - [7799] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3960), - [7801] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3962), - [7803] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3963), - [7805] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3964), - [7807] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3965), - [7809] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3966), - [7811] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3967), - [7813] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3968), - [7815] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3969), - [7817] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3970), - [7819] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3971), - [7821] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3972), - [7823] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3973), - [7825] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3974), - [7827] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3976), - [7829] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3978), - [7831] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3980), - [7833] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3981), - [7835] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3982), - [7837] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3983), - [7839] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3984), - [7841] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3985), - [7843] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3986), - [7845] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3987), - [7847] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3988), - [7849] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3990), - [7851] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3992), - [7853] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3994), - [7855] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3995), - [7857] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3996), - [7859] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3997), - [7861] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3998), - [7863] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3999), - [7865] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4000), - [7867] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4001), - [7869] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4002), - [7871] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4004), - [7873] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4006), - [7875] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4008), - [7877] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4009), - [7879] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4008), - [7881] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4011), - [7883] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4012), - [7885] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4013), - [7887] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4014), - [7889] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4012), - [7891] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4023), - [7893] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4024), - [7895] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4025), - [7897] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4027), - [7899] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4028), - [7901] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4029), - [7903] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3236), - [7905] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4030), - [7907] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3238), - [7909] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3239), - [7911] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3240), - [7913] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3241), - [7915] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4030), - [7917] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4031), - [7919] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4031), - [7921] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4033), - [7923] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4034), - [7925] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4035), - [7927] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4036), - [7929] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4038), - [7931] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4039), - [7933] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4040), - [7935] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4039), - [7937] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4042), - [7939] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4043), - [7941] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4045), - [7943] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4046), - [7945] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4048), - [7947] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4049), - [7949] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3233), - [7952] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3234), - [7955] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3235), - [7958] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3236), - [7961] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3237), - [7964] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3238), - [7967] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3239), - [7970] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3240), - [7973] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3241), - [7976] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3242), - [7979] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4050), - [7981] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3248), - [7983] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4050), - [7985] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3250), - [7987] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3251), - [7989] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3252), - [7991] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3253), - [7993] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4052), - [7995] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4053), - [7997] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4054), - [7999] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4055), - [8001] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4057), - [8003] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4058), - [8005] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4059), - [8007] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4058), - [8009] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4061), - [8011] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4062), - [8013] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4064), - [8015] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4065), - [8017] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4067), - [8019] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4068), - [8021] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3246), - [8024] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3247), - [8027] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3248), - [8030] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3249), - [8033] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3250), - [8036] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3251), - [8039] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3252), - [8042] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3253), - [8045] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3254), - [8048] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3257), - [8051] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4069), - [8053] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4070), - [8055] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4071), - [8057] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4071), - [8059] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4073), - [8061] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4074), - [8063] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4075), - [8065] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4076), - [8067] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4077), - [8069] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4079), - [8071] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4080), - [8073] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4082), - [8075] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4084), - [8077] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4085), - [8079] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4086), - [8081] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4088), - [8083] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4089), - [8085] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4089), - [8087] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4090), - [8089] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4092), - [8091] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4094), - [8093] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4095), - [8095] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4094), - [8097] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4097), - [8099] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4098), - [8101] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4099), - [8103] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4100), - [8105] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4098), - [8107] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(3280), - [8110] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(3282), - [8113] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(3283), - [8116] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(3281), - [8119] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(3284), - [8122] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2643), - [8125] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2644), - [8128] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(3285), - [8131] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2646), - [8134] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2647), - [8137] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2648), - [8140] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2649), - [8143] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_last_case_item, 5, .alias_sequence_id = 1), - [8145] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 5, .alias_sequence_id = 1), - [8147] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 5, .alias_sequence_id = 1), - [8149] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 5, .alias_sequence_id = 1), - [8151] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_last_case_item, 5, .alias_sequence_id = 1), - [8153] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4109), - [8155] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_last_case_item, 5), - [8157] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 5), - [8159] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 5), - [8161] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 5), - [8163] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_last_case_item, 5), - [8165] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4110), - [8167] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4111), - [8169] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4112), - [8171] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4113), - [8173] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4114), - [8175] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4116), - [8177] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4118), - [8179] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4120), - [8181] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4121), - [8183] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4122), - [8185] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4123), - [8187] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4128), - [8189] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4129), - [8191] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4133), - [8193] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4134), - [8195] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4135), - [8197] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4136), - [8199] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4138), - [8201] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4140), - [8203] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4142), - [8205] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4143), - [8207] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4144), - [8209] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4145), - [8211] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4146), - [8213] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4147), - [8215] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4148), - [8217] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4149), - [8219] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4151), - [8221] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4152), - [8223] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4152), - [8225] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4154), - [8227] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4155), - [8229] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4156), - [8231] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4157), - [8233] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4158), - [8235] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4159), - [8237] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4161), - [8239] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4163), - [8241] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4164), - [8243] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4165), - [8245] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4166), - [8247] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4167), - [8249] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4168), - [8251] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4169), - [8253] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4170), - [8255] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4171), - [8257] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 8, .alias_sequence_id = 21), - [8259] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 8, .alias_sequence_id = 21), - [8261] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 8, .alias_sequence_id = 22), - [8263] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 8, .alias_sequence_id = 22), - [8265] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4172), - [8267] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4173), - [8269] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4174), - [8271] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4176), - [8273] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4177), - [8275] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4177), - [8277] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4179), - [8279] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4180), - [8281] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4181), - [8283] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4182), - [8285] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4183), - [8287] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4184), - [8289] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4186), - [8291] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4188), - [8293] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4189), - [8295] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4190), - [8297] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4191), - [8299] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4192), - [8301] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4193), - [8303] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4194), - [8305] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4195), - [8307] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4196), - [8309] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4198), - [8311] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4199), - [8313] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4199), - [8315] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4201), - [8317] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4202), - [8319] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4203), - [8321] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4204), - [8323] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4205), - [8325] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4206), - [8327] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4208), - [8329] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4210), - [8331] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4211), - [8333] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4212), - [8335] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4213), - [8337] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4214), - [8339] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4215), - [8341] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4216), - [8343] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4217), - [8345] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4217), - [8347] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4219), - [8349] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4220), - [8351] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4221), - [8353] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4222), - [8355] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4224), - [8357] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4225), - [8359] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4226), - [8361] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4225), - [8363] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4228), - [8365] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4229), - [8367] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4231), - [8369] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4232), - [8371] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4234), - [8373] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4235), - [8375] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4237), - [8377] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4237), - [8379] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4238), - [8381] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4239), - [8383] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4240), - [8385] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4241), - [8387] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4242), - [8389] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4243), - [8391] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4244), - [8393] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4245), - [8395] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4241), - [8397] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4246), - [8399] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3696), - [8402] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4248), - [8404] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4249), - [8406] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4250), - [8408] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4250), - [8410] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4252), - [8412] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4253), - [8414] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4254), - [8416] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4255), - [8418] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4256), - [8420] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4258), - [8422] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4259), - [8424] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4261), - [8426] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4263), - [8428] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4264), - [8430] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4265), - [8432] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3715), - [8435] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4266), - [8437] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4267), - [8439] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4268), - [8441] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4268), - [8443] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4270), - [8445] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4271), - [8447] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4272), - [8449] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4273), - [8451] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4274), - [8453] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4276), - [8455] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4277), - [8457] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4279), - [8459] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4281), - [8461] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4282), - [8463] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4283), - [8465] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4284), - [8467] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4285), - [8469] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4286), - [8471] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4288), - [8473] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4289), - [8475] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4289), - [8477] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4291), - [8479] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4292), - [8481] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4293), - [8483] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4294), - [8485] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4295), - [8487] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4296), - [8489] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4298), - [8491] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4300), - [8493] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4300), - [8495] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4302), - [8497] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4303), - [8499] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4304), - [8501] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4305), - [8503] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4307), - [8505] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4308), - [8507] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4309), - [8509] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4308), - [8511] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4311), - [8513] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4312), - [8515] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4314), - [8517] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4315), - [8519] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4317), - [8521] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4318), - [8523] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_last_case_item, 6, .alias_sequence_id = 1), - [8525] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 6, .alias_sequence_id = 1), - [8527] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 6, .alias_sequence_id = 1), - [8529] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 6, .alias_sequence_id = 1), - [8531] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_last_case_item, 6), - [8533] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 6), - [8535] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 6), - [8537] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 6), - [8539] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4319), - [8541] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4320), - [8543] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4321), - [8545] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4322), - [8547] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4323), - [8549] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4326), - [8551] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4327), - [8553] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4330), - [8555] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4331), - [8557] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4332), - [8559] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4333), - [8561] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4334), - [8563] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4335), - [8565] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4336), - [8567] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4338), - [8569] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4340), - [8571] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4342), - [8573] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4343), - [8575] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4344), - [8577] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4345), - [8579] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4346), - [8581] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4347), - [8583] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4349), - [8585] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4351), - [8587] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4353), - [8589] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4354), - [8591] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4355), - [8593] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4356), - [8595] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4357), - [8597] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4358), - [8599] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4360), - [8601] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4362), - [8603] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4364), - [8605] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4365), - [8607] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(4004), - [8610] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4366), - [8612] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4367), - [8614] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4368), - [8616] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4368), - [8618] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4370), - [8620] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4371), - [8622] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4372), - [8624] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4373), - [8626] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4374), - [8628] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4376), - [8630] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4377), - [8632] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4379), - [8634] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4381), - [8636] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4382), - [8638] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4383), - [8640] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4384), - [8642] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4385), - [8644] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4385), - [8646] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4386), - [8648] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4388), - [8650] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4390), - [8652] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4391), - [8654] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4390), - [8656] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4393), - [8658] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4394), - [8660] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4395), - [8662] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4396), - [8664] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4394), - [8666] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4404), - [8668] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4405), - [8670] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4406), - [8672] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4407), - [8674] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4409), - [8676] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4410), - [8678] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4410), - [8680] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4412), - [8682] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4413), - [8684] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4414), - [8686] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4415), - [8688] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4416), - [8690] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4417), - [8692] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4419), - [8694] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4421), - [8696] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4422), - [8698] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4423), - [8700] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4425), - [8702] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4426), - [8704] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4426), - [8706] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4428), - [8708] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4429), - [8710] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4430), - [8712] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4431), - [8714] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4432), - [8716] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4433), - [8718] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4435), - [8720] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4437), - [8722] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4438), - [8724] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4439), - [8726] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4440), - [8728] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4442), - [8730] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4444), - [8732] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4446), - [8734] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4447), - [8736] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(4090), - [8739] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4448), - [8741] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4449), - [8743] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4450), - [8745] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4450), - [8747] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4452), - [8749] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4453), - [8751] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4454), - [8753] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4455), - [8755] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4456), - [8757] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4458), - [8759] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4459), - [8761] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4461), - [8763] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4463), - [8765] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4464), - [8767] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4465), - [8769] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4466), - [8771] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4467), - [8773] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4468), - [8775] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4469), - [8777] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4470), - [8779] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4471), - [8781] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4472), - [8783] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4473), - [8785] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4474), - [8787] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4475), - [8789] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4476), - [8791] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4477), - [8793] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4478), - [8795] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4479), - [8797] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4481), - [8799] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4482), - [8801] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4482), - [8803] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4484), - [8805] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4485), - [8807] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4486), - [8809] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4487), - [8811] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4488), - [8813] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4489), - [8815] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4491), - [8817] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4493), - [8819] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4493), - [8821] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4495), - [8823] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4496), - [8825] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4497), - [8827] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4498), - [8829] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4500), - [8831] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4501), - [8833] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4502), - [8835] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4501), - [8837] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4504), - [8839] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4505), - [8841] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4507), - [8843] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4508), - [8845] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4510), - [8847] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4511), - [8849] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4512), - [8851] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4513), - [8853] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4514), - [8855] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4515), - [8857] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4517), - [8859] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4519), - [8861] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4521), - [8863] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4522), - [8865] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4523), - [8867] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4524), - [8869] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4525), - [8871] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4526), - [8873] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4528), - [8875] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4530), - [8877] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4532), - [8879] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4533), - [8881] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4534), - [8883] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4535), - [8885] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4536), - [8887] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4537), - [8889] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4538), - [8891] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4539), - [8893] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4541), - [8895] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4542), - [8897] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4542), - [8899] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4544), - [8901] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4545), - [8903] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4546), - [8905] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4547), - [8907] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4548), - [8909] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4549), - [8911] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4551), - [8913] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4553), - [8915] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4554), - [8917] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4555), - [8919] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4556), - [8921] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4558), - [8923] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4560), - [8925] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4562), - [8927] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4563), - [8929] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(4386), - [8932] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4564), - [8934] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4565), - [8936] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4566), - [8938] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4566), - [8940] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4568), - [8942] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4569), - [8944] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4570), - [8946] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4571), - [8948] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4572), - [8950] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4574), - [8952] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4575), - [8954] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4577), - [8956] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4579), - [8958] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4580), - [8960] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4581), - [8962] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4582), - [8964] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4583), - [8966] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4584), - [8968] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4585), - [8970] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4586), - [8972] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4587), - [8974] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4588), - [8976] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4589), - [8978] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4590), - [8980] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4591), - [8982] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4593), - [8984] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4595), - [8986] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4597), - [8988] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4598), - [8990] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4599), - [8992] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4600), - [8994] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4601), - [8996] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4602), - [8998] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4603), - [9000] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4604), - [9002] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4606), - [9004] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4607), - [9006] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4607), - [9008] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4609), - [9010] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4610), - [9012] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4611), - [9014] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4612), - [9016] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4613), - [9018] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4614), - [9020] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4616), - [9022] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4618), - [9024] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4619), - [9026] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4620), - [9028] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4621), - [9030] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4622), - [9032] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4623), - [9034] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4624), - [9036] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4626), - [9038] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4628), - [9040] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4630), - [9042] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4631), - [9044] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4632), - [9046] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4633), - [9048] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4634), + [244] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(140), + [246] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(141), + [248] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(139), + [250] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command_name, 1), + [252] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command_name, 1), + [254] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(142), + [256] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(143), + [258] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(144), + [260] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(145), + [262] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(143), + [264] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(147), + [266] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(148), + [268] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(149), + [270] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(150), + [272] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(151), + [274] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(152), + [276] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(153), + [278] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(154), + [280] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(155), + [282] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(156), + [284] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(157), + [286] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(158), + [288] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(159), + [290] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(160), + [292] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(161), + [294] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(162), + [296] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(163), + [298] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(164), + [300] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(165), + [302] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(166), + [304] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(173), + [306] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(174), + [308] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(175), + [310] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(176), + [312] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(177), + [314] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(178), + [316] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(179), + [318] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(180), + [320] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(181), + [322] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(182), + [324] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(183), + [326] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(184), + [328] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(185), + [330] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(186), + [332] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(187), + [334] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(188), + [336] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(196), + [338] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, ACCEPT_INPUT(), + [340] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 1), + [342] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 1), + [344] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 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 = true, .depends_on_lookahead = false}, SHIFT(200), + [354] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 1), + [356] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(201), + [358] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(202), + [360] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(203), + [362] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(204), + [364] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(205), + [366] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(16), + [368] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(17), + [370] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(206), + [372] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(19), + [374] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(20), + [376] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(21), + [378] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(22), + [380] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat1, 1, .fragile = true), + [382] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat1, 1, .fragile = true), + [384] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat1, 1, .fragile = true), + [386] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_program, 1), + [388] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(212), + [390] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(15), + [392] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(18), + [394] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(216), + [396] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(217), + [398] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(217), + [400] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(219), + [402] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(220), + [404] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(221), + [406] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(222), + [408] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(223), + [410] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(224), + [412] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(225), + [414] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(226), + [416] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(222), + [418] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(228), + [420] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(229), + [422] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(230), + [424] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(231), + [426] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(232), + [428] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(233), + [430] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(234), + [432] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(235), + [434] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(236), + [436] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(237), + [438] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(233), + [440] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_variable_assignment, 2), + [442] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_variable_assignment, 2), + [444] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(238), + [446] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(239), + [448] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(241), + [450] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(242), + [452] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(243), + [454] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(244), + [456] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(245), + [458] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(247), + [460] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(249), + [462] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(250), + [464] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(251), + [466] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(249), + [468] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(252), + [470] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(253), + [472] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(254), + [474] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(255), + [476] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(256), + [478] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(257), + [480] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(255), + [482] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(265), + [484] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(266), + [486] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(268), + [488] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(270), + [490] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(273), + [492] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(274), + [494] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(275), + [496] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(276), + [498] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(277), + [500] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(278), + [502] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(279), + [504] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(280), + [506] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(281), + [508] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(284), + [510] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(285), + [512] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(286), + [514] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(287), + [516] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(288), + [518] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(289), + [520] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(290), + [522] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(291), + [524] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(293), + [526] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(295), + [528] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(297), + [530] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(298), + [532] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(299), + [534] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(297), + [536] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(300), + [538] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(301), + [540] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(302), + [542] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(303), + [544] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(301), + [546] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(311), + [548] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(312), + [550] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(313), + [552] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(314), + [554] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(315), + [556] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(316), + [558] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(317), + [560] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(318), + [562] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(319), + [564] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(320), + [566] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(61), + [568] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(62), + [570] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(321), + [572] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(64), + [574] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(65), + [576] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(66), + [578] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(67), + [580] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(60), + [582] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(63), + [584] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(328), + [586] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(77), + [588] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(78), + [590] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(329), + [592] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(80), + [594] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(81), + [596] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(82), + [598] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(83), + [600] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(330), + [602] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(331), + [604] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 1, .alias_sequence_id = 1), + [606] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 1, .alias_sequence_id = 1), + [608] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 1, .alias_sequence_id = 1), + [610] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(333), + [612] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(335), + [614] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(336), + [616] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(337), + [618] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(335), + [620] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 1), + [622] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 1), + [624] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 1), + [626] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(338), + [628] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(339), + [630] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(340), + [632] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(341), + [634] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(339), + [636] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(349), + [638] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(76), + [640] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(351), + [642] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(88), + [644] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(89), + [646] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(352), + [648] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(91), + [650] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(92), + [652] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(93), + [654] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(94), + [656] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(353), + [658] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(354), + [660] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(356), + [662] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(358), + [664] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(359), + [666] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(360), + [668] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(358), + [670] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(361), + [672] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(362), + [674] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(363), + [676] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(364), + [678] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(362), + [680] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(87), + [682] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(373), + [684] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(375), + [686] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 1, .alias_sequence_id = 1), + [688] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 1, .alias_sequence_id = 1), + [690] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(377), + [692] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(99), + [694] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(379), + [696] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(380), + [698] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(381), + [700] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(379), + [702] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 1), + [704] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 1), + [706] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(382), + [708] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(383), + [710] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(384), + [712] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(385), + [714] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(383), + [716] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 1, .alias_sequence_id = 2), + [718] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 1, .alias_sequence_id = 2), + [720] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_declaration_command, 2), + [722] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(394), + [724] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 1, .alias_sequence_id = 1), + [726] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(396), + [728] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(111), + [730] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(398), + [732] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(399), + [734] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(400), + [736] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(398), + [738] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 1), + [740] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(401), + [742] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(402), + [744] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(403), + [746] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(404), + [748] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(402), + [750] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 1, .alias_sequence_id = 2), + [752] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_unset_command, 2), + [754] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 2, .alias_sequence_id = 3), + [756] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(413), + [758] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_file_redirect, 2, .alias_sequence_id = 3), + [760] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(415), + [762] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(417), + [764] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(418), + [766] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(419), + [768] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(417), + [770] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 2), + [772] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_file_redirect, 2), + [774] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(420), + [776] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(421), + [778] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(422), + [780] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(423), + [782] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(421), + [784] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(431), + [786] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(431), + [788] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_concatenation, 2), + [790] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_concatenation, 2), + [792] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_string, 2), + [794] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_string, 2), + [796] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(433), + [798] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(434), + [800] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(433), + [802] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(435), + [804] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(433), + [806] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(436), + [808] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_string_repeat1, 1), + [810] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_string_repeat1, 1), + [812] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(437), + [814] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(438), + [816] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(439), + [818] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(440), + [820] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(438), + [822] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(446), + [824] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 4), + [826] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 4), + [828] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_string_expansion, 2), + [830] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_string_expansion, 2), + [832] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 5), + [834] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 5), + [836] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(448), + [838] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(449), + [840] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(450), + [842] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(451), + [844] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(452), + [846] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(453), + [848] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(454), + [850] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(455), + [852] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(451), + [854] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(456), + [856] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(457), + [858] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(458), + [860] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(459), + [862] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(460), + [864] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(455), + [866] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(462), + [868] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(463), + [870] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(464), + [872] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(463), + [874] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(466), + [876] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(467), + [878] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(469), + [880] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(470), + [882] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(472), + [884] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(474), + [886] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(477), + [888] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(478), + [890] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(478), + [892] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(480), + [894] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(486), + [896] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration_command, 1), + [898] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration_command, 1), + [900] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(487), + [902] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(488), + [904] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(489), + [906] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(490), + [908] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(491), + [910] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(492), + [912] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(493), + [914] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(494), + [916] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(495), + [918] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(490), + [920] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_unset_command, 1), + [922] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_unset_command, 1), + [924] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(499), + [926] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(500), + [928] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(501), + [930] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(502), + [932] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(503), + [934] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(504), + [936] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(505), + [938] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(506), + [940] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(507), + [942] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(502), + [944] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(510), + [946] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command_name, 1, .alias_sequence_id = 1), + [948] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(512), + [950] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(514), + [952] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(515), + [954] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(516), + [956] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(514), + [958] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command_name, 1), + [960] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(517), + [962] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(518), + [964] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(519), + [966] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(520), + [968] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(518), + [970] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(528), + [972] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(529), + [974] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(530), + [976] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(529), + [978] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(531), + [980] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(532), + [982] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command, 1), + [984] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command, 1), + [986] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(533), + [988] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(534), + [990] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(534), + [992] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(535), + [994] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(535), + [996] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(536), + [998] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(537), + [1000] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(538), + [1002] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(538), + [1004] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(158), + [1006] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(161), + [1008] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(544), + [1010] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(546), + [1012] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(549), + [1014] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(550), + [1016] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(551), + [1018] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(552), + [1020] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(553), + [1022] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(554), + [1024] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(555), + [1026] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(557), + [1028] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(553), + [1030] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(560), + [1032] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(561), + [1034] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(562), + [1036] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(563), + [1038] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(564), + [1040] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(565), + [1042] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(567), + [1044] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(563), + [1046] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(569), + [1048] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(571), + [1050] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(573), + [1052] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(574), + [1054] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(575), + [1056] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(573), + [1058] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(576), + [1060] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(577), + [1062] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(578), + [1064] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(579), + [1066] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(577), + [1068] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(587), + [1070] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(588), + [1072] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(588), + [1074] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(589), + [1076] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(590), + [1078] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(591), + [1080] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(592), + [1082] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(592), + [1084] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(593), + [1086] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(594), + [1088] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(595), + [1090] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(595), + [1092] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(180), + [1094] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(183), + [1096] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(599), + [1098] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(600), + [1100] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__terminated_statement, 2, .fragile = true), + [1102] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__terminated_statement, 2, .fragile = true), + [1104] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__terminated_statement, 2, .fragile = true), + [1106] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(605), + [1108] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(605), + [1110] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(606), + [1112] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(607), + [1114] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(608), + [1116] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(609), + [1118] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(610), + [1120] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(611), + [1122] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(612), + [1124] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(613), + [1126] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(614), + [1128] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(615), + [1130] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(616), + [1132] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(612), + [1134] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(618), + [1136] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(619), + [1138] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(621), + [1140] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(622), + [1142] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(622), + [1144] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 1), + [1146] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 1), + [1148] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 2), + [1150] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2), + [1153] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3), + [1156] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), + [1158] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4), + [1161] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(5), + [1164] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(6), + [1167] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(7), + [1170] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(8), + [1173] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(9), + [1176] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(10), + [1179] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(11), + [1182] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(12), + [1185] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(13), + [1188] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(14), + [1191] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(14), + [1194] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(15), + [1197] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(16), + [1200] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(17), + [1203] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(18), + [1206] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(19), + [1209] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(20), + [1212] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(21), + [1215] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(22), + [1218] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(23), + [1221] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(627), + [1223] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(2), + [1226] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(212), + [1229] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(14), + [1232] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(14), + [1235] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat1, 2), + [1237] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat1, 2), + [1239] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 3, .alias_sequence_id = 6), + [1241] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_file_redirect, 3, .alias_sequence_id = 6), + [1243] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 3), + [1245] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_file_redirect, 3), + [1247] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(629), + [1249] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(630), + [1251] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(632), + [1253] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(634), + [1255] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(635), + [1257] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(636), + [1259] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(634), + [1261] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(637), + [1263] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(638), + [1265] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(639), + [1267] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(640), + [1269] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(641), + [1271] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(642), + [1273] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(640), + [1275] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(650), + [1277] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__assignment, 2), + [1279] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__assignment, 2), + [1281] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(651), + [1283] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(652), + [1285] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(653), + [1287] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(654), + [1289] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(655), + [1291] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(656), + [1293] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(657), + [1295] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(658), + [1297] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(659), + [1299] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(655), + [1301] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__assignment, 2, .alias_sequence_id = 3), + [1303] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(662), + [1305] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__assignment, 2, .alias_sequence_id = 3), + [1307] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(664), + [1309] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(666), + [1311] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(667), + [1313] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(668), + [1315] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(666), + [1317] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(669), + [1319] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(670), + [1321] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(671), + [1323] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(672), + [1325] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(670), + [1327] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(680), + [1329] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(681), + [1331] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(682), + [1333] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(683), + [1335] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(684), + [1337] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(685), + [1339] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(686), + [1341] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(687), + [1343] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(683), + [1345] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(690), + [1347] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_while_statement, 3), + [1349] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(696), + [1351] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(697), + [1353] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(698), + [1355] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(706), + [1357] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(706), + [1359] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(707), + [1361] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(708), + [1363] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(710), + [1365] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(711), + [1367] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(712), + [1369] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(713), + [1371] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(714), + [1373] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(715), + [1375] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(717), + [1377] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(718), + [1379] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(719), + [1381] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(718), + [1383] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(721), + [1385] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(722), + [1387] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(724), + [1389] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(725), + [1391] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(727), + [1393] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(728), + [1395] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(729), + [1397] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(730), + [1399] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(735), + [1401] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 3), + [1403] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(736), + [1405] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(738), + [1407] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(739), + [1409] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(740), + [1411] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(741), + [1413] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(742), + [1415] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(743), + [1417] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(744), + [1419] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(745), + [1421] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(741), + [1423] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(747), + [1425] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(749), + [1427] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(750), + [1429] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(751), + [1431] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(753), + [1433] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(275), + [1435] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(755), + [1437] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(756), + [1439] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(757), + [1441] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(755), + [1443] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(758), + [1445] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(759), + [1447] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(760), + [1449] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(761), + [1451] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(759), + [1453] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(770), + [1455] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(772), + [1457] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(285), + [1459] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(774), + [1461] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(775), + [1463] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(776), + [1465] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(774), + [1467] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(777), + [1469] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(778), + [1471] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(779), + [1473] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(780), + [1475] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(778), + [1477] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(789), + [1479] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(789), + [1481] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(791), + [1483] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(792), + [1485] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(793), + [1487] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(794), + [1489] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(796), + [1491] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(797), + [1493] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(798), + [1495] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(797), + [1497] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(800), + [1499] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(801), + [1501] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(803), + [1503] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(804), + [1505] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(806), + [1507] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(807), + [1509] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(808), + [1511] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_subshell, 3), + [1513] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(809), + [1515] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(812), + [1517] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(812), + [1519] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(813), + [1521] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(814), + [1523] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(815), + [1525] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(816), + [1527] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(817), + [1529] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(818), + [1531] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(819), + [1533] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(820), + [1535] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(821), + [1537] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(822), + [1539] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(818), + [1541] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(823), + [1543] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(824), + [1545] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(824), + [1547] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(809), + [1549] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(828), + [1551] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 2, .alias_sequence_id = 3), + [1553] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2, .alias_sequence_id = 3), + [1555] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2, .alias_sequence_id = 3), + [1557] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 2), + [1559] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), + [1561] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), + [1563] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(830), + [1565] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(830), + [1567] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_concatenation, 2), + [1569] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_string, 2), + [1571] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(832), + [1573] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 4), + [1575] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_string_expansion, 2), + [1577] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 5), + [1579] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(833), + [1581] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(834), + [1583] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(835), + [1585] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(837), + [1587] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(838), + [1589] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(839), + [1591] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(838), + [1593] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(841), + [1595] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(842), + [1597] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(844), + [1599] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(845), + [1601] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(847), + [1603] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(848), + [1605] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_bracket_command, 3), + [1607] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(75), + [1610] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(76), + [1613] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(77), + [1616] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(78), + [1619] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(79), + [1622] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(80), + [1625] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(81), + [1628] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(82), + [1631] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(83), + [1634] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(79), + [1637] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(850), + [1639] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(850), + [1641] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(852), + [1643] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(853), + [1645] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(854), + [1647] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(855), + [1649] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(857), + [1651] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(858), + [1653] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(859), + [1655] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(858), + [1657] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(861), + [1659] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(862), + [1661] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(864), + [1663] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(865), + [1665] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(867), + [1667] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(868), + [1669] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(86), + [1672] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(87), + [1675] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(88), + [1678] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(89), + [1681] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(90), + [1684] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(91), + [1687] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(92), + [1690] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(93), + [1693] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(94), + [1696] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(90), + [1699] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(869), + [1701] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(870), + [1703] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(871), + [1705] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(100), + [1707] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(872), + [1709] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(102), + [1711] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(103), + [1713] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(104), + [1715] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(105), + [1717] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(872), + [1719] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(873), + [1721] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(873), + [1723] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(875), + [1725] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(876), + [1727] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(877), + [1729] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(878), + [1731] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(880), + [1733] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(881), + [1735] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(882), + [1737] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(881), + [1739] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(884), + [1741] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(885), + [1743] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(887), + [1745] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(888), + [1747] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(890), + [1749] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(891), + [1751] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(97), + [1754] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), + [1756] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(98), + [1759] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(99), + [1762] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(100), + [1765] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(101), + [1768] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(102), + [1771] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(103), + [1774] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(104), + [1777] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(105), + [1780] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(106), + [1783] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(892), + [1785] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(112), + [1787] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(892), + [1789] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(114), + [1791] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(115), + [1793] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(116), + [1795] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(117), + [1797] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(894), + [1799] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(895), + [1801] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(896), + [1803] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(897), + [1805] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(899), + [1807] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(900), + [1809] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(901), + [1811] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(900), + [1813] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(903), + [1815] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(904), + [1817] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(906), + [1819] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(907), + [1821] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(909), + [1823] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(910), + [1825] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), + [1827] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(110), + [1830] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(111), + [1833] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(112), + [1836] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(113), + [1839] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(114), + [1842] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(115), + [1845] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(116), + [1848] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(117), + [1851] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(118), + [1854] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(911), + [1856] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(911), + [1858] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(913), + [1860] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(914), + [1862] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(915), + [1864] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(916), + [1866] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(918), + [1868] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(919), + [1870] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(920), + [1872] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(919), + [1874] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(922), + [1876] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(923), + [1878] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(925), + [1880] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(926), + [1882] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(928), + [1884] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(929), + [1886] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), + [1888] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), + [1890] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(130), + [1893] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(930), + [1895] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_string_repeat1, 2), + [1897] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_string_repeat1, 2), + [1899] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(931), + [1901] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(932), + [1903] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(933), + [1905] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(935), + [1907] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(936), + [1909] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(937), + [1911] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(936), + [1913] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(939), + [1915] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(940), + [1917] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(942), + [1919] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(943), + [1921] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(945), + [1923] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_string, 3), + [1925] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_string, 3), + [1927] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(133), + [1930] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(134), + [1933] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(135), + [1936] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(136), + [1939] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(137), + [1942] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(946), + [1944] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(947), + [1946] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(947), + [1948] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(949), + [1950] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(950), + [1952] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(951), + [1954] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(952), + [1956] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(953), + [1958] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(954), + [1960] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(955), + [1962] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(956), + [1964] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(957), + [1966] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(953), + [1968] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 3, .alias_sequence_id = 4), + [1970] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 3, .alias_sequence_id = 4), + [1972] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_expansion_repeat1, 1), + [1974] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_expansion_repeat1, 1), + [1976] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_expansion_repeat1, 1), + [1978] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(959), + [1980] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_expansion_repeat1, 1, .alias_sequence_id = 1), + [1982] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_expansion_repeat1, 1, .alias_sequence_id = 1), + [1984] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_expansion_repeat1, 1, .alias_sequence_id = 1), + [1986] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(961), + [1988] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(963), + [1990] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(964), + [1992] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(965), + [1994] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(963), + [1996] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(966), + [1998] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(967), + [2000] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(968), + [2002] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(969), + [2004] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(967), + [2006] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(971), + [2008] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(978), + [2010] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(980), + [2012] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(981), + [2014] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(982), + [2016] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(984), + [2018] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(985), + [2020] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(987), + [2022] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 3, .alias_sequence_id = 5), + [2024] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 3, .alias_sequence_id = 5), + [2026] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(989), + [2028] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(990), + [2030] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 3), + [2032] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 3), + [2034] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(991), + [2036] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(992), + [2038] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(993), + [2040] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(994), + [2042] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(995), + [2044] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(996), + [2046] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(997), + [2048] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(998), + [2050] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(999), + [2052] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1000), + [2054] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1001), + [2056] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(997), + [2058] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_variable_assignment, 2), + [2060] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1002), + [2062] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1003), + [2064] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1005), + [2066] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1006), + [2068] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1007), + [2070] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1008), + [2072] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1009), + [2074] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1010), + [2076] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1011), + [2078] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1013), + [2080] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1014), + [2082] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1017), + [2084] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1018), + [2086] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1020), + [2088] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_declaration_command_repeat1, 1, .alias_sequence_id = 1), + [2090] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1022), + [2092] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1024), + [2094] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1025), + [2096] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1026), + [2098] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1024), + [2100] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_declaration_command_repeat1, 1), + [2102] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1027), + [2104] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1028), + [2106] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1029), + [2108] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1030), + [2110] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1028), + [2112] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_declaration_command_repeat1, 1, .alias_sequence_id = 2), + [2114] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration_command, 2), + [2116] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration_command, 2), + [2118] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1039), + [2120] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_unset_command_repeat1, 1, .alias_sequence_id = 1), + [2122] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 1, .alias_sequence_id = 1), + [2124] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1041), + [2126] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1043), + [2128] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1044), + [2130] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1045), + [2132] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1043), + [2134] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_unset_command_repeat1, 1), + [2136] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 1), + [2138] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1046), + [2140] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1047), + [2142] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1048), + [2144] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1049), + [2146] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1047), + [2148] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_unset_command_repeat1, 1, .alias_sequence_id = 2), + [2150] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 1, .alias_sequence_id = 2), + [2152] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_unset_command, 2), + [2154] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_unset_command, 2), + [2156] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1058), + [2158] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1058), + [2160] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1060), + [2162] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1061), + [2164] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1062), + [2166] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1063), + [2168] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1065), + [2170] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1066), + [2172] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1067), + [2174] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1066), + [2176] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1069), + [2178] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1070), + [2180] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1072), + [2182] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1073), + [2184] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1075), + [2186] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1076), + [2188] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1077), + [2190] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command_substitution, 3), + [2192] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command_substitution, 3), + [2194] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1082), + [2196] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1082), + [2198] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1083), + [2200] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(159), + [2202] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(160), + [2204] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1084), + [2206] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(162), + [2208] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(163), + [2210] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(164), + [2212] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(165), + [2214] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1085), + [2216] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1086), + [2218] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1087), + [2220] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1088), + [2222] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1089), + [2224] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1090), + [2226] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1091), + [2228] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1092), + [2230] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1093), + [2232] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1089), + [2234] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1095), + [2236] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1096), + [2238] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1098), + [2240] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1099), + [2242] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1099), + [2244] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_while_statement_repeat1, 1), + [2246] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command, 2), + [2248] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command, 2), + [2250] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1105), + [2252] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1106), + [2254] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1107), + [2256] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1108), + [2258] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1109), + [2260] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1110), + [2262] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1111), + [2264] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1112), + [2266] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1108), + [2268] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1114), + [2270] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1116), + [2272] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1117), + [2274] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1118), + [2276] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1120), + [2278] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1122), + [2280] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1123), + [2282] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1124), + [2284] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1122), + [2286] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1125), + [2288] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1126), + [2290] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1127), + [2292] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1128), + [2294] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1126), + [2296] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1137), + [2298] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1139), + [2300] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1141), + [2302] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1142), + [2304] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1143), + [2306] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1141), + [2308] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1144), + [2310] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1145), + [2312] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1146), + [2314] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1147), + [2316] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1145), + [2318] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1156), + [2320] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1156), + [2322] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1158), + [2324] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1159), + [2326] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1160), + [2328] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1161), + [2330] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1163), + [2332] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1164), + [2334] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1165), + [2336] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1164), + [2338] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1167), + [2340] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1168), + [2342] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1170), + [2344] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1171), + [2346] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1173), + [2348] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1174), + [2350] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1175), + [2352] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1179), + [2354] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1179), + [2356] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1180), + [2358] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(181), + [2360] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(182), + [2362] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1181), + [2364] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(184), + [2366] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(185), + [2368] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(186), + [2370] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(187), + [2372] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1182), + [2374] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1183), + [2376] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1184), + [2378] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1185), + [2380] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1186), + [2382] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1187), + [2384] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1188), + [2386] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1189), + [2388] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1185), + [2390] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1190), + [2392] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1191), + [2394] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1191), + [2396] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_process_substitution, 3), + [2398] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_process_substitution, 3), + [2400] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_pipeline, 3), + [2402] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_list, 3, .fragile = true), + [2404] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1197), + [2406] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1198), + [2408] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1198), + [2410] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1200), + [2412] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 2, .alias_sequence_id = 3), + [2414] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1202), + [2416] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1204), + [2418] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1205), + [2420] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1206), + [2422] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1204), + [2424] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 2), + [2426] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1207), + [2428] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1208), + [2430] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1209), + [2432] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1210), + [2434] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1208), + [2436] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 1), + [2438] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 1), + [2440] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1218), + [2442] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1219), + [2444] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1220), + [2446] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1221), + [2448] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_heredoc_redirect, 2), + [2450] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_heredoc_redirect, 2), + [2452] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_herestring_redirect, 2, .alias_sequence_id = 3), + [2454] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_herestring_redirect, 2, .alias_sequence_id = 3), + [2456] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_herestring_redirect, 2), + [2458] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_herestring_redirect, 2), + [2460] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(200), + [2463] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), + [2465] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(202), + [2468] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(203), + [2471] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(204), + [2474] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 3), + [2476] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(201), + [2479] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(205), + [2482] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(16), + [2485] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(17), + [2488] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(206), + [2491] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(19), + [2494] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(20), + [2497] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(21), + [2500] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(22), + [2503] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1223), + [2505] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1224), + [2507] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1224), + [2509] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1226), + [2511] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1227), + [2513] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1227), + [2515] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1227), + [2517] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1228), + [2519] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subscript, 4, .alias_sequence_id = 6), + [2521] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1229), + [2523] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1231), + [2525] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1232), + [2527] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1233), + [2529] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subscript, 4), + [2531] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1234), + [2533] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1235), + [2535] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1236), + [2537] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1238), + [2539] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1239), + [2541] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1240), + [2543] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1239), + [2545] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1242), + [2547] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1243), + [2549] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1245), + [2551] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1246), + [2553] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1248), + [2555] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1249), + [2557] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array, 2), + [2559] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_array, 2), + [2561] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1250), + [2563] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 1, .alias_sequence_id = 1), + [2565] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 1, .alias_sequence_id = 1), + [2567] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1252), + [2569] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1254), + [2571] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1255), + [2573] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1256), + [2575] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1254), + [2577] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 1), + [2579] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 1), + [2581] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1257), + [2583] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1258), + [2585] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1259), + [2587] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1260), + [2589] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1258), + [2591] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1268), + [2593] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1270), + [2595] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1270), + [2597] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1272), + [2599] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1273), + [2601] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1274), + [2603] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1275), + [2605] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1277), + [2607] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1278), + [2609] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1279), + [2611] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1278), + [2613] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1281), + [2615] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1282), + [2617] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1284), + [2619] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1285), + [2621] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1287), + [2623] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1288), + [2625] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1289), + [2627] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 1, .alias_sequence_id = 1), + [2629] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1291), + [2631] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1293), + [2633] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1294), + [2635] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1295), + [2637] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1293), + [2639] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 1), + [2641] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1296), + [2643] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1297), + [2645] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1298), + [2647] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1299), + [2649] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1297), + [2651] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1307), + [2653] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(680), + [2655] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(681), + [2657] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(682), + [2659] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(683), + [2661] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(684), + [2663] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(685), + [2665] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(686), + [2667] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(687), + [2669] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_group, 2), + [2671] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_do_group, 2), + [2673] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1309), + [2675] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1310), + [2677] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_while_statement, 4), + [2679] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 4), + [2681] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_else_clause, 1), + [2683] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1317), + [2685] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_if_statement_repeat1, 1), + [2687] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1318), + [2689] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1318), + [2691] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(697), + [2693] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(698), + [2695] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1323), + [2697] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1324), + [2699] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1325), + [2701] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1326), + [2703] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1327), + [2705] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1328), + [2707] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1329), + [2709] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1330), + [2711] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1331), + [2713] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1327), + [2715] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1336), + [2717] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(243), + [2720] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1337), + [2722] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1340), + [2724] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1341), + [2726] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1342), + [2728] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1343), + [2730] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1343), + [2732] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1345), + [2734] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1346), + [2736] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1347), + [2738] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1348), + [2740] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1349), + [2742] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1351), + [2744] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1352), + [2746] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1354), + [2748] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1356), + [2750] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1357), + [2752] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1358), + [2754] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 2), + [2756] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 2), + [2758] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1360), + [2760] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1361), + [2762] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1363), + [2764] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1363), + [2766] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1364), + [2768] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1365), + [2770] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1366), + [2772] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1367), + [2774] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1368), + [2776] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1369), + [2778] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1370), + [2780] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1371), + [2782] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1367), + [2784] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 4), + [2786] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1373), + [2788] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1375), + [2790] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1377), + [2792] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1378), + [2794] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1379), + [2796] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1377), + [2798] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1380), + [2800] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1381), + [2802] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1382), + [2804] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1383), + [2806] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1381), + [2808] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1392), + [2810] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1393), + [2812] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1394), + [2814] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1396), + [2816] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(276), + [2818] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1397), + [2820] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(278), + [2822] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(279), + [2824] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(280), + [2826] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(281), + [2828] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1397), + [2830] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1398), + [2832] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1398), + [2834] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1400), + [2836] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1401), + [2838] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1402), + [2840] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1403), + [2842] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1405), + [2844] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1406), + [2846] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1407), + [2848] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1406), + [2850] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1409), + [2852] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1410), + [2854] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1412), + [2856] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1413), + [2858] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1415), + [2860] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1416), + [2862] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(273), + [2865] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(274), + [2868] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(275), + [2871] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(276), + [2874] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(277), + [2877] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(278), + [2880] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(279), + [2883] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(280), + [2886] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(281), + [2889] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1417), + [2891] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(286), + [2893] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1417), + [2895] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(288), + [2897] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(289), + [2899] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(290), + [2901] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(291), + [2903] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1419), + [2905] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1420), + [2907] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1421), + [2909] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1422), + [2911] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1424), + [2913] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1425), + [2915] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1426), + [2917] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1425), + [2919] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1428), + [2921] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1429), + [2923] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1431), + [2925] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1432), + [2927] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1434), + [2929] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1435), + [2931] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(284), + [2934] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(285), + [2937] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(286), + [2940] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(287), + [2943] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(288), + [2946] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(289), + [2949] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(290), + [2952] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(291), + [2955] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(293), + [2958] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1436), + [2960] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1437), + [2962] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1438), + [2964] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1438), + [2966] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1440), + [2968] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1441), + [2970] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1442), + [2972] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1443), + [2974] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1444), + [2976] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1446), + [2978] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1447), + [2980] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1449), + [2982] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1451), + [2984] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1452), + [2986] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1453), + [2988] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_subshell, 4), + [2990] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1455), + [2992] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1456), + [2994] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1456), + [2996] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1457), + [2998] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1459), + [3000] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1461), + [3002] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1462), + [3004] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1463), + [3006] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1461), + [3008] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1464), + [3010] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1465), + [3012] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1466), + [3014] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1467), + [3016] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1465), + [3018] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(316), + [3021] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(318), + [3024] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(319), + [3027] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(317), + [3030] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(320), + [3033] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(61), + [3036] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(62), + [3039] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(321), + [3042] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(64), + [3045] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(65), + [3048] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(66), + [3051] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(67), + [3054] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1475), + [3056] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_concatenation_repeat1, 2), + [3058] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(331), + [3061] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_string, 3), + [3063] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1477), + [3065] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1478), + [3067] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1479), + [3069] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1479), + [3071] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 3, .alias_sequence_id = 4), + [3073] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1481), + [3075] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1482), + [3077] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1483), + [3079] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1484), + [3081] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1485), + [3083] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1487), + [3085] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1488), + [3087] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1490), + [3089] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 3, .alias_sequence_id = 5), + [3091] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1492), + [3093] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1493), + [3095] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 3), + [3097] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1494), + [3099] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command_substitution, 3), + [3101] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_process_substitution, 3), + [3103] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_bracket_command, 4), + [3105] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(354), + [3108] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1495), + [3110] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1496), + [3112] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1497), + [3114] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1497), + [3116] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1499), + [3118] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1500), + [3120] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1501), + [3122] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1502), + [3124] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1503), + [3126] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1505), + [3128] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1506), + [3130] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1508), + [3132] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1510), + [3134] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1511), + [3136] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1512), + [3138] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1513), + [3140] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(375), + [3143] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1515), + [3145] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1516), + [3147] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1517), + [3149] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1517), + [3151] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1519), + [3153] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1520), + [3155] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1521), + [3157] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1522), + [3159] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1523), + [3161] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1525), + [3163] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1526), + [3165] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1528), + [3167] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1530), + [3169] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1531), + [3171] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1532), + [3173] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(394), + [3176] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1533), + [3178] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1534), + [3180] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1535), + [3182] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1535), + [3184] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1537), + [3186] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1538), + [3188] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1539), + [3190] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1540), + [3192] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1541), + [3194] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1543), + [3196] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1544), + [3198] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1546), + [3200] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1548), + [3202] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1549), + [3204] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1550), + [3206] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(413), + [3209] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1551), + [3211] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1552), + [3213] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1553), + [3215] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1553), + [3217] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1555), + [3219] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1556), + [3221] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1557), + [3223] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1558), + [3225] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1559), + [3227] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1561), + [3229] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1562), + [3231] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1564), + [3233] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1566), + [3235] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1567), + [3237] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1568), + [3239] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_string_repeat1, 3), + [3241] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_string_repeat1, 3), + [3243] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1569), + [3245] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1570), + [3247] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1571), + [3249] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1571), + [3251] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1573), + [3253] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1574), + [3255] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1575), + [3257] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1576), + [3259] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1577), + [3261] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1579), + [3263] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1580), + [3265] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1582), + [3267] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1584), + [3269] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1585), + [3271] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1586), + [3273] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1587), + [3275] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1588), + [3277] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1589), + [3279] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1590), + [3281] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1591), + [3283] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4), + [3285] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4), + [3287] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1592), + [3289] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1593), + [3291] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1595), + [3293] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1597), + [3295] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1598), + [3297] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1599), + [3299] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1597), + [3301] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1600), + [3303] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1601), + [3305] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1602), + [3307] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1603), + [3309] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1604), + [3311] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1602), + [3313] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1612), + [3315] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1612), + [3317] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1614), + [3319] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1615), + [3321] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1616), + [3323] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1617), + [3325] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1619), + [3327] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1620), + [3329] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1621), + [3331] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1620), + [3333] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1623), + [3335] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1624), + [3337] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1626), + [3339] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1627), + [3341] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1629), + [3343] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1631), + [3345] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1632), + [3347] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 4), + [3349] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 4), + [3351] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_expansion_repeat1, 2), + [3353] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(451), + [3356] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(452), + [3359] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(453), + [3362] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(454), + [3365] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(455), + [3368] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(451), + [3371] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(456), + [3374] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(458), + [3377] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(459), + [3380] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(460), + [3383] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(455), + [3386] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1633), + [3388] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1634), + [3390] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1634), + [3392] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 7), + [3394] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 7), + [3396] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1636), + [3398] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1637), + [3400] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 8), + [3402] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 8), + [3404] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1638), + [3406] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1639), + [3408] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1640), + [3410] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1641), + [3412] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 5), + [3414] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 5), + [3416] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1643), + [3418] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__assignment, 2), + [3420] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1645), + [3422] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1647), + [3424] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__assignment, 2, .alias_sequence_id = 3), + [3426] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1649), + [3428] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1651), + [3430] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1652), + [3432] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1653), + [3434] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1651), + [3436] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1654), + [3438] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1655), + [3440] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1656), + [3442] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1657), + [3444] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1655), + [3446] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1666), + [3448] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_while_statement, 3), + [3450] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_while_statement, 3), + [3452] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1669), + [3454] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1673), + [3456] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1674), + [3458] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1675), + [3460] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1676), + [3462] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1677), + [3464] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1678), + [3466] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1680), + [3468] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 3), + [3470] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 3), + [3472] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1681), + [3474] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1681), + [3476] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subshell, 3), + [3478] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subshell, 3), + [3480] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1683), + [3482] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1683), + [3484] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1684), + [3486] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bracket_command, 3), + [3488] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bracket_command, 3), + [3490] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1686), + [3492] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1687), + [3494] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1688), + [3496] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1689), + [3498] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1689), + [3500] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1690), + [3502] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1690), + [3504] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1692), + [3506] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1693), + [3508] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1694), + [3510] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1695), + [3512] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1697), + [3514] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1698), + [3516] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1699), + [3518] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1698), + [3520] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1701), + [3522] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1702), + [3524] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1704), + [3526] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1705), + [3528] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1707), + [3530] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1708), + [3532] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(486), + [3535] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), + [3537] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), + [3539] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(487), + [3542] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(488), + [3545] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(489), + [3548] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(490), + [3551] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(491), + [3554] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(492), + [3557] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(493), + [3560] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(494), + [3563] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(495), + [3566] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(490), + [3569] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1709), + [3571] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1709), + [3573] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1711), + [3575] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1712), + [3577] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1713), + [3579] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1714), + [3581] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1716), + [3583] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1717), + [3585] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1718), + [3587] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1717), + [3589] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1720), + [3591] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1721), + [3593] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1723), + [3595] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1724), + [3597] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1726), + [3599] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1727), + [3601] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_unset_command_repeat1, 2), + [3603] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), + [3605] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(499), + [3608] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(500), + [3611] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(501), + [3614] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(502), + [3617] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(503), + [3620] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(504), + [3623] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(505), + [3626] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(506), + [3629] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(507), + [3632] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(502), + [3635] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(510), + [3638] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1728), + [3640] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1729), + [3642] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1730), + [3644] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1730), + [3646] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1732), + [3648] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1733), + [3650] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1734), + [3652] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1735), + [3654] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1736), + [3656] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1738), + [3658] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1739), + [3660] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1741), + [3662] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1743), + [3664] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1744), + [3666] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1745), + [3668] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_pipeline, 3), + [3670] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pipeline, 3), + [3672] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_list, 3, .fragile = true), + [3674] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1747), + [3676] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1748), + [3678] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1748), + [3680] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1750), + [3682] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1752), + [3684] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1754), + [3686] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1755), + [3688] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1756), + [3690] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1754), + [3692] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1757), + [3694] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1758), + [3696] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1759), + [3698] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1760), + [3700] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1758), + [3702] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_heredoc, 1), + [3704] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1768), + [3706] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_heredoc_redirect, 2), + [3708] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_herestring_redirect, 2, .alias_sequence_id = 3), + [3710] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_herestring_redirect, 2), + [3712] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(532), + [3715] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_while_statement_repeat1, 2), + [3717] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), + [3719] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(534), + [3722] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(534), + [3725] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(535), + [3728] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(535), + [3731] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(536), + [3734] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command, 3), + [3736] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command, 3), + [3738] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(533), + [3741] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(537), + [3744] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(159), + [3747] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(160), + [3750] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(538), + [3753] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(162), + [3756] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(163), + [3759] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(164), + [3762] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(165), + [3765] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(538), + [3768] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1771), + [3770] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1773), + [3772] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1775), + [3774] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1776), + [3776] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1777), + [3778] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1775), + [3780] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1778), + [3782] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1779), + [3784] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1780), + [3786] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1781), + [3788] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1779), + [3790] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1790), + [3792] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1791), + [3794] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1792), + [3796] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1792), + [3798] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1794), + [3800] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1795), + [3802] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(556), + [3804] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1795), + [3806] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1796), + [3808] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1796), + [3810] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1798), + [3812] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1799), + [3814] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1800), + [3816] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1801), + [3818] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1803), + [3820] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1804), + [3822] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1805), + [3824] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1804), + [3826] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1807), + [3828] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1808), + [3830] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1810), + [3832] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1811), + [3834] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1813), + [3836] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1814), + [3838] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(549), + [3841] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(550), + [3844] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(551), + [3847] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(552), + [3850] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(553), + [3853] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(554), + [3856] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(555), + [3859] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(556), + [3862] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(557), + [3865] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(553), + [3868] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1815), + [3870] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1815), + [3872] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(566), + [3874] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1817), + [3876] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1818), + [3878] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1819), + [3880] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1820), + [3882] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1822), + [3884] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1823), + [3886] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1824), + [3888] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1823), + [3890] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1826), + [3892] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1827), + [3894] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1829), + [3896] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1830), + [3898] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1832), + [3900] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1833), + [3902] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(560), + [3905] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(561), + [3908] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(562), + [3911] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(563), + [3914] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(564), + [3917] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(565), + [3920] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(566), + [3923] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(567), + [3926] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(563), + [3929] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(569), + [3932] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1834), + [3934] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1835), + [3936] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1836), + [3938] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1836), + [3940] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1838), + [3942] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1839), + [3944] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1840), + [3946] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1841), + [3948] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1842), + [3950] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1844), + [3952] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1845), + [3954] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1847), + [3956] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1849), + [3958] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1850), + [3960] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1851), + [3962] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1853), + [3964] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1854), + [3966] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1854), + [3968] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1855), + [3970] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1857), + [3972] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1859), + [3974] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1860), + [3976] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1861), + [3978] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1859), + [3980] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1862), + [3982] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1863), + [3984] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1864), + [3986] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1865), + [3988] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1863), + [3990] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(590), + [3993] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(592), + [3996] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(592), + [3999] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(593), + [4002] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(591), + [4005] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(594), + [4008] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(181), + [4011] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(182), + [4014] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(595), + [4017] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(184), + [4020] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(185), + [4023] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(186), + [4026] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(187), + [4029] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(595), + [4032] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 3, .alias_sequence_id = 6), + [4034] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 3), + [4036] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1875), + [4038] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1875), + [4040] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1877), + [4042] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1878), + [4044] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1879), + [4046] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1880), + [4048] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1882), + [4050] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1883), + [4052] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1884), + [4054] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1883), + [4056] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1886), + [4058] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1887), + [4060] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1889), + [4062] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1890), + [4064] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1892), + [4066] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1893), + [4068] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_heredoc_repeat1, 1), + [4070] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_heredoc_repeat1, 1), + [4072] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 2), + [4074] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 2), + [4076] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1894), + [4078] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1895), + [4080] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1894), + [4082] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1896), + [4084] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1897), + [4086] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1898), + [4088] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1899), + [4090] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1897), + [4092] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1901), + [4094] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 4), + [4096] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1903), + [4098] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subscript, 5, .alias_sequence_id = 6), + [4100] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1229), + [4103] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1904), + [4105] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subscript, 5), + [4107] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1905), + [4109] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1906), + [4111] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1907), + [4113] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1907), + [4115] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1909), + [4117] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1910), + [4119] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1911), + [4121] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1912), + [4123] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1913), + [4125] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1915), + [4127] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1916), + [4129] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1918), + [4131] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1920), + [4133] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1921), + [4135] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1922), + [4137] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1923), + [4139] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1923), + [4141] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1925), + [4143] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1926), + [4145] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1927), + [4147] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1928), + [4149] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1930), + [4151] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1931), + [4153] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1932), + [4155] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1931), + [4157] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1934), + [4159] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1935), + [4161] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1937), + [4163] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1938), + [4165] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1940), + [4167] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1941), + [4169] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array, 3), + [4171] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_array, 3), + [4173] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), + [4175] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(652), + [4178] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(653), + [4181] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(654), + [4184] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(655), + [4187] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(656), + [4190] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(657), + [4193] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(658), + [4196] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(659), + [4199] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(655), + [4202] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(662), + [4205] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1942), + [4207] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1943), + [4209] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1944), + [4211] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1944), + [4213] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1946), + [4215] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1947), + [4217] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1948), + [4219] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1949), + [4221] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1950), + [4223] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1952), + [4225] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1953), + [4227] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1955), + [4229] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1957), + [4231] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1958), + [4233] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1959), + [4235] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1960), + [4237] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1960), + [4239] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1962), + [4241] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1963), + [4243] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1964), + [4245] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1965), + [4247] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1967), + [4249] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1968), + [4251] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1969), + [4253] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1968), + [4255] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1971), + [4257] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1972), + [4259] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1974), + [4261] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1975), + [4263] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1977), + [4265] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1978), + [4267] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1979), + [4269] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), + [4271] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(680), + [4274] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(681), + [4277] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(682), + [4280] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(683), + [4283] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(684), + [4286] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(685), + [4289] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(686), + [4292] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(687), + [4295] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_group, 3), + [4297] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_do_group, 3), + [4299] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), + [4301] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1981), + [4303] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1982), + [4305] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_else_clause, 2), + [4307] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 5), + [4309] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1984), + [4311] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_if_statement_repeat1, 2), + [4313] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(697), + [4316] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 5, .alias_sequence_id = 3), + [4318] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1986), + [4320] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1987), + [4322] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1988), + [4324] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1991), + [4326] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1993), + [4328] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1994), + [4330] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1995), + [4332] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1993), + [4334] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1996), + [4336] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1998), + [4338] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1999), + [4340] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2000), + [4342] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2001), + [4344] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1999), + [4346] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_case_statement_repeat1, 1), + [4348] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 1), + [4350] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2009), + [4352] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1327), + [4354] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2012), + [4356] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 5), + [4358] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2014), + [4360] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2016), + [4362] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2018), + [4364] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2019), + [4366] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2020), + [4368] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2022), + [4370] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2023), + [4372] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2023), + [4374] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2025), + [4376] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2026), + [4378] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2027), + [4380] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2028), + [4382] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2029), + [4384] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2030), + [4386] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2032), + [4388] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 5), + [4390] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 3), + [4392] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 3), + [4394] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2035), + [4396] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2036), + [4398] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2036), + [4400] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2038), + [4402] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2040), + [4404] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2042), + [4406] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2043), + [4408] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2044), + [4410] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2042), + [4412] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2045), + [4414] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2046), + [4416] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2047), + [4418] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2048), + [4420] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2046), + [4422] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2056), + [4424] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2056), + [4426] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2058), + [4428] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2059), + [4430] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2060), + [4432] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2061), + [4434] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2063), + [4436] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2064), + [4438] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2065), + [4440] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2064), + [4442] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2067), + [4444] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2068), + [4446] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2070), + [4448] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2071), + [4450] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2073), + [4452] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2074), + [4454] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2076), + [4456] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2076), + [4458] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2077), + [4460] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2078), + [4462] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2079), + [4464] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2080), + [4466] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2081), + [4468] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2082), + [4470] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2083), + [4472] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2084), + [4474] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2080), + [4476] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(751), + [4479] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2085), + [4481] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2086), + [4483] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2087), + [4485] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2087), + [4487] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2089), + [4489] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2090), + [4491] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2091), + [4493] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2092), + [4495] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2093), + [4497] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2095), + [4499] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2096), + [4501] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2098), + [4503] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2100), + [4505] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2101), + [4507] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2102), + [4509] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(770), + [4512] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2103), + [4514] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2104), + [4516] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2105), + [4518] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2105), + [4520] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2107), + [4522] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2108), + [4524] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2109), + [4526] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2110), + [4528] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2111), + [4530] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2113), + [4532] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2114), + [4534] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2116), + [4536] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2118), + [4538] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2119), + [4540] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2120), + [4542] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2121), + [4544] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2122), + [4546] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2123), + [4548] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2125), + [4550] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2126), + [4552] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2126), + [4554] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2128), + [4556] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2129), + [4558] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2130), + [4560] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2131), + [4562] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2132), + [4564] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2133), + [4566] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2135), + [4568] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2137), + [4570] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2137), + [4572] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2139), + [4574] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2140), + [4576] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2141), + [4578] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2142), + [4580] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2144), + [4582] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2145), + [4584] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2146), + [4586] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2145), + [4588] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2148), + [4590] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2149), + [4592] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2151), + [4594] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2152), + [4596] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2154), + [4598] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2155), + [4600] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_subshell, 5), + [4602] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 4), + [4604] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2156), + [4606] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2157), + [4608] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2158), + [4610] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 4, .alias_sequence_id = 4), + [4612] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2160), + [4614] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2161), + [4616] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2161), + [4618] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 4, .alias_sequence_id = 7), + [4620] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2163), + [4622] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2164), + [4624] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 4, .alias_sequence_id = 8), + [4626] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2165), + [4628] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2166), + [4630] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2167), + [4632] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2168), + [4634] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 4, .alias_sequence_id = 5), + [4636] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2170), + [4638] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2172), + [4640] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2173), + [4642] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2174), + [4644] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2176), + [4646] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2177), + [4648] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2177), + [4650] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2179), + [4652] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2180), + [4654] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2181), + [4656] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2182), + [4658] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2183), + [4660] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2184), + [4662] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2186), + [4664] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2188), + [4666] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2189), + [4668] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2190), + [4670] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2191), + [4672] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2193), + [4674] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2194), + [4676] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2194), + [4678] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2196), + [4680] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2197), + [4682] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2198), + [4684] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2199), + [4686] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2200), + [4688] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2201), + [4690] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2203), + [4692] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2205), + [4694] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2206), + [4696] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2207), + [4698] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2209), + [4700] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2210), + [4702] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2210), + [4704] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2212), + [4706] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2213), + [4708] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2214), + [4710] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2215), + [4712] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2216), + [4714] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2217), + [4716] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2219), + [4718] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2221), + [4720] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2222), + [4722] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2223), + [4724] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2225), + [4726] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2226), + [4728] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2226), + [4730] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2228), + [4732] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2229), + [4734] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2230), + [4736] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2231), + [4738] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2232), + [4740] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2233), + [4742] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2235), + [4744] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2237), + [4746] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2238), + [4748] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2239), + [4750] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2241), + [4752] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2242), + [4754] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2242), + [4756] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2244), + [4758] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2245), + [4760] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2246), + [4762] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2247), + [4764] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2248), + [4766] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2249), + [4768] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2251), + [4770] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2253), + [4772] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2254), + [4774] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subscript, 4, .alias_sequence_id = 6), + [4776] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_subscript, 4, .alias_sequence_id = 6), + [4778] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2255), + [4780] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2256), + [4782] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subscript, 4), + [4784] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_subscript, 4), + [4786] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2257), + [4788] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2257), + [4790] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 9), + [4792] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 9), + [4794] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2259), + [4796] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5), + [4798] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5), + [4800] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2260), + [4802] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2261), + [4804] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2262), + [4806] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2264), + [4808] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2265), + [4810] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2266), + [4812] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2265), + [4814] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2268), + [4816] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2269), + [4818] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2271), + [4820] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2272), + [4822] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2274), + [4824] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2275), + [4826] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(959), + [4829] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2276), + [4831] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2277), + [4833] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2278), + [4835] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2278), + [4837] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2280), + [4839] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2281), + [4841] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2282), + [4843] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2283), + [4845] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2284), + [4847] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2286), + [4849] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2287), + [4851] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2289), + [4853] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2291), + [4855] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2292), + [4857] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2293), + [4859] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 10), + [4861] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 10), + [4863] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2294), + [4865] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2295), + [4867] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2296), + [4869] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2297), + [4871] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 7), + [4873] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 7), + [4875] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2299), + [4877] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 8), + [4879] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 8), + [4881] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2301), + [4883] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 11), + [4885] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 11), + [4887] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2303), + [4889] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 12), + [4891] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 12), + [4893] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2304), + [4895] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_array, 2), + [4897] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2305), + [4899] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2306), + [4901] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2306), + [4903] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2308), + [4905] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2309), + [4907] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2310), + [4909] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2311), + [4911] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2313), + [4913] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2314), + [4915] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2315), + [4917] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2314), + [4919] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2317), + [4921] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2318), + [4923] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2320), + [4925] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2321), + [4927] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2323), + [4929] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2324), + [4931] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2325), + [4933] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_group, 2), + [4935] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2326), + [4937] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_while_statement, 4), + [4939] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_while_statement, 4), + [4941] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 4), + [4943] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 4), + [4945] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2327), + [4947] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2327), + [4949] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2330), + [4951] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2333), + [4953] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2334), + [4955] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2337), + [4957] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_compound_statement, 2), + [4959] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2339), + [4961] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2340), + [4963] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2340), + [4965] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2341), + [4967] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2342), + [4969] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2343), + [4971] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2344), + [4973] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2345), + [4975] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2346), + [4977] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2347), + [4979] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2348), + [4981] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2344), + [4983] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 4), + [4985] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 4), + [4987] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subshell, 4), + [4989] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subshell, 4), + [4991] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2350), + [4993] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bracket_command, 4), + [4995] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bracket_command, 4), + [4997] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2351), + [4999] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1020), + [5002] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2353), + [5004] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2354), + [5006] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2355), + [5008] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2355), + [5010] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2357), + [5012] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2358), + [5014] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2359), + [5016] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2360), + [5018] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2361), + [5020] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2363), + [5022] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2364), + [5024] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2366), + [5026] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2368), + [5028] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2369), + [5030] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2370), + [5032] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1039), + [5035] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2371), + [5037] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2372), + [5039] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2373), + [5041] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2373), + [5043] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2375), + [5045] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2376), + [5047] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2377), + [5049] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2378), + [5051] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2379), + [5053] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2381), + [5055] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2382), + [5057] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2384), + [5059] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2386), + [5061] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2387), + [5063] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2388), + [5065] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2389), + [5067] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2390), + [5069] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2391), + [5071] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2393), + [5073] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2394), + [5075] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2394), + [5077] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2396), + [5079] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2397), + [5081] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2398), + [5083] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2399), + [5085] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2400), + [5087] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2401), + [5089] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2403), + [5091] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2406), + [5093] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2406), + [5095] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2408), + [5097] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2409), + [5099] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2410), + [5101] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2411), + [5103] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2413), + [5105] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2414), + [5107] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2415), + [5109] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2414), + [5111] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2417), + [5113] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2418), + [5115] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2420), + [5117] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2421), + [5119] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2423), + [5121] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2424), + [5123] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_heredoc, 2), + [5125] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2425), + [5127] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command, 4), + [5129] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command, 4), + [5131] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2426), + [5133] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2426), + [5135] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2428), + [5137] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2429), + [5139] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2430), + [5141] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2431), + [5143] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2433), + [5145] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2434), + [5147] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2435), + [5149] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2434), + [5151] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2437), + [5153] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2438), + [5155] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2440), + [5157] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2441), + [5159] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2443), + [5161] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2444), + [5163] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2446), + [5165] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2446), + [5167] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2447), + [5169] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2448), + [5171] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2449), + [5173] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2450), + [5175] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2451), + [5177] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2452), + [5179] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2453), + [5181] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2454), + [5183] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2450), + [5185] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1118), + [5188] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2455), + [5190] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2456), + [5192] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2457), + [5194] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2457), + [5196] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2459), + [5198] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2460), + [5200] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2461), + [5202] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2462), + [5204] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2463), + [5206] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2465), + [5208] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2466), + [5210] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2468), + [5212] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2470), + [5214] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2471), + [5216] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2472), + [5218] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1137), + [5221] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2473), + [5223] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2474), + [5225] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2475), + [5227] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2475), + [5229] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2477), + [5231] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2478), + [5233] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2479), + [5235] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2480), + [5237] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2481), + [5239] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2483), + [5241] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2484), + [5243] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2486), + [5245] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2488), + [5247] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2489), + [5249] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2490), + [5251] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2491), + [5253] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2492), + [5255] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2493), + [5257] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2495), + [5259] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2496), + [5261] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2496), + [5263] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2498), + [5265] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2499), + [5267] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2500), + [5269] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2501), + [5271] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2502), + [5273] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2503), + [5275] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2505), + [5277] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2507), + [5279] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2507), + [5281] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2509), + [5283] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2510), + [5285] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2511), + [5287] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2512), + [5289] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2514), + [5291] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2515), + [5293] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2516), + [5295] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2515), + [5297] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2518), + [5299] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2519), + [5301] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2521), + [5303] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2522), + [5305] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2524), + [5307] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2525), + [5309] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1200), + [5312] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2526), + [5314] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2527), + [5316] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2528), + [5318] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2528), + [5320] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2530), + [5322] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2531), + [5324] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2532), + [5326] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2533), + [5328] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2534), + [5330] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2536), + [5332] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2537), + [5334] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2539), + [5336] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2541), + [5338] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2542), + [5340] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2543), + [5342] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2544), + [5344] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2545), + [5346] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2546), + [5348] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2548), + [5350] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2549), + [5352] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2550), + [5354] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2549), + [5356] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2552), + [5358] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2553), + [5360] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2555), + [5362] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2556), + [5364] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 3), + [5366] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 3), + [5368] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_heredoc_repeat1, 2), SHIFT_REPEAT(1218), + [5371] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_heredoc_repeat1, 2), + [5373] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_heredoc_repeat1, 2), SHIFT_REPEAT(1220), + [5376] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_heredoc_repeat1, 2), SHIFT_REPEAT(1221), + [5379] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subscript, 6, .alias_sequence_id = 6), + [5381] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subscript, 6), + [5383] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2558), + [5385] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2559), + [5387] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2560), + [5389] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2562), + [5391] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2563), + [5393] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2563), + [5395] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2565), + [5397] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2566), + [5399] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2567), + [5401] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2568), + [5403] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2569), + [5405] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2570), + [5407] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2572), + [5409] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1250), + [5412] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2574), + [5414] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2575), + [5416] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2576), + [5418] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2576), + [5420] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2578), + [5422] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2579), + [5424] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2580), + [5426] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2581), + [5428] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2582), + [5430] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2584), + [5432] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2585), + [5434] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2587), + [5436] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2589), + [5438] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2590), + [5440] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2591), + [5442] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2592), + [5444] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2593), + [5446] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2594), + [5448] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2596), + [5450] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2597), + [5452] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2597), + [5454] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2599), + [5456] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2600), + [5458] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2601), + [5460] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2602), + [5462] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2603), + [5464] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2604), + [5466] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2606), + [5468] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1289), + [5471] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2608), + [5473] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2609), + [5475] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2610), + [5477] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2610), + [5479] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2612), + [5481] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2613), + [5483] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2614), + [5485] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2615), + [5487] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2616), + [5489] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2618), + [5491] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2619), + [5493] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2621), + [5495] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2623), + [5497] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2624), + [5499] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2625), + [5501] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2626), + [5503] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 6, .alias_sequence_id = 5), + [5505] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_elif_clause, 3), + [5507] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 6), + [5509] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2629), + [5511] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2630), + [5513] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2630), + [5515] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2631), + [5517] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2632), + [5519] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2632), + [5521] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2634), + [5523] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2635), + [5525] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_last_case_item, 2, .alias_sequence_id = 1), + [5527] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2636), + [5529] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2637), + [5531] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2638), + [5533] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2639), + [5535] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2640), + [5537] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2641), + [5539] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2642), + [5541] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2643), + [5543] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2644), + [5545] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2645), + [5547] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2646), + [5549] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2647), + [5551] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2648), + [5553] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2649), + [5555] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2650), + [5557] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2659), + [5559] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2662), + [5561] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_last_case_item, 2), + [5563] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2663), + [5565] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2667), + [5567] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2668), + [5569] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2669), + [5571] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2670), + [5573] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2672), + [5575] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2673), + [5577] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2674), + [5579] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2673), + [5581] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2676), + [5583] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2677), + [5585] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2679), + [5587] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2680), + [5589] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2682), + [5591] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2683), + [5593] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 13), + [5595] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2684), + [5597] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2685), + [5600] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1325), + [5603] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1326), + [5606] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2686), + [5609] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1328), + [5612] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1329), + [5615] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1330), + [5618] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1331), + [5621] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2686), + [5624] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 3), + [5626] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 14), + [5628] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2689), + [5630] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 6), + [5632] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2691), + [5634] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2692), + [5636] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2693), + [5638] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2694), + [5640] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2696), + [5642] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2698), + [5644] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2700), + [5646] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2701), + [5648] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 6), + [5650] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2702), + [5652] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2702), + [5654] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2704), + [5656] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2705), + [5658] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2706), + [5660] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2707), + [5662] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2709), + [5664] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2710), + [5666] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2711), + [5668] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2710), + [5670] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2713), + [5672] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2714), + [5674] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2716), + [5676] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2717), + [5678] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2719), + [5680] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2720), + [5682] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1373), + [5685] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2721), + [5687] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2722), + [5689] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2723), + [5691] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2723), + [5693] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2725), + [5695] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2726), + [5697] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2727), + [5699] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2728), + [5701] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2729), + [5703] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2731), + [5705] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2732), + [5707] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2734), + [5709] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2736), + [5711] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2737), + [5713] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2738), + [5715] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2739), + [5717] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2740), + [5719] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2740), + [5721] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2741), + [5723] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2743), + [5725] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2745), + [5727] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2746), + [5729] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2747), + [5731] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2745), + [5733] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2748), + [5735] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2749), + [5737] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2750), + [5739] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2751), + [5741] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2749), + [5743] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2759), + [5745] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2760), + [5747] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2761), + [5749] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2763), + [5751] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2764), + [5753] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2764), + [5755] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2766), + [5757] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2767), + [5759] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2768), + [5761] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2769), + [5763] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2770), + [5765] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2771), + [5767] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2773), + [5769] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2775), + [5771] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2776), + [5773] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2777), + [5775] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2779), + [5777] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2780), + [5779] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2780), + [5781] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2782), + [5783] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2783), + [5785] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2784), + [5787] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2785), + [5789] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2786), + [5791] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2787), + [5793] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2789), + [5795] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2791), + [5797] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2792), + [5799] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2793), + [5801] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2794), + [5803] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2796), + [5805] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2798), + [5807] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2800), + [5809] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2801), + [5811] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1457), + [5814] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2802), + [5816] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2803), + [5818] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2804), + [5820] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2804), + [5822] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2806), + [5824] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2807), + [5826] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2808), + [5828] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2809), + [5830] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2810), + [5832] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2812), + [5834] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2813), + [5836] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2815), + [5838] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2817), + [5840] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2818), + [5842] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2819), + [5844] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 9), + [5846] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 5), + [5848] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 10), + [5850] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2820), + [5852] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2821), + [5854] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2822), + [5856] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2823), + [5858] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 7), + [5860] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2825), + [5862] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 8), + [5864] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2827), + [5866] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 11), + [5868] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2829), + [5870] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 12), + [5872] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2830), + [5874] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2831), + [5876] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2832), + [5878] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2833), + [5880] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2834), + [5882] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2836), + [5884] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2838), + [5886] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2840), + [5888] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2841), + [5890] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2842), + [5892] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2843), + [5894] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2844), + [5896] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2845), + [5898] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2847), + [5900] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2849), + [5902] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2851), + [5904] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2852), + [5906] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2853), + [5908] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2854), + [5910] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2855), + [5912] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2856), + [5914] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2858), + [5916] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2860), + [5918] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2862), + [5920] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2863), + [5922] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2864), + [5924] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2865), + [5926] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2866), + [5928] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2867), + [5930] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2869), + [5932] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2871), + [5934] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2873), + [5936] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2874), + [5938] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2875), + [5940] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2876), + [5942] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2877), + [5944] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2878), + [5946] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2880), + [5948] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2882), + [5950] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2884), + [5952] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2885), + [5954] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2886), + [5956] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subscript, 5, .alias_sequence_id = 6), + [5958] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_subscript, 5, .alias_sequence_id = 6), + [5960] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2887), + [5962] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subscript, 5), + [5964] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_subscript, 5), + [5966] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1592), + [5969] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2888), + [5971] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2889), + [5973] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2890), + [5975] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2890), + [5977] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2892), + [5979] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2893), + [5981] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2894), + [5983] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2895), + [5985] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2896), + [5987] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2898), + [5989] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2899), + [5991] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2901), + [5993] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2903), + [5995] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2904), + [5997] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2905), + [5999] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2906), + [6001] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2907), + [6003] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2908), + [6005] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2910), + [6007] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2911), + [6009] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2911), + [6011] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2913), + [6013] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2914), + [6015] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2915), + [6017] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2916), + [6019] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2917), + [6021] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2918), + [6023] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2920), + [6025] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 10), + [6027] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 10), + [6029] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 15), + [6031] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 15), + [6033] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6), + [6035] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6), + [6037] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 16), + [6039] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 16), + [6041] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2922), + [6043] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 17), + [6045] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 17), + [6047] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2923), + [6049] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 18), + [6051] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 18), + [6053] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2924), + [6055] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 11), + [6057] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 11), + [6059] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 12), + [6061] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 12), + [6063] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_array, 3), + [6065] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1647), + [6068] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2925), + [6070] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2926), + [6072] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2927), + [6074] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2927), + [6076] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2929), + [6078] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2930), + [6080] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2931), + [6082] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2932), + [6084] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2933), + [6086] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2935), + [6088] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2936), + [6090] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2938), + [6092] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2940), + [6094] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2941), + [6096] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2942), + [6098] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2943), + [6100] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_group, 3), + [6102] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 5), + [6104] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 5), + [6106] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2945), + [6108] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 5, .alias_sequence_id = 3), + [6110] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 5, .alias_sequence_id = 3), + [6112] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2947), + [6114] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2949), + [6116] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 5), + [6118] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 5), + [6120] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2951), + [6122] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2953), + [6124] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 5), + [6126] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 5), + [6128] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_compound_statement, 3), + [6130] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2956), + [6132] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2957), + [6134] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2957), + [6136] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2959), + [6138] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2961), + [6140] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2963), + [6142] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2964), + [6144] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2965), + [6146] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2963), + [6148] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2966), + [6150] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2967), + [6152] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2968), + [6154] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2969), + [6156] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2967), + [6158] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subshell, 5), + [6160] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subshell, 5), + [6162] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2977), + [6164] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2978), + [6166] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2979), + [6168] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2980), + [6170] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2982), + [6172] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2983), + [6174] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2983), + [6176] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2985), + [6178] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2986), + [6180] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2987), + [6182] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2988), + [6184] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2989), + [6186] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2990), + [6188] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2992), + [6190] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2994), + [6192] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2995), + [6194] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2996), + [6196] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2998), + [6198] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2999), + [6200] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2999), + [6202] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3001), + [6204] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3002), + [6206] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3003), + [6208] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3004), + [6210] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3005), + [6212] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3006), + [6214] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3008), + [6216] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3010), + [6218] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3011), + [6220] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3012), + [6222] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3013), + [6224] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3015), + [6226] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3017), + [6228] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3019), + [6230] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3020), + [6232] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1750), + [6235] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3021), + [6237] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3022), + [6239] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3023), + [6241] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3023), + [6243] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3025), + [6245] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3026), + [6247] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3027), + [6249] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3028), + [6251] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3029), + [6253] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3031), + [6255] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3032), + [6257] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3034), + [6259] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3036), + [6261] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3037), + [6263] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3038), + [6265] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_heredoc, 3), + [6267] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1771), + [6270] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3039), + [6272] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3040), + [6274] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3041), + [6276] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3041), + [6278] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3043), + [6280] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3044), + [6282] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3045), + [6284] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3046), + [6286] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3047), + [6288] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3049), + [6290] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3050), + [6292] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3052), + [6294] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3054), + [6296] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3055), + [6298] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3056), + [6300] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3057), + [6302] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3058), + [6304] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3058), + [6306] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3059), + [6308] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3061), + [6310] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3063), + [6312] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3064), + [6314] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3065), + [6316] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3063), + [6318] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3066), + [6320] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3067), + [6322] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3068), + [6324] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3069), + [6326] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3067), + [6328] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3077), + [6330] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3078), + [6332] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3079), + [6334] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3081), + [6336] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3082), + [6338] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3082), + [6340] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3084), + [6342] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3085), + [6344] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3086), + [6346] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3087), + [6348] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3088), + [6350] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3089), + [6352] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3091), + [6354] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3093), + [6356] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3094), + [6358] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3095), + [6360] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3097), + [6362] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3098), + [6364] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3098), + [6366] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3100), + [6368] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3101), + [6370] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3102), + [6372] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3103), + [6374] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3104), + [6376] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3105), + [6378] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3107), + [6380] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3109), + [6382] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3110), + [6384] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3111), + [6386] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3112), + [6388] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3114), + [6390] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3116), + [6392] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3118), + [6394] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3119), + [6396] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1855), + [6399] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3120), + [6401] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3121), + [6403] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3122), + [6405] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3122), + [6407] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3124), + [6409] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3125), + [6411] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3126), + [6413] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3127), + [6415] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3128), + [6417] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3130), + [6419] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3131), + [6421] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3133), + [6423] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3135), + [6425] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3136), + [6427] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3137), + [6429] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3138), + [6431] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3139), + [6433] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3140), + [6435] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3142), + [6437] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3143), + [6439] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3143), + [6441] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3145), + [6443] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3146), + [6445] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3147), + [6447] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3148), + [6449] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3149), + [6451] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3150), + [6453] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3152), + [6455] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3154), + [6457] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3155), + [6459] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3156), + [6461] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3156), + [6463] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3158), + [6465] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3159), + [6467] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3160), + [6469] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3161), + [6471] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3162), + [6473] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3164), + [6475] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3165), + [6477] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3167), + [6479] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3169), + [6481] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3170), + [6483] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3171), + [6485] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3172), + [6487] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3173), + [6489] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3174), + [6491] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3175), + [6493] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3177), + [6495] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3179), + [6497] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3181), + [6499] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3182), + [6501] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3183), + [6503] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3184), + [6505] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3185), + [6507] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3187), + [6509] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3188), + [6511] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3188), + [6513] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3190), + [6515] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3191), + [6517] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3192), + [6519] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3193), + [6521] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3194), + [6523] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3195), + [6525] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3197), + [6527] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3199), + [6529] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3200), + [6531] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3201), + [6533] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3202), + [6535] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3204), + [6537] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3206), + [6539] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3208), + [6541] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3209), + [6543] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3210), + [6545] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3211), + [6547] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3212), + [6549] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3214), + [6551] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3215), + [6553] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3215), + [6555] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3217), + [6557] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3218), + [6559] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3219), + [6561] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3220), + [6563] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3221), + [6565] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3222), + [6567] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3224), + [6569] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3226), + [6571] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_elif_clause, 4), + [6573] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 7), + [6575] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_item_repeat1, 2, .alias_sequence_id = 3), + [6577] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_item_repeat1, 2), + [6579] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3227), + [6581] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_last_case_item, 3, .alias_sequence_id = 1), + [6583] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 3, .alias_sequence_id = 1), + [6585] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 3, .alias_sequence_id = 1), + [6587] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 3, .alias_sequence_id = 1), + [6589] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3230), + [6591] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3233), + [6593] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3234), + [6595] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3235), + [6597] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3236), + [6599] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3237), + [6601] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3238), + [6603] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3239), + [6605] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3240), + [6607] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3241), + [6609] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3242), + [6611] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3246), + [6613] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3247), + [6615] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3248), + [6617] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3249), + [6619] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3250), + [6621] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3251), + [6623] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3252), + [6625] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3253), + [6627] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3254), + [6629] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3257), + [6631] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3259), + [6633] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3261), + [6635] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3262), + [6637] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3263), + [6639] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3261), + [6641] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3264), + [6643] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3265), + [6645] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3266), + [6647] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3267), + [6649] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3265), + [6651] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3275), + [6653] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_last_case_item, 3, .alias_sequence_id = 1), + [6655] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3276), + [6657] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3277), + [6659] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3278), + [6661] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3279), + [6663] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3280), + [6665] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3281), + [6667] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3282), + [6669] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3283), + [6671] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3284), + [6673] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2643), + [6675] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2644), + [6677] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3285), + [6679] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2646), + [6681] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2647), + [6683] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2648), + [6685] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2649), + [6687] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3289), + [6689] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2642), + [6691] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2645), + [6693] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_item_repeat1, 2), SHIFT_REPEAT(1987), + [6696] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1986), + [6699] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_last_case_item, 3), + [6701] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 3), + [6703] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 3), + [6705] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 3), + [6707] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_last_case_item, 3), + [6709] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3295), + [6711] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3296), + [6713] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3300), + [6715] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3301), + [6717] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3302), + [6719] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3302), + [6721] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3304), + [6723] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3305), + [6725] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3306), + [6727] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3307), + [6729] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3308), + [6731] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3310), + [6733] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3311), + [6735] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3313), + [6737] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3315), + [6739] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3316), + [6741] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3317), + [6743] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 7, .alias_sequence_id = 19), + [6745] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3318), + [6747] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3320), + [6749] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3322), + [6751] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 7, .alias_sequence_id = 20), + [6753] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3323), + [6755] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3324), + [6757] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3325), + [6759] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3326), + [6761] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2038), + [6764] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3327), + [6766] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3328), + [6768] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3329), + [6770] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3329), + [6772] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3331), + [6774] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3332), + [6776] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3333), + [6778] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3334), + [6780] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3335), + [6782] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3337), + [6784] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3338), + [6786] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3340), + [6788] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3342), + [6790] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3343), + [6792] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3344), + [6794] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3345), + [6796] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3346), + [6798] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3347), + [6800] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3349), + [6802] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3350), + [6804] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3350), + [6806] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3352), + [6808] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3353), + [6810] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3354), + [6812] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3355), + [6814] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3356), + [6816] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3357), + [6818] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3359), + [6820] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3361), + [6822] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3361), + [6824] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3363), + [6826] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3364), + [6828] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3365), + [6830] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3366), + [6832] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3368), + [6834] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3369), + [6836] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3370), + [6838] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3369), + [6840] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3372), + [6842] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3373), + [6844] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3375), + [6846] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3376), + [6848] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3378), + [6850] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3379), + [6852] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3380), + [6854] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3381), + [6856] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3382), + [6858] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3383), + [6860] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3385), + [6862] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3387), + [6864] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3389), + [6866] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3390), + [6868] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3391), + [6870] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3392), + [6872] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3393), + [6874] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3394), + [6876] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3396), + [6878] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3398), + [6880] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3400), + [6882] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3401), + [6884] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3402), + [6886] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3403), + [6888] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3404), + [6890] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3405), + [6892] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3406), + [6894] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3407), + [6896] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3409), + [6898] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3410), + [6900] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3410), + [6902] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3412), + [6904] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3413), + [6906] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3414), + [6908] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3415), + [6910] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3416), + [6912] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3417), + [6914] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3419), + [6916] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 10), + [6918] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 15), + [6920] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 6), + [6922] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 16), + [6924] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3421), + [6926] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 17), + [6928] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3422), + [6930] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 18), + [6932] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3423), + [6934] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 11), + [6936] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 12), + [6938] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3424), + [6940] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3425), + [6942] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3426), + [6944] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3427), + [6946] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3428), + [6948] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3429), + [6950] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3430), + [6952] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3431), + [6954] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3432), + [6956] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3433), + [6958] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3434), + [6960] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3435), + [6962] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3436), + [6964] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3437), + [6966] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3438), + [6968] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subscript, 6, .alias_sequence_id = 6), + [6970] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_subscript, 6, .alias_sequence_id = 6), + [6972] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subscript, 6), + [6974] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_subscript, 6), + [6976] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3439), + [6978] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3440), + [6980] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3441), + [6982] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3443), + [6984] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3444), + [6986] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3444), + [6988] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3446), + [6990] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3447), + [6992] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3448), + [6994] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3449), + [6996] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3450), + [6998] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3451), + [7000] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3453), + [7002] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3455), + [7004] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3456), + [7006] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3457), + [7008] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3458), + [7010] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3460), + [7012] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3462), + [7014] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3464), + [7016] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3465), + [7018] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 7, .alias_sequence_id = 16), + [7020] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 7, .alias_sequence_id = 16), + [7022] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 7, .alias_sequence_id = 17), + [7024] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 7, .alias_sequence_id = 17), + [7026] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 7, .alias_sequence_id = 18), + [7028] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 7, .alias_sequence_id = 18), + [7030] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3466), + [7032] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3467), + [7034] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3468), + [7036] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3470), + [7038] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3471), + [7040] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3471), + [7042] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3473), + [7044] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3474), + [7046] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3475), + [7048] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3476), + [7050] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3477), + [7052] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3478), + [7054] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3480), + [7056] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3482), + [7058] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 6, .alias_sequence_id = 5), + [7060] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 6, .alias_sequence_id = 5), + [7062] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 6), + [7064] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 6), + [7066] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3484), + [7068] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 13), + [7070] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 13), + [7072] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3485), + [7074] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 3), + [7076] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 3), + [7078] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 14), + [7080] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 14), + [7082] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3487), + [7084] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 6), + [7086] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 6), + [7088] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 6), + [7090] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 6), + [7092] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3489), + [7094] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3489), + [7096] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3491), + [7098] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3492), + [7100] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3493), + [7102] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3494), + [7104] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3496), + [7106] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3497), + [7108] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3498), + [7110] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3497), + [7112] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3500), + [7114] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3501), + [7116] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3503), + [7118] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3504), + [7120] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3506), + [7122] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3507), + [7124] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3508), + [7126] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3509), + [7128] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3510), + [7130] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3511), + [7132] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3513), + [7134] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3515), + [7136] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3517), + [7138] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3518), + [7140] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3519), + [7142] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3520), + [7144] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3521), + [7146] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3522), + [7148] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3524), + [7150] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3526), + [7152] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3528), + [7154] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3529), + [7156] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3530), + [7158] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3531), + [7160] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3532), + [7162] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3533), + [7164] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3534), + [7166] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3535), + [7168] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3537), + [7170] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3538), + [7172] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3538), + [7174] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3540), + [7176] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3541), + [7178] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3542), + [7180] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3543), + [7182] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3544), + [7184] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3545), + [7186] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3547), + [7188] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3549), + [7190] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3550), + [7192] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3551), + [7194] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3553), + [7196] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3554), + [7198] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3554), + [7200] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3556), + [7202] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3557), + [7204] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3558), + [7206] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3559), + [7208] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3560), + [7210] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3561), + [7212] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3563), + [7214] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3565), + [7216] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3565), + [7218] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3567), + [7220] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3568), + [7222] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3569), + [7224] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3570), + [7226] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3572), + [7228] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3573), + [7230] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3574), + [7232] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3573), + [7234] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3576), + [7236] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3577), + [7238] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3579), + [7240] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3580), + [7242] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3582), + [7244] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3583), + [7246] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3584), + [7248] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3585), + [7250] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3586), + [7252] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3587), + [7254] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3589), + [7256] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3591), + [7258] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3593), + [7260] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3594), + [7262] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3595), + [7264] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3596), + [7266] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3597), + [7268] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3598), + [7270] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3600), + [7272] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3602), + [7274] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3604), + [7276] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3605), + [7278] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3606), + [7280] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3607), + [7282] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3608), + [7284] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3609), + [7286] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3610), + [7288] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3611), + [7290] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3613), + [7292] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3614), + [7294] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3614), + [7296] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3616), + [7298] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3617), + [7300] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3618), + [7302] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3619), + [7304] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3620), + [7306] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3621), + [7308] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3623), + [7310] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3625), + [7312] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3626), + [7314] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3627), + [7316] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3628), + [7318] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3630), + [7320] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3632), + [7322] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3634), + [7324] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3635), + [7326] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3636), + [7328] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3637), + [7330] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3638), + [7332] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3640), + [7334] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3641), + [7336] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3641), + [7338] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3643), + [7340] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3644), + [7342] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3645), + [7344] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3646), + [7346] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3647), + [7348] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3648), + [7350] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3650), + [7352] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3652), + [7354] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3653), + [7356] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3654), + [7358] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3655), + [7360] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3656), + [7362] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3657), + [7364] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3658), + [7366] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3660), + [7368] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3662), + [7370] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3664), + [7372] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3665), + [7374] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3666), + [7376] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3667), + [7378] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3668), + [7380] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3669), + [7382] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3670), + [7384] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3671), + [7386] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3672), + [7388] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3674), + [7390] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3676), + [7392] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3678), + [7394] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3679), + [7396] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3680), + [7398] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3681), + [7400] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3682), + [7402] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3683), + [7404] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3684), + [7406] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3685), + [7408] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3686), + [7410] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3687), + [7412] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3688), + [7414] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3689), + [7416] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3685), + [7418] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3691), + [7420] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3693), + [7422] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3694), + [7424] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3696), + [7426] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3698), + [7428] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3235), + [7430] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3700), + [7432] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3701), + [7434] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3702), + [7436] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3700), + [7438] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3703), + [7440] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3704), + [7442] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3705), + [7444] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3706), + [7446] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3704), + [7448] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3715), + [7450] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3717), + [7452] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3247), + [7454] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3719), + [7456] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3720), + [7458] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3721), + [7460] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3719), + [7462] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3722), + [7464] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3723), + [7466] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3724), + [7468] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3725), + [7470] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3723), + [7472] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3734), + [7474] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3734), + [7476] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3736), + [7478] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3737), + [7480] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3738), + [7482] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3739), + [7484] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3741), + [7486] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3742), + [7488] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3743), + [7490] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3742), + [7492] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3745), + [7494] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3746), + [7496] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3748), + [7498] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3749), + [7500] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3751), + [7502] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3752), + [7504] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3753), + [7506] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_last_case_item, 4, .alias_sequence_id = 1), + [7508] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 4, .alias_sequence_id = 1), + [7510] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 4, .alias_sequence_id = 1), + [7512] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 4, .alias_sequence_id = 1), + [7514] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3757), + [7516] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3757), + [7518] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3758), + [7520] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3759), + [7522] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3760), + [7524] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3761), + [7526] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3762), + [7528] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3763), + [7530] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3764), + [7532] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3765), + [7534] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3766), + [7536] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3767), + [7538] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3768), + [7540] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3764), + [7542] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3769), + [7544] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3770), + [7546] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3770), + [7548] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_last_case_item, 4, .alias_sequence_id = 1), + [7550] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3774), + [7552] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3778), + [7554] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_last_case_item, 4), + [7556] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 4), + [7558] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 4), + [7560] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 4), + [7562] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_last_case_item, 4), + [7564] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3781), + [7566] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3782), + [7568] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3785), + [7570] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3786), + [7572] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3787), + [7574] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3789), + [7576] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3790), + [7578] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3790), + [7580] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3792), + [7582] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3793), + [7584] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3794), + [7586] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3795), + [7588] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3796), + [7590] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3797), + [7592] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3799), + [7594] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3801), + [7596] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3805), + [7598] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3806), + [7600] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3810), + [7602] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 8, .alias_sequence_id = 21), + [7604] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 8, .alias_sequence_id = 22), + [7606] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3811), + [7608] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3812), + [7610] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3813), + [7612] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3815), + [7614] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3816), + [7616] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3816), + [7618] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3818), + [7620] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3819), + [7622] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3820), + [7624] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3821), + [7626] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3822), + [7628] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3823), + [7630] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3825), + [7632] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3827), + [7634] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3828), + [7636] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3829), + [7638] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3830), + [7640] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3832), + [7642] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3834), + [7644] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3836), + [7646] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3837), + [7648] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2741), + [7651] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3838), + [7653] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3839), + [7655] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3840), + [7657] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3840), + [7659] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3842), + [7661] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3843), + [7663] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3844), + [7665] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3845), + [7667] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3846), + [7669] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3848), + [7671] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3849), + [7673] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3851), + [7675] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3853), + [7677] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3854), + [7679] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3855), + [7681] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3856), + [7683] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3857), + [7685] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3858), + [7687] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3859), + [7689] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3860), + [7691] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3861), + [7693] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3862), + [7695] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3863), + [7697] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3864), + [7699] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3865), + [7701] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3867), + [7703] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3869), + [7705] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3871), + [7707] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3872), + [7709] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 7, .alias_sequence_id = 16), + [7711] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 7, .alias_sequence_id = 17), + [7713] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 7, .alias_sequence_id = 18), + [7715] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3873), + [7717] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3874), + [7719] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3875), + [7721] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3876), + [7723] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3878), + [7725] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3880), + [7727] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3882), + [7729] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3883), + [7731] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3884), + [7733] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3885), + [7735] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3886), + [7737] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3887), + [7739] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3888), + [7741] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3889), + [7743] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3890), + [7745] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3892), + [7747] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3894), + [7749] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3896), + [7751] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3897), + [7753] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3898), + [7755] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 7), + [7757] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 7), + [7759] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 7, .alias_sequence_id = 19), + [7761] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 7, .alias_sequence_id = 19), + [7763] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3899), + [7765] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 7, .alias_sequence_id = 20), + [7767] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 7, .alias_sequence_id = 20), + [7769] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3900), + [7771] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2959), + [7774] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3901), + [7776] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3902), + [7778] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3903), + [7780] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3903), + [7782] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3905), + [7784] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3906), + [7786] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3907), + [7788] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3908), + [7790] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3909), + [7792] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3911), + [7794] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3912), + [7796] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3914), + [7798] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3916), + [7800] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3917), + [7802] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3918), + [7804] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3919), + [7806] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3920), + [7808] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3921), + [7810] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3922), + [7812] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3923), + [7814] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3924), + [7816] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3925), + [7818] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3926), + [7820] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3927), + [7822] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3928), + [7824] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3930), + [7826] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3932), + [7828] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3934), + [7830] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3935), + [7832] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3936), + [7834] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3937), + [7836] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3938), + [7838] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3939), + [7840] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3941), + [7842] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3943), + [7844] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3945), + [7846] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3946), + [7848] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3059), + [7851] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3947), + [7853] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3948), + [7855] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3949), + [7857] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3949), + [7859] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3951), + [7861] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3952), + [7863] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3953), + [7865] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3954), + [7867] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3955), + [7869] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3957), + [7871] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3958), + [7873] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3960), + [7875] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3962), + [7877] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3963), + [7879] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3964), + [7881] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3965), + [7883] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3966), + [7885] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3967), + [7887] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3968), + [7889] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3969), + [7891] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3970), + [7893] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3971), + [7895] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3972), + [7897] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3973), + [7899] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3974), + [7901] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3976), + [7903] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3978), + [7905] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3980), + [7907] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3981), + [7909] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3982), + [7911] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3983), + [7913] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3984), + [7915] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3985), + [7917] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3986), + [7919] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3987), + [7921] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3988), + [7923] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3990), + [7925] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3992), + [7927] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3994), + [7929] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3995), + [7931] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3996), + [7933] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3997), + [7935] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3998), + [7937] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3999), + [7939] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4000), + [7941] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4001), + [7943] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4002), + [7945] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4004), + [7947] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4006), + [7949] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4008), + [7951] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4009), + [7953] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4010), + [7955] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4008), + [7957] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4011), + [7959] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4012), + [7961] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4013), + [7963] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4014), + [7965] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4012), + [7967] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4023), + [7969] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4024), + [7971] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4025), + [7973] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4027), + [7975] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4028), + [7977] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4029), + [7979] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3236), + [7981] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4030), + [7983] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3238), + [7985] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3239), + [7987] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3240), + [7989] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3241), + [7991] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4030), + [7993] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4031), + [7995] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4031), + [7997] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4033), + [7999] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4034), + [8001] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4035), + [8003] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4036), + [8005] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4038), + [8007] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4039), + [8009] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4040), + [8011] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4039), + [8013] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4042), + [8015] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4043), + [8017] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4045), + [8019] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4046), + [8021] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4048), + [8023] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4049), + [8025] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3233), + [8028] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3234), + [8031] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3235), + [8034] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3236), + [8037] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3237), + [8040] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3238), + [8043] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3239), + [8046] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3240), + [8049] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3241), + [8052] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3242), + [8055] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4050), + [8057] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3248), + [8059] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4050), + [8061] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3250), + [8063] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3251), + [8065] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3252), + [8067] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3253), + [8069] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4052), + [8071] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4053), + [8073] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4054), + [8075] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4055), + [8077] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4057), + [8079] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4058), + [8081] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4059), + [8083] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4058), + [8085] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4061), + [8087] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4062), + [8089] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4064), + [8091] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4065), + [8093] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4067), + [8095] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4068), + [8097] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3246), + [8100] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3247), + [8103] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3248), + [8106] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3249), + [8109] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3250), + [8112] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3251), + [8115] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3252), + [8118] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3253), + [8121] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3254), + [8124] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3257), + [8127] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4069), + [8129] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4070), + [8131] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4071), + [8133] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4071), + [8135] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4073), + [8137] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4074), + [8139] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4075), + [8141] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4076), + [8143] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4077), + [8145] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4079), + [8147] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4080), + [8149] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4082), + [8151] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4084), + [8153] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4085), + [8155] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4086), + [8157] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4088), + [8159] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4089), + [8161] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4089), + [8163] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4090), + [8165] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4092), + [8167] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4094), + [8169] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4095), + [8171] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4096), + [8173] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4094), + [8175] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4097), + [8177] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4098), + [8179] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4099), + [8181] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4100), + [8183] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4098), + [8185] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(3280), + [8188] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(3282), + [8191] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(3283), + [8194] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(3281), + [8197] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(3284), + [8200] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2643), + [8203] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2644), + [8206] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(3285), + [8209] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2646), + [8212] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2647), + [8215] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2648), + [8218] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2649), + [8221] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_last_case_item, 5, .alias_sequence_id = 1), + [8223] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 5, .alias_sequence_id = 1), + [8225] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 5, .alias_sequence_id = 1), + [8227] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 5, .alias_sequence_id = 1), + [8229] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_last_case_item, 5, .alias_sequence_id = 1), + [8231] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4109), + [8233] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_last_case_item, 5), + [8235] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 5), + [8237] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 5), + [8239] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 5), + [8241] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_last_case_item, 5), + [8243] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4110), + [8245] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4111), + [8247] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4112), + [8249] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4113), + [8251] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4114), + [8253] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4116), + [8255] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4118), + [8257] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4120), + [8259] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4121), + [8261] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4122), + [8263] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4123), + [8265] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4128), + [8267] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4129), + [8269] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4133), + [8271] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4134), + [8273] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4135), + [8275] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4136), + [8277] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4138), + [8279] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4140), + [8281] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4142), + [8283] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4143), + [8285] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4144), + [8287] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4145), + [8289] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4146), + [8291] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4147), + [8293] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4148), + [8295] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4149), + [8297] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4151), + [8299] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4152), + [8301] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4152), + [8303] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4154), + [8305] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4155), + [8307] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4156), + [8309] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4157), + [8311] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4158), + [8313] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4159), + [8315] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4161), + [8317] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4163), + [8319] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4164), + [8321] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4165), + [8323] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4166), + [8325] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4167), + [8327] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4168), + [8329] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4169), + [8331] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4170), + [8333] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4171), + [8335] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 8, .alias_sequence_id = 21), + [8337] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 8, .alias_sequence_id = 21), + [8339] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 8, .alias_sequence_id = 22), + [8341] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 8, .alias_sequence_id = 22), + [8343] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4172), + [8345] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4173), + [8347] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4174), + [8349] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4176), + [8351] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4177), + [8353] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4177), + [8355] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4179), + [8357] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4180), + [8359] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4181), + [8361] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4182), + [8363] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4183), + [8365] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4184), + [8367] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4186), + [8369] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4188), + [8371] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4189), + [8373] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4190), + [8375] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4191), + [8377] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4192), + [8379] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4193), + [8381] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4194), + [8383] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4195), + [8385] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4196), + [8387] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4198), + [8389] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4199), + [8391] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4199), + [8393] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4201), + [8395] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4202), + [8397] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4203), + [8399] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4204), + [8401] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4205), + [8403] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4206), + [8405] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4208), + [8407] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4210), + [8409] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4211), + [8411] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4212), + [8413] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4213), + [8415] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4214), + [8417] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4215), + [8419] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4216), + [8421] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4217), + [8423] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4217), + [8425] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4219), + [8427] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4220), + [8429] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4221), + [8431] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4222), + [8433] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4224), + [8435] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4225), + [8437] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4226), + [8439] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4225), + [8441] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4228), + [8443] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4229), + [8445] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4231), + [8447] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4232), + [8449] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4234), + [8451] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4235), + [8453] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4237), + [8455] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4237), + [8457] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4238), + [8459] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4239), + [8461] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4240), + [8463] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4241), + [8465] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4242), + [8467] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4243), + [8469] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4244), + [8471] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4245), + [8473] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4241), + [8475] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4246), + [8477] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3696), + [8480] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4248), + [8482] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4249), + [8484] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4250), + [8486] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4250), + [8488] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4252), + [8490] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4253), + [8492] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4254), + [8494] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4255), + [8496] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4256), + [8498] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4258), + [8500] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4259), + [8502] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4261), + [8504] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4263), + [8506] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4264), + [8508] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4265), + [8510] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3715), + [8513] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4266), + [8515] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4267), + [8517] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4268), + [8519] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4268), + [8521] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4270), + [8523] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4271), + [8525] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4272), + [8527] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4273), + [8529] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4274), + [8531] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4276), + [8533] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4277), + [8535] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4279), + [8537] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4281), + [8539] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4282), + [8541] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4283), + [8543] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4284), + [8545] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4285), + [8547] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4286), + [8549] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4288), + [8551] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4289), + [8553] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4289), + [8555] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4291), + [8557] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4292), + [8559] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4293), + [8561] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4294), + [8563] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4295), + [8565] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4296), + [8567] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4298), + [8569] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4300), + [8571] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4300), + [8573] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4302), + [8575] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4303), + [8577] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4304), + [8579] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4305), + [8581] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4307), + [8583] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4308), + [8585] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4309), + [8587] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4308), + [8589] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4311), + [8591] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4312), + [8593] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4314), + [8595] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4315), + [8597] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4317), + [8599] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4318), + [8601] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_last_case_item, 6, .alias_sequence_id = 1), + [8603] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 6, .alias_sequence_id = 1), + [8605] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 6, .alias_sequence_id = 1), + [8607] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 6, .alias_sequence_id = 1), + [8609] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_last_case_item, 6), + [8611] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 6), + [8613] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 6), + [8615] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 6), + [8617] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4319), + [8619] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4320), + [8621] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4321), + [8623] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4322), + [8625] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4323), + [8627] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4326), + [8629] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4327), + [8631] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4330), + [8633] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4331), + [8635] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4332), + [8637] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4333), + [8639] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4334), + [8641] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4335), + [8643] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4336), + [8645] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4338), + [8647] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4340), + [8649] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4342), + [8651] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4343), + [8653] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4344), + [8655] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4345), + [8657] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4346), + [8659] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4347), + [8661] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4349), + [8663] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4351), + [8665] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4353), + [8667] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4354), + [8669] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4355), + [8671] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4356), + [8673] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4357), + [8675] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4358), + [8677] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4360), + [8679] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4362), + [8681] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4364), + [8683] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4365), + [8685] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(4004), + [8688] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4366), + [8690] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4367), + [8692] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4368), + [8694] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4368), + [8696] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4370), + [8698] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4371), + [8700] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4372), + [8702] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4373), + [8704] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4374), + [8706] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4376), + [8708] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4377), + [8710] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4379), + [8712] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4381), + [8714] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4382), + [8716] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4383), + [8718] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4384), + [8720] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4385), + [8722] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4385), + [8724] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4386), + [8726] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4388), + [8728] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4390), + [8730] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4391), + [8732] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4392), + [8734] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4390), + [8736] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4393), + [8738] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4394), + [8740] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4395), + [8742] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4396), + [8744] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4394), + [8746] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4404), + [8748] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4405), + [8750] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4406), + [8752] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4407), + [8754] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4409), + [8756] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4410), + [8758] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4410), + [8760] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4412), + [8762] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4413), + [8764] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4414), + [8766] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4415), + [8768] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4416), + [8770] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4417), + [8772] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4419), + [8774] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4421), + [8776] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4422), + [8778] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4423), + [8780] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4425), + [8782] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4426), + [8784] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4426), + [8786] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4428), + [8788] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4429), + [8790] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4430), + [8792] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4431), + [8794] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4432), + [8796] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4433), + [8798] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4435), + [8800] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4437), + [8802] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4438), + [8804] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4439), + [8806] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4440), + [8808] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4442), + [8810] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4444), + [8812] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4446), + [8814] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4447), + [8816] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(4090), + [8819] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4448), + [8821] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4449), + [8823] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4450), + [8825] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4450), + [8827] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4452), + [8829] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4453), + [8831] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4454), + [8833] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4455), + [8835] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4456), + [8837] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4458), + [8839] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4459), + [8841] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4461), + [8843] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4463), + [8845] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4464), + [8847] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4465), + [8849] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4466), + [8851] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4467), + [8853] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4468), + [8855] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4469), + [8857] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4470), + [8859] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4471), + [8861] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4472), + [8863] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4473), + [8865] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4474), + [8867] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4475), + [8869] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4476), + [8871] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4477), + [8873] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4478), + [8875] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4479), + [8877] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4481), + [8879] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4482), + [8881] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4482), + [8883] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4484), + [8885] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4485), + [8887] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4486), + [8889] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4487), + [8891] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4488), + [8893] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4489), + [8895] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4491), + [8897] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4493), + [8899] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4493), + [8901] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4495), + [8903] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4496), + [8905] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4497), + [8907] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4498), + [8909] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4500), + [8911] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4501), + [8913] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4502), + [8915] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4501), + [8917] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4504), + [8919] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4505), + [8921] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4507), + [8923] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4508), + [8925] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4510), + [8927] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4511), + [8929] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4512), + [8931] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4513), + [8933] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4514), + [8935] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4515), + [8937] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4517), + [8939] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4519), + [8941] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4521), + [8943] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4522), + [8945] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4523), + [8947] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4524), + [8949] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4525), + [8951] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4526), + [8953] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4528), + [8955] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4530), + [8957] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4532), + [8959] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4533), + [8961] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4534), + [8963] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4535), + [8965] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4536), + [8967] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4537), + [8969] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4538), + [8971] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4539), + [8973] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4541), + [8975] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4542), + [8977] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4542), + [8979] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4544), + [8981] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4545), + [8983] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4546), + [8985] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4547), + [8987] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4548), + [8989] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4549), + [8991] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4551), + [8993] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4553), + [8995] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4554), + [8997] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4555), + [8999] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4556), + [9001] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4558), + [9003] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4560), + [9005] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4562), + [9007] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4563), + [9009] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(4386), + [9012] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4564), + [9014] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4565), + [9016] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4566), + [9018] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4566), + [9020] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4568), + [9022] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4569), + [9024] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4570), + [9026] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4571), + [9028] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4572), + [9030] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4574), + [9032] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4575), + [9034] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4577), + [9036] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4579), + [9038] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4580), + [9040] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4581), + [9042] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4582), + [9044] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4583), + [9046] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4584), + [9048] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4585), + [9050] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4586), + [9052] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4587), + [9054] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4588), + [9056] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4589), + [9058] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4590), + [9060] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4591), + [9062] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4593), + [9064] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4595), + [9066] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4597), + [9068] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4598), + [9070] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4599), + [9072] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4600), + [9074] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4601), + [9076] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4602), + [9078] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4603), + [9080] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4604), + [9082] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4606), + [9084] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4607), + [9086] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4607), + [9088] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4609), + [9090] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4610), + [9092] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4611), + [9094] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4612), + [9096] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4613), + [9098] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4614), + [9100] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4616), + [9102] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4618), + [9104] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4619), + [9106] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4620), + [9108] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4621), + [9110] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4622), + [9112] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4623), + [9114] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4624), + [9116] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4626), + [9118] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4628), + [9120] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4630), + [9122] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4631), + [9124] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4632), + [9126] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4633), + [9128] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4634), }; void *tree_sitter_bash_external_scanner_create();