From 145d4e86a46215755d46104517c697d5594d7b4b Mon Sep 17 00:00:00 2001 From: Max Brunsfeld Date: Tue, 26 Dec 2017 14:55:37 -0800 Subject: [PATCH] Add missing array syntax --- corpus/expressions.txt | 9 +- grammar.js | 7 +- src/grammar.json | 15 +- src/parser.c | 27628 ++++++++++++++++++++------------------- src/scanner.cc | 21 +- 5 files changed, 14378 insertions(+), 13302 deletions(-) diff --git a/corpus/expressions.txt b/corpus/expressions.txt index c4ec01b..04817b9 100644 --- a/corpus/expressions.txt +++ b/corpus/expressions.txt @@ -149,6 +149,7 @@ echo ${a[@]} echo ${#b[@]} a[$i]=50 +a+=(foo "bar" $(baz)) --- @@ -159,4 +160,10 @@ a[$i]=50 (command (command_name (word)) (expansion (variable_name))) (environment_variable_assignment (subscript (variable_name) (simple_expansion (variable_name))) - (word))) + (word)) + (environment_variable_assignment + (variable_name) + (array + (word) + (string) + (command_substitution (command (command_name (word))))))) diff --git a/grammar.js b/grammar.js index ef3f351..b9c7dfb 100644 --- a/grammar.js +++ b/grammar.js @@ -182,7 +182,10 @@ module.exports = grammar({ $.variable_name, $.subscript ), - '=', + choice( + '=', + '+=' + ), choice( $._expression, $.array, @@ -271,7 +274,7 @@ module.exports = grammar({ array: $ => seq( '(', - repeat($.word), + repeat($._expression), ')' ), diff --git a/src/grammar.json b/src/grammar.json index 270bcd4..28af4b1 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -602,8 +602,17 @@ ] }, { - "type": "STRING", - "value": "=" + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "=" + }, + { + "type": "STRING", + "value": "+=" + } + ] }, { "type": "CHOICE", @@ -939,7 +948,7 @@ "type": "REPEAT", "content": { "type": "SYMBOL", - "name": "word" + "name": "_expression" } }, { diff --git a/src/parser.c b/src/parser.c index a6a0425..828c8a2 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,10 +6,10 @@ #endif #define LANGUAGE_VERSION 4 -#define STATE_COUNT 1251 +#define STATE_COUNT 1311 #define SYMBOL_COUNT 115 #define ALIAS_COUNT 1 -#define TOKEN_COUNT 73 +#define TOKEN_COUNT 74 #define EXTERNAL_TOKEN_COUNT 9 #define MAX_ALIAS_SEQUENCE_LENGTH 7 @@ -49,85 +49,85 @@ enum { anon_sym_LBRACK_LBRACK = 33, anon_sym_RBRACK_RBRACK = 34, anon_sym_EQ = 35, - anon_sym_LT = 36, - anon_sym_GT = 37, - anon_sym_GT_GT = 38, - anon_sym_AMP_GT = 39, - anon_sym_AMP_GT_GT = 40, - anon_sym_LT_AMP = 41, - anon_sym_GT_AMP = 42, - anon_sym_LT_LT = 43, - anon_sym_LT_LT_DASH = 44, - anon_sym_DQUOTE = 45, - aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH = 46, - sym_raw_string = 47, - anon_sym_DOLLAR = 48, - anon_sym_DOLLAR_LBRACE = 49, - anon_sym_POUND = 50, - anon_sym_AT = 51, - anon_sym_COLON = 52, - anon_sym_COLON_QMARK = 53, - anon_sym_COLON_DASH = 54, - anon_sym_PERCENT = 55, - anon_sym_SLASH = 56, - anon_sym_DOLLAR_LPAREN = 57, - anon_sym_BQUOTE = 58, - anon_sym_LT_LPAREN = 59, - anon_sym_GT_LPAREN = 60, - sym_word = 61, - sym_comment = 62, - sym_simple_variable_name = 63, - anon_sym_STAR = 64, - anon_sym_QMARK = 65, - anon_sym_DASH = 66, - anon_sym_BANG = 67, - anon_sym_0 = 68, - anon_sym__ = 69, - anon_sym_SEMI = 70, - anon_sym_LF = 71, - anon_sym_AMP = 72, - sym_program = 73, - sym__terminated_statement = 74, - sym_for_statement = 75, - sym_while_statement = 76, - sym_do_group = 77, - sym_if_statement = 78, - sym_elif_clause = 79, - sym_else_clause = 80, - sym_case_statement = 81, - sym_case_item = 82, - sym_function_definition = 83, - sym_compound_statement = 84, - sym_subshell = 85, - sym_pipeline = 86, - sym_list = 87, - sym_bracket_command = 88, - sym_command = 89, - sym_command_name = 90, - sym_environment_variable_assignment = 91, - sym_subscript = 92, - sym_file_redirect = 93, - sym_heredoc_redirect = 94, - sym_heredoc = 95, - sym_concatenation = 96, - sym_string = 97, - sym_array = 98, - sym_simple_expansion = 99, - sym_expansion = 100, - sym_command_substitution = 101, - sym_process_substitution = 102, - sym_special_variable_name = 103, - aux_sym_program_repeat1 = 104, - aux_sym_for_statement_repeat1 = 105, - aux_sym_if_statement_repeat1 = 106, - aux_sym_case_statement_repeat1 = 107, - aux_sym_case_item_repeat1 = 108, - aux_sym_command_repeat1 = 109, - aux_sym_command_repeat2 = 110, - aux_sym_heredoc_repeat1 = 111, - aux_sym_concatenation_repeat1 = 112, - aux_sym_string_repeat1 = 113, - aux_sym_array_repeat1 = 114, + anon_sym_PLUS_EQ = 36, + anon_sym_LT = 37, + anon_sym_GT = 38, + anon_sym_GT_GT = 39, + anon_sym_AMP_GT = 40, + anon_sym_AMP_GT_GT = 41, + anon_sym_LT_AMP = 42, + anon_sym_GT_AMP = 43, + anon_sym_LT_LT = 44, + anon_sym_LT_LT_DASH = 45, + anon_sym_DQUOTE = 46, + aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH = 47, + sym_raw_string = 48, + anon_sym_DOLLAR = 49, + anon_sym_DOLLAR_LBRACE = 50, + anon_sym_POUND = 51, + anon_sym_AT = 52, + anon_sym_COLON = 53, + anon_sym_COLON_QMARK = 54, + anon_sym_COLON_DASH = 55, + anon_sym_PERCENT = 56, + anon_sym_SLASH = 57, + anon_sym_DOLLAR_LPAREN = 58, + anon_sym_BQUOTE = 59, + anon_sym_LT_LPAREN = 60, + anon_sym_GT_LPAREN = 61, + sym_word = 62, + sym_comment = 63, + sym_simple_variable_name = 64, + anon_sym_STAR = 65, + anon_sym_QMARK = 66, + anon_sym_DASH = 67, + anon_sym_BANG = 68, + anon_sym_0 = 69, + anon_sym__ = 70, + anon_sym_SEMI = 71, + anon_sym_LF = 72, + anon_sym_AMP = 73, + sym_program = 74, + sym__terminated_statement = 75, + sym_for_statement = 76, + sym_while_statement = 77, + sym_do_group = 78, + sym_if_statement = 79, + sym_elif_clause = 80, + sym_else_clause = 81, + sym_case_statement = 82, + sym_case_item = 83, + sym_function_definition = 84, + sym_compound_statement = 85, + sym_subshell = 86, + sym_pipeline = 87, + sym_list = 88, + sym_bracket_command = 89, + sym_command = 90, + sym_command_name = 91, + sym_environment_variable_assignment = 92, + sym_subscript = 93, + sym_file_redirect = 94, + sym_heredoc_redirect = 95, + sym_heredoc = 96, + sym_concatenation = 97, + sym_string = 98, + sym_array = 99, + sym_simple_expansion = 100, + sym_expansion = 101, + sym_command_substitution = 102, + sym_process_substitution = 103, + sym_special_variable_name = 104, + aux_sym_program_repeat1 = 105, + aux_sym_for_statement_repeat1 = 106, + aux_sym_if_statement_repeat1 = 107, + aux_sym_case_statement_repeat1 = 108, + aux_sym_case_item_repeat1 = 109, + aux_sym_command_repeat1 = 110, + aux_sym_command_repeat2 = 111, + aux_sym_heredoc_repeat1 = 112, + aux_sym_concatenation_repeat1 = 113, + aux_sym_string_repeat1 = 114, alias_sym_variable_name = 115, }; @@ -168,6 +168,7 @@ static const char *ts_symbol_names[] = { [anon_sym_LBRACK_LBRACK] = "[[", [anon_sym_RBRACK_RBRACK] = "]]", [anon_sym_EQ] = "=", + [anon_sym_PLUS_EQ] = "+=", [anon_sym_LT] = "<", [anon_sym_GT] = ">", [anon_sym_GT_GT] = ">>", @@ -246,7 +247,6 @@ static const char *ts_symbol_names[] = { [aux_sym_heredoc_repeat1] = "heredoc_repeat1", [aux_sym_concatenation_repeat1] = "concatenation_repeat1", [aux_sym_string_repeat1] = "string_repeat1", - [aux_sym_array_repeat1] = "array_repeat1", [alias_sym_variable_name] = "variable_name", }; @@ -395,6 +395,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_PLUS_EQ] = { + .visible = true, + .named = false, + }, [anon_sym_LT] = { .visible = true, .named = false, @@ -707,10 +711,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym_array_repeat1] = { - .visible = false, - .named = false, - }, [alias_sym_variable_name] = { .visible = true, .named = true, @@ -752,42 +752,44 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(16); if (lookahead == '*') ADVANCE(17); - if (lookahead == '-') + if (lookahead == '+') ADVANCE(18); - if (lookahead == '/') - ADVANCE(19); - if (lookahead == '0') + if (lookahead == '-') ADVANCE(20); - if (lookahead == ':') + if (lookahead == '/') + ADVANCE(21); + if (lookahead == '0') ADVANCE(22); + if (lookahead == ':') + ADVANCE(24); if (lookahead == ';') - ADVANCE(25); - if (lookahead == '<') ADVANCE(27); + if (lookahead == '<') + ADVANCE(29); if (lookahead == '=') - ADVANCE(32); + ADVANCE(34); if (lookahead == '>') - ADVANCE(33); + ADVANCE(35); if (lookahead == '?') - ADVANCE(37); - if (lookahead == '@') - ADVANCE(38); - if (lookahead == '[') ADVANCE(39); + if (lookahead == '@') + ADVANCE(40); + if (lookahead == '[') + ADVANCE(41); if (lookahead == '\\') - SKIP(41); + SKIP(43); if (lookahead == ']') - ADVANCE(42); - if (lookahead == '_') ADVANCE(44); - if (lookahead == '`') - ADVANCE(45); - if (lookahead == '{') + if (lookahead == '_') ADVANCE(46); - if (lookahead == '|') + if (lookahead == '`') ADVANCE(47); + if (lookahead == '{') + ADVANCE(48); + if (lookahead == '|') + ADVANCE(49); if (lookahead == '}') - ADVANCE(50); + ADVANCE(52); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -795,7 +797,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { SKIP(0); if (('1' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(21); + ADVANCE(23); END_STATE(); case 1: ACCEPT_TOKEN(ts_builtin_sym_end); @@ -862,262 +864,223 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); case 18: - ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '=') + ADVANCE(19); END_STATE(); case 19: - ACCEPT_TOKEN(anon_sym_SLASH); + ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); case 20: + ACCEPT_TOKEN(anon_sym_DASH); + END_STATE(); + case 21: + ACCEPT_TOKEN(anon_sym_SLASH); + END_STATE(); + case 22: ACCEPT_TOKEN(anon_sym_0); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(21); + ADVANCE(23); END_STATE(); - case 21: + case 23: ACCEPT_TOKEN(sym_simple_variable_name); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(21); - END_STATE(); - case 22: - ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == '-') ADVANCE(23); - if (lookahead == '?') - ADVANCE(24); - END_STATE(); - case 23: - ACCEPT_TOKEN(anon_sym_COLON_DASH); END_STATE(); case 24: - ACCEPT_TOKEN(anon_sym_COLON_QMARK); - END_STATE(); - case 25: - ACCEPT_TOKEN(anon_sym_SEMI); - if (lookahead == ';') + ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == '-') + ADVANCE(25); + if (lookahead == '?') ADVANCE(26); END_STATE(); + case 25: + ACCEPT_TOKEN(anon_sym_COLON_DASH); + END_STATE(); case 26: - ACCEPT_TOKEN(anon_sym_SEMI_SEMI); + ACCEPT_TOKEN(anon_sym_COLON_QMARK); END_STATE(); case 27: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '&') + ACCEPT_TOKEN(anon_sym_SEMI); + if (lookahead == ';') ADVANCE(28); - if (lookahead == '(') - ADVANCE(29); - if (lookahead == '<') - ADVANCE(30); END_STATE(); case 28: - ACCEPT_TOKEN(anon_sym_LT_AMP); + ACCEPT_TOKEN(anon_sym_SEMI_SEMI); END_STATE(); case 29: - ACCEPT_TOKEN(anon_sym_LT_LPAREN); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '&') + ADVANCE(30); + if (lookahead == '(') + ADVANCE(31); + if (lookahead == '<') + ADVANCE(32); END_STATE(); case 30: - ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '-') - ADVANCE(31); + ACCEPT_TOKEN(anon_sym_LT_AMP); END_STATE(); case 31: - ACCEPT_TOKEN(anon_sym_LT_LT_DASH); + ACCEPT_TOKEN(anon_sym_LT_LPAREN); END_STATE(); case 32: - ACCEPT_TOKEN(anon_sym_EQ); + ACCEPT_TOKEN(anon_sym_LT_LT); + if (lookahead == '-') + ADVANCE(33); END_STATE(); case 33: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '&') - ADVANCE(34); - if (lookahead == '(') - ADVANCE(35); - if (lookahead == '>') - ADVANCE(36); + ACCEPT_TOKEN(anon_sym_LT_LT_DASH); END_STATE(); case 34: - ACCEPT_TOKEN(anon_sym_GT_AMP); + ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); case 35: - ACCEPT_TOKEN(anon_sym_GT_LPAREN); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '&') + ADVANCE(36); + if (lookahead == '(') + ADVANCE(37); + if (lookahead == '>') + ADVANCE(38); END_STATE(); case 36: - ACCEPT_TOKEN(anon_sym_GT_GT); + ACCEPT_TOKEN(anon_sym_GT_AMP); END_STATE(); case 37: - ACCEPT_TOKEN(anon_sym_QMARK); + ACCEPT_TOKEN(anon_sym_GT_LPAREN); END_STATE(); case 38: - ACCEPT_TOKEN(anon_sym_AT); + ACCEPT_TOKEN(anon_sym_GT_GT); END_STATE(); case 39: - ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == '[') - ADVANCE(40); + ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); case 40: - ACCEPT_TOKEN(anon_sym_LBRACK_LBRACK); + ACCEPT_TOKEN(anon_sym_AT); END_STATE(); case 41: + ACCEPT_TOKEN(anon_sym_LBRACK); + if (lookahead == '[') + ADVANCE(42); + END_STATE(); + case 42: + ACCEPT_TOKEN(anon_sym_LBRACK_LBRACK); + END_STATE(); + case 43: if (lookahead == '\n') SKIP(0); END_STATE(); - case 42: + case 44: ACCEPT_TOKEN(anon_sym_RBRACK); if (lookahead == ']') - ADVANCE(43); + ADVANCE(45); END_STATE(); - case 43: + case 45: ACCEPT_TOKEN(anon_sym_RBRACK_RBRACK); END_STATE(); - case 44: + case 46: ACCEPT_TOKEN(anon_sym__); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(21); - END_STATE(); - case 45: - ACCEPT_TOKEN(anon_sym_BQUOTE); - END_STATE(); - case 46: - ACCEPT_TOKEN(anon_sym_LBRACE); + ADVANCE(23); END_STATE(); case 47: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '&') - ADVANCE(48); - if (lookahead == '|') - ADVANCE(49); + ACCEPT_TOKEN(anon_sym_BQUOTE); END_STATE(); case 48: - ACCEPT_TOKEN(anon_sym_PIPE_AMP); + ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); case 49: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '&') + ADVANCE(50); + if (lookahead == '|') + ADVANCE(51); END_STATE(); case 50: - ACCEPT_TOKEN(anon_sym_RBRACE); + ACCEPT_TOKEN(anon_sym_PIPE_AMP); END_STATE(); case 51: + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + END_STATE(); + case 52: + ACCEPT_TOKEN(anon_sym_RBRACE); + END_STATE(); + case 53: if (lookahead == 0) ADVANCE(1); if (lookahead == '\"') ADVANCE(3); if (lookahead == '#') - ADVANCE(52); + ADVANCE(54); if (lookahead == '$') ADVANCE(5); if (lookahead == '&') - ADVANCE(53); + ADVANCE(55); if (lookahead == '\'') ADVANCE(13); if (lookahead == '(') ADVANCE(15); if (lookahead == '<') - ADVANCE(54); + ADVANCE(56); if (lookahead == '>') - ADVANCE(33); + ADVANCE(35); if (lookahead == '[') - ADVANCE(55); + ADVANCE(57); if (lookahead == '\\') - ADVANCE(59); + ADVANCE(61); if (lookahead == '`') - ADVANCE(45); + ADVANCE(47); if (lookahead == 'c') - ADVANCE(60); + ADVANCE(62); if (lookahead == 'f') - ADVANCE(64); + ADVANCE(66); if (lookahead == 'i') - ADVANCE(74); - if (lookahead == 'w') ADVANCE(76); + if (lookahead == 'w') + ADVANCE(78); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(51); + SKIP(53); if ((lookahead < '&' || lookahead > ')') && lookahead != ';' && lookahead != '<' && lookahead != '{' && lookahead != '}') - ADVANCE(58); + ADVANCE(60); END_STATE(); - case 52: + case 54: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && lookahead != '\n') - ADVANCE(52); + ADVANCE(54); END_STATE(); - case 53: + case 55: if (lookahead == '>') ADVANCE(11); END_STATE(); - case 54: + case 56: ACCEPT_TOKEN(anon_sym_LT); if (lookahead == '&') - ADVANCE(28); + ADVANCE(30); if (lookahead == '(') - ADVANCE(29); - END_STATE(); - case 55: - ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == '[') - ADVANCE(56); - if (lookahead == '\\') - ADVANCE(57); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - lookahead != '`' && - lookahead != '{' && - lookahead != '}') - ADVANCE(58); - END_STATE(); - case 56: - ACCEPT_TOKEN(anon_sym_LBRACK_LBRACK); - if (lookahead == '\\') - ADVANCE(57); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - lookahead != '`' && - lookahead != '{' && - lookahead != '}') - ADVANCE(58); + ADVANCE(31); END_STATE(); case 57: - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') + ACCEPT_TOKEN(anon_sym_LBRACK); + if (lookahead == '[') ADVANCE(58); - END_STATE(); - case 58: - ACCEPT_TOKEN(sym_word); if (lookahead == '\\') - ADVANCE(57); + ADVANCE(59); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -1131,24 +1094,70 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '`' && lookahead != '{' && lookahead != '}') - ADVANCE(58); + ADVANCE(60); + END_STATE(); + case 58: + ACCEPT_TOKEN(anon_sym_LBRACK_LBRACK); + if (lookahead == '\\') + ADVANCE(59); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + lookahead != '`' && + lookahead != '{' && + lookahead != '}') + ADVANCE(60); END_STATE(); case 59: - if (lookahead == '\n') - SKIP(51); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(58); + ADVANCE(60); END_STATE(); case 60: ACCEPT_TOKEN(sym_word); if (lookahead == '\\') - ADVANCE(57); + ADVANCE(59); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + lookahead != '`' && + lookahead != '{' && + lookahead != '}') + ADVANCE(60); + END_STATE(); + case 61: + if (lookahead == '\n') + SKIP(53); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(60); + END_STATE(); + case 62: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(59); if (lookahead == 'a') - ADVANCE(61); + ADVANCE(63); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -1163,54 +1172,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != 'a' && lookahead != '{' && lookahead != '}') - ADVANCE(58); - END_STATE(); - case 61: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(57); - if (lookahead == 's') - ADVANCE(62); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - lookahead != '`' && - lookahead != '{' && - lookahead != '}') - ADVANCE(58); - END_STATE(); - case 62: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(57); - if (lookahead == 'e') - ADVANCE(63); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - lookahead != '`' && - lookahead != '{' && - lookahead != '}') - ADVANCE(58); + ADVANCE(60); END_STATE(); case 63: - ACCEPT_TOKEN(anon_sym_case); + ACCEPT_TOKEN(sym_word); if (lookahead == '\\') - ADVANCE(57); + ADVANCE(59); + if (lookahead == 's') + ADVANCE(64); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -1224,16 +1193,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '`' && lookahead != '{' && lookahead != '}') - ADVANCE(58); + ADVANCE(60); END_STATE(); case 64: ACCEPT_TOKEN(sym_word); if (lookahead == '\\') - ADVANCE(57); - if (lookahead == 'o') + ADVANCE(59); + if (lookahead == 'e') ADVANCE(65); - if (lookahead == 'u') - ADVANCE(67); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -1247,14 +1214,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '`' && lookahead != '{' && lookahead != '}') - ADVANCE(58); + ADVANCE(60); END_STATE(); case 65: - ACCEPT_TOKEN(sym_word); + ACCEPT_TOKEN(anon_sym_case); if (lookahead == '\\') - ADVANCE(57); - if (lookahead == 'r') - ADVANCE(66); + ADVANCE(59); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -1268,53 +1233,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '`' && lookahead != '{' && lookahead != '}') - ADVANCE(58); + ADVANCE(60); END_STATE(); case 66: - ACCEPT_TOKEN(anon_sym_for); - if (lookahead == '\\') - ADVANCE(57); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - lookahead != '`' && - lookahead != '{' && - lookahead != '}') - ADVANCE(58); - END_STATE(); - case 67: ACCEPT_TOKEN(sym_word); if (lookahead == '\\') - ADVANCE(57); - if (lookahead == 'n') - ADVANCE(68); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - lookahead != '`' && - lookahead != '{' && - lookahead != '}') - ADVANCE(58); - END_STATE(); - case 68: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(57); - if (lookahead == 'c') + ADVANCE(59); + if (lookahead == 'o') + ADVANCE(67); + if (lookahead == 'u') ADVANCE(69); if (lookahead != 0 && lookahead != '\t' && @@ -1329,13 +1256,53 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '`' && lookahead != '{' && lookahead != '}') - ADVANCE(58); + ADVANCE(60); + END_STATE(); + case 67: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(59); + if (lookahead == 'r') + ADVANCE(68); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + lookahead != '`' && + lookahead != '{' && + lookahead != '}') + ADVANCE(60); + END_STATE(); + case 68: + ACCEPT_TOKEN(anon_sym_for); + if (lookahead == '\\') + ADVANCE(59); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + lookahead != '`' && + lookahead != '{' && + lookahead != '}') + ADVANCE(60); END_STATE(); case 69: ACCEPT_TOKEN(sym_word); if (lookahead == '\\') - ADVANCE(57); - if (lookahead == 't') + ADVANCE(59); + if (lookahead == 'n') ADVANCE(70); if (lookahead != 0 && lookahead != '\t' && @@ -1350,13 +1317,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '`' && lookahead != '{' && lookahead != '}') - ADVANCE(58); + ADVANCE(60); END_STATE(); case 70: ACCEPT_TOKEN(sym_word); if (lookahead == '\\') - ADVANCE(57); - if (lookahead == 'i') + ADVANCE(59); + if (lookahead == 'c') ADVANCE(71); if (lookahead != 0 && lookahead != '\t' && @@ -1371,13 +1338,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '`' && lookahead != '{' && lookahead != '}') - ADVANCE(58); + ADVANCE(60); END_STATE(); case 71: ACCEPT_TOKEN(sym_word); if (lookahead == '\\') - ADVANCE(57); - if (lookahead == 'o') + ADVANCE(59); + if (lookahead == 't') ADVANCE(72); if (lookahead != 0 && lookahead != '\t' && @@ -1392,13 +1359,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '`' && lookahead != '{' && lookahead != '}') - ADVANCE(58); + ADVANCE(60); END_STATE(); case 72: ACCEPT_TOKEN(sym_word); if (lookahead == '\\') - ADVANCE(57); - if (lookahead == 'n') + ADVANCE(59); + if (lookahead == 'i') ADVANCE(73); if (lookahead != 0 && lookahead != '\t' && @@ -1413,12 +1380,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '`' && lookahead != '{' && lookahead != '}') - ADVANCE(58); + ADVANCE(60); END_STATE(); case 73: - ACCEPT_TOKEN(anon_sym_function); + ACCEPT_TOKEN(sym_word); if (lookahead == '\\') - ADVANCE(57); + ADVANCE(59); + if (lookahead == 'o') + ADVANCE(74); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -1432,13 +1401,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '`' && lookahead != '{' && lookahead != '}') - ADVANCE(58); + ADVANCE(60); END_STATE(); case 74: ACCEPT_TOKEN(sym_word); if (lookahead == '\\') - ADVANCE(57); - if (lookahead == 'f') + ADVANCE(59); + if (lookahead == 'n') ADVANCE(75); if (lookahead != 0 && lookahead != '\t' && @@ -1453,12 +1422,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '`' && lookahead != '{' && lookahead != '}') - ADVANCE(58); + ADVANCE(60); END_STATE(); case 75: - ACCEPT_TOKEN(anon_sym_if); + ACCEPT_TOKEN(anon_sym_function); if (lookahead == '\\') - ADVANCE(57); + ADVANCE(59); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -1472,13 +1441,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '`' && lookahead != '{' && lookahead != '}') - ADVANCE(58); + ADVANCE(60); END_STATE(); case 76: ACCEPT_TOKEN(sym_word); if (lookahead == '\\') - ADVANCE(57); - if (lookahead == 'h') + ADVANCE(59); + if (lookahead == 'f') ADVANCE(77); if (lookahead != 0 && lookahead != '\t' && @@ -1493,14 +1462,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '`' && lookahead != '{' && lookahead != '}') - ADVANCE(58); + ADVANCE(60); END_STATE(); case 77: - ACCEPT_TOKEN(sym_word); + ACCEPT_TOKEN(anon_sym_if); if (lookahead == '\\') - ADVANCE(57); - if (lookahead == 'i') - ADVANCE(78); + ADVANCE(59); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -1514,13 +1481,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '`' && lookahead != '{' && lookahead != '}') - ADVANCE(58); + ADVANCE(60); END_STATE(); case 78: ACCEPT_TOKEN(sym_word); if (lookahead == '\\') - ADVANCE(57); - if (lookahead == 'l') + ADVANCE(59); + if (lookahead == 'h') ADVANCE(79); if (lookahead != 0 && lookahead != '\t' && @@ -1535,13 +1502,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '`' && lookahead != '{' && lookahead != '}') - ADVANCE(58); + ADVANCE(60); END_STATE(); case 79: ACCEPT_TOKEN(sym_word); if (lookahead == '\\') - ADVANCE(57); - if (lookahead == 'e') + ADVANCE(59); + if (lookahead == 'i') ADVANCE(80); if (lookahead != 0 && lookahead != '\t' && @@ -1556,12 +1523,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '`' && lookahead != '{' && lookahead != '}') - ADVANCE(58); + ADVANCE(60); END_STATE(); case 80: - ACCEPT_TOKEN(anon_sym_while); + ACCEPT_TOKEN(sym_word); if (lookahead == '\\') - ADVANCE(57); + ADVANCE(59); + if (lookahead == 'l') + ADVANCE(81); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -1575,209 +1544,233 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '`' && lookahead != '{' && lookahead != '}') - ADVANCE(58); + ADVANCE(60); END_STATE(); case 81: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(59); + if (lookahead == 'e') + ADVANCE(82); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + lookahead != '`' && + lookahead != '{' && + lookahead != '}') + ADVANCE(60); + END_STATE(); + case 82: + ACCEPT_TOKEN(anon_sym_while); + if (lookahead == '\\') + ADVANCE(59); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + lookahead != '`' && + lookahead != '{' && + lookahead != '}') + ADVANCE(60); + END_STATE(); + case 83: if (lookahead == '#') - ADVANCE(52); + ADVANCE(54); if (lookahead == '%') ADVANCE(8); if (lookahead == '&') - ADVANCE(82); + ADVANCE(84); if (lookahead == '(') ADVANCE(15); if (lookahead == ')') ADVANCE(16); + if (lookahead == '+') + ADVANCE(18); if (lookahead == '/') - ADVANCE(19); + ADVANCE(21); if (lookahead == ':') - ADVANCE(22); + ADVANCE(24); if (lookahead == '=') - ADVANCE(32); + ADVANCE(34); if (lookahead == '@') - ADVANCE(38); + ADVANCE(40); if (lookahead == '[') - ADVANCE(83); - if (lookahead == '\\') - SKIP(84); - if (lookahead == ']') ADVANCE(85); + if (lookahead == '\\') + SKIP(86); + if (lookahead == ']') + ADVANCE(87); if (lookahead == '`') - ADVANCE(45); - if (lookahead == 'd') - ADVANCE(86); - if (lookahead == 'e') - ADVANCE(88); - if (lookahead == 'f') - ADVANCE(94); - if (lookahead == 'i') - ADVANCE(96); - if (lookahead == 't') - ADVANCE(98); - if (lookahead == '{') - ADVANCE(46); - if (lookahead == '|') ADVANCE(47); + if (lookahead == 'd') + ADVANCE(88); + if (lookahead == 'e') + ADVANCE(90); + if (lookahead == 'f') + ADVANCE(96); + if (lookahead == 'i') + ADVANCE(98); + if (lookahead == 't') + ADVANCE(100); + if (lookahead == '{') + ADVANCE(48); + if (lookahead == '|') + ADVANCE(49); if (lookahead == '}') - ADVANCE(50); + ADVANCE(52); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(81); + SKIP(83); END_STATE(); - case 82: + case 84: if (lookahead == '&') ADVANCE(10); END_STATE(); - case 83: + case 85: ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); - case 84: - if (lookahead == '\n') - SKIP(81); - END_STATE(); - case 85: - ACCEPT_TOKEN(anon_sym_RBRACK); - END_STATE(); case 86: - if (lookahead == 'o') - ADVANCE(87); + if (lookahead == '\n') + SKIP(83); END_STATE(); case 87: - ACCEPT_TOKEN(anon_sym_do); + ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); case 88: - if (lookahead == 'l') + if (lookahead == 'o') ADVANCE(89); END_STATE(); case 89: - if (lookahead == 'i') - ADVANCE(90); - if (lookahead == 's') - ADVANCE(92); + ACCEPT_TOKEN(anon_sym_do); END_STATE(); case 90: - if (lookahead == 'f') + if (lookahead == 'l') ADVANCE(91); END_STATE(); case 91: - ACCEPT_TOKEN(anon_sym_elif); + if (lookahead == 'i') + ADVANCE(92); + if (lookahead == 's') + ADVANCE(94); END_STATE(); case 92: - if (lookahead == 'e') + if (lookahead == 'f') ADVANCE(93); END_STATE(); case 93: - ACCEPT_TOKEN(anon_sym_else); + ACCEPT_TOKEN(anon_sym_elif); END_STATE(); case 94: - if (lookahead == 'i') + if (lookahead == 'e') ADVANCE(95); END_STATE(); case 95: - ACCEPT_TOKEN(anon_sym_fi); + ACCEPT_TOKEN(anon_sym_else); END_STATE(); case 96: - if (lookahead == 'n') + if (lookahead == 'i') ADVANCE(97); END_STATE(); case 97: - ACCEPT_TOKEN(anon_sym_in); + ACCEPT_TOKEN(anon_sym_fi); END_STATE(); case 98: - if (lookahead == 'h') + if (lookahead == 'n') ADVANCE(99); END_STATE(); case 99: - if (lookahead == 'e') - ADVANCE(100); + ACCEPT_TOKEN(anon_sym_in); END_STATE(); case 100: - if (lookahead == 'n') + if (lookahead == 'h') ADVANCE(101); END_STATE(); case 101: - ACCEPT_TOKEN(anon_sym_then); + if (lookahead == 'e') + ADVANCE(102); END_STATE(); case 102: + if (lookahead == 'n') + ADVANCE(103); + END_STATE(); + case 103: + ACCEPT_TOKEN(anon_sym_then); + END_STATE(); + case 104: if (lookahead == '\"') ADVANCE(3); if (lookahead == '#') - ADVANCE(52); + ADVANCE(54); if (lookahead == '$') ADVANCE(5); if (lookahead == '&') - ADVANCE(53); + ADVANCE(55); if (lookahead == '\'') ADVANCE(13); if (lookahead == '<') - ADVANCE(54); + ADVANCE(56); if (lookahead == '>') - ADVANCE(33); + ADVANCE(35); if (lookahead == '\\') - ADVANCE(103); + ADVANCE(105); if (lookahead == '`') - ADVANCE(45); + ADVANCE(47); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(102); + SKIP(104); if (lookahead != 0 && (lookahead < '&' || lookahead > ')') && lookahead != ';' && lookahead != '<' && lookahead != '{' && lookahead != '}') - ADVANCE(58); + ADVANCE(60); END_STATE(); - case 103: + case 105: if (lookahead == '\n') - SKIP(102); + SKIP(104); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(58); + ADVANCE(60); END_STATE(); - case 104: + case 106: if (lookahead == '\"') ADVANCE(3); if (lookahead == '#') - ADVANCE(105); + ADVANCE(107); if (lookahead == '$') ADVANCE(5); if (lookahead == '\\') - ADVANCE(107); + ADVANCE(109); if (lookahead == '`') - ADVANCE(45); + ADVANCE(47); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - ADVANCE(108); + ADVANCE(110); if (lookahead != 0) - ADVANCE(106); - END_STATE(); - case 105: - ACCEPT_TOKEN(aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH); - if (lookahead == '\n') - ADVANCE(106); - if (lookahead != 0 && - lookahead != '\"' && - lookahead != '$' && - lookahead != '`') - ADVANCE(105); - END_STATE(); - case 106: - ACCEPT_TOKEN(aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH); - if (lookahead != 0 && - lookahead != '\"' && - lookahead != '$' && - lookahead != '`') - ADVANCE(106); + ADVANCE(108); END_STATE(); case 107: ACCEPT_TOKEN(aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH); @@ -1787,31 +1780,49 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\"' && lookahead != '$' && lookahead != '`') - ADVANCE(106); + ADVANCE(107); END_STATE(); case 108: + ACCEPT_TOKEN(aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH); + if (lookahead != 0 && + lookahead != '\"' && + lookahead != '$' && + lookahead != '`') + ADVANCE(108); + END_STATE(); + case 109: + ACCEPT_TOKEN(aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH); + if (lookahead == '\n') + ADVANCE(110); + if (lookahead != 0 && + lookahead != '\"' && + lookahead != '$' && + lookahead != '`') + ADVANCE(108); + END_STATE(); + case 110: ACCEPT_TOKEN(aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH); if (lookahead == '#') - ADVANCE(105); - if (lookahead == '\\') ADVANCE(107); + if (lookahead == '\\') + ADVANCE(109); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - ADVANCE(108); + ADVANCE(110); if (lookahead != 0 && (lookahead < '\"' || lookahead > '$') && lookahead != '`') - ADVANCE(106); + ADVANCE(108); END_STATE(); - case 109: + case 111: if (lookahead == '\n') - ADVANCE(110); + ADVANCE(112); if (lookahead == '\"') ADVANCE(3); if (lookahead == '#') - ADVANCE(52); + ADVANCE(54); if (lookahead == '$') ADVANCE(5); if (lookahead == '&') @@ -1821,47 +1832,47 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ')') ADVANCE(16); if (lookahead == ';') - ADVANCE(25); - if (lookahead == '<') ADVANCE(27); + if (lookahead == '<') + ADVANCE(29); if (lookahead == '>') - ADVANCE(33); + ADVANCE(35); if (lookahead == '\\') - ADVANCE(111); + ADVANCE(113); if (lookahead == '`') - ADVANCE(45); + ADVANCE(47); if (lookahead == '|') - ADVANCE(112); + ADVANCE(114); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(109); + SKIP(111); if (lookahead != 0 && (lookahead < '&' || lookahead > ')') && (lookahead < '{' || lookahead > '}')) - ADVANCE(58); + ADVANCE(60); END_STATE(); - case 110: + case 112: ACCEPT_TOKEN(anon_sym_LF); END_STATE(); - case 111: + case 113: if (lookahead == '\n') - SKIP(109); + SKIP(111); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(58); + ADVANCE(60); END_STATE(); - case 112: + case 114: ACCEPT_TOKEN(anon_sym_PIPE); if (lookahead == '&') - ADVANCE(48); + ADVANCE(50); if (lookahead == '\\') - ADVANCE(57); + ADVANCE(59); if (lookahead == '|') - ADVANCE(113); + ADVANCE(115); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -1874,12 +1885,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && lookahead != '`' && (lookahead < '{' || lookahead > '}')) - ADVANCE(58); + ADVANCE(60); END_STATE(); - case 113: + case 115: ACCEPT_TOKEN(anon_sym_PIPE_PIPE); if (lookahead == '\\') - ADVANCE(57); + ADVANCE(59); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -1893,65 +1904,65 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '`' && lookahead != '{' && lookahead != '}') - ADVANCE(58); + ADVANCE(60); END_STATE(); - case 114: + case 116: if (lookahead == '!') ADVANCE(2); if (lookahead == '#') ADVANCE(4); if (lookahead == '$') - ADVANCE(115); + ADVANCE(117); if (lookahead == '%') ADVANCE(8); if (lookahead == '*') ADVANCE(17); if (lookahead == '-') - ADVANCE(18); - if (lookahead == '/') - ADVANCE(19); - if (lookahead == '0') ADVANCE(20); - if (lookahead == ':') + if (lookahead == '/') + ADVANCE(21); + if (lookahead == '0') ADVANCE(22); + if (lookahead == ':') + ADVANCE(24); if (lookahead == '=') - ADVANCE(32); + ADVANCE(34); if (lookahead == '?') - ADVANCE(37); + ADVANCE(39); if (lookahead == '@') - ADVANCE(38); + ADVANCE(40); if (lookahead == '[') - ADVANCE(83); + ADVANCE(85); if (lookahead == '\\') - SKIP(116); + SKIP(118); if (lookahead == '_') - ADVANCE(44); + ADVANCE(46); if (lookahead == '}') - ADVANCE(50); + ADVANCE(52); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(114); + SKIP(116); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(21); - END_STATE(); - case 115: - ACCEPT_TOKEN(anon_sym_DOLLAR); - END_STATE(); - case 116: - if (lookahead == '\n') - SKIP(114); + ADVANCE(23); END_STATE(); case 117: + ACCEPT_TOKEN(anon_sym_DOLLAR); + END_STATE(); + case 118: if (lookahead == '\n') - ADVANCE(110); + SKIP(116); + END_STATE(); + case 119: + if (lookahead == '\n') + ADVANCE(112); if (lookahead == '\"') ADVANCE(3); if (lookahead == '#') - ADVANCE(52); + ADVANCE(54); if (lookahead == '$') ADVANCE(5); if (lookahead == '&') @@ -1963,133 +1974,133 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ')') ADVANCE(16); if (lookahead == ';') - ADVANCE(25); - if (lookahead == '<') ADVANCE(27); + if (lookahead == '<') + ADVANCE(29); if (lookahead == '>') - ADVANCE(33); + ADVANCE(35); if (lookahead == '\\') - ADVANCE(118); + ADVANCE(120); if (lookahead == '`') - ADVANCE(45); + ADVANCE(47); if (lookahead == '{') - ADVANCE(46); + ADVANCE(48); if (lookahead == '|') - ADVANCE(112); + ADVANCE(114); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(117); + SKIP(119); if (lookahead != 0 && (lookahead < '{' || lookahead > '}')) - ADVANCE(58); + ADVANCE(60); END_STATE(); - case 118: + case 120: if (lookahead == '\n') - SKIP(117); + SKIP(119); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(58); + ADVANCE(60); END_STATE(); - case 119: + case 121: if (lookahead == 0) ADVANCE(1); if (lookahead == '\"') ADVANCE(3); if (lookahead == '#') - ADVANCE(52); + ADVANCE(54); if (lookahead == '$') ADVANCE(5); if (lookahead == '&') - ADVANCE(53); + ADVANCE(55); if (lookahead == '\'') ADVANCE(13); if (lookahead == '(') ADVANCE(15); if (lookahead == ';') - ADVANCE(120); + ADVANCE(122); if (lookahead == '<') - ADVANCE(54); + ADVANCE(56); if (lookahead == '>') - ADVANCE(33); + ADVANCE(35); if (lookahead == '[') - ADVANCE(55); + ADVANCE(57); if (lookahead == '\\') - ADVANCE(121); + ADVANCE(123); if (lookahead == '`') - ADVANCE(45); + ADVANCE(47); if (lookahead == 'c') - ADVANCE(60); + ADVANCE(62); if (lookahead == 'f') - ADVANCE(64); + ADVANCE(66); if (lookahead == 'i') - ADVANCE(74); - if (lookahead == 'w') ADVANCE(76); + if (lookahead == 'w') + ADVANCE(78); if (lookahead == '}') - ADVANCE(50); + ADVANCE(52); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(119); + SKIP(121); if ((lookahead < '&' || lookahead > ')') && lookahead != '{') - ADVANCE(58); + ADVANCE(60); END_STATE(); - case 120: + case 122: if (lookahead == ';') - ADVANCE(26); + ADVANCE(28); END_STATE(); - case 121: + case 123: if (lookahead == '\n') - SKIP(119); + SKIP(121); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(58); + ADVANCE(60); END_STATE(); - case 122: + case 124: if (lookahead == '\n') - ADVANCE(110); + ADVANCE(112); if (lookahead == '#') - ADVANCE(52); + ADVANCE(54); if (lookahead == '&') - ADVANCE(123); + ADVANCE(125); if (lookahead == ')') ADVANCE(16); if (lookahead == ';') - ADVANCE(25); + ADVANCE(27); if (lookahead == '\\') - SKIP(124); + SKIP(126); if (lookahead == '|') - ADVANCE(47); + ADVANCE(49); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(122); + SKIP(124); END_STATE(); - case 123: + case 125: ACCEPT_TOKEN(anon_sym_AMP); if (lookahead == '&') ADVANCE(10); END_STATE(); - case 124: + case 126: if (lookahead == '\n') - SKIP(122); + SKIP(124); END_STATE(); - case 125: + case 127: if (lookahead == '\n') - ADVANCE(110); + ADVANCE(112); if (lookahead == '\"') ADVANCE(3); if (lookahead == '#') - ADVANCE(52); + ADVANCE(54); if (lookahead == '$') ADVANCE(5); if (lookahead == '&') @@ -2097,41 +2108,41 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\'') ADVANCE(13); if (lookahead == ';') - ADVANCE(25); + ADVANCE(27); if (lookahead == '<') - ADVANCE(54); + ADVANCE(56); if (lookahead == '>') - ADVANCE(33); + ADVANCE(35); if (lookahead == '\\') - ADVANCE(126); + ADVANCE(128); if (lookahead == '`') - ADVANCE(45); + ADVANCE(47); if (lookahead == '|') - ADVANCE(112); + ADVANCE(114); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(125); + SKIP(127); if (lookahead != 0 && (lookahead < '&' || lookahead > ')') && (lookahead < '{' || lookahead > '}')) - ADVANCE(58); + ADVANCE(60); END_STATE(); - case 126: + case 128: if (lookahead == '\n') - SKIP(125); + SKIP(127); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(58); + ADVANCE(60); END_STATE(); - case 127: + case 129: if (lookahead == '\"') ADVANCE(3); if (lookahead == '#') - ADVANCE(52); + ADVANCE(54); if (lookahead == '$') ADVANCE(5); if (lookahead == '\'') @@ -2139,76 +2150,76 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '(') ADVANCE(15); if (lookahead == '<') - ADVANCE(128); - if (lookahead == '>') - ADVANCE(129); - if (lookahead == '\\') ADVANCE(130); + if (lookahead == '>') + ADVANCE(131); + if (lookahead == '\\') + ADVANCE(132); if (lookahead == '`') - ADVANCE(45); + ADVANCE(47); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(127); + SKIP(129); if (lookahead != 0 && (lookahead < '&' || lookahead > ')') && lookahead != ';' && lookahead != '<' && lookahead != '{' && lookahead != '}') - ADVANCE(58); - END_STATE(); - case 128: - if (lookahead == '(') - ADVANCE(29); - END_STATE(); - case 129: - if (lookahead == '(') - ADVANCE(35); + ADVANCE(60); END_STATE(); case 130: + if (lookahead == '(') + ADVANCE(31); + END_STATE(); + case 131: + if (lookahead == '(') + ADVANCE(37); + END_STATE(); + case 132: if (lookahead == '\n') - SKIP(127); + SKIP(129); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(58); - END_STATE(); - case 131: - if (lookahead == '\n') - ADVANCE(110); - if (lookahead == '#') - ADVANCE(52); - if (lookahead == '&') - ADVANCE(132); - if (lookahead == ';') - ADVANCE(25); - if (lookahead == '\\') - SKIP(133); - if (lookahead == 'i') - ADVANCE(96); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - SKIP(131); - END_STATE(); - case 132: - ACCEPT_TOKEN(anon_sym_AMP); + ADVANCE(60); END_STATE(); case 133: if (lookahead == '\n') - SKIP(131); + ADVANCE(112); + if (lookahead == '#') + ADVANCE(54); + if (lookahead == '&') + ADVANCE(134); + if (lookahead == ';') + ADVANCE(27); + if (lookahead == '\\') + SKIP(135); + if (lookahead == 'i') + ADVANCE(98); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(133); END_STATE(); case 134: + ACCEPT_TOKEN(anon_sym_AMP); + END_STATE(); + case 135: if (lookahead == '\n') - ADVANCE(110); + SKIP(133); + END_STATE(); + case 136: + if (lookahead == '\n') + ADVANCE(112); if (lookahead == '\"') ADVANCE(3); if (lookahead == '#') - ADVANCE(52); + ADVANCE(54); if (lookahead == '$') ADVANCE(5); if (lookahead == '&') @@ -2218,67 +2229,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ')') ADVANCE(16); if (lookahead == ';') - ADVANCE(25); + ADVANCE(27); if (lookahead == '<') - ADVANCE(54); + ADVANCE(56); if (lookahead == '>') - ADVANCE(33); - if (lookahead == '\\') - ADVANCE(135); - if (lookahead == '`') - ADVANCE(45); - if (lookahead == '|') - ADVANCE(112); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - SKIP(134); - if (lookahead != 0 && - (lookahead < '&' || lookahead > ')') && - (lookahead < '{' || lookahead > '}')) - ADVANCE(58); - END_STATE(); - case 135: - if (lookahead == '\n') - SKIP(134); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(58); - END_STATE(); - case 136: - if (lookahead == '\"') - ADVANCE(3); - if (lookahead == '#') - ADVANCE(52); - if (lookahead == '$') - ADVANCE(5); - if (lookahead == '\'') - ADVANCE(13); - if (lookahead == '<') - ADVANCE(128); - if (lookahead == '>') - ADVANCE(129); + ADVANCE(35); if (lookahead == '\\') ADVANCE(137); - if (lookahead == ']') - ADVANCE(138); if (lookahead == '`') - ADVANCE(45); + ADVANCE(47); + if (lookahead == '|') + ADVANCE(114); if (lookahead == '\t' || - lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(136); if (lookahead != 0 && (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '{' && - lookahead != '}') - ADVANCE(58); + (lookahead < '{' || lookahead > '}')) + ADVANCE(60); END_STATE(); case 137: if (lookahead == '\n') @@ -2288,169 +2257,211 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(58); + ADVANCE(60); END_STATE(); case 138: - ACCEPT_TOKEN(anon_sym_RBRACK); - if (lookahead == '\\') - ADVANCE(57); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - lookahead != '`' && - lookahead != '{' && - lookahead != '}') - ADVANCE(58); - END_STATE(); - case 139: if (lookahead == '\"') ADVANCE(3); if (lookahead == '#') - ADVANCE(52); + ADVANCE(54); if (lookahead == '$') ADVANCE(5); if (lookahead == '\'') ADVANCE(13); if (lookahead == '<') - ADVANCE(128); + ADVANCE(130); if (lookahead == '>') - ADVANCE(129); + ADVANCE(131); if (lookahead == '\\') - ADVANCE(140); + ADVANCE(139); if (lookahead == ']') - ADVANCE(141); + ADVANCE(140); if (lookahead == '`') - ADVANCE(45); + ADVANCE(47); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(139); + SKIP(138); if (lookahead != 0 && (lookahead < '&' || lookahead > ')') && lookahead != ';' && lookahead != '<' && lookahead != '{' && lookahead != '}') - ADVANCE(58); + ADVANCE(60); END_STATE(); - case 140: + case 139: if (lookahead == '\n') - SKIP(139); + SKIP(138); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(58); + ADVANCE(60); + END_STATE(); + case 140: + ACCEPT_TOKEN(anon_sym_RBRACK); + if (lookahead == '\\') + ADVANCE(59); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + lookahead != '`' && + lookahead != '{' && + lookahead != '}') + ADVANCE(60); END_STATE(); case 141: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(57); - if (lookahead == ']') - ADVANCE(142); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - lookahead != '`' && - lookahead != '{' && - lookahead != '}') - ADVANCE(58); - END_STATE(); - case 142: - ACCEPT_TOKEN(anon_sym_RBRACK_RBRACK); - if (lookahead == '\\') - ADVANCE(57); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - lookahead != '`' && - lookahead != '{' && - lookahead != '}') - ADVANCE(58); - END_STATE(); - case 143: if (lookahead == '\"') ADVANCE(3); if (lookahead == '#') - ADVANCE(52); + ADVANCE(54); + if (lookahead == '$') + ADVANCE(5); + if (lookahead == '\'') + ADVANCE(13); + if (lookahead == '<') + ADVANCE(130); + if (lookahead == '>') + ADVANCE(131); + if (lookahead == '\\') + ADVANCE(142); + if (lookahead == ']') + ADVANCE(143); + if (lookahead == '`') + ADVANCE(47); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(141); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '{' && + lookahead != '}') + ADVANCE(60); + END_STATE(); + case 142: + if (lookahead == '\n') + SKIP(141); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(60); + END_STATE(); + case 143: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(59); + if (lookahead == ']') + ADVANCE(144); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + lookahead != '`' && + lookahead != '{' && + lookahead != '}') + ADVANCE(60); + END_STATE(); + case 144: + ACCEPT_TOKEN(anon_sym_RBRACK_RBRACK); + if (lookahead == '\\') + ADVANCE(59); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + lookahead != '`' && + lookahead != '{' && + lookahead != '}') + ADVANCE(60); + END_STATE(); + case 145: + if (lookahead == '\"') + ADVANCE(3); + if (lookahead == '#') + ADVANCE(54); if (lookahead == '$') ADVANCE(5); if (lookahead == '&') - ADVANCE(144); + ADVANCE(146); if (lookahead == '\'') ADVANCE(13); if (lookahead == ')') ADVANCE(16); if (lookahead == '<') - ADVANCE(27); + ADVANCE(29); if (lookahead == '>') - ADVANCE(33); + ADVANCE(35); if (lookahead == '\\') - ADVANCE(145); + ADVANCE(147); if (lookahead == '`') - ADVANCE(45); + ADVANCE(47); if (lookahead == '|') - ADVANCE(112); + ADVANCE(114); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(143); + SKIP(145); if (lookahead != 0 && (lookahead < '&' || lookahead > ')') && lookahead != ';' && lookahead != '<' && (lookahead < '{' || lookahead > '}')) - ADVANCE(58); + ADVANCE(60); END_STATE(); - case 144: + case 146: if (lookahead == '&') ADVANCE(10); if (lookahead == '>') ADVANCE(11); END_STATE(); - case 145: + case 147: if (lookahead == '\n') - SKIP(143); + SKIP(145); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(58); + ADVANCE(60); END_STATE(); - case 146: + case 148: if (lookahead == '\"') ADVANCE(3); if (lookahead == '#') - ADVANCE(52); + ADVANCE(54); if (lookahead == '$') ADVANCE(5); if (lookahead == '&') - ADVANCE(144); + ADVANCE(146); if (lookahead == '\'') ADVANCE(13); if (lookahead == '(') @@ -2458,72 +2469,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ')') ADVANCE(16); if (lookahead == '<') - ADVANCE(27); + ADVANCE(29); if (lookahead == '>') - ADVANCE(33); - if (lookahead == '\\') - ADVANCE(147); - if (lookahead == '`') - ADVANCE(45); - if (lookahead == '{') - ADVANCE(46); - if (lookahead == '|') - ADVANCE(112); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(146); - if (lookahead != 0 && - lookahead != ';' && - lookahead != '<' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(58); - END_STATE(); - case 147: - if (lookahead == '\n') - SKIP(146); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(58); - END_STATE(); - case 148: - if (lookahead == '\"') - ADVANCE(3); - if (lookahead == '#') - ADVANCE(52); - if (lookahead == '$') - ADVANCE(5); - if (lookahead == '&') - ADVANCE(144); - if (lookahead == '\'') - ADVANCE(13); - if (lookahead == ')') - ADVANCE(16); - if (lookahead == '<') - ADVANCE(54); - if (lookahead == '>') - ADVANCE(33); + ADVANCE(35); if (lookahead == '\\') ADVANCE(149); if (lookahead == '`') - ADVANCE(45); + ADVANCE(47); + if (lookahead == '{') + ADVANCE(48); if (lookahead == '|') - ADVANCE(112); + ADVANCE(114); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(148); if (lookahead != 0 && - (lookahead < '&' || lookahead > ')') && lookahead != ';' && lookahead != '<' && (lookahead < '{' || lookahead > '}')) - ADVANCE(58); + ADVANCE(60); END_STATE(); case 149: if (lookahead == '\n') @@ -2533,29 +2499,31 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(58); + ADVANCE(60); END_STATE(); case 150: if (lookahead == '\"') ADVANCE(3); if (lookahead == '#') - ADVANCE(52); + ADVANCE(54); if (lookahead == '$') ADVANCE(5); if (lookahead == '&') - ADVANCE(144); + ADVANCE(146); if (lookahead == '\'') ADVANCE(13); + if (lookahead == ')') + ADVANCE(16); if (lookahead == '<') - ADVANCE(27); + ADVANCE(56); if (lookahead == '>') - ADVANCE(33); + ADVANCE(35); if (lookahead == '\\') ADVANCE(151); if (lookahead == '`') - ADVANCE(45); + ADVANCE(47); if (lookahead == '|') - ADVANCE(112); + ADVANCE(114); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -2566,7 +2534,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '<' && (lookahead < '{' || lookahead > '}')) - ADVANCE(58); + ADVANCE(60); END_STATE(); case 151: if (lookahead == '\n') @@ -2576,29 +2544,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(58); + ADVANCE(60); END_STATE(); case 152: if (lookahead == '\"') ADVANCE(3); if (lookahead == '#') - ADVANCE(52); + ADVANCE(54); if (lookahead == '$') ADVANCE(5); if (lookahead == '&') - ADVANCE(144); + ADVANCE(146); if (lookahead == '\'') ADVANCE(13); if (lookahead == '<') - ADVANCE(54); + ADVANCE(29); if (lookahead == '>') - ADVANCE(33); + ADVANCE(35); if (lookahead == '\\') ADVANCE(153); if (lookahead == '`') - ADVANCE(45); + ADVANCE(47); if (lookahead == '|') - ADVANCE(112); + ADVANCE(114); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -2609,7 +2577,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '<' && (lookahead < '{' || lookahead > '}')) - ADVANCE(58); + ADVANCE(60); END_STATE(); case 153: if (lookahead == '\n') @@ -2619,41 +2587,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(58); + ADVANCE(60); END_STATE(); case 154: if (lookahead == '\"') ADVANCE(3); if (lookahead == '#') - ADVANCE(52); + ADVANCE(54); if (lookahead == '$') ADVANCE(5); if (lookahead == '&') - ADVANCE(53); + ADVANCE(146); if (lookahead == '\'') ADVANCE(13); - if (lookahead == '(') - ADVANCE(15); if (lookahead == '<') - ADVANCE(54); + ADVANCE(56); if (lookahead == '>') - ADVANCE(33); - if (lookahead == '[') - ADVANCE(55); + ADVANCE(35); if (lookahead == '\\') ADVANCE(155); if (lookahead == '`') - ADVANCE(45); - if (lookahead == 'c') - ADVANCE(60); - if (lookahead == 'f') - ADVANCE(64); - if (lookahead == 'i') - ADVANCE(74); - if (lookahead == 'w') - ADVANCE(76); - if (lookahead == '}') - ADVANCE(50); + ADVANCE(47); + if (lookahead == '|') + ADVANCE(114); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -2663,8 +2619,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '&' || lookahead > ')') && lookahead != ';' && lookahead != '<' && - lookahead != '{') - ADVANCE(58); + (lookahead < '{' || lookahead > '}')) + ADVANCE(60); END_STATE(); case 155: if (lookahead == '\n') @@ -2674,181 +2630,189 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(58); + ADVANCE(60); END_STATE(); case 156: - if (lookahead == '\n') - ADVANCE(110); - if (lookahead == '#') - ADVANCE(52); - if (lookahead == '&') - ADVANCE(9); - if (lookahead == ')') - ADVANCE(16); - if (lookahead == ';') - ADVANCE(25); - if (lookahead == '<') - ADVANCE(157); - if (lookahead == '>') - ADVANCE(158); - if (lookahead == '\\') - SKIP(159); - if (lookahead == '|') - ADVANCE(47); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - SKIP(156); - END_STATE(); - case 157: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '&') - ADVANCE(28); - END_STATE(); - case 158: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '&') - ADVANCE(34); - if (lookahead == '>') - ADVANCE(36); - END_STATE(); - case 159: - if (lookahead == '\n') - SKIP(156); - END_STATE(); - case 160: - if (lookahead == '#') - ADVANCE(52); - if (lookahead == '\\') - SKIP(161); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(160); - END_STATE(); - case 161: - if (lookahead == '\n') - SKIP(160); - END_STATE(); - case 162: - if (lookahead == '\n') - ADVANCE(110); - if (lookahead == '#') - ADVANCE(52); - if (lookahead == '&') - ADVANCE(9); - if (lookahead == ')') - ADVANCE(16); - if (lookahead == ';') - ADVANCE(25); - if (lookahead == '<') - ADVANCE(163); - if (lookahead == '>') - ADVANCE(158); - if (lookahead == '\\') - SKIP(164); - if (lookahead == '|') - ADVANCE(47); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - SKIP(162); - END_STATE(); - case 163: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '&') - ADVANCE(28); - if (lookahead == '<') - ADVANCE(30); - END_STATE(); - case 164: - if (lookahead == '\n') - SKIP(162); - END_STATE(); - case 165: - if (lookahead == '#') - ADVANCE(52); - if (lookahead == '\\') - SKIP(166); - if (lookahead == ']') - ADVANCE(85); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(165); - END_STATE(); - case 166: - if (lookahead == '\n') - SKIP(165); - END_STATE(); - case 167: - if (lookahead == '#') - ADVANCE(52); - if (lookahead == ')') - ADVANCE(16); - if (lookahead == '\\') - ADVANCE(168); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(167); - if (lookahead != 0 && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - lookahead != '`' && - lookahead != '{' && - lookahead != '}') - ADVANCE(58); - END_STATE(); - case 168: - if (lookahead == '\n') - SKIP(167); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(58); - END_STATE(); - case 169: if (lookahead == '\"') ADVANCE(3); if (lookahead == '#') - ADVANCE(52); + ADVANCE(54); if (lookahead == '$') ADVANCE(5); if (lookahead == '&') - ADVANCE(53); + ADVANCE(55); if (lookahead == '\'') ADVANCE(13); if (lookahead == '(') ADVANCE(15); if (lookahead == '<') - ADVANCE(54); + ADVANCE(56); if (lookahead == '>') - ADVANCE(33); + ADVANCE(35); if (lookahead == '[') - ADVANCE(55); + ADVANCE(57); + if (lookahead == '\\') + ADVANCE(157); + if (lookahead == '`') + ADVANCE(47); + if (lookahead == 'c') + ADVANCE(62); + if (lookahead == 'f') + ADVANCE(66); + if (lookahead == 'i') + ADVANCE(76); + if (lookahead == 'w') + ADVANCE(78); + if (lookahead == '}') + ADVANCE(52); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(156); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '{') + ADVANCE(60); + END_STATE(); + case 157: + if (lookahead == '\n') + SKIP(156); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(60); + END_STATE(); + case 158: + if (lookahead == '\n') + ADVANCE(112); + if (lookahead == '#') + ADVANCE(54); + if (lookahead == '&') + ADVANCE(9); + if (lookahead == ')') + ADVANCE(16); + if (lookahead == ';') + ADVANCE(27); + if (lookahead == '<') + ADVANCE(159); + if (lookahead == '>') + ADVANCE(160); + if (lookahead == '\\') + SKIP(161); + if (lookahead == '|') + ADVANCE(49); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(158); + END_STATE(); + case 159: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '&') + ADVANCE(30); + END_STATE(); + case 160: + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '&') + ADVANCE(36); + if (lookahead == '>') + ADVANCE(38); + END_STATE(); + case 161: + if (lookahead == '\n') + SKIP(158); + END_STATE(); + case 162: + if (lookahead == '#') + ADVANCE(54); + if (lookahead == '\\') + SKIP(163); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(162); + END_STATE(); + case 163: + if (lookahead == '\n') + SKIP(162); + END_STATE(); + case 164: + if (lookahead == '\n') + ADVANCE(112); + if (lookahead == '#') + ADVANCE(54); + if (lookahead == '&') + ADVANCE(9); + if (lookahead == ')') + ADVANCE(16); + if (lookahead == ';') + ADVANCE(27); + if (lookahead == '<') + ADVANCE(165); + if (lookahead == '>') + ADVANCE(160); + if (lookahead == '\\') + SKIP(166); + if (lookahead == '|') + ADVANCE(49); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(164); + END_STATE(); + case 165: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '&') + ADVANCE(30); + if (lookahead == '<') + ADVANCE(32); + END_STATE(); + case 166: + if (lookahead == '\n') + SKIP(164); + END_STATE(); + case 167: + if (lookahead == '#') + ADVANCE(54); + if (lookahead == '\\') + SKIP(168); + if (lookahead == ']') + ADVANCE(87); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(167); + END_STATE(); + case 168: + if (lookahead == '\n') + SKIP(167); + END_STATE(); + case 169: + if (lookahead == '\"') + ADVANCE(3); + if (lookahead == '#') + ADVANCE(54); + if (lookahead == '$') + ADVANCE(5); + if (lookahead == '\'') + ADVANCE(13); + if (lookahead == ')') + ADVANCE(16); + if (lookahead == '<') + ADVANCE(130); + if (lookahead == '>') + ADVANCE(131); if (lookahead == '\\') ADVANCE(170); if (lookahead == '`') - ADVANCE(45); - if (lookahead == 'c') - ADVANCE(60); - if (lookahead == 'd') - ADVANCE(171); - if (lookahead == 'f') - ADVANCE(64); - if (lookahead == 'i') - ADVANCE(74); - if (lookahead == 'w') - ADVANCE(76); + ADVANCE(47); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -2860,7 +2824,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '<' && lookahead != '{' && lookahead != '}') - ADVANCE(58); + ADVANCE(60); END_STATE(); case 170: if (lookahead == '\n') @@ -2870,55 +2834,69 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(58); + ADVANCE(60); END_STATE(); case 171: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') + if (lookahead == '\"') + ADVANCE(3); + if (lookahead == '#') + ADVANCE(54); + if (lookahead == '$') + ADVANCE(5); + if (lookahead == '&') + ADVANCE(55); + if (lookahead == '\'') + ADVANCE(13); + if (lookahead == '(') + ADVANCE(15); + if (lookahead == '<') + ADVANCE(56); + if (lookahead == '>') + ADVANCE(35); + if (lookahead == '[') ADVANCE(57); - if (lookahead == 'o') + if (lookahead == '\\') ADVANCE(172); + if (lookahead == '`') + ADVANCE(47); + if (lookahead == 'c') + ADVANCE(62); + if (lookahead == 'd') + ADVANCE(173); + if (lookahead == 'f') + ADVANCE(66); + if (lookahead == 'i') + ADVANCE(76); + if (lookahead == 'w') + ADVANCE(78); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(171); if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && (lookahead < '&' || lookahead > ')') && lookahead != ';' && lookahead != '<' && - lookahead != '>' && - lookahead != '`' && lookahead != '{' && lookahead != '}') - ADVANCE(58); + ADVANCE(60); END_STATE(); case 172: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(57); - if (lookahead == 'n') - ADVANCE(173); + if (lookahead == '\n') + SKIP(171); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - lookahead != '`' && - lookahead != '{' && - lookahead != '}') - ADVANCE(58); + lookahead != ' ') + ADVANCE(60); END_STATE(); case 173: ACCEPT_TOKEN(sym_word); if (lookahead == '\\') - ADVANCE(57); - if (lookahead == 'e') + ADVANCE(59); + if (lookahead == 'o') ADVANCE(174); if (lookahead != 0 && lookahead != '\t' && @@ -2933,12 +2911,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '`' && lookahead != '{' && lookahead != '}') - ADVANCE(58); + ADVANCE(60); END_STATE(); case 174: - ACCEPT_TOKEN(anon_sym_done); + ACCEPT_TOKEN(sym_word); if (lookahead == '\\') - ADVANCE(57); + ADVANCE(59); + if (lookahead == 'n') + ADVANCE(175); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -2952,113 +2932,109 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '`' && lookahead != '{' && lookahead != '}') - ADVANCE(58); + ADVANCE(60); END_STATE(); case 175: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(59); + if (lookahead == 'e') + ADVANCE(176); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + lookahead != '`' && + lookahead != '{' && + lookahead != '}') + ADVANCE(60); + END_STATE(); + case 176: + ACCEPT_TOKEN(anon_sym_done); + if (lookahead == '\\') + ADVANCE(59); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + lookahead != '`' && + lookahead != '{' && + lookahead != '}') + ADVANCE(60); + END_STATE(); + case 177: if (lookahead == '\"') ADVANCE(3); if (lookahead == '#') - ADVANCE(52); + ADVANCE(54); if (lookahead == '$') ADVANCE(5); if (lookahead == '&') - ADVANCE(53); + ADVANCE(55); if (lookahead == '\'') ADVANCE(13); if (lookahead == '(') ADVANCE(15); if (lookahead == '<') - ADVANCE(54); + ADVANCE(56); if (lookahead == '>') - ADVANCE(33); + ADVANCE(35); if (lookahead == '[') - ADVANCE(55); + ADVANCE(57); if (lookahead == '\\') - ADVANCE(176); + ADVANCE(178); if (lookahead == '`') - ADVANCE(45); + ADVANCE(47); if (lookahead == 'c') - ADVANCE(60); + ADVANCE(62); if (lookahead == 'e') - ADVANCE(177); + ADVANCE(179); if (lookahead == 'f') - ADVANCE(183); + ADVANCE(185); if (lookahead == 'i') - ADVANCE(74); - if (lookahead == 'w') ADVANCE(76); + if (lookahead == 'w') + ADVANCE(78); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(175); + SKIP(177); if (lookahead != 0 && (lookahead < '&' || lookahead > ')') && lookahead != ';' && lookahead != '<' && lookahead != '{' && lookahead != '}') - ADVANCE(58); + ADVANCE(60); END_STATE(); - case 176: + case 178: if (lookahead == '\n') - SKIP(175); + SKIP(177); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(58); - END_STATE(); - case 177: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(57); - if (lookahead == 'l') - ADVANCE(178); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - lookahead != '`' && - lookahead != '{' && - lookahead != '}') - ADVANCE(58); - END_STATE(); - case 178: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(57); - if (lookahead == 'i') - ADVANCE(179); - if (lookahead == 's') - ADVANCE(181); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - lookahead != '`' && - lookahead != '{' && - lookahead != '}') - ADVANCE(58); + ADVANCE(60); END_STATE(); case 179: ACCEPT_TOKEN(sym_word); if (lookahead == '\\') - ADVANCE(57); - if (lookahead == 'f') + ADVANCE(59); + if (lookahead == 'l') ADVANCE(180); if (lookahead != 0 && lookahead != '\t' && @@ -3073,12 +3049,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '`' && lookahead != '{' && lookahead != '}') - ADVANCE(58); + ADVANCE(60); END_STATE(); case 180: - ACCEPT_TOKEN(anon_sym_elif); + ACCEPT_TOKEN(sym_word); if (lookahead == '\\') - ADVANCE(57); + ADVANCE(59); + if (lookahead == 'i') + ADVANCE(181); + if (lookahead == 's') + ADVANCE(183); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3092,13 +3072,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '`' && lookahead != '{' && lookahead != '}') - ADVANCE(58); + ADVANCE(60); END_STATE(); case 181: ACCEPT_TOKEN(sym_word); if (lookahead == '\\') - ADVANCE(57); - if (lookahead == 'e') + ADVANCE(59); + if (lookahead == 'f') ADVANCE(182); if (lookahead != 0 && lookahead != '\t' && @@ -3113,12 +3093,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '`' && lookahead != '{' && lookahead != '}') - ADVANCE(58); + ADVANCE(60); END_STATE(); case 182: - ACCEPT_TOKEN(anon_sym_else); + ACCEPT_TOKEN(anon_sym_elif); if (lookahead == '\\') - ADVANCE(57); + ADVANCE(59); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3132,18 +3112,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '`' && lookahead != '{' && lookahead != '}') - ADVANCE(58); + ADVANCE(60); END_STATE(); case 183: ACCEPT_TOKEN(sym_word); if (lookahead == '\\') - ADVANCE(57); - if (lookahead == 'i') + ADVANCE(59); + if (lookahead == 'e') ADVANCE(184); - if (lookahead == 'o') - ADVANCE(65); - if (lookahead == 'u') - ADVANCE(67); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3157,12 +3133,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '`' && lookahead != '{' && lookahead != '}') - ADVANCE(58); + ADVANCE(60); END_STATE(); case 184: - ACCEPT_TOKEN(anon_sym_fi); + ACCEPT_TOKEN(anon_sym_else); if (lookahead == '\\') - ADVANCE(57); + ADVANCE(59); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3176,17 +3152,61 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '`' && lookahead != '{' && lookahead != '}') - ADVANCE(58); + ADVANCE(60); END_STATE(); case 185: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(59); + if (lookahead == 'i') + ADVANCE(186); + if (lookahead == 'o') + ADVANCE(67); + if (lookahead == 'u') + ADVANCE(69); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + lookahead != '`' && + lookahead != '{' && + lookahead != '}') + ADVANCE(60); + END_STATE(); + case 186: + ACCEPT_TOKEN(anon_sym_fi); + if (lookahead == '\\') + ADVANCE(59); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + lookahead != '`' && + lookahead != '{' && + lookahead != '}') + ADVANCE(60); + END_STATE(); + case 187: if (lookahead == '\"') ADVANCE(3); if (lookahead == '#') - ADVANCE(52); + ADVANCE(54); if (lookahead == '$') ADVANCE(5); if (lookahead == '&') - ADVANCE(53); + ADVANCE(55); if (lookahead == '\'') ADVANCE(13); if (lookahead == '(') @@ -3194,77 +3214,34 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ')') ADVANCE(16); if (lookahead == '<') - ADVANCE(54); + ADVANCE(56); if (lookahead == '>') - ADVANCE(33); + ADVANCE(35); if (lookahead == '[') - ADVANCE(55); - if (lookahead == '\\') - ADVANCE(186); - if (lookahead == '`') - ADVANCE(45); - if (lookahead == 'c') - ADVANCE(60); - if (lookahead == 'f') - ADVANCE(64); - if (lookahead == 'i') - ADVANCE(74); - if (lookahead == 'w') - ADVANCE(76); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(185); - if (lookahead != 0 && - lookahead != ';' && - lookahead != '<' && - lookahead != '{' && - lookahead != '}') - ADVANCE(58); - END_STATE(); - case 186: - if (lookahead == '\n') - SKIP(185); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(58); - END_STATE(); - case 187: - if (lookahead == '\"') - ADVANCE(3); - if (lookahead == '#') - ADVANCE(52); - if (lookahead == '$') - ADVANCE(5); - if (lookahead == '\'') - ADVANCE(13); - if (lookahead == '<') - ADVANCE(128); - if (lookahead == '>') - ADVANCE(129); + ADVANCE(57); if (lookahead == '\\') ADVANCE(188); - if (lookahead == ']') - ADVANCE(138); if (lookahead == '`') - ADVANCE(45); - if (lookahead == '}') - ADVANCE(50); + ADVANCE(47); + if (lookahead == 'c') + ADVANCE(62); + if (lookahead == 'f') + ADVANCE(66); + if (lookahead == 'i') + ADVANCE(76); + if (lookahead == 'w') + ADVANCE(78); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(187); if (lookahead != 0 && - (lookahead < '&' || lookahead > ')') && lookahead != ';' && lookahead != '<' && - lookahead != '{') - ADVANCE(58); + lookahead != '{' && + lookahead != '}') + ADVANCE(60); END_STATE(); case 188: if (lookahead == '\n') @@ -3274,52 +3251,68 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(58); + ADVANCE(60); END_STATE(); case 189: + if (lookahead == '\"') + ADVANCE(3); if (lookahead == '#') - ADVANCE(52); - if (lookahead == '&') - ADVANCE(144); - if (lookahead == ')') - ADVANCE(16); + ADVANCE(54); + if (lookahead == '$') + ADVANCE(5); + if (lookahead == '\'') + ADVANCE(13); if (lookahead == '<') - ADVANCE(157); + ADVANCE(130); if (lookahead == '>') - ADVANCE(158); + ADVANCE(131); if (lookahead == '\\') - SKIP(190); + ADVANCE(190); + if (lookahead == ']') + ADVANCE(140); if (lookahead == '`') - ADVANCE(45); - if (lookahead == '|') ADVANCE(47); + if (lookahead == '}') + ADVANCE(52); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(189); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '{') + ADVANCE(60); END_STATE(); case 190: if (lookahead == '\n') SKIP(189); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(60); END_STATE(); case 191: if (lookahead == '#') - ADVANCE(52); + ADVANCE(54); if (lookahead == '&') - ADVANCE(144); + ADVANCE(146); if (lookahead == ')') ADVANCE(16); if (lookahead == '<') - ADVANCE(163); + ADVANCE(159); if (lookahead == '>') - ADVANCE(158); + ADVANCE(160); if (lookahead == '\\') SKIP(192); if (lookahead == '`') - ADVANCE(45); - if (lookahead == '|') ADVANCE(47); + if (lookahead == '|') + ADVANCE(49); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -3332,11 +3325,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 193: if (lookahead == '#') - ADVANCE(52); - if (lookahead == '$') - ADVANCE(194); + ADVANCE(54); + if (lookahead == '&') + ADVANCE(146); + if (lookahead == ')') + ADVANCE(16); + if (lookahead == '<') + ADVANCE(165); + if (lookahead == '>') + ADVANCE(160); if (lookahead == '\\') - SKIP(195); + SKIP(194); + if (lookahead == '`') + ADVANCE(47); + if (lookahead == '|') + ADVANCE(49); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -3344,124 +3347,87 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { SKIP(193); END_STATE(); case 194: + if (lookahead == '\n') + SKIP(193); + END_STATE(); + case 195: + if (lookahead == '#') + ADVANCE(54); + if (lookahead == '$') + ADVANCE(196); + if (lookahead == '\\') + SKIP(197); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(195); + END_STATE(); + case 196: ACCEPT_TOKEN(anon_sym_DOLLAR); if (lookahead == '{') ADVANCE(7); END_STATE(); - case 195: + case 197: if (lookahead == '\n') - SKIP(193); + SKIP(195); END_STATE(); - case 196: + case 198: if (lookahead == '#') - ADVANCE(52); + ADVANCE(54); if (lookahead == ')') ADVANCE(16); if (lookahead == '\\') - SKIP(197); + SKIP(199); if (lookahead == ']') - ADVANCE(85); + ADVANCE(87); if (lookahead == '|') - ADVANCE(198); + ADVANCE(200); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(196); - END_STATE(); - case 197: - if (lookahead == '\n') - SKIP(196); - END_STATE(); - case 198: - ACCEPT_TOKEN(anon_sym_PIPE); + SKIP(198); END_STATE(); case 199: if (lookahead == '\n') - ADVANCE(110); + SKIP(198); + END_STATE(); + case 200: + ACCEPT_TOKEN(anon_sym_PIPE); + END_STATE(); + case 201: + if (lookahead == '\n') + ADVANCE(112); if (lookahead == '\"') ADVANCE(3); if (lookahead == '#') - ADVANCE(52); + ADVANCE(54); if (lookahead == '$') ADVANCE(5); if (lookahead == '&') - ADVANCE(132); + ADVANCE(134); if (lookahead == '\'') ADVANCE(13); if (lookahead == ';') - ADVANCE(25); + ADVANCE(27); if (lookahead == '<') - ADVANCE(128); + ADVANCE(130); if (lookahead == '>') - ADVANCE(129); - if (lookahead == '\\') - ADVANCE(200); - if (lookahead == '`') - ADVANCE(45); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - SKIP(199); - if (lookahead != 0 && - (lookahead < '&' || lookahead > ')') && - lookahead != '{' && - lookahead != '}') - ADVANCE(58); - END_STATE(); - case 200: - if (lookahead == '\n') - SKIP(199); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(58); - END_STATE(); - case 201: - if (lookahead == '\"') - ADVANCE(3); - if (lookahead == '#') - ADVANCE(52); - if (lookahead == '$') - ADVANCE(5); - if (lookahead == '&') - ADVANCE(53); - if (lookahead == '\'') - ADVANCE(13); - if (lookahead == '(') - ADVANCE(15); - if (lookahead == '<') - ADVANCE(54); - if (lookahead == '>') - ADVANCE(33); - if (lookahead == '[') - ADVANCE(55); + ADVANCE(131); if (lookahead == '\\') ADVANCE(202); if (lookahead == '`') - ADVANCE(45); - if (lookahead == 'c') - ADVANCE(60); - if (lookahead == 'f') - ADVANCE(183); - if (lookahead == 'i') - ADVANCE(74); - if (lookahead == 'w') - ADVANCE(76); + ADVANCE(47); if (lookahead == '\t' || - lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(201); if (lookahead != 0 && (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && lookahead != '{' && lookahead != '}') - ADVANCE(58); + ADVANCE(60); END_STATE(); case 202: if (lookahead == '\n') @@ -3471,27 +3437,39 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(58); + ADVANCE(60); END_STATE(); case 203: if (lookahead == '\"') ADVANCE(3); if (lookahead == '#') - ADVANCE(52); + ADVANCE(54); if (lookahead == '$') ADVANCE(5); + if (lookahead == '&') + ADVANCE(55); if (lookahead == '\'') ADVANCE(13); + if (lookahead == '(') + ADVANCE(15); if (lookahead == '<') - ADVANCE(128); + ADVANCE(56); if (lookahead == '>') - ADVANCE(129); + ADVANCE(35); + if (lookahead == '[') + ADVANCE(57); if (lookahead == '\\') ADVANCE(204); if (lookahead == '`') - ADVANCE(45); - if (lookahead == 'e') - ADVANCE(205); + ADVANCE(47); + if (lookahead == 'c') + ADVANCE(62); + if (lookahead == 'f') + ADVANCE(185); + if (lookahead == 'i') + ADVANCE(76); + if (lookahead == 'w') + ADVANCE(78); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -3503,7 +3481,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '<' && lookahead != '{' && lookahead != '}') - ADVANCE(58); + ADVANCE(60); END_STATE(); case 204: if (lookahead == '\n') @@ -3513,56 +3491,55 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(58); + ADVANCE(60); END_STATE(); case 205: - ACCEPT_TOKEN(sym_word); + if (lookahead == '\"') + ADVANCE(3); + if (lookahead == '#') + ADVANCE(54); + if (lookahead == '$') + ADVANCE(5); + if (lookahead == '\'') + ADVANCE(13); + if (lookahead == '<') + ADVANCE(130); + if (lookahead == '>') + ADVANCE(131); if (lookahead == '\\') - ADVANCE(57); - if (lookahead == 's') ADVANCE(206); + if (lookahead == '`') + ADVANCE(47); + if (lookahead == 'e') + ADVANCE(207); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(205); if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && (lookahead < '&' || lookahead > ')') && lookahead != ';' && lookahead != '<' && - lookahead != '>' && - lookahead != '`' && lookahead != '{' && lookahead != '}') - ADVANCE(58); + ADVANCE(60); END_STATE(); case 206: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(57); - if (lookahead == 'a') - ADVANCE(207); + if (lookahead == '\n') + SKIP(205); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - lookahead != '`' && - lookahead != 'a' && - lookahead != '{' && - lookahead != '}') - ADVANCE(58); + lookahead != ' ') + ADVANCE(60); END_STATE(); case 207: ACCEPT_TOKEN(sym_word); if (lookahead == '\\') - ADVANCE(57); - if (lookahead == 'c') + ADVANCE(59); + if (lookahead == 's') ADVANCE(208); if (lookahead != 0 && lookahead != '\t' && @@ -3577,12 +3554,36 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '`' && lookahead != '{' && lookahead != '}') - ADVANCE(58); + ADVANCE(60); END_STATE(); case 208: - ACCEPT_TOKEN(anon_sym_esac); + ACCEPT_TOKEN(sym_word); if (lookahead == '\\') - ADVANCE(57); + ADVANCE(59); + if (lookahead == 'a') + ADVANCE(209); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + lookahead != '`' && + lookahead != 'a' && + lookahead != '{' && + lookahead != '}') + ADVANCE(60); + END_STATE(); + case 209: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(59); + if (lookahead == 'c') + ADVANCE(210); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3596,34 +3597,34 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '`' && lookahead != '{' && lookahead != '}') - ADVANCE(58); - END_STATE(); - case 209: - if (lookahead == '#') - ADVANCE(52); - if (lookahead == '\\') - SKIP(210); - if (lookahead == '}') - ADVANCE(50); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(209); + ADVANCE(60); END_STATE(); case 210: - if (lookahead == '\n') - SKIP(209); + ACCEPT_TOKEN(anon_sym_esac); + if (lookahead == '\\') + ADVANCE(59); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + lookahead != '`' && + lookahead != '{' && + lookahead != '}') + ADVANCE(60); END_STATE(); case 211: if (lookahead == '#') - ADVANCE(52); - if (lookahead == ')') - ADVANCE(16); + ADVANCE(54); if (lookahead == '\\') SKIP(212); - if (lookahead == '|') - ADVANCE(198); + if (lookahead == '}') + ADVANCE(52); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -3636,17 +3637,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 213: if (lookahead == '#') - ADVANCE(52); - if (lookahead == '&') - ADVANCE(82); + ADVANCE(54); if (lookahead == ')') ADVANCE(16); if (lookahead == '\\') SKIP(214); - if (lookahead == '`') - ADVANCE(45); if (lookahead == '|') - ADVANCE(47); + ADVANCE(200); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -3658,58 +3655,81 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { SKIP(213); END_STATE(); case 215: - if (lookahead == '\"') - ADVANCE(3); if (lookahead == '#') - ADVANCE(52); - if (lookahead == '$') - ADVANCE(5); - if (lookahead == '&') - ADVANCE(53); - if (lookahead == '\'') - ADVANCE(13); - if (lookahead == '(') - ADVANCE(15); - if (lookahead == ';') - ADVANCE(120); - if (lookahead == '<') ADVANCE(54); - if (lookahead == '>') - ADVANCE(33); - if (lookahead == '[') - ADVANCE(55); + if (lookahead == '&') + ADVANCE(84); + if (lookahead == ')') + ADVANCE(16); if (lookahead == '\\') - ADVANCE(216); + SKIP(216); if (lookahead == '`') - ADVANCE(45); - if (lookahead == 'c') - ADVANCE(60); - if (lookahead == 'f') - ADVANCE(64); - if (lookahead == 'i') - ADVANCE(74); - if (lookahead == 'w') - ADVANCE(76); + ADVANCE(47); + if (lookahead == '|') + ADVANCE(49); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(215); - if (lookahead != 0 && - (lookahead < '&' || lookahead > ')') && - lookahead != '{' && - lookahead != '}') - ADVANCE(58); END_STATE(); case 216: if (lookahead == '\n') SKIP(215); + END_STATE(); + case 217: + if (lookahead == '\"') + ADVANCE(3); + if (lookahead == '#') + ADVANCE(54); + if (lookahead == '$') + ADVANCE(5); + if (lookahead == '&') + ADVANCE(55); + if (lookahead == '\'') + ADVANCE(13); + if (lookahead == '(') + ADVANCE(15); + if (lookahead == ';') + ADVANCE(122); + if (lookahead == '<') + ADVANCE(56); + if (lookahead == '>') + ADVANCE(35); + if (lookahead == '[') + ADVANCE(57); + if (lookahead == '\\') + ADVANCE(218); + if (lookahead == '`') + ADVANCE(47); + if (lookahead == 'c') + ADVANCE(62); + if (lookahead == 'f') + ADVANCE(66); + if (lookahead == 'i') + ADVANCE(76); + if (lookahead == 'w') + ADVANCE(78); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(217); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')') && + lookahead != '{' && + lookahead != '}') + ADVANCE(60); + END_STATE(); + case 218: + if (lookahead == '\n') + SKIP(217); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(58); + ADVANCE(60); END_STATE(); default: return false; @@ -3718,1256 +3738,1316 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { static TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 51, .external_lex_state = 2}, - [2] = {.lex_state = 51}, - [3] = {.lex_state = 81}, - [4] = {.lex_state = 102}, - [5] = {.lex_state = 51, .external_lex_state = 2}, - [6] = {.lex_state = 51, .external_lex_state = 2}, - [7] = {.lex_state = 102}, - [8] = {.lex_state = 102}, - [9] = {.lex_state = 51, .external_lex_state = 2}, - [10] = {.lex_state = 102}, - [11] = {.lex_state = 102}, - [12] = {.lex_state = 102}, - [13] = {.lex_state = 104}, - [14] = {.lex_state = 109, .external_lex_state = 3}, - [15] = {.lex_state = 114}, - [16] = {.lex_state = 114}, - [17] = {.lex_state = 51, .external_lex_state = 2}, - [18] = {.lex_state = 51, .external_lex_state = 2}, - [19] = {.lex_state = 51, .external_lex_state = 2}, - [20] = {.lex_state = 117, .external_lex_state = 3}, - [21] = {.lex_state = 51}, - [22] = {.lex_state = 119, .external_lex_state = 2}, - [23] = {.lex_state = 122, .external_lex_state = 4}, - [24] = {.lex_state = 109, .external_lex_state = 5}, - [25] = {.lex_state = 125, .external_lex_state = 6}, - [26] = {.lex_state = 81}, - [27] = {.lex_state = 102, .external_lex_state = 2}, - [28] = {.lex_state = 109, .external_lex_state = 5}, - [29] = {.lex_state = 51, .external_lex_state = 2}, - [30] = {.lex_state = 102, .external_lex_state = 2}, - [31] = {.lex_state = 102}, - [32] = {.lex_state = 102}, - [33] = {.lex_state = 127, .external_lex_state = 7}, - [34] = {.lex_state = 81}, - [35] = {.lex_state = 81}, - [36] = {.lex_state = 122, .external_lex_state = 4}, - [37] = {.lex_state = 125, .external_lex_state = 6}, - [38] = {.lex_state = 81}, - [39] = {.lex_state = 104}, - [40] = {.lex_state = 131, .external_lex_state = 8}, - [41] = {.lex_state = 114}, - [42] = {.lex_state = 114}, - [43] = {.lex_state = 51, .external_lex_state = 2}, - [44] = {.lex_state = 51, .external_lex_state = 2}, - [45] = {.lex_state = 51, .external_lex_state = 2}, - [46] = {.lex_state = 131, .external_lex_state = 4}, - [47] = {.lex_state = 81}, - [48] = {.lex_state = 122, .external_lex_state = 4}, - [49] = {.lex_state = 134, .external_lex_state = 6}, - [50] = {.lex_state = 51, .external_lex_state = 2}, - [51] = {.lex_state = 104}, - [52] = {.lex_state = 136, .external_lex_state = 9}, - [53] = {.lex_state = 114}, - [54] = {.lex_state = 114}, - [55] = {.lex_state = 51, .external_lex_state = 2}, - [56] = {.lex_state = 51, .external_lex_state = 2}, - [57] = {.lex_state = 51, .external_lex_state = 2}, - [58] = {.lex_state = 136}, - [59] = {.lex_state = 136}, - [60] = {.lex_state = 104}, - [61] = {.lex_state = 139, .external_lex_state = 9}, - [62] = {.lex_state = 114}, - [63] = {.lex_state = 114}, - [64] = {.lex_state = 51, .external_lex_state = 2}, - [65] = {.lex_state = 51, .external_lex_state = 2}, - [66] = {.lex_state = 51, .external_lex_state = 2}, - [67] = {.lex_state = 139}, - [68] = {.lex_state = 139}, - [69] = {.lex_state = 104}, - [70] = {.lex_state = 102, .external_lex_state = 10}, - [71] = {.lex_state = 114}, - [72] = {.lex_state = 114}, - [73] = {.lex_state = 51, .external_lex_state = 2}, - [74] = {.lex_state = 51, .external_lex_state = 2}, - [75] = {.lex_state = 51, .external_lex_state = 2}, - [76] = {.lex_state = 102, .external_lex_state = 2}, - [77] = {.lex_state = 109, .external_lex_state = 3}, - [78] = {.lex_state = 104}, - [79] = {.lex_state = 114}, - [80] = {.lex_state = 114}, - [81] = {.lex_state = 51, .external_lex_state = 2}, - [82] = {.lex_state = 51, .external_lex_state = 2}, - [83] = {.lex_state = 104}, - [84] = {.lex_state = 102}, - [85] = {.lex_state = 109, .external_lex_state = 3}, - [86] = {.lex_state = 109, .external_lex_state = 3}, - [87] = {.lex_state = 109, .external_lex_state = 3}, - [88] = {.lex_state = 109, .external_lex_state = 3}, - [89] = {.lex_state = 81}, - [90] = {.lex_state = 114}, - [91] = {.lex_state = 81}, - [92] = {.lex_state = 81}, - [93] = {.lex_state = 81}, - [94] = {.lex_state = 102}, - [95] = {.lex_state = 51, .external_lex_state = 2}, - [96] = {.lex_state = 51, .external_lex_state = 2}, - [97] = {.lex_state = 102}, - [98] = {.lex_state = 102}, - [99] = {.lex_state = 51, .external_lex_state = 2}, - [100] = {.lex_state = 102}, - [101] = {.lex_state = 102}, - [102] = {.lex_state = 104}, - [103] = {.lex_state = 143, .external_lex_state = 11}, - [104] = {.lex_state = 114}, - [105] = {.lex_state = 114}, - [106] = {.lex_state = 51, .external_lex_state = 2}, - [107] = {.lex_state = 51, .external_lex_state = 2}, - [108] = {.lex_state = 51, .external_lex_state = 2}, - [109] = {.lex_state = 146, .external_lex_state = 11}, - [110] = {.lex_state = 81}, - [111] = {.lex_state = 143, .external_lex_state = 12}, - [112] = {.lex_state = 148, .external_lex_state = 2}, - [113] = {.lex_state = 81}, - [114] = {.lex_state = 143, .external_lex_state = 12}, - [115] = {.lex_state = 102, .external_lex_state = 2}, - [116] = {.lex_state = 81}, - [117] = {.lex_state = 150, .external_lex_state = 12}, - [118] = {.lex_state = 152, .external_lex_state = 2}, - [119] = {.lex_state = 102, .external_lex_state = 2}, - [120] = {.lex_state = 81}, - [121] = {.lex_state = 148, .external_lex_state = 2}, - [122] = {.lex_state = 81}, - [123] = {.lex_state = 154, .external_lex_state = 2}, - [124] = {.lex_state = 156, .external_lex_state = 5}, - [125] = {.lex_state = 51, .external_lex_state = 2}, - [126] = {.lex_state = 119, .external_lex_state = 2}, - [127] = {.lex_state = 51, .external_lex_state = 2}, - [128] = {.lex_state = 51}, - [129] = {.lex_state = 102}, - [130] = {.lex_state = 160, .external_lex_state = 13}, - [131] = {.lex_state = 109, .external_lex_state = 3}, - [132] = {.lex_state = 162, .external_lex_state = 5}, - [133] = {.lex_state = 109, .external_lex_state = 5}, - [134] = {.lex_state = 109, .external_lex_state = 5}, - [135] = {.lex_state = 162, .external_lex_state = 5}, - [136] = {.lex_state = 119, .external_lex_state = 2}, - [137] = {.lex_state = 81}, - [138] = {.lex_state = 109, .external_lex_state = 5}, - [139] = {.lex_state = 102, .external_lex_state = 2}, - [140] = {.lex_state = 81}, - [141] = {.lex_state = 102, .external_lex_state = 10}, - [142] = {.lex_state = 102, .external_lex_state = 2}, - [143] = {.lex_state = 104}, - [144] = {.lex_state = 165, .external_lex_state = 9}, - [145] = {.lex_state = 114}, - [146] = {.lex_state = 114}, - [147] = {.lex_state = 51, .external_lex_state = 2}, - [148] = {.lex_state = 51, .external_lex_state = 2}, - [149] = {.lex_state = 51, .external_lex_state = 2}, - [150] = {.lex_state = 81}, - [151] = {.lex_state = 134, .external_lex_state = 6}, - [152] = {.lex_state = 167}, - [153] = {.lex_state = 104}, - [154] = {.lex_state = 134, .external_lex_state = 14}, - [155] = {.lex_state = 114}, - [156] = {.lex_state = 114}, - [157] = {.lex_state = 51, .external_lex_state = 2}, - [158] = {.lex_state = 51, .external_lex_state = 2}, - [159] = {.lex_state = 51, .external_lex_state = 2}, - [160] = {.lex_state = 102}, - [161] = {.lex_state = 169, .external_lex_state = 2}, - [162] = {.lex_state = 122, .external_lex_state = 4}, - [163] = {.lex_state = 81}, - [164] = {.lex_state = 175, .external_lex_state = 2}, - [165] = {.lex_state = 131, .external_lex_state = 8}, - [166] = {.lex_state = 104}, - [167] = {.lex_state = 102}, - [168] = {.lex_state = 131, .external_lex_state = 4}, - [169] = {.lex_state = 81}, - [170] = {.lex_state = 131, .external_lex_state = 8}, - [171] = {.lex_state = 131, .external_lex_state = 8}, - [172] = {.lex_state = 131, .external_lex_state = 8}, - [173] = {.lex_state = 131, .external_lex_state = 8}, - [174] = {.lex_state = 114}, - [175] = {.lex_state = 81}, - [176] = {.lex_state = 81}, - [177] = {.lex_state = 81}, - [178] = {.lex_state = 148, .external_lex_state = 2}, - [179] = {.lex_state = 81}, - [180] = {.lex_state = 152, .external_lex_state = 2}, - [181] = {.lex_state = 81}, - [182] = {.lex_state = 148, .external_lex_state = 2}, - [183] = {.lex_state = 81}, - [184] = {.lex_state = 156, .external_lex_state = 5}, - [185] = {.lex_state = 122, .external_lex_state = 4}, - [186] = {.lex_state = 185, .external_lex_state = 2}, - [187] = {.lex_state = 122, .external_lex_state = 4}, - [188] = {.lex_state = 134, .external_lex_state = 6}, - [189] = {.lex_state = 187, .external_lex_state = 9}, - [190] = {.lex_state = 104}, - [191] = {.lex_state = 102}, - [192] = {.lex_state = 187, .external_lex_state = 9}, - [193] = {.lex_state = 187, .external_lex_state = 9}, - [194] = {.lex_state = 187, .external_lex_state = 9}, - [195] = {.lex_state = 187, .external_lex_state = 9}, - [196] = {.lex_state = 114}, - [197] = {.lex_state = 81}, - [198] = {.lex_state = 81}, - [199] = {.lex_state = 81}, - [200] = {.lex_state = 148, .external_lex_state = 2}, - [201] = {.lex_state = 81}, - [202] = {.lex_state = 152, .external_lex_state = 2}, - [203] = {.lex_state = 81}, - [204] = {.lex_state = 148, .external_lex_state = 2}, - [205] = {.lex_state = 122, .external_lex_state = 4}, - [206] = {.lex_state = 136, .external_lex_state = 9}, - [207] = {.lex_state = 136}, - [208] = {.lex_state = 139, .external_lex_state = 9}, - [209] = {.lex_state = 104}, - [210] = {.lex_state = 102}, - [211] = {.lex_state = 139, .external_lex_state = 9}, - [212] = {.lex_state = 139, .external_lex_state = 9}, - [213] = {.lex_state = 139, .external_lex_state = 9}, - [214] = {.lex_state = 139, .external_lex_state = 9}, - [215] = {.lex_state = 114}, - [216] = {.lex_state = 81}, - [217] = {.lex_state = 81}, - [218] = {.lex_state = 81}, - [219] = {.lex_state = 148, .external_lex_state = 2}, - [220] = {.lex_state = 81}, - [221] = {.lex_state = 152, .external_lex_state = 2}, - [222] = {.lex_state = 81}, - [223] = {.lex_state = 148, .external_lex_state = 2}, - [224] = {.lex_state = 139, .external_lex_state = 9}, - [225] = {.lex_state = 139}, - [226] = {.lex_state = 102, .external_lex_state = 10}, - [227] = {.lex_state = 104}, - [228] = {.lex_state = 102}, - [229] = {.lex_state = 102, .external_lex_state = 10}, - [230] = {.lex_state = 102, .external_lex_state = 10}, - [231] = {.lex_state = 102, .external_lex_state = 10}, - [232] = {.lex_state = 102, .external_lex_state = 10}, - [233] = {.lex_state = 114}, - [234] = {.lex_state = 81}, - [235] = {.lex_state = 81}, - [236] = {.lex_state = 81}, - [237] = {.lex_state = 148, .external_lex_state = 2}, - [238] = {.lex_state = 81}, - [239] = {.lex_state = 152, .external_lex_state = 2}, - [240] = {.lex_state = 81}, - [241] = {.lex_state = 148, .external_lex_state = 2}, - [242] = {.lex_state = 104}, - [243] = {.lex_state = 104}, - [244] = {.lex_state = 104}, - [245] = {.lex_state = 114}, - [246] = {.lex_state = 81}, - [247] = {.lex_state = 81}, - [248] = {.lex_state = 81}, - [249] = {.lex_state = 148, .external_lex_state = 2}, - [250] = {.lex_state = 81}, - [251] = {.lex_state = 152, .external_lex_state = 2}, - [252] = {.lex_state = 109, .external_lex_state = 3}, - [253] = {.lex_state = 104}, - [254] = {.lex_state = 109, .external_lex_state = 3}, - [255] = {.lex_state = 102}, - [256] = {.lex_state = 81}, - [257] = {.lex_state = 81}, - [258] = {.lex_state = 109, .external_lex_state = 3}, - [259] = {.lex_state = 81}, - [260] = {.lex_state = 102}, - [261] = {.lex_state = 109, .external_lex_state = 3}, - [262] = {.lex_state = 81}, - [263] = {.lex_state = 102}, - [264] = {.lex_state = 127, .external_lex_state = 7}, - [265] = {.lex_state = 81}, - [266] = {.lex_state = 81}, - [267] = {.lex_state = 81}, - [268] = {.lex_state = 131, .external_lex_state = 8}, - [269] = {.lex_state = 131, .external_lex_state = 4}, - [270] = {.lex_state = 81}, - [271] = {.lex_state = 122, .external_lex_state = 4}, - [272] = {.lex_state = 134, .external_lex_state = 6}, - [273] = {.lex_state = 51, .external_lex_state = 2}, - [274] = {.lex_state = 136}, - [275] = {.lex_state = 139}, - [276] = {.lex_state = 143, .external_lex_state = 11}, - [277] = {.lex_state = 104}, - [278] = {.lex_state = 102}, - [279] = {.lex_state = 143, .external_lex_state = 11}, - [280] = {.lex_state = 143, .external_lex_state = 11}, - [281] = {.lex_state = 143, .external_lex_state = 11}, - [282] = {.lex_state = 143, .external_lex_state = 11}, - [283] = {.lex_state = 114}, - [284] = {.lex_state = 81}, - [285] = {.lex_state = 81}, - [286] = {.lex_state = 81}, - [287] = {.lex_state = 148, .external_lex_state = 2}, - [288] = {.lex_state = 81}, - [289] = {.lex_state = 152, .external_lex_state = 2}, - [290] = {.lex_state = 81}, - [291] = {.lex_state = 148, .external_lex_state = 2}, - [292] = {.lex_state = 81}, - [293] = {.lex_state = 154, .external_lex_state = 2}, - [294] = {.lex_state = 189, .external_lex_state = 12}, - [295] = {.lex_state = 51, .external_lex_state = 2}, - [296] = {.lex_state = 109, .external_lex_state = 3}, - [297] = {.lex_state = 51, .external_lex_state = 2}, - [298] = {.lex_state = 51}, - [299] = {.lex_state = 102}, - [300] = {.lex_state = 160, .external_lex_state = 13}, - [301] = {.lex_state = 143, .external_lex_state = 11}, - [302] = {.lex_state = 191, .external_lex_state = 12}, - [303] = {.lex_state = 143, .external_lex_state = 12}, - [304] = {.lex_state = 143, .external_lex_state = 12}, - [305] = {.lex_state = 191, .external_lex_state = 12}, - [306] = {.lex_state = 143, .external_lex_state = 12}, - [307] = {.lex_state = 51, .external_lex_state = 2}, - [308] = {.lex_state = 51, .external_lex_state = 2}, - [309] = {.lex_state = 150, .external_lex_state = 12}, - [310] = {.lex_state = 150, .external_lex_state = 12}, - [311] = {.lex_state = 109, .external_lex_state = 3}, - [312] = {.lex_state = 81}, - [313] = {.lex_state = 156, .external_lex_state = 5}, - [314] = {.lex_state = 154, .external_lex_state = 2}, - [315] = {.lex_state = 51}, - [316] = {.lex_state = 102}, - [317] = {.lex_state = 122, .external_lex_state = 4}, - [318] = {.lex_state = 122, .external_lex_state = 4}, - [319] = {.lex_state = 134, .external_lex_state = 6}, - [320] = {.lex_state = 122, .external_lex_state = 4}, - [321] = {.lex_state = 134, .external_lex_state = 6}, - [322] = {.lex_state = 102}, - [323] = {.lex_state = 104}, - [324] = {.lex_state = 162, .external_lex_state = 3}, - [325] = {.lex_state = 114}, - [326] = {.lex_state = 114}, - [327] = {.lex_state = 51, .external_lex_state = 2}, - [328] = {.lex_state = 51, .external_lex_state = 2}, - [329] = {.lex_state = 51, .external_lex_state = 2}, - [330] = {.lex_state = 162, .external_lex_state = 5}, - [331] = {.lex_state = 162, .external_lex_state = 5}, - [332] = {.lex_state = 193, .external_lex_state = 15}, - [333] = {.lex_state = 162, .external_lex_state = 5}, - [334] = {.lex_state = 109, .external_lex_state = 3}, - [335] = {.lex_state = 109, .external_lex_state = 5}, - [336] = {.lex_state = 162, .external_lex_state = 5}, - [337] = {.lex_state = 162, .external_lex_state = 5}, - [338] = {.lex_state = 127, .external_lex_state = 7}, - [339] = {.lex_state = 109, .external_lex_state = 5}, - [340] = {.lex_state = 196, .external_lex_state = 9}, - [341] = {.lex_state = 104}, - [342] = {.lex_state = 102}, - [343] = {.lex_state = 81}, - [344] = {.lex_state = 196, .external_lex_state = 9}, - [345] = {.lex_state = 196, .external_lex_state = 9}, - [346] = {.lex_state = 196, .external_lex_state = 9}, - [347] = {.lex_state = 196, .external_lex_state = 9}, - [348] = {.lex_state = 114}, - [349] = {.lex_state = 81}, - [350] = {.lex_state = 81}, - [351] = {.lex_state = 81}, - [352] = {.lex_state = 148, .external_lex_state = 2}, - [353] = {.lex_state = 81}, - [354] = {.lex_state = 152, .external_lex_state = 2}, - [355] = {.lex_state = 81}, - [356] = {.lex_state = 148, .external_lex_state = 2}, - [357] = {.lex_state = 134, .external_lex_state = 6}, - [358] = {.lex_state = 167}, - [359] = {.lex_state = 167}, - [360] = {.lex_state = 134, .external_lex_state = 14}, - [361] = {.lex_state = 104}, - [362] = {.lex_state = 102}, - [363] = {.lex_state = 134, .external_lex_state = 14}, - [364] = {.lex_state = 134, .external_lex_state = 14}, - [365] = {.lex_state = 134, .external_lex_state = 14}, - [366] = {.lex_state = 134, .external_lex_state = 14}, - [367] = {.lex_state = 114}, - [368] = {.lex_state = 81}, - [369] = {.lex_state = 81}, - [370] = {.lex_state = 81}, - [371] = {.lex_state = 148, .external_lex_state = 2}, - [372] = {.lex_state = 81}, - [373] = {.lex_state = 152, .external_lex_state = 2}, - [374] = {.lex_state = 81}, - [375] = {.lex_state = 148, .external_lex_state = 2}, - [376] = {.lex_state = 104}, - [377] = {.lex_state = 199, .external_lex_state = 8}, - [378] = {.lex_state = 114}, - [379] = {.lex_state = 114}, - [380] = {.lex_state = 51, .external_lex_state = 2}, - [381] = {.lex_state = 51, .external_lex_state = 2}, - [382] = {.lex_state = 51, .external_lex_state = 2}, - [383] = {.lex_state = 199, .external_lex_state = 4}, - [384] = {.lex_state = 199, .external_lex_state = 4}, - [385] = {.lex_state = 122, .external_lex_state = 4}, - [386] = {.lex_state = 169, .external_lex_state = 2}, - [387] = {.lex_state = 122, .external_lex_state = 4}, - [388] = {.lex_state = 125, .external_lex_state = 6}, - [389] = {.lex_state = 169, .external_lex_state = 2}, - [390] = {.lex_state = 122, .external_lex_state = 4}, - [391] = {.lex_state = 51, .external_lex_state = 2}, - [392] = {.lex_state = 201, .external_lex_state = 2}, - [393] = {.lex_state = 175, .external_lex_state = 2}, - [394] = {.lex_state = 122, .external_lex_state = 4}, - [395] = {.lex_state = 81}, - [396] = {.lex_state = 81}, - [397] = {.lex_state = 125, .external_lex_state = 6}, - [398] = {.lex_state = 175, .external_lex_state = 2}, - [399] = {.lex_state = 81}, - [400] = {.lex_state = 131, .external_lex_state = 8}, - [401] = {.lex_state = 131, .external_lex_state = 8}, - [402] = {.lex_state = 203}, - [403] = {.lex_state = 131, .external_lex_state = 4}, - [404] = {.lex_state = 102}, - [405] = {.lex_state = 81}, - [406] = {.lex_state = 81}, - [407] = {.lex_state = 131, .external_lex_state = 8}, - [408] = {.lex_state = 81}, - [409] = {.lex_state = 102}, - [410] = {.lex_state = 131, .external_lex_state = 8}, - [411] = {.lex_state = 81}, - [412] = {.lex_state = 102}, - [413] = {.lex_state = 131, .external_lex_state = 8}, - [414] = {.lex_state = 131, .external_lex_state = 8}, - [415] = {.lex_state = 81}, - [416] = {.lex_state = 122, .external_lex_state = 4}, - [417] = {.lex_state = 122, .external_lex_state = 4}, - [418] = {.lex_state = 185, .external_lex_state = 2}, - [419] = {.lex_state = 187, .external_lex_state = 9}, - [420] = {.lex_state = 187, .external_lex_state = 9}, - [421] = {.lex_state = 102}, - [422] = {.lex_state = 81}, - [423] = {.lex_state = 81}, - [424] = {.lex_state = 187, .external_lex_state = 9}, - [425] = {.lex_state = 81}, - [426] = {.lex_state = 102}, - [427] = {.lex_state = 187, .external_lex_state = 9}, - [428] = {.lex_state = 81}, - [429] = {.lex_state = 102}, - [430] = {.lex_state = 187, .external_lex_state = 9}, - [431] = {.lex_state = 187, .external_lex_state = 9}, - [432] = {.lex_state = 139, .external_lex_state = 9}, - [433] = {.lex_state = 139, .external_lex_state = 9}, - [434] = {.lex_state = 102}, - [435] = {.lex_state = 81}, - [436] = {.lex_state = 81}, - [437] = {.lex_state = 139, .external_lex_state = 9}, - [438] = {.lex_state = 81}, - [439] = {.lex_state = 102}, - [440] = {.lex_state = 139, .external_lex_state = 9}, - [441] = {.lex_state = 81}, - [442] = {.lex_state = 102}, - [443] = {.lex_state = 139, .external_lex_state = 9}, - [444] = {.lex_state = 139, .external_lex_state = 9}, - [445] = {.lex_state = 102, .external_lex_state = 10}, - [446] = {.lex_state = 102, .external_lex_state = 10}, - [447] = {.lex_state = 102}, - [448] = {.lex_state = 81}, - [449] = {.lex_state = 81}, - [450] = {.lex_state = 102, .external_lex_state = 10}, - [451] = {.lex_state = 81}, - [452] = {.lex_state = 102}, - [453] = {.lex_state = 102, .external_lex_state = 10}, - [454] = {.lex_state = 81}, - [455] = {.lex_state = 102}, - [456] = {.lex_state = 102, .external_lex_state = 10}, - [457] = {.lex_state = 102, .external_lex_state = 10}, - [458] = {.lex_state = 81}, - [459] = {.lex_state = 81}, - [460] = {.lex_state = 104}, - [461] = {.lex_state = 81}, - [462] = {.lex_state = 102}, - [463] = {.lex_state = 104}, - [464] = {.lex_state = 81}, - [465] = {.lex_state = 102}, - [466] = {.lex_state = 104}, - [467] = {.lex_state = 109, .external_lex_state = 3}, - [468] = {.lex_state = 109, .external_lex_state = 3}, - [469] = {.lex_state = 81}, - [470] = {.lex_state = 109, .external_lex_state = 3}, - [471] = {.lex_state = 81}, - [472] = {.lex_state = 81}, - [473] = {.lex_state = 209, .external_lex_state = 9}, - [474] = {.lex_state = 81}, - [475] = {.lex_state = 81}, - [476] = {.lex_state = 209, .external_lex_state = 9}, - [477] = {.lex_state = 81}, - [478] = {.lex_state = 148, .external_lex_state = 2}, - [479] = {.lex_state = 167}, - [480] = {.lex_state = 104}, - [481] = {.lex_state = 148, .external_lex_state = 10}, - [482] = {.lex_state = 114}, - [483] = {.lex_state = 114}, - [484] = {.lex_state = 51, .external_lex_state = 2}, - [485] = {.lex_state = 51, .external_lex_state = 2}, - [486] = {.lex_state = 51, .external_lex_state = 2}, - [487] = {.lex_state = 102}, - [488] = {.lex_state = 169, .external_lex_state = 2}, - [489] = {.lex_state = 81}, - [490] = {.lex_state = 175, .external_lex_state = 2}, - [491] = {.lex_state = 131, .external_lex_state = 4}, - [492] = {.lex_state = 81}, - [493] = {.lex_state = 81}, - [494] = {.lex_state = 189, .external_lex_state = 12}, - [495] = {.lex_state = 81}, - [496] = {.lex_state = 185, .external_lex_state = 2}, - [497] = {.lex_state = 122, .external_lex_state = 4}, - [498] = {.lex_state = 134, .external_lex_state = 6}, - [499] = {.lex_state = 81}, - [500] = {.lex_state = 143, .external_lex_state = 11}, - [501] = {.lex_state = 143, .external_lex_state = 11}, - [502] = {.lex_state = 102}, - [503] = {.lex_state = 81}, - [504] = {.lex_state = 81}, - [505] = {.lex_state = 143, .external_lex_state = 11}, - [506] = {.lex_state = 81}, - [507] = {.lex_state = 102}, - [508] = {.lex_state = 143, .external_lex_state = 11}, - [509] = {.lex_state = 81}, - [510] = {.lex_state = 102}, - [511] = {.lex_state = 143, .external_lex_state = 11}, - [512] = {.lex_state = 143, .external_lex_state = 11}, - [513] = {.lex_state = 81}, - [514] = {.lex_state = 189, .external_lex_state = 12}, - [515] = {.lex_state = 154, .external_lex_state = 2}, - [516] = {.lex_state = 51}, - [517] = {.lex_state = 102}, - [518] = {.lex_state = 81}, - [519] = {.lex_state = 81}, - [520] = {.lex_state = 148, .external_lex_state = 2}, - [521] = {.lex_state = 81}, - [522] = {.lex_state = 148, .external_lex_state = 2}, - [523] = {.lex_state = 102}, + [1] = {.lex_state = 53, .external_lex_state = 2}, + [2] = {.lex_state = 53}, + [3] = {.lex_state = 83}, + [4] = {.lex_state = 104}, + [5] = {.lex_state = 53, .external_lex_state = 2}, + [6] = {.lex_state = 53, .external_lex_state = 2}, + [7] = {.lex_state = 104}, + [8] = {.lex_state = 104}, + [9] = {.lex_state = 53, .external_lex_state = 2}, + [10] = {.lex_state = 104}, + [11] = {.lex_state = 104}, + [12] = {.lex_state = 104}, + [13] = {.lex_state = 106}, + [14] = {.lex_state = 111, .external_lex_state = 3}, + [15] = {.lex_state = 116}, + [16] = {.lex_state = 116}, + [17] = {.lex_state = 53, .external_lex_state = 2}, + [18] = {.lex_state = 53, .external_lex_state = 2}, + [19] = {.lex_state = 53, .external_lex_state = 2}, + [20] = {.lex_state = 119, .external_lex_state = 3}, + [21] = {.lex_state = 53}, + [22] = {.lex_state = 121, .external_lex_state = 2}, + [23] = {.lex_state = 124, .external_lex_state = 4}, + [24] = {.lex_state = 111, .external_lex_state = 5}, + [25] = {.lex_state = 127, .external_lex_state = 6}, + [26] = {.lex_state = 83}, + [27] = {.lex_state = 104, .external_lex_state = 2}, + [28] = {.lex_state = 111, .external_lex_state = 5}, + [29] = {.lex_state = 53, .external_lex_state = 2}, + [30] = {.lex_state = 104, .external_lex_state = 2}, + [31] = {.lex_state = 104}, + [32] = {.lex_state = 104}, + [33] = {.lex_state = 129, .external_lex_state = 7}, + [34] = {.lex_state = 83}, + [35] = {.lex_state = 83}, + [36] = {.lex_state = 124, .external_lex_state = 4}, + [37] = {.lex_state = 127, .external_lex_state = 6}, + [38] = {.lex_state = 83}, + [39] = {.lex_state = 106}, + [40] = {.lex_state = 133, .external_lex_state = 8}, + [41] = {.lex_state = 116}, + [42] = {.lex_state = 116}, + [43] = {.lex_state = 53, .external_lex_state = 2}, + [44] = {.lex_state = 53, .external_lex_state = 2}, + [45] = {.lex_state = 53, .external_lex_state = 2}, + [46] = {.lex_state = 133, .external_lex_state = 4}, + [47] = {.lex_state = 83}, + [48] = {.lex_state = 124, .external_lex_state = 4}, + [49] = {.lex_state = 136, .external_lex_state = 6}, + [50] = {.lex_state = 53, .external_lex_state = 2}, + [51] = {.lex_state = 106}, + [52] = {.lex_state = 138, .external_lex_state = 9}, + [53] = {.lex_state = 116}, + [54] = {.lex_state = 116}, + [55] = {.lex_state = 53, .external_lex_state = 2}, + [56] = {.lex_state = 53, .external_lex_state = 2}, + [57] = {.lex_state = 53, .external_lex_state = 2}, + [58] = {.lex_state = 138}, + [59] = {.lex_state = 138}, + [60] = {.lex_state = 106}, + [61] = {.lex_state = 141, .external_lex_state = 9}, + [62] = {.lex_state = 116}, + [63] = {.lex_state = 116}, + [64] = {.lex_state = 53, .external_lex_state = 2}, + [65] = {.lex_state = 53, .external_lex_state = 2}, + [66] = {.lex_state = 53, .external_lex_state = 2}, + [67] = {.lex_state = 141}, + [68] = {.lex_state = 141}, + [69] = {.lex_state = 106}, + [70] = {.lex_state = 104, .external_lex_state = 10}, + [71] = {.lex_state = 116}, + [72] = {.lex_state = 116}, + [73] = {.lex_state = 53, .external_lex_state = 2}, + [74] = {.lex_state = 53, .external_lex_state = 2}, + [75] = {.lex_state = 53, .external_lex_state = 2}, + [76] = {.lex_state = 104, .external_lex_state = 2}, + [77] = {.lex_state = 111, .external_lex_state = 3}, + [78] = {.lex_state = 106}, + [79] = {.lex_state = 116}, + [80] = {.lex_state = 116}, + [81] = {.lex_state = 53, .external_lex_state = 2}, + [82] = {.lex_state = 53, .external_lex_state = 2}, + [83] = {.lex_state = 106}, + [84] = {.lex_state = 104}, + [85] = {.lex_state = 111, .external_lex_state = 3}, + [86] = {.lex_state = 111, .external_lex_state = 3}, + [87] = {.lex_state = 111, .external_lex_state = 3}, + [88] = {.lex_state = 111, .external_lex_state = 3}, + [89] = {.lex_state = 83}, + [90] = {.lex_state = 116}, + [91] = {.lex_state = 83}, + [92] = {.lex_state = 83}, + [93] = {.lex_state = 83}, + [94] = {.lex_state = 104}, + [95] = {.lex_state = 53, .external_lex_state = 2}, + [96] = {.lex_state = 53, .external_lex_state = 2}, + [97] = {.lex_state = 104}, + [98] = {.lex_state = 104}, + [99] = {.lex_state = 53, .external_lex_state = 2}, + [100] = {.lex_state = 104}, + [101] = {.lex_state = 104}, + [102] = {.lex_state = 106}, + [103] = {.lex_state = 145, .external_lex_state = 11}, + [104] = {.lex_state = 116}, + [105] = {.lex_state = 116}, + [106] = {.lex_state = 53, .external_lex_state = 2}, + [107] = {.lex_state = 53, .external_lex_state = 2}, + [108] = {.lex_state = 53, .external_lex_state = 2}, + [109] = {.lex_state = 148, .external_lex_state = 11}, + [110] = {.lex_state = 83}, + [111] = {.lex_state = 145, .external_lex_state = 12}, + [112] = {.lex_state = 150, .external_lex_state = 2}, + [113] = {.lex_state = 83}, + [114] = {.lex_state = 145, .external_lex_state = 12}, + [115] = {.lex_state = 104, .external_lex_state = 2}, + [116] = {.lex_state = 83}, + [117] = {.lex_state = 152, .external_lex_state = 12}, + [118] = {.lex_state = 154, .external_lex_state = 2}, + [119] = {.lex_state = 104, .external_lex_state = 2}, + [120] = {.lex_state = 83}, + [121] = {.lex_state = 150, .external_lex_state = 2}, + [122] = {.lex_state = 83}, + [123] = {.lex_state = 156, .external_lex_state = 2}, + [124] = {.lex_state = 158, .external_lex_state = 5}, + [125] = {.lex_state = 53, .external_lex_state = 2}, + [126] = {.lex_state = 121, .external_lex_state = 2}, + [127] = {.lex_state = 53, .external_lex_state = 2}, + [128] = {.lex_state = 53}, + [129] = {.lex_state = 104}, + [130] = {.lex_state = 162, .external_lex_state = 13}, + [131] = {.lex_state = 111, .external_lex_state = 3}, + [132] = {.lex_state = 164, .external_lex_state = 5}, + [133] = {.lex_state = 111, .external_lex_state = 5}, + [134] = {.lex_state = 111, .external_lex_state = 5}, + [135] = {.lex_state = 164, .external_lex_state = 5}, + [136] = {.lex_state = 121, .external_lex_state = 2}, + [137] = {.lex_state = 83}, + [138] = {.lex_state = 111, .external_lex_state = 5}, + [139] = {.lex_state = 104, .external_lex_state = 2}, + [140] = {.lex_state = 83}, + [141] = {.lex_state = 104, .external_lex_state = 10}, + [142] = {.lex_state = 104, .external_lex_state = 2}, + [143] = {.lex_state = 106}, + [144] = {.lex_state = 167, .external_lex_state = 9}, + [145] = {.lex_state = 116}, + [146] = {.lex_state = 116}, + [147] = {.lex_state = 53, .external_lex_state = 2}, + [148] = {.lex_state = 53, .external_lex_state = 2}, + [149] = {.lex_state = 53, .external_lex_state = 2}, + [150] = {.lex_state = 83}, + [151] = {.lex_state = 136, .external_lex_state = 6}, + [152] = {.lex_state = 169}, + [153] = {.lex_state = 106}, + [154] = {.lex_state = 136, .external_lex_state = 14}, + [155] = {.lex_state = 116}, + [156] = {.lex_state = 116}, + [157] = {.lex_state = 53, .external_lex_state = 2}, + [158] = {.lex_state = 53, .external_lex_state = 2}, + [159] = {.lex_state = 53, .external_lex_state = 2}, + [160] = {.lex_state = 104}, + [161] = {.lex_state = 171, .external_lex_state = 2}, + [162] = {.lex_state = 124, .external_lex_state = 4}, + [163] = {.lex_state = 83}, + [164] = {.lex_state = 177, .external_lex_state = 2}, + [165] = {.lex_state = 133, .external_lex_state = 8}, + [166] = {.lex_state = 106}, + [167] = {.lex_state = 104}, + [168] = {.lex_state = 133, .external_lex_state = 4}, + [169] = {.lex_state = 83}, + [170] = {.lex_state = 133, .external_lex_state = 8}, + [171] = {.lex_state = 133, .external_lex_state = 8}, + [172] = {.lex_state = 133, .external_lex_state = 8}, + [173] = {.lex_state = 133, .external_lex_state = 8}, + [174] = {.lex_state = 116}, + [175] = {.lex_state = 83}, + [176] = {.lex_state = 83}, + [177] = {.lex_state = 83}, + [178] = {.lex_state = 150, .external_lex_state = 2}, + [179] = {.lex_state = 83}, + [180] = {.lex_state = 154, .external_lex_state = 2}, + [181] = {.lex_state = 83}, + [182] = {.lex_state = 150, .external_lex_state = 2}, + [183] = {.lex_state = 83}, + [184] = {.lex_state = 158, .external_lex_state = 5}, + [185] = {.lex_state = 124, .external_lex_state = 4}, + [186] = {.lex_state = 187, .external_lex_state = 2}, + [187] = {.lex_state = 124, .external_lex_state = 4}, + [188] = {.lex_state = 136, .external_lex_state = 6}, + [189] = {.lex_state = 189, .external_lex_state = 9}, + [190] = {.lex_state = 106}, + [191] = {.lex_state = 104}, + [192] = {.lex_state = 189, .external_lex_state = 9}, + [193] = {.lex_state = 189, .external_lex_state = 9}, + [194] = {.lex_state = 189, .external_lex_state = 9}, + [195] = {.lex_state = 189, .external_lex_state = 9}, + [196] = {.lex_state = 116}, + [197] = {.lex_state = 83}, + [198] = {.lex_state = 83}, + [199] = {.lex_state = 83}, + [200] = {.lex_state = 150, .external_lex_state = 2}, + [201] = {.lex_state = 83}, + [202] = {.lex_state = 154, .external_lex_state = 2}, + [203] = {.lex_state = 83}, + [204] = {.lex_state = 150, .external_lex_state = 2}, + [205] = {.lex_state = 124, .external_lex_state = 4}, + [206] = {.lex_state = 138, .external_lex_state = 9}, + [207] = {.lex_state = 138}, + [208] = {.lex_state = 141, .external_lex_state = 9}, + [209] = {.lex_state = 106}, + [210] = {.lex_state = 104}, + [211] = {.lex_state = 141, .external_lex_state = 9}, + [212] = {.lex_state = 141, .external_lex_state = 9}, + [213] = {.lex_state = 141, .external_lex_state = 9}, + [214] = {.lex_state = 141, .external_lex_state = 9}, + [215] = {.lex_state = 116}, + [216] = {.lex_state = 83}, + [217] = {.lex_state = 83}, + [218] = {.lex_state = 83}, + [219] = {.lex_state = 150, .external_lex_state = 2}, + [220] = {.lex_state = 83}, + [221] = {.lex_state = 154, .external_lex_state = 2}, + [222] = {.lex_state = 83}, + [223] = {.lex_state = 150, .external_lex_state = 2}, + [224] = {.lex_state = 141, .external_lex_state = 9}, + [225] = {.lex_state = 141}, + [226] = {.lex_state = 104, .external_lex_state = 10}, + [227] = {.lex_state = 106}, + [228] = {.lex_state = 104}, + [229] = {.lex_state = 104, .external_lex_state = 10}, + [230] = {.lex_state = 104, .external_lex_state = 10}, + [231] = {.lex_state = 104, .external_lex_state = 10}, + [232] = {.lex_state = 104, .external_lex_state = 10}, + [233] = {.lex_state = 116}, + [234] = {.lex_state = 83}, + [235] = {.lex_state = 83}, + [236] = {.lex_state = 83}, + [237] = {.lex_state = 150, .external_lex_state = 2}, + [238] = {.lex_state = 83}, + [239] = {.lex_state = 154, .external_lex_state = 2}, + [240] = {.lex_state = 83}, + [241] = {.lex_state = 150, .external_lex_state = 2}, + [242] = {.lex_state = 106}, + [243] = {.lex_state = 106}, + [244] = {.lex_state = 106}, + [245] = {.lex_state = 116}, + [246] = {.lex_state = 83}, + [247] = {.lex_state = 83}, + [248] = {.lex_state = 83}, + [249] = {.lex_state = 150, .external_lex_state = 2}, + [250] = {.lex_state = 83}, + [251] = {.lex_state = 154, .external_lex_state = 2}, + [252] = {.lex_state = 111, .external_lex_state = 3}, + [253] = {.lex_state = 106}, + [254] = {.lex_state = 111, .external_lex_state = 3}, + [255] = {.lex_state = 104}, + [256] = {.lex_state = 83}, + [257] = {.lex_state = 83}, + [258] = {.lex_state = 111, .external_lex_state = 3}, + [259] = {.lex_state = 83}, + [260] = {.lex_state = 104}, + [261] = {.lex_state = 111, .external_lex_state = 3}, + [262] = {.lex_state = 83}, + [263] = {.lex_state = 104}, + [264] = {.lex_state = 129, .external_lex_state = 7}, + [265] = {.lex_state = 83}, + [266] = {.lex_state = 83}, + [267] = {.lex_state = 83}, + [268] = {.lex_state = 133, .external_lex_state = 8}, + [269] = {.lex_state = 133, .external_lex_state = 4}, + [270] = {.lex_state = 83}, + [271] = {.lex_state = 124, .external_lex_state = 4}, + [272] = {.lex_state = 136, .external_lex_state = 6}, + [273] = {.lex_state = 53, .external_lex_state = 2}, + [274] = {.lex_state = 138}, + [275] = {.lex_state = 141}, + [276] = {.lex_state = 145, .external_lex_state = 11}, + [277] = {.lex_state = 106}, + [278] = {.lex_state = 104}, + [279] = {.lex_state = 145, .external_lex_state = 11}, + [280] = {.lex_state = 145, .external_lex_state = 11}, + [281] = {.lex_state = 145, .external_lex_state = 11}, + [282] = {.lex_state = 145, .external_lex_state = 11}, + [283] = {.lex_state = 116}, + [284] = {.lex_state = 83}, + [285] = {.lex_state = 83}, + [286] = {.lex_state = 83}, + [287] = {.lex_state = 150, .external_lex_state = 2}, + [288] = {.lex_state = 83}, + [289] = {.lex_state = 154, .external_lex_state = 2}, + [290] = {.lex_state = 83}, + [291] = {.lex_state = 150, .external_lex_state = 2}, + [292] = {.lex_state = 83}, + [293] = {.lex_state = 156, .external_lex_state = 2}, + [294] = {.lex_state = 191, .external_lex_state = 12}, + [295] = {.lex_state = 53, .external_lex_state = 2}, + [296] = {.lex_state = 111, .external_lex_state = 3}, + [297] = {.lex_state = 53, .external_lex_state = 2}, + [298] = {.lex_state = 53}, + [299] = {.lex_state = 104}, + [300] = {.lex_state = 162, .external_lex_state = 13}, + [301] = {.lex_state = 145, .external_lex_state = 11}, + [302] = {.lex_state = 193, .external_lex_state = 12}, + [303] = {.lex_state = 145, .external_lex_state = 12}, + [304] = {.lex_state = 145, .external_lex_state = 12}, + [305] = {.lex_state = 193, .external_lex_state = 12}, + [306] = {.lex_state = 145, .external_lex_state = 12}, + [307] = {.lex_state = 53, .external_lex_state = 2}, + [308] = {.lex_state = 53, .external_lex_state = 2}, + [309] = {.lex_state = 152, .external_lex_state = 12}, + [310] = {.lex_state = 152, .external_lex_state = 12}, + [311] = {.lex_state = 111, .external_lex_state = 3}, + [312] = {.lex_state = 83}, + [313] = {.lex_state = 158, .external_lex_state = 5}, + [314] = {.lex_state = 156, .external_lex_state = 2}, + [315] = {.lex_state = 53}, + [316] = {.lex_state = 104}, + [317] = {.lex_state = 124, .external_lex_state = 4}, + [318] = {.lex_state = 124, .external_lex_state = 4}, + [319] = {.lex_state = 136, .external_lex_state = 6}, + [320] = {.lex_state = 124, .external_lex_state = 4}, + [321] = {.lex_state = 136, .external_lex_state = 6}, + [322] = {.lex_state = 104}, + [323] = {.lex_state = 106}, + [324] = {.lex_state = 164, .external_lex_state = 3}, + [325] = {.lex_state = 116}, + [326] = {.lex_state = 116}, + [327] = {.lex_state = 53, .external_lex_state = 2}, + [328] = {.lex_state = 53, .external_lex_state = 2}, + [329] = {.lex_state = 53, .external_lex_state = 2}, + [330] = {.lex_state = 164, .external_lex_state = 5}, + [331] = {.lex_state = 164, .external_lex_state = 5}, + [332] = {.lex_state = 195, .external_lex_state = 15}, + [333] = {.lex_state = 164, .external_lex_state = 5}, + [334] = {.lex_state = 111, .external_lex_state = 3}, + [335] = {.lex_state = 111, .external_lex_state = 5}, + [336] = {.lex_state = 164, .external_lex_state = 5}, + [337] = {.lex_state = 164, .external_lex_state = 5}, + [338] = {.lex_state = 129, .external_lex_state = 7}, + [339] = {.lex_state = 111, .external_lex_state = 5}, + [340] = {.lex_state = 198, .external_lex_state = 9}, + [341] = {.lex_state = 106}, + [342] = {.lex_state = 104}, + [343] = {.lex_state = 83}, + [344] = {.lex_state = 198, .external_lex_state = 9}, + [345] = {.lex_state = 198, .external_lex_state = 9}, + [346] = {.lex_state = 198, .external_lex_state = 9}, + [347] = {.lex_state = 198, .external_lex_state = 9}, + [348] = {.lex_state = 116}, + [349] = {.lex_state = 83}, + [350] = {.lex_state = 83}, + [351] = {.lex_state = 83}, + [352] = {.lex_state = 150, .external_lex_state = 2}, + [353] = {.lex_state = 83}, + [354] = {.lex_state = 154, .external_lex_state = 2}, + [355] = {.lex_state = 83}, + [356] = {.lex_state = 150, .external_lex_state = 2}, + [357] = {.lex_state = 136, .external_lex_state = 6}, + [358] = {.lex_state = 106}, + [359] = {.lex_state = 169, .external_lex_state = 9}, + [360] = {.lex_state = 116}, + [361] = {.lex_state = 116}, + [362] = {.lex_state = 53, .external_lex_state = 2}, + [363] = {.lex_state = 53, .external_lex_state = 2}, + [364] = {.lex_state = 53, .external_lex_state = 2}, + [365] = {.lex_state = 169}, + [366] = {.lex_state = 169}, + [367] = {.lex_state = 136, .external_lex_state = 14}, + [368] = {.lex_state = 106}, + [369] = {.lex_state = 104}, + [370] = {.lex_state = 136, .external_lex_state = 14}, + [371] = {.lex_state = 136, .external_lex_state = 14}, + [372] = {.lex_state = 136, .external_lex_state = 14}, + [373] = {.lex_state = 136, .external_lex_state = 14}, + [374] = {.lex_state = 116}, + [375] = {.lex_state = 83}, + [376] = {.lex_state = 83}, + [377] = {.lex_state = 83}, + [378] = {.lex_state = 150, .external_lex_state = 2}, + [379] = {.lex_state = 83}, + [380] = {.lex_state = 154, .external_lex_state = 2}, + [381] = {.lex_state = 83}, + [382] = {.lex_state = 150, .external_lex_state = 2}, + [383] = {.lex_state = 106}, + [384] = {.lex_state = 201, .external_lex_state = 8}, + [385] = {.lex_state = 116}, + [386] = {.lex_state = 116}, + [387] = {.lex_state = 53, .external_lex_state = 2}, + [388] = {.lex_state = 53, .external_lex_state = 2}, + [389] = {.lex_state = 53, .external_lex_state = 2}, + [390] = {.lex_state = 201, .external_lex_state = 4}, + [391] = {.lex_state = 201, .external_lex_state = 4}, + [392] = {.lex_state = 124, .external_lex_state = 4}, + [393] = {.lex_state = 171, .external_lex_state = 2}, + [394] = {.lex_state = 124, .external_lex_state = 4}, + [395] = {.lex_state = 127, .external_lex_state = 6}, + [396] = {.lex_state = 171, .external_lex_state = 2}, + [397] = {.lex_state = 124, .external_lex_state = 4}, + [398] = {.lex_state = 53, .external_lex_state = 2}, + [399] = {.lex_state = 203, .external_lex_state = 2}, + [400] = {.lex_state = 177, .external_lex_state = 2}, + [401] = {.lex_state = 124, .external_lex_state = 4}, + [402] = {.lex_state = 83}, + [403] = {.lex_state = 83}, + [404] = {.lex_state = 127, .external_lex_state = 6}, + [405] = {.lex_state = 177, .external_lex_state = 2}, + [406] = {.lex_state = 83}, + [407] = {.lex_state = 133, .external_lex_state = 8}, + [408] = {.lex_state = 133, .external_lex_state = 8}, + [409] = {.lex_state = 205}, + [410] = {.lex_state = 133, .external_lex_state = 4}, + [411] = {.lex_state = 104}, + [412] = {.lex_state = 83}, + [413] = {.lex_state = 83}, + [414] = {.lex_state = 133, .external_lex_state = 8}, + [415] = {.lex_state = 83}, + [416] = {.lex_state = 104}, + [417] = {.lex_state = 133, .external_lex_state = 8}, + [418] = {.lex_state = 83}, + [419] = {.lex_state = 104}, + [420] = {.lex_state = 133, .external_lex_state = 8}, + [421] = {.lex_state = 133, .external_lex_state = 8}, + [422] = {.lex_state = 83}, + [423] = {.lex_state = 124, .external_lex_state = 4}, + [424] = {.lex_state = 124, .external_lex_state = 4}, + [425] = {.lex_state = 187, .external_lex_state = 2}, + [426] = {.lex_state = 189, .external_lex_state = 9}, + [427] = {.lex_state = 189, .external_lex_state = 9}, + [428] = {.lex_state = 104}, + [429] = {.lex_state = 83}, + [430] = {.lex_state = 83}, + [431] = {.lex_state = 189, .external_lex_state = 9}, + [432] = {.lex_state = 83}, + [433] = {.lex_state = 104}, + [434] = {.lex_state = 189, .external_lex_state = 9}, + [435] = {.lex_state = 83}, + [436] = {.lex_state = 104}, + [437] = {.lex_state = 189, .external_lex_state = 9}, + [438] = {.lex_state = 189, .external_lex_state = 9}, + [439] = {.lex_state = 141, .external_lex_state = 9}, + [440] = {.lex_state = 141, .external_lex_state = 9}, + [441] = {.lex_state = 104}, + [442] = {.lex_state = 83}, + [443] = {.lex_state = 83}, + [444] = {.lex_state = 141, .external_lex_state = 9}, + [445] = {.lex_state = 83}, + [446] = {.lex_state = 104}, + [447] = {.lex_state = 141, .external_lex_state = 9}, + [448] = {.lex_state = 83}, + [449] = {.lex_state = 104}, + [450] = {.lex_state = 141, .external_lex_state = 9}, + [451] = {.lex_state = 141, .external_lex_state = 9}, + [452] = {.lex_state = 104, .external_lex_state = 10}, + [453] = {.lex_state = 104, .external_lex_state = 10}, + [454] = {.lex_state = 104}, + [455] = {.lex_state = 83}, + [456] = {.lex_state = 83}, + [457] = {.lex_state = 104, .external_lex_state = 10}, + [458] = {.lex_state = 83}, + [459] = {.lex_state = 104}, + [460] = {.lex_state = 104, .external_lex_state = 10}, + [461] = {.lex_state = 83}, + [462] = {.lex_state = 104}, + [463] = {.lex_state = 104, .external_lex_state = 10}, + [464] = {.lex_state = 104, .external_lex_state = 10}, + [465] = {.lex_state = 83}, + [466] = {.lex_state = 83}, + [467] = {.lex_state = 106}, + [468] = {.lex_state = 83}, + [469] = {.lex_state = 104}, + [470] = {.lex_state = 106}, + [471] = {.lex_state = 83}, + [472] = {.lex_state = 104}, + [473] = {.lex_state = 106}, + [474] = {.lex_state = 111, .external_lex_state = 3}, + [475] = {.lex_state = 111, .external_lex_state = 3}, + [476] = {.lex_state = 83}, + [477] = {.lex_state = 111, .external_lex_state = 3}, + [478] = {.lex_state = 83}, + [479] = {.lex_state = 83}, + [480] = {.lex_state = 211, .external_lex_state = 9}, + [481] = {.lex_state = 83}, + [482] = {.lex_state = 83}, + [483] = {.lex_state = 211, .external_lex_state = 9}, + [484] = {.lex_state = 83}, + [485] = {.lex_state = 150, .external_lex_state = 2}, + [486] = {.lex_state = 169}, + [487] = {.lex_state = 106}, + [488] = {.lex_state = 150, .external_lex_state = 10}, + [489] = {.lex_state = 116}, + [490] = {.lex_state = 116}, + [491] = {.lex_state = 53, .external_lex_state = 2}, + [492] = {.lex_state = 53, .external_lex_state = 2}, + [493] = {.lex_state = 53, .external_lex_state = 2}, + [494] = {.lex_state = 104}, + [495] = {.lex_state = 171, .external_lex_state = 2}, + [496] = {.lex_state = 83}, + [497] = {.lex_state = 177, .external_lex_state = 2}, + [498] = {.lex_state = 133, .external_lex_state = 4}, + [499] = {.lex_state = 83}, + [500] = {.lex_state = 83}, + [501] = {.lex_state = 191, .external_lex_state = 12}, + [502] = {.lex_state = 83}, + [503] = {.lex_state = 187, .external_lex_state = 2}, + [504] = {.lex_state = 124, .external_lex_state = 4}, + [505] = {.lex_state = 136, .external_lex_state = 6}, + [506] = {.lex_state = 83}, + [507] = {.lex_state = 145, .external_lex_state = 11}, + [508] = {.lex_state = 145, .external_lex_state = 11}, + [509] = {.lex_state = 104}, + [510] = {.lex_state = 83}, + [511] = {.lex_state = 83}, + [512] = {.lex_state = 145, .external_lex_state = 11}, + [513] = {.lex_state = 83}, + [514] = {.lex_state = 104}, + [515] = {.lex_state = 145, .external_lex_state = 11}, + [516] = {.lex_state = 83}, + [517] = {.lex_state = 104}, + [518] = {.lex_state = 145, .external_lex_state = 11}, + [519] = {.lex_state = 145, .external_lex_state = 11}, + [520] = {.lex_state = 83}, + [521] = {.lex_state = 191, .external_lex_state = 12}, + [522] = {.lex_state = 156, .external_lex_state = 2}, + [523] = {.lex_state = 53}, [524] = {.lex_state = 104}, - [525] = {.lex_state = 191, .external_lex_state = 11}, - [526] = {.lex_state = 114}, - [527] = {.lex_state = 114}, - [528] = {.lex_state = 51, .external_lex_state = 2}, - [529] = {.lex_state = 51, .external_lex_state = 2}, - [530] = {.lex_state = 51, .external_lex_state = 2}, - [531] = {.lex_state = 191, .external_lex_state = 12}, - [532] = {.lex_state = 191, .external_lex_state = 12}, - [533] = {.lex_state = 193, .external_lex_state = 15}, - [534] = {.lex_state = 191, .external_lex_state = 12}, - [535] = {.lex_state = 143, .external_lex_state = 11}, - [536] = {.lex_state = 143, .external_lex_state = 12}, - [537] = {.lex_state = 191, .external_lex_state = 12}, - [538] = {.lex_state = 191, .external_lex_state = 12}, - [539] = {.lex_state = 143, .external_lex_state = 12}, - [540] = {.lex_state = 152, .external_lex_state = 2}, - [541] = {.lex_state = 81}, - [542] = {.lex_state = 152, .external_lex_state = 2}, - [543] = {.lex_state = 150, .external_lex_state = 12}, - [544] = {.lex_state = 156, .external_lex_state = 5}, - [545] = {.lex_state = 156, .external_lex_state = 5}, - [546] = {.lex_state = 102}, - [547] = {.lex_state = 104}, - [548] = {.lex_state = 122, .external_lex_state = 8}, - [549] = {.lex_state = 114}, - [550] = {.lex_state = 114}, - [551] = {.lex_state = 51, .external_lex_state = 2}, - [552] = {.lex_state = 51, .external_lex_state = 2}, - [553] = {.lex_state = 51, .external_lex_state = 2}, - [554] = {.lex_state = 122, .external_lex_state = 4}, - [555] = {.lex_state = 162, .external_lex_state = 3}, - [556] = {.lex_state = 162, .external_lex_state = 5}, - [557] = {.lex_state = 162, .external_lex_state = 3}, - [558] = {.lex_state = 104}, - [559] = {.lex_state = 102}, - [560] = {.lex_state = 162, .external_lex_state = 3}, - [561] = {.lex_state = 162, .external_lex_state = 3}, - [562] = {.lex_state = 162, .external_lex_state = 3}, - [563] = {.lex_state = 162, .external_lex_state = 3}, - [564] = {.lex_state = 114}, - [565] = {.lex_state = 81}, - [566] = {.lex_state = 81}, - [567] = {.lex_state = 81}, - [568] = {.lex_state = 148, .external_lex_state = 2}, - [569] = {.lex_state = 81}, - [570] = {.lex_state = 152, .external_lex_state = 2}, - [571] = {.lex_state = 81}, - [572] = {.lex_state = 148, .external_lex_state = 2}, - [573] = {.lex_state = 193, .external_lex_state = 15}, - [574] = {.lex_state = 162, .external_lex_state = 5}, - [575] = {.lex_state = 114}, - [576] = {.lex_state = 114}, - [577] = {.lex_state = 193, .external_lex_state = 15}, - [578] = {.lex_state = 102, .external_lex_state = 2}, - [579] = {.lex_state = 167}, - [580] = {.lex_state = 102, .external_lex_state = 10}, - [581] = {.lex_state = 162, .external_lex_state = 5}, - [582] = {.lex_state = 196, .external_lex_state = 9}, - [583] = {.lex_state = 196, .external_lex_state = 9}, - [584] = {.lex_state = 102}, - [585] = {.lex_state = 81}, - [586] = {.lex_state = 81}, - [587] = {.lex_state = 196, .external_lex_state = 9}, - [588] = {.lex_state = 81}, - [589] = {.lex_state = 102}, - [590] = {.lex_state = 196, .external_lex_state = 9}, - [591] = {.lex_state = 81}, - [592] = {.lex_state = 102}, - [593] = {.lex_state = 196, .external_lex_state = 9}, - [594] = {.lex_state = 196, .external_lex_state = 9}, - [595] = {.lex_state = 134, .external_lex_state = 6}, - [596] = {.lex_state = 167}, - [597] = {.lex_state = 134, .external_lex_state = 14}, - [598] = {.lex_state = 134, .external_lex_state = 14}, - [599] = {.lex_state = 102}, - [600] = {.lex_state = 81}, - [601] = {.lex_state = 81}, - [602] = {.lex_state = 134, .external_lex_state = 14}, - [603] = {.lex_state = 81}, - [604] = {.lex_state = 102}, - [605] = {.lex_state = 134, .external_lex_state = 14}, - [606] = {.lex_state = 81}, - [607] = {.lex_state = 102}, - [608] = {.lex_state = 134, .external_lex_state = 14}, - [609] = {.lex_state = 134, .external_lex_state = 14}, - [610] = {.lex_state = 199, .external_lex_state = 8}, - [611] = {.lex_state = 104}, - [612] = {.lex_state = 102}, - [613] = {.lex_state = 199, .external_lex_state = 8}, - [614] = {.lex_state = 199, .external_lex_state = 8}, - [615] = {.lex_state = 199, .external_lex_state = 8}, - [616] = {.lex_state = 199, .external_lex_state = 8}, - [617] = {.lex_state = 114}, - [618] = {.lex_state = 81}, - [619] = {.lex_state = 81}, - [620] = {.lex_state = 81}, - [621] = {.lex_state = 148, .external_lex_state = 2}, - [622] = {.lex_state = 81}, - [623] = {.lex_state = 152, .external_lex_state = 2}, - [624] = {.lex_state = 81}, - [625] = {.lex_state = 148, .external_lex_state = 2}, - [626] = {.lex_state = 81}, - [627] = {.lex_state = 199, .external_lex_state = 8}, - [628] = {.lex_state = 199, .external_lex_state = 4}, - [629] = {.lex_state = 169, .external_lex_state = 2}, - [630] = {.lex_state = 122, .external_lex_state = 4}, - [631] = {.lex_state = 169, .external_lex_state = 2}, - [632] = {.lex_state = 81}, - [633] = {.lex_state = 201, .external_lex_state = 2}, - [634] = {.lex_state = 122, .external_lex_state = 4}, - [635] = {.lex_state = 125, .external_lex_state = 6}, - [636] = {.lex_state = 201, .external_lex_state = 2}, - [637] = {.lex_state = 175, .external_lex_state = 2}, - [638] = {.lex_state = 122, .external_lex_state = 4}, - [639] = {.lex_state = 175, .external_lex_state = 2}, - [640] = {.lex_state = 81}, - [641] = {.lex_state = 81}, - [642] = {.lex_state = 81}, - [643] = {.lex_state = 122, .external_lex_state = 4}, - [644] = {.lex_state = 211, .external_lex_state = 9}, - [645] = {.lex_state = 203}, - [646] = {.lex_state = 196}, - [647] = {.lex_state = 203}, - [648] = {.lex_state = 203}, - [649] = {.lex_state = 131, .external_lex_state = 8}, - [650] = {.lex_state = 131, .external_lex_state = 8}, - [651] = {.lex_state = 81}, - [652] = {.lex_state = 131, .external_lex_state = 8}, - [653] = {.lex_state = 81}, - [654] = {.lex_state = 81}, - [655] = {.lex_state = 209, .external_lex_state = 9}, - [656] = {.lex_state = 81}, - [657] = {.lex_state = 81}, - [658] = {.lex_state = 209, .external_lex_state = 9}, - [659] = {.lex_state = 81}, - [660] = {.lex_state = 156, .external_lex_state = 5}, - [661] = {.lex_state = 122, .external_lex_state = 4}, - [662] = {.lex_state = 187, .external_lex_state = 9}, - [663] = {.lex_state = 187, .external_lex_state = 9}, - [664] = {.lex_state = 81}, - [665] = {.lex_state = 187, .external_lex_state = 9}, - [666] = {.lex_state = 81}, - [667] = {.lex_state = 81}, - [668] = {.lex_state = 209, .external_lex_state = 9}, - [669] = {.lex_state = 81}, - [670] = {.lex_state = 81}, - [671] = {.lex_state = 209, .external_lex_state = 9}, - [672] = {.lex_state = 81}, - [673] = {.lex_state = 139, .external_lex_state = 9}, - [674] = {.lex_state = 139, .external_lex_state = 9}, - [675] = {.lex_state = 81}, - [676] = {.lex_state = 139, .external_lex_state = 9}, - [677] = {.lex_state = 81}, - [678] = {.lex_state = 81}, - [679] = {.lex_state = 209, .external_lex_state = 9}, - [680] = {.lex_state = 81}, - [681] = {.lex_state = 81}, - [682] = {.lex_state = 209, .external_lex_state = 9}, - [683] = {.lex_state = 81}, - [684] = {.lex_state = 102, .external_lex_state = 10}, - [685] = {.lex_state = 102, .external_lex_state = 10}, - [686] = {.lex_state = 81}, - [687] = {.lex_state = 102, .external_lex_state = 10}, - [688] = {.lex_state = 81}, - [689] = {.lex_state = 81}, - [690] = {.lex_state = 209, .external_lex_state = 9}, - [691] = {.lex_state = 81}, - [692] = {.lex_state = 81}, - [693] = {.lex_state = 209, .external_lex_state = 9}, - [694] = {.lex_state = 81}, - [695] = {.lex_state = 104}, - [696] = {.lex_state = 81}, - [697] = {.lex_state = 104}, - [698] = {.lex_state = 81}, - [699] = {.lex_state = 81}, - [700] = {.lex_state = 209, .external_lex_state = 9}, - [701] = {.lex_state = 81}, - [702] = {.lex_state = 81}, - [703] = {.lex_state = 209, .external_lex_state = 9}, - [704] = {.lex_state = 81}, - [705] = {.lex_state = 81}, - [706] = {.lex_state = 81}, - [707] = {.lex_state = 81}, - [708] = {.lex_state = 109, .external_lex_state = 3}, - [709] = {.lex_state = 81}, - [710] = {.lex_state = 109, .external_lex_state = 3}, - [711] = {.lex_state = 148, .external_lex_state = 2}, - [712] = {.lex_state = 167}, - [713] = {.lex_state = 148, .external_lex_state = 10}, - [714] = {.lex_state = 104}, - [715] = {.lex_state = 102}, - [716] = {.lex_state = 148, .external_lex_state = 10}, - [717] = {.lex_state = 148, .external_lex_state = 10}, - [718] = {.lex_state = 148, .external_lex_state = 10}, - [719] = {.lex_state = 148, .external_lex_state = 10}, - [720] = {.lex_state = 114}, - [721] = {.lex_state = 81}, - [722] = {.lex_state = 81}, - [723] = {.lex_state = 81}, - [724] = {.lex_state = 148, .external_lex_state = 2}, - [725] = {.lex_state = 81}, - [726] = {.lex_state = 152, .external_lex_state = 2}, - [727] = {.lex_state = 81}, - [728] = {.lex_state = 148, .external_lex_state = 2}, - [729] = {.lex_state = 199, .external_lex_state = 4}, - [730] = {.lex_state = 81}, - [731] = {.lex_state = 169, .external_lex_state = 2}, - [732] = {.lex_state = 81}, - [733] = {.lex_state = 81}, - [734] = {.lex_state = 175, .external_lex_state = 2}, - [735] = {.lex_state = 81}, - [736] = {.lex_state = 203}, - [737] = {.lex_state = 131, .external_lex_state = 4}, - [738] = {.lex_state = 81}, - [739] = {.lex_state = 81}, - [740] = {.lex_state = 81}, - [741] = {.lex_state = 185, .external_lex_state = 2}, - [742] = {.lex_state = 143, .external_lex_state = 11}, - [743] = {.lex_state = 143, .external_lex_state = 11}, - [744] = {.lex_state = 81}, - [745] = {.lex_state = 143, .external_lex_state = 11}, - [746] = {.lex_state = 81}, - [747] = {.lex_state = 81}, - [748] = {.lex_state = 209, .external_lex_state = 9}, - [749] = {.lex_state = 81}, - [750] = {.lex_state = 81}, - [751] = {.lex_state = 209, .external_lex_state = 9}, - [752] = {.lex_state = 81}, - [753] = {.lex_state = 189, .external_lex_state = 12}, - [754] = {.lex_state = 189, .external_lex_state = 12}, - [755] = {.lex_state = 102}, - [756] = {.lex_state = 104}, - [757] = {.lex_state = 213, .external_lex_state = 9}, - [758] = {.lex_state = 114}, - [759] = {.lex_state = 114}, - [760] = {.lex_state = 51, .external_lex_state = 2}, - [761] = {.lex_state = 51, .external_lex_state = 2}, - [762] = {.lex_state = 51, .external_lex_state = 2}, - [763] = {.lex_state = 81}, - [764] = {.lex_state = 191, .external_lex_state = 11}, - [765] = {.lex_state = 191, .external_lex_state = 12}, - [766] = {.lex_state = 191, .external_lex_state = 11}, - [767] = {.lex_state = 104}, - [768] = {.lex_state = 102}, - [769] = {.lex_state = 191, .external_lex_state = 11}, - [770] = {.lex_state = 191, .external_lex_state = 11}, - [771] = {.lex_state = 191, .external_lex_state = 11}, - [772] = {.lex_state = 191, .external_lex_state = 11}, - [773] = {.lex_state = 114}, - [774] = {.lex_state = 81}, - [775] = {.lex_state = 81}, - [776] = {.lex_state = 81}, - [777] = {.lex_state = 148, .external_lex_state = 2}, - [778] = {.lex_state = 81}, - [779] = {.lex_state = 152, .external_lex_state = 2}, - [780] = {.lex_state = 81}, - [781] = {.lex_state = 148, .external_lex_state = 2}, - [782] = {.lex_state = 191, .external_lex_state = 12}, - [783] = {.lex_state = 193, .external_lex_state = 15}, - [784] = {.lex_state = 191, .external_lex_state = 12}, - [785] = {.lex_state = 122, .external_lex_state = 4}, - [786] = {.lex_state = 122, .external_lex_state = 8}, - [787] = {.lex_state = 122, .external_lex_state = 4}, - [788] = {.lex_state = 122, .external_lex_state = 8}, - [789] = {.lex_state = 104}, - [790] = {.lex_state = 102}, - [791] = {.lex_state = 122, .external_lex_state = 8}, - [792] = {.lex_state = 122, .external_lex_state = 8}, - [793] = {.lex_state = 122, .external_lex_state = 8}, - [794] = {.lex_state = 122, .external_lex_state = 8}, - [795] = {.lex_state = 114}, - [796] = {.lex_state = 81}, - [797] = {.lex_state = 81}, - [798] = {.lex_state = 81}, - [799] = {.lex_state = 148, .external_lex_state = 2}, - [800] = {.lex_state = 81}, - [801] = {.lex_state = 152, .external_lex_state = 2}, - [802] = {.lex_state = 81}, - [803] = {.lex_state = 148, .external_lex_state = 2}, - [804] = {.lex_state = 162, .external_lex_state = 3}, - [805] = {.lex_state = 162, .external_lex_state = 3}, - [806] = {.lex_state = 102}, - [807] = {.lex_state = 81}, - [808] = {.lex_state = 81}, - [809] = {.lex_state = 162, .external_lex_state = 3}, - [810] = {.lex_state = 81}, - [811] = {.lex_state = 102}, - [812] = {.lex_state = 162, .external_lex_state = 3}, - [813] = {.lex_state = 81}, - [814] = {.lex_state = 102}, - [815] = {.lex_state = 162, .external_lex_state = 3}, - [816] = {.lex_state = 162, .external_lex_state = 3}, - [817] = {.lex_state = 193, .external_lex_state = 15}, - [818] = {.lex_state = 193, .external_lex_state = 15}, - [819] = {.lex_state = 193, .external_lex_state = 15}, - [820] = {.lex_state = 114}, - [821] = {.lex_state = 81}, - [822] = {.lex_state = 81}, - [823] = {.lex_state = 193, .external_lex_state = 15}, - [824] = {.lex_state = 162, .external_lex_state = 5}, - [825] = {.lex_state = 102, .external_lex_state = 2}, - [826] = {.lex_state = 167}, - [827] = {.lex_state = 196, .external_lex_state = 9}, - [828] = {.lex_state = 196, .external_lex_state = 9}, - [829] = {.lex_state = 81}, - [830] = {.lex_state = 196, .external_lex_state = 9}, - [831] = {.lex_state = 81}, - [832] = {.lex_state = 81}, - [833] = {.lex_state = 209, .external_lex_state = 9}, - [834] = {.lex_state = 81}, - [835] = {.lex_state = 81}, - [836] = {.lex_state = 209, .external_lex_state = 9}, - [837] = {.lex_state = 81}, - [838] = {.lex_state = 134, .external_lex_state = 14}, - [839] = {.lex_state = 134, .external_lex_state = 14}, - [840] = {.lex_state = 81}, - [841] = {.lex_state = 134, .external_lex_state = 14}, - [842] = {.lex_state = 81}, - [843] = {.lex_state = 81}, - [844] = {.lex_state = 209, .external_lex_state = 9}, - [845] = {.lex_state = 81}, - [846] = {.lex_state = 81}, - [847] = {.lex_state = 209, .external_lex_state = 9}, - [848] = {.lex_state = 81}, - [849] = {.lex_state = 199, .external_lex_state = 8}, - [850] = {.lex_state = 199, .external_lex_state = 8}, - [851] = {.lex_state = 102}, - [852] = {.lex_state = 81}, - [853] = {.lex_state = 81}, - [854] = {.lex_state = 199, .external_lex_state = 8}, - [855] = {.lex_state = 81}, - [856] = {.lex_state = 102}, - [857] = {.lex_state = 199, .external_lex_state = 8}, - [858] = {.lex_state = 81}, - [859] = {.lex_state = 102}, - [860] = {.lex_state = 199, .external_lex_state = 8}, - [861] = {.lex_state = 199, .external_lex_state = 8}, - [862] = {.lex_state = 122, .external_lex_state = 4}, - [863] = {.lex_state = 175, .external_lex_state = 2}, - [864] = {.lex_state = 201, .external_lex_state = 2}, - [865] = {.lex_state = 201, .external_lex_state = 2}, - [866] = {.lex_state = 122, .external_lex_state = 4}, - [867] = {.lex_state = 81}, - [868] = {.lex_state = 102}, - [869] = {.lex_state = 215, .external_lex_state = 2}, - [870] = {.lex_state = 196}, - [871] = {.lex_state = 122, .external_lex_state = 4}, - [872] = {.lex_state = 203}, - [873] = {.lex_state = 203}, - [874] = {.lex_state = 81}, - [875] = {.lex_state = 81}, - [876] = {.lex_state = 81}, - [877] = {.lex_state = 131, .external_lex_state = 8}, - [878] = {.lex_state = 81}, - [879] = {.lex_state = 131, .external_lex_state = 8}, - [880] = {.lex_state = 122, .external_lex_state = 4}, - [881] = {.lex_state = 81}, - [882] = {.lex_state = 81}, - [883] = {.lex_state = 81}, - [884] = {.lex_state = 187, .external_lex_state = 9}, - [885] = {.lex_state = 81}, - [886] = {.lex_state = 187, .external_lex_state = 9}, - [887] = {.lex_state = 81}, - [888] = {.lex_state = 81}, - [889] = {.lex_state = 81}, - [890] = {.lex_state = 139, .external_lex_state = 9}, - [891] = {.lex_state = 81}, - [892] = {.lex_state = 139, .external_lex_state = 9}, - [893] = {.lex_state = 81}, - [894] = {.lex_state = 81}, - [895] = {.lex_state = 81}, - [896] = {.lex_state = 102, .external_lex_state = 10}, - [897] = {.lex_state = 81}, - [898] = {.lex_state = 102, .external_lex_state = 10}, - [899] = {.lex_state = 81}, - [900] = {.lex_state = 81}, - [901] = {.lex_state = 81}, - [902] = {.lex_state = 104}, - [903] = {.lex_state = 81}, - [904] = {.lex_state = 104}, - [905] = {.lex_state = 81}, - [906] = {.lex_state = 81}, - [907] = {.lex_state = 109, .external_lex_state = 3}, - [908] = {.lex_state = 109, .external_lex_state = 3}, - [909] = {.lex_state = 148, .external_lex_state = 2}, - [910] = {.lex_state = 148, .external_lex_state = 10}, - [911] = {.lex_state = 148, .external_lex_state = 10}, - [912] = {.lex_state = 102}, - [913] = {.lex_state = 81}, - [914] = {.lex_state = 81}, - [915] = {.lex_state = 148, .external_lex_state = 10}, - [916] = {.lex_state = 81}, - [917] = {.lex_state = 102}, - [918] = {.lex_state = 148, .external_lex_state = 10}, - [919] = {.lex_state = 81}, - [920] = {.lex_state = 102}, - [921] = {.lex_state = 148, .external_lex_state = 10}, - [922] = {.lex_state = 148, .external_lex_state = 10}, - [923] = {.lex_state = 81}, - [924] = {.lex_state = 81}, - [925] = {.lex_state = 81}, - [926] = {.lex_state = 81}, - [927] = {.lex_state = 81}, - [928] = {.lex_state = 81}, - [929] = {.lex_state = 203}, - [930] = {.lex_state = 203}, - [931] = {.lex_state = 189, .external_lex_state = 12}, - [932] = {.lex_state = 81}, - [933] = {.lex_state = 81}, - [934] = {.lex_state = 81}, - [935] = {.lex_state = 81}, - [936] = {.lex_state = 143, .external_lex_state = 11}, - [937] = {.lex_state = 81}, - [938] = {.lex_state = 143, .external_lex_state = 11}, - [939] = {.lex_state = 81}, - [940] = {.lex_state = 213, .external_lex_state = 9}, - [941] = {.lex_state = 81}, - [942] = {.lex_state = 213, .external_lex_state = 9}, - [943] = {.lex_state = 104}, - [944] = {.lex_state = 102}, - [945] = {.lex_state = 213, .external_lex_state = 9}, - [946] = {.lex_state = 213, .external_lex_state = 9}, - [947] = {.lex_state = 213, .external_lex_state = 9}, - [948] = {.lex_state = 213, .external_lex_state = 9}, - [949] = {.lex_state = 114}, - [950] = {.lex_state = 81}, - [951] = {.lex_state = 81}, - [952] = {.lex_state = 81}, - [953] = {.lex_state = 148, .external_lex_state = 2}, - [954] = {.lex_state = 81}, - [955] = {.lex_state = 152, .external_lex_state = 2}, - [956] = {.lex_state = 81}, - [957] = {.lex_state = 148, .external_lex_state = 2}, - [958] = {.lex_state = 191, .external_lex_state = 11}, - [959] = {.lex_state = 191, .external_lex_state = 11}, - [960] = {.lex_state = 102}, - [961] = {.lex_state = 81}, - [962] = {.lex_state = 81}, - [963] = {.lex_state = 191, .external_lex_state = 11}, - [964] = {.lex_state = 81}, - [965] = {.lex_state = 102}, - [966] = {.lex_state = 191, .external_lex_state = 11}, - [967] = {.lex_state = 81}, - [968] = {.lex_state = 102}, - [969] = {.lex_state = 191, .external_lex_state = 11}, - [970] = {.lex_state = 191, .external_lex_state = 11}, - [971] = {.lex_state = 191, .external_lex_state = 12}, - [972] = {.lex_state = 122, .external_lex_state = 8}, - [973] = {.lex_state = 122, .external_lex_state = 8}, - [974] = {.lex_state = 102}, - [975] = {.lex_state = 81}, - [976] = {.lex_state = 81}, - [977] = {.lex_state = 122, .external_lex_state = 8}, - [978] = {.lex_state = 81}, - [979] = {.lex_state = 102}, - [980] = {.lex_state = 122, .external_lex_state = 8}, - [981] = {.lex_state = 81}, - [982] = {.lex_state = 102}, - [983] = {.lex_state = 122, .external_lex_state = 8}, - [984] = {.lex_state = 122, .external_lex_state = 8}, - [985] = {.lex_state = 162, .external_lex_state = 3}, - [986] = {.lex_state = 162, .external_lex_state = 3}, - [987] = {.lex_state = 81}, - [988] = {.lex_state = 162, .external_lex_state = 3}, - [989] = {.lex_state = 81}, - [990] = {.lex_state = 81}, - [991] = {.lex_state = 209, .external_lex_state = 9}, - [992] = {.lex_state = 81}, - [993] = {.lex_state = 81}, - [994] = {.lex_state = 209, .external_lex_state = 9}, - [995] = {.lex_state = 81}, - [996] = {.lex_state = 81}, - [997] = {.lex_state = 81}, - [998] = {.lex_state = 193, .external_lex_state = 15}, - [999] = {.lex_state = 81}, - [1000] = {.lex_state = 102}, - [1001] = {.lex_state = 193, .external_lex_state = 15}, - [1002] = {.lex_state = 81}, - [1003] = {.lex_state = 102}, - [1004] = {.lex_state = 102, .external_lex_state = 2}, - [1005] = {.lex_state = 81}, - [1006] = {.lex_state = 81}, - [1007] = {.lex_state = 81}, - [1008] = {.lex_state = 196, .external_lex_state = 9}, - [1009] = {.lex_state = 81}, - [1010] = {.lex_state = 196, .external_lex_state = 9}, - [1011] = {.lex_state = 81}, - [1012] = {.lex_state = 81}, - [1013] = {.lex_state = 81}, - [1014] = {.lex_state = 134, .external_lex_state = 14}, - [1015] = {.lex_state = 81}, - [1016] = {.lex_state = 134, .external_lex_state = 14}, - [1017] = {.lex_state = 199, .external_lex_state = 8}, - [1018] = {.lex_state = 199, .external_lex_state = 8}, - [1019] = {.lex_state = 81}, - [1020] = {.lex_state = 199, .external_lex_state = 8}, - [1021] = {.lex_state = 81}, - [1022] = {.lex_state = 81}, - [1023] = {.lex_state = 209, .external_lex_state = 9}, - [1024] = {.lex_state = 81}, - [1025] = {.lex_state = 81}, - [1026] = {.lex_state = 209, .external_lex_state = 9}, - [1027] = {.lex_state = 81}, - [1028] = {.lex_state = 175, .external_lex_state = 2}, - [1029] = {.lex_state = 122, .external_lex_state = 4}, - [1030] = {.lex_state = 211, .external_lex_state = 9}, - [1031] = {.lex_state = 196}, - [1032] = {.lex_state = 203}, - [1033] = {.lex_state = 215, .external_lex_state = 2}, - [1034] = {.lex_state = 102}, - [1035] = {.lex_state = 215, .external_lex_state = 2}, - [1036] = {.lex_state = 122, .external_lex_state = 4}, - [1037] = {.lex_state = 81}, - [1038] = {.lex_state = 81}, - [1039] = {.lex_state = 131, .external_lex_state = 8}, - [1040] = {.lex_state = 131, .external_lex_state = 8}, - [1041] = {.lex_state = 81}, - [1042] = {.lex_state = 81}, - [1043] = {.lex_state = 187, .external_lex_state = 9}, - [1044] = {.lex_state = 187, .external_lex_state = 9}, - [1045] = {.lex_state = 81}, - [1046] = {.lex_state = 81}, - [1047] = {.lex_state = 139, .external_lex_state = 9}, - [1048] = {.lex_state = 139, .external_lex_state = 9}, - [1049] = {.lex_state = 81}, - [1050] = {.lex_state = 81}, - [1051] = {.lex_state = 102, .external_lex_state = 10}, - [1052] = {.lex_state = 102, .external_lex_state = 10}, - [1053] = {.lex_state = 81}, - [1054] = {.lex_state = 81}, - [1055] = {.lex_state = 104}, - [1056] = {.lex_state = 104}, - [1057] = {.lex_state = 109, .external_lex_state = 3}, - [1058] = {.lex_state = 109, .external_lex_state = 3}, - [1059] = {.lex_state = 148, .external_lex_state = 10}, - [1060] = {.lex_state = 148, .external_lex_state = 10}, - [1061] = {.lex_state = 81}, - [1062] = {.lex_state = 148, .external_lex_state = 10}, - [1063] = {.lex_state = 81}, - [1064] = {.lex_state = 81}, - [1065] = {.lex_state = 209, .external_lex_state = 9}, - [1066] = {.lex_state = 81}, - [1067] = {.lex_state = 81}, - [1068] = {.lex_state = 209, .external_lex_state = 9}, - [1069] = {.lex_state = 81}, - [1070] = {.lex_state = 81}, - [1071] = {.lex_state = 81}, - [1072] = {.lex_state = 81}, - [1073] = {.lex_state = 81}, - [1074] = {.lex_state = 203}, - [1075] = {.lex_state = 81}, - [1076] = {.lex_state = 81}, - [1077] = {.lex_state = 81}, - [1078] = {.lex_state = 143, .external_lex_state = 11}, - [1079] = {.lex_state = 143, .external_lex_state = 11}, - [1080] = {.lex_state = 213, .external_lex_state = 9}, - [1081] = {.lex_state = 213, .external_lex_state = 9}, - [1082] = {.lex_state = 102}, - [1083] = {.lex_state = 81}, - [1084] = {.lex_state = 81}, - [1085] = {.lex_state = 213, .external_lex_state = 9}, - [1086] = {.lex_state = 81}, - [1087] = {.lex_state = 102}, - [1088] = {.lex_state = 213, .external_lex_state = 9}, - [1089] = {.lex_state = 81}, - [1090] = {.lex_state = 102}, - [1091] = {.lex_state = 213, .external_lex_state = 9}, - [1092] = {.lex_state = 213, .external_lex_state = 9}, - [1093] = {.lex_state = 191, .external_lex_state = 11}, - [1094] = {.lex_state = 191, .external_lex_state = 11}, - [1095] = {.lex_state = 81}, - [1096] = {.lex_state = 191, .external_lex_state = 11}, - [1097] = {.lex_state = 81}, - [1098] = {.lex_state = 81}, - [1099] = {.lex_state = 209, .external_lex_state = 9}, - [1100] = {.lex_state = 81}, - [1101] = {.lex_state = 81}, - [1102] = {.lex_state = 209, .external_lex_state = 9}, - [1103] = {.lex_state = 81}, - [1104] = {.lex_state = 122, .external_lex_state = 8}, - [1105] = {.lex_state = 122, .external_lex_state = 8}, - [1106] = {.lex_state = 81}, - [1107] = {.lex_state = 122, .external_lex_state = 8}, - [1108] = {.lex_state = 81}, - [1109] = {.lex_state = 81}, - [1110] = {.lex_state = 209, .external_lex_state = 9}, - [1111] = {.lex_state = 81}, - [1112] = {.lex_state = 81}, - [1113] = {.lex_state = 209, .external_lex_state = 9}, - [1114] = {.lex_state = 81}, - [1115] = {.lex_state = 81}, - [1116] = {.lex_state = 81}, - [1117] = {.lex_state = 81}, - [1118] = {.lex_state = 162, .external_lex_state = 3}, - [1119] = {.lex_state = 81}, - [1120] = {.lex_state = 162, .external_lex_state = 3}, - [1121] = {.lex_state = 193, .external_lex_state = 15}, - [1122] = {.lex_state = 81}, - [1123] = {.lex_state = 193, .external_lex_state = 15}, - [1124] = {.lex_state = 81}, - [1125] = {.lex_state = 81}, - [1126] = {.lex_state = 209, .external_lex_state = 9}, - [1127] = {.lex_state = 81}, - [1128] = {.lex_state = 81}, - [1129] = {.lex_state = 209, .external_lex_state = 9}, - [1130] = {.lex_state = 81}, - [1131] = {.lex_state = 81}, - [1132] = {.lex_state = 81}, - [1133] = {.lex_state = 196, .external_lex_state = 9}, - [1134] = {.lex_state = 196, .external_lex_state = 9}, - [1135] = {.lex_state = 81}, - [1136] = {.lex_state = 81}, - [1137] = {.lex_state = 134, .external_lex_state = 14}, - [1138] = {.lex_state = 134, .external_lex_state = 14}, - [1139] = {.lex_state = 81}, - [1140] = {.lex_state = 81}, - [1141] = {.lex_state = 81}, - [1142] = {.lex_state = 199, .external_lex_state = 8}, - [1143] = {.lex_state = 81}, - [1144] = {.lex_state = 199, .external_lex_state = 8}, - [1145] = {.lex_state = 203}, - [1146] = {.lex_state = 211, .external_lex_state = 9}, - [1147] = {.lex_state = 196}, - [1148] = {.lex_state = 215, .external_lex_state = 2}, - [1149] = {.lex_state = 131, .external_lex_state = 8}, - [1150] = {.lex_state = 131, .external_lex_state = 8}, - [1151] = {.lex_state = 187, .external_lex_state = 9}, - [1152] = {.lex_state = 187, .external_lex_state = 9}, - [1153] = {.lex_state = 139, .external_lex_state = 9}, - [1154] = {.lex_state = 139, .external_lex_state = 9}, - [1155] = {.lex_state = 102, .external_lex_state = 10}, - [1156] = {.lex_state = 102, .external_lex_state = 10}, - [1157] = {.lex_state = 104}, - [1158] = {.lex_state = 104}, - [1159] = {.lex_state = 81}, - [1160] = {.lex_state = 81}, - [1161] = {.lex_state = 81}, - [1162] = {.lex_state = 148, .external_lex_state = 10}, - [1163] = {.lex_state = 81}, - [1164] = {.lex_state = 148, .external_lex_state = 10}, - [1165] = {.lex_state = 81}, - [1166] = {.lex_state = 81}, - [1167] = {.lex_state = 143, .external_lex_state = 11}, - [1168] = {.lex_state = 143, .external_lex_state = 11}, - [1169] = {.lex_state = 213, .external_lex_state = 9}, - [1170] = {.lex_state = 213, .external_lex_state = 9}, - [1171] = {.lex_state = 81}, - [1172] = {.lex_state = 213, .external_lex_state = 9}, - [1173] = {.lex_state = 81}, - [1174] = {.lex_state = 81}, - [1175] = {.lex_state = 209, .external_lex_state = 9}, - [1176] = {.lex_state = 81}, - [1177] = {.lex_state = 81}, - [1178] = {.lex_state = 209, .external_lex_state = 9}, - [1179] = {.lex_state = 81}, - [1180] = {.lex_state = 81}, - [1181] = {.lex_state = 81}, - [1182] = {.lex_state = 81}, - [1183] = {.lex_state = 191, .external_lex_state = 11}, - [1184] = {.lex_state = 81}, - [1185] = {.lex_state = 191, .external_lex_state = 11}, - [1186] = {.lex_state = 81}, - [1187] = {.lex_state = 81}, - [1188] = {.lex_state = 81}, - [1189] = {.lex_state = 122, .external_lex_state = 8}, - [1190] = {.lex_state = 81}, - [1191] = {.lex_state = 122, .external_lex_state = 8}, - [1192] = {.lex_state = 81}, - [1193] = {.lex_state = 81}, - [1194] = {.lex_state = 162, .external_lex_state = 3}, - [1195] = {.lex_state = 162, .external_lex_state = 3}, - [1196] = {.lex_state = 81}, - [1197] = {.lex_state = 81}, - [1198] = {.lex_state = 81}, - [1199] = {.lex_state = 193, .external_lex_state = 15}, - [1200] = {.lex_state = 81}, - [1201] = {.lex_state = 193, .external_lex_state = 15}, - [1202] = {.lex_state = 196, .external_lex_state = 9}, - [1203] = {.lex_state = 196, .external_lex_state = 9}, - [1204] = {.lex_state = 134, .external_lex_state = 14}, - [1205] = {.lex_state = 134, .external_lex_state = 14}, - [1206] = {.lex_state = 81}, - [1207] = {.lex_state = 81}, - [1208] = {.lex_state = 199, .external_lex_state = 8}, - [1209] = {.lex_state = 199, .external_lex_state = 8}, - [1210] = {.lex_state = 203}, - [1211] = {.lex_state = 81}, - [1212] = {.lex_state = 81}, - [1213] = {.lex_state = 148, .external_lex_state = 10}, - [1214] = {.lex_state = 148, .external_lex_state = 10}, - [1215] = {.lex_state = 81}, - [1216] = {.lex_state = 81}, - [1217] = {.lex_state = 81}, - [1218] = {.lex_state = 213, .external_lex_state = 9}, - [1219] = {.lex_state = 81}, - [1220] = {.lex_state = 213, .external_lex_state = 9}, - [1221] = {.lex_state = 81}, - [1222] = {.lex_state = 81}, - [1223] = {.lex_state = 191, .external_lex_state = 11}, - [1224] = {.lex_state = 191, .external_lex_state = 11}, - [1225] = {.lex_state = 81}, - [1226] = {.lex_state = 81}, - [1227] = {.lex_state = 122, .external_lex_state = 8}, - [1228] = {.lex_state = 122, .external_lex_state = 8}, - [1229] = {.lex_state = 162, .external_lex_state = 3}, - [1230] = {.lex_state = 162, .external_lex_state = 3}, - [1231] = {.lex_state = 81}, - [1232] = {.lex_state = 81}, - [1233] = {.lex_state = 193, .external_lex_state = 15}, - [1234] = {.lex_state = 193, .external_lex_state = 15}, - [1235] = {.lex_state = 199, .external_lex_state = 8}, - [1236] = {.lex_state = 199, .external_lex_state = 8}, - [1237] = {.lex_state = 148, .external_lex_state = 10}, - [1238] = {.lex_state = 148, .external_lex_state = 10}, - [1239] = {.lex_state = 81}, - [1240] = {.lex_state = 81}, - [1241] = {.lex_state = 213, .external_lex_state = 9}, - [1242] = {.lex_state = 213, .external_lex_state = 9}, - [1243] = {.lex_state = 191, .external_lex_state = 11}, - [1244] = {.lex_state = 191, .external_lex_state = 11}, - [1245] = {.lex_state = 122, .external_lex_state = 8}, - [1246] = {.lex_state = 122, .external_lex_state = 8}, - [1247] = {.lex_state = 193, .external_lex_state = 15}, - [1248] = {.lex_state = 193, .external_lex_state = 15}, - [1249] = {.lex_state = 213, .external_lex_state = 9}, - [1250] = {.lex_state = 213, .external_lex_state = 9}, + [525] = {.lex_state = 83}, + [526] = {.lex_state = 83}, + [527] = {.lex_state = 150, .external_lex_state = 2}, + [528] = {.lex_state = 83}, + [529] = {.lex_state = 150, .external_lex_state = 2}, + [530] = {.lex_state = 104}, + [531] = {.lex_state = 106}, + [532] = {.lex_state = 193, .external_lex_state = 11}, + [533] = {.lex_state = 116}, + [534] = {.lex_state = 116}, + [535] = {.lex_state = 53, .external_lex_state = 2}, + [536] = {.lex_state = 53, .external_lex_state = 2}, + [537] = {.lex_state = 53, .external_lex_state = 2}, + [538] = {.lex_state = 193, .external_lex_state = 12}, + [539] = {.lex_state = 193, .external_lex_state = 12}, + [540] = {.lex_state = 195, .external_lex_state = 15}, + [541] = {.lex_state = 193, .external_lex_state = 12}, + [542] = {.lex_state = 145, .external_lex_state = 11}, + [543] = {.lex_state = 145, .external_lex_state = 12}, + [544] = {.lex_state = 193, .external_lex_state = 12}, + [545] = {.lex_state = 193, .external_lex_state = 12}, + [546] = {.lex_state = 145, .external_lex_state = 12}, + [547] = {.lex_state = 154, .external_lex_state = 2}, + [548] = {.lex_state = 83}, + [549] = {.lex_state = 154, .external_lex_state = 2}, + [550] = {.lex_state = 152, .external_lex_state = 12}, + [551] = {.lex_state = 158, .external_lex_state = 5}, + [552] = {.lex_state = 158, .external_lex_state = 5}, + [553] = {.lex_state = 104}, + [554] = {.lex_state = 106}, + [555] = {.lex_state = 124, .external_lex_state = 8}, + [556] = {.lex_state = 116}, + [557] = {.lex_state = 116}, + [558] = {.lex_state = 53, .external_lex_state = 2}, + [559] = {.lex_state = 53, .external_lex_state = 2}, + [560] = {.lex_state = 53, .external_lex_state = 2}, + [561] = {.lex_state = 124, .external_lex_state = 4}, + [562] = {.lex_state = 164, .external_lex_state = 3}, + [563] = {.lex_state = 164, .external_lex_state = 5}, + [564] = {.lex_state = 164, .external_lex_state = 3}, + [565] = {.lex_state = 106}, + [566] = {.lex_state = 104}, + [567] = {.lex_state = 164, .external_lex_state = 3}, + [568] = {.lex_state = 164, .external_lex_state = 3}, + [569] = {.lex_state = 164, .external_lex_state = 3}, + [570] = {.lex_state = 164, .external_lex_state = 3}, + [571] = {.lex_state = 116}, + [572] = {.lex_state = 83}, + [573] = {.lex_state = 83}, + [574] = {.lex_state = 83}, + [575] = {.lex_state = 150, .external_lex_state = 2}, + [576] = {.lex_state = 83}, + [577] = {.lex_state = 154, .external_lex_state = 2}, + [578] = {.lex_state = 83}, + [579] = {.lex_state = 150, .external_lex_state = 2}, + [580] = {.lex_state = 195, .external_lex_state = 15}, + [581] = {.lex_state = 164, .external_lex_state = 5}, + [582] = {.lex_state = 116}, + [583] = {.lex_state = 116}, + [584] = {.lex_state = 195, .external_lex_state = 15}, + [585] = {.lex_state = 104, .external_lex_state = 2}, + [586] = {.lex_state = 169}, + [587] = {.lex_state = 104, .external_lex_state = 10}, + [588] = {.lex_state = 164, .external_lex_state = 5}, + [589] = {.lex_state = 198, .external_lex_state = 9}, + [590] = {.lex_state = 198, .external_lex_state = 9}, + [591] = {.lex_state = 104}, + [592] = {.lex_state = 83}, + [593] = {.lex_state = 83}, + [594] = {.lex_state = 198, .external_lex_state = 9}, + [595] = {.lex_state = 83}, + [596] = {.lex_state = 104}, + [597] = {.lex_state = 198, .external_lex_state = 9}, + [598] = {.lex_state = 83}, + [599] = {.lex_state = 104}, + [600] = {.lex_state = 198, .external_lex_state = 9}, + [601] = {.lex_state = 198, .external_lex_state = 9}, + [602] = {.lex_state = 169, .external_lex_state = 9}, + [603] = {.lex_state = 106}, + [604] = {.lex_state = 104}, + [605] = {.lex_state = 169, .external_lex_state = 9}, + [606] = {.lex_state = 169, .external_lex_state = 9}, + [607] = {.lex_state = 169, .external_lex_state = 9}, + [608] = {.lex_state = 169, .external_lex_state = 9}, + [609] = {.lex_state = 116}, + [610] = {.lex_state = 83}, + [611] = {.lex_state = 83}, + [612] = {.lex_state = 83}, + [613] = {.lex_state = 150, .external_lex_state = 2}, + [614] = {.lex_state = 83}, + [615] = {.lex_state = 154, .external_lex_state = 2}, + [616] = {.lex_state = 83}, + [617] = {.lex_state = 150, .external_lex_state = 2}, + [618] = {.lex_state = 136, .external_lex_state = 6}, + [619] = {.lex_state = 169, .external_lex_state = 9}, + [620] = {.lex_state = 169}, + [621] = {.lex_state = 136, .external_lex_state = 14}, + [622] = {.lex_state = 136, .external_lex_state = 14}, + [623] = {.lex_state = 104}, + [624] = {.lex_state = 83}, + [625] = {.lex_state = 83}, + [626] = {.lex_state = 136, .external_lex_state = 14}, + [627] = {.lex_state = 83}, + [628] = {.lex_state = 104}, + [629] = {.lex_state = 136, .external_lex_state = 14}, + [630] = {.lex_state = 83}, + [631] = {.lex_state = 104}, + [632] = {.lex_state = 136, .external_lex_state = 14}, + [633] = {.lex_state = 136, .external_lex_state = 14}, + [634] = {.lex_state = 201, .external_lex_state = 8}, + [635] = {.lex_state = 106}, + [636] = {.lex_state = 104}, + [637] = {.lex_state = 201, .external_lex_state = 8}, + [638] = {.lex_state = 201, .external_lex_state = 8}, + [639] = {.lex_state = 201, .external_lex_state = 8}, + [640] = {.lex_state = 201, .external_lex_state = 8}, + [641] = {.lex_state = 116}, + [642] = {.lex_state = 83}, + [643] = {.lex_state = 83}, + [644] = {.lex_state = 83}, + [645] = {.lex_state = 150, .external_lex_state = 2}, + [646] = {.lex_state = 83}, + [647] = {.lex_state = 154, .external_lex_state = 2}, + [648] = {.lex_state = 83}, + [649] = {.lex_state = 150, .external_lex_state = 2}, + [650] = {.lex_state = 83}, + [651] = {.lex_state = 201, .external_lex_state = 8}, + [652] = {.lex_state = 201, .external_lex_state = 4}, + [653] = {.lex_state = 171, .external_lex_state = 2}, + [654] = {.lex_state = 124, .external_lex_state = 4}, + [655] = {.lex_state = 171, .external_lex_state = 2}, + [656] = {.lex_state = 83}, + [657] = {.lex_state = 203, .external_lex_state = 2}, + [658] = {.lex_state = 124, .external_lex_state = 4}, + [659] = {.lex_state = 127, .external_lex_state = 6}, + [660] = {.lex_state = 203, .external_lex_state = 2}, + [661] = {.lex_state = 177, .external_lex_state = 2}, + [662] = {.lex_state = 124, .external_lex_state = 4}, + [663] = {.lex_state = 177, .external_lex_state = 2}, + [664] = {.lex_state = 83}, + [665] = {.lex_state = 83}, + [666] = {.lex_state = 83}, + [667] = {.lex_state = 124, .external_lex_state = 4}, + [668] = {.lex_state = 213, .external_lex_state = 9}, + [669] = {.lex_state = 205}, + [670] = {.lex_state = 198}, + [671] = {.lex_state = 205}, + [672] = {.lex_state = 205}, + [673] = {.lex_state = 133, .external_lex_state = 8}, + [674] = {.lex_state = 133, .external_lex_state = 8}, + [675] = {.lex_state = 83}, + [676] = {.lex_state = 133, .external_lex_state = 8}, + [677] = {.lex_state = 83}, + [678] = {.lex_state = 83}, + [679] = {.lex_state = 211, .external_lex_state = 9}, + [680] = {.lex_state = 83}, + [681] = {.lex_state = 83}, + [682] = {.lex_state = 211, .external_lex_state = 9}, + [683] = {.lex_state = 83}, + [684] = {.lex_state = 158, .external_lex_state = 5}, + [685] = {.lex_state = 124, .external_lex_state = 4}, + [686] = {.lex_state = 189, .external_lex_state = 9}, + [687] = {.lex_state = 189, .external_lex_state = 9}, + [688] = {.lex_state = 83}, + [689] = {.lex_state = 189, .external_lex_state = 9}, + [690] = {.lex_state = 83}, + [691] = {.lex_state = 83}, + [692] = {.lex_state = 211, .external_lex_state = 9}, + [693] = {.lex_state = 83}, + [694] = {.lex_state = 83}, + [695] = {.lex_state = 211, .external_lex_state = 9}, + [696] = {.lex_state = 83}, + [697] = {.lex_state = 141, .external_lex_state = 9}, + [698] = {.lex_state = 141, .external_lex_state = 9}, + [699] = {.lex_state = 83}, + [700] = {.lex_state = 141, .external_lex_state = 9}, + [701] = {.lex_state = 83}, + [702] = {.lex_state = 83}, + [703] = {.lex_state = 211, .external_lex_state = 9}, + [704] = {.lex_state = 83}, + [705] = {.lex_state = 83}, + [706] = {.lex_state = 211, .external_lex_state = 9}, + [707] = {.lex_state = 83}, + [708] = {.lex_state = 104, .external_lex_state = 10}, + [709] = {.lex_state = 104, .external_lex_state = 10}, + [710] = {.lex_state = 83}, + [711] = {.lex_state = 104, .external_lex_state = 10}, + [712] = {.lex_state = 83}, + [713] = {.lex_state = 83}, + [714] = {.lex_state = 211, .external_lex_state = 9}, + [715] = {.lex_state = 83}, + [716] = {.lex_state = 83}, + [717] = {.lex_state = 211, .external_lex_state = 9}, + [718] = {.lex_state = 83}, + [719] = {.lex_state = 106}, + [720] = {.lex_state = 83}, + [721] = {.lex_state = 106}, + [722] = {.lex_state = 83}, + [723] = {.lex_state = 83}, + [724] = {.lex_state = 211, .external_lex_state = 9}, + [725] = {.lex_state = 83}, + [726] = {.lex_state = 83}, + [727] = {.lex_state = 211, .external_lex_state = 9}, + [728] = {.lex_state = 83}, + [729] = {.lex_state = 83}, + [730] = {.lex_state = 83}, + [731] = {.lex_state = 83}, + [732] = {.lex_state = 111, .external_lex_state = 3}, + [733] = {.lex_state = 83}, + [734] = {.lex_state = 111, .external_lex_state = 3}, + [735] = {.lex_state = 150, .external_lex_state = 2}, + [736] = {.lex_state = 169}, + [737] = {.lex_state = 150, .external_lex_state = 10}, + [738] = {.lex_state = 106}, + [739] = {.lex_state = 104}, + [740] = {.lex_state = 150, .external_lex_state = 10}, + [741] = {.lex_state = 150, .external_lex_state = 10}, + [742] = {.lex_state = 150, .external_lex_state = 10}, + [743] = {.lex_state = 150, .external_lex_state = 10}, + [744] = {.lex_state = 116}, + [745] = {.lex_state = 83}, + [746] = {.lex_state = 83}, + [747] = {.lex_state = 83}, + [748] = {.lex_state = 150, .external_lex_state = 2}, + [749] = {.lex_state = 83}, + [750] = {.lex_state = 154, .external_lex_state = 2}, + [751] = {.lex_state = 83}, + [752] = {.lex_state = 150, .external_lex_state = 2}, + [753] = {.lex_state = 201, .external_lex_state = 4}, + [754] = {.lex_state = 83}, + [755] = {.lex_state = 171, .external_lex_state = 2}, + [756] = {.lex_state = 83}, + [757] = {.lex_state = 83}, + [758] = {.lex_state = 177, .external_lex_state = 2}, + [759] = {.lex_state = 83}, + [760] = {.lex_state = 205}, + [761] = {.lex_state = 133, .external_lex_state = 4}, + [762] = {.lex_state = 83}, + [763] = {.lex_state = 83}, + [764] = {.lex_state = 83}, + [765] = {.lex_state = 187, .external_lex_state = 2}, + [766] = {.lex_state = 145, .external_lex_state = 11}, + [767] = {.lex_state = 145, .external_lex_state = 11}, + [768] = {.lex_state = 83}, + [769] = {.lex_state = 145, .external_lex_state = 11}, + [770] = {.lex_state = 83}, + [771] = {.lex_state = 83}, + [772] = {.lex_state = 211, .external_lex_state = 9}, + [773] = {.lex_state = 83}, + [774] = {.lex_state = 83}, + [775] = {.lex_state = 211, .external_lex_state = 9}, + [776] = {.lex_state = 83}, + [777] = {.lex_state = 191, .external_lex_state = 12}, + [778] = {.lex_state = 191, .external_lex_state = 12}, + [779] = {.lex_state = 104}, + [780] = {.lex_state = 106}, + [781] = {.lex_state = 215, .external_lex_state = 9}, + [782] = {.lex_state = 116}, + [783] = {.lex_state = 116}, + [784] = {.lex_state = 53, .external_lex_state = 2}, + [785] = {.lex_state = 53, .external_lex_state = 2}, + [786] = {.lex_state = 53, .external_lex_state = 2}, + [787] = {.lex_state = 83}, + [788] = {.lex_state = 193, .external_lex_state = 11}, + [789] = {.lex_state = 193, .external_lex_state = 12}, + [790] = {.lex_state = 193, .external_lex_state = 11}, + [791] = {.lex_state = 106}, + [792] = {.lex_state = 104}, + [793] = {.lex_state = 193, .external_lex_state = 11}, + [794] = {.lex_state = 193, .external_lex_state = 11}, + [795] = {.lex_state = 193, .external_lex_state = 11}, + [796] = {.lex_state = 193, .external_lex_state = 11}, + [797] = {.lex_state = 116}, + [798] = {.lex_state = 83}, + [799] = {.lex_state = 83}, + [800] = {.lex_state = 83}, + [801] = {.lex_state = 150, .external_lex_state = 2}, + [802] = {.lex_state = 83}, + [803] = {.lex_state = 154, .external_lex_state = 2}, + [804] = {.lex_state = 83}, + [805] = {.lex_state = 150, .external_lex_state = 2}, + [806] = {.lex_state = 193, .external_lex_state = 12}, + [807] = {.lex_state = 195, .external_lex_state = 15}, + [808] = {.lex_state = 193, .external_lex_state = 12}, + [809] = {.lex_state = 124, .external_lex_state = 4}, + [810] = {.lex_state = 124, .external_lex_state = 8}, + [811] = {.lex_state = 124, .external_lex_state = 4}, + [812] = {.lex_state = 124, .external_lex_state = 8}, + [813] = {.lex_state = 106}, + [814] = {.lex_state = 104}, + [815] = {.lex_state = 124, .external_lex_state = 8}, + [816] = {.lex_state = 124, .external_lex_state = 8}, + [817] = {.lex_state = 124, .external_lex_state = 8}, + [818] = {.lex_state = 124, .external_lex_state = 8}, + [819] = {.lex_state = 116}, + [820] = {.lex_state = 83}, + [821] = {.lex_state = 83}, + [822] = {.lex_state = 83}, + [823] = {.lex_state = 150, .external_lex_state = 2}, + [824] = {.lex_state = 83}, + [825] = {.lex_state = 154, .external_lex_state = 2}, + [826] = {.lex_state = 83}, + [827] = {.lex_state = 150, .external_lex_state = 2}, + [828] = {.lex_state = 164, .external_lex_state = 3}, + [829] = {.lex_state = 164, .external_lex_state = 3}, + [830] = {.lex_state = 104}, + [831] = {.lex_state = 83}, + [832] = {.lex_state = 83}, + [833] = {.lex_state = 164, .external_lex_state = 3}, + [834] = {.lex_state = 83}, + [835] = {.lex_state = 104}, + [836] = {.lex_state = 164, .external_lex_state = 3}, + [837] = {.lex_state = 83}, + [838] = {.lex_state = 104}, + [839] = {.lex_state = 164, .external_lex_state = 3}, + [840] = {.lex_state = 164, .external_lex_state = 3}, + [841] = {.lex_state = 195, .external_lex_state = 15}, + [842] = {.lex_state = 195, .external_lex_state = 15}, + [843] = {.lex_state = 195, .external_lex_state = 15}, + [844] = {.lex_state = 116}, + [845] = {.lex_state = 83}, + [846] = {.lex_state = 83}, + [847] = {.lex_state = 195, .external_lex_state = 15}, + [848] = {.lex_state = 164, .external_lex_state = 5}, + [849] = {.lex_state = 104, .external_lex_state = 2}, + [850] = {.lex_state = 169}, + [851] = {.lex_state = 198, .external_lex_state = 9}, + [852] = {.lex_state = 198, .external_lex_state = 9}, + [853] = {.lex_state = 83}, + [854] = {.lex_state = 198, .external_lex_state = 9}, + [855] = {.lex_state = 83}, + [856] = {.lex_state = 83}, + [857] = {.lex_state = 211, .external_lex_state = 9}, + [858] = {.lex_state = 83}, + [859] = {.lex_state = 83}, + [860] = {.lex_state = 211, .external_lex_state = 9}, + [861] = {.lex_state = 83}, + [862] = {.lex_state = 169, .external_lex_state = 9}, + [863] = {.lex_state = 169, .external_lex_state = 9}, + [864] = {.lex_state = 104}, + [865] = {.lex_state = 83}, + [866] = {.lex_state = 83}, + [867] = {.lex_state = 169, .external_lex_state = 9}, + [868] = {.lex_state = 83}, + [869] = {.lex_state = 104}, + [870] = {.lex_state = 169, .external_lex_state = 9}, + [871] = {.lex_state = 83}, + [872] = {.lex_state = 104}, + [873] = {.lex_state = 169, .external_lex_state = 9}, + [874] = {.lex_state = 169, .external_lex_state = 9}, + [875] = {.lex_state = 136, .external_lex_state = 14}, + [876] = {.lex_state = 136, .external_lex_state = 14}, + [877] = {.lex_state = 83}, + [878] = {.lex_state = 136, .external_lex_state = 14}, + [879] = {.lex_state = 83}, + [880] = {.lex_state = 83}, + [881] = {.lex_state = 211, .external_lex_state = 9}, + [882] = {.lex_state = 83}, + [883] = {.lex_state = 83}, + [884] = {.lex_state = 211, .external_lex_state = 9}, + [885] = {.lex_state = 83}, + [886] = {.lex_state = 201, .external_lex_state = 8}, + [887] = {.lex_state = 201, .external_lex_state = 8}, + [888] = {.lex_state = 104}, + [889] = {.lex_state = 83}, + [890] = {.lex_state = 83}, + [891] = {.lex_state = 201, .external_lex_state = 8}, + [892] = {.lex_state = 83}, + [893] = {.lex_state = 104}, + [894] = {.lex_state = 201, .external_lex_state = 8}, + [895] = {.lex_state = 83}, + [896] = {.lex_state = 104}, + [897] = {.lex_state = 201, .external_lex_state = 8}, + [898] = {.lex_state = 201, .external_lex_state = 8}, + [899] = {.lex_state = 124, .external_lex_state = 4}, + [900] = {.lex_state = 177, .external_lex_state = 2}, + [901] = {.lex_state = 203, .external_lex_state = 2}, + [902] = {.lex_state = 203, .external_lex_state = 2}, + [903] = {.lex_state = 124, .external_lex_state = 4}, + [904] = {.lex_state = 83}, + [905] = {.lex_state = 104}, + [906] = {.lex_state = 217, .external_lex_state = 2}, + [907] = {.lex_state = 198}, + [908] = {.lex_state = 124, .external_lex_state = 4}, + [909] = {.lex_state = 205}, + [910] = {.lex_state = 205}, + [911] = {.lex_state = 83}, + [912] = {.lex_state = 83}, + [913] = {.lex_state = 83}, + [914] = {.lex_state = 133, .external_lex_state = 8}, + [915] = {.lex_state = 83}, + [916] = {.lex_state = 133, .external_lex_state = 8}, + [917] = {.lex_state = 124, .external_lex_state = 4}, + [918] = {.lex_state = 83}, + [919] = {.lex_state = 83}, + [920] = {.lex_state = 83}, + [921] = {.lex_state = 189, .external_lex_state = 9}, + [922] = {.lex_state = 83}, + [923] = {.lex_state = 189, .external_lex_state = 9}, + [924] = {.lex_state = 83}, + [925] = {.lex_state = 83}, + [926] = {.lex_state = 83}, + [927] = {.lex_state = 141, .external_lex_state = 9}, + [928] = {.lex_state = 83}, + [929] = {.lex_state = 141, .external_lex_state = 9}, + [930] = {.lex_state = 83}, + [931] = {.lex_state = 83}, + [932] = {.lex_state = 83}, + [933] = {.lex_state = 104, .external_lex_state = 10}, + [934] = {.lex_state = 83}, + [935] = {.lex_state = 104, .external_lex_state = 10}, + [936] = {.lex_state = 83}, + [937] = {.lex_state = 83}, + [938] = {.lex_state = 83}, + [939] = {.lex_state = 106}, + [940] = {.lex_state = 83}, + [941] = {.lex_state = 106}, + [942] = {.lex_state = 83}, + [943] = {.lex_state = 83}, + [944] = {.lex_state = 111, .external_lex_state = 3}, + [945] = {.lex_state = 111, .external_lex_state = 3}, + [946] = {.lex_state = 150, .external_lex_state = 2}, + [947] = {.lex_state = 150, .external_lex_state = 10}, + [948] = {.lex_state = 150, .external_lex_state = 10}, + [949] = {.lex_state = 104}, + [950] = {.lex_state = 83}, + [951] = {.lex_state = 83}, + [952] = {.lex_state = 150, .external_lex_state = 10}, + [953] = {.lex_state = 83}, + [954] = {.lex_state = 104}, + [955] = {.lex_state = 150, .external_lex_state = 10}, + [956] = {.lex_state = 83}, + [957] = {.lex_state = 104}, + [958] = {.lex_state = 150, .external_lex_state = 10}, + [959] = {.lex_state = 150, .external_lex_state = 10}, + [960] = {.lex_state = 83}, + [961] = {.lex_state = 83}, + [962] = {.lex_state = 83}, + [963] = {.lex_state = 83}, + [964] = {.lex_state = 83}, + [965] = {.lex_state = 83}, + [966] = {.lex_state = 205}, + [967] = {.lex_state = 205}, + [968] = {.lex_state = 191, .external_lex_state = 12}, + [969] = {.lex_state = 83}, + [970] = {.lex_state = 83}, + [971] = {.lex_state = 83}, + [972] = {.lex_state = 83}, + [973] = {.lex_state = 145, .external_lex_state = 11}, + [974] = {.lex_state = 83}, + [975] = {.lex_state = 145, .external_lex_state = 11}, + [976] = {.lex_state = 83}, + [977] = {.lex_state = 215, .external_lex_state = 9}, + [978] = {.lex_state = 83}, + [979] = {.lex_state = 215, .external_lex_state = 9}, + [980] = {.lex_state = 106}, + [981] = {.lex_state = 104}, + [982] = {.lex_state = 215, .external_lex_state = 9}, + [983] = {.lex_state = 215, .external_lex_state = 9}, + [984] = {.lex_state = 215, .external_lex_state = 9}, + [985] = {.lex_state = 215, .external_lex_state = 9}, + [986] = {.lex_state = 116}, + [987] = {.lex_state = 83}, + [988] = {.lex_state = 83}, + [989] = {.lex_state = 83}, + [990] = {.lex_state = 150, .external_lex_state = 2}, + [991] = {.lex_state = 83}, + [992] = {.lex_state = 154, .external_lex_state = 2}, + [993] = {.lex_state = 83}, + [994] = {.lex_state = 150, .external_lex_state = 2}, + [995] = {.lex_state = 193, .external_lex_state = 11}, + [996] = {.lex_state = 193, .external_lex_state = 11}, + [997] = {.lex_state = 104}, + [998] = {.lex_state = 83}, + [999] = {.lex_state = 83}, + [1000] = {.lex_state = 193, .external_lex_state = 11}, + [1001] = {.lex_state = 83}, + [1002] = {.lex_state = 104}, + [1003] = {.lex_state = 193, .external_lex_state = 11}, + [1004] = {.lex_state = 83}, + [1005] = {.lex_state = 104}, + [1006] = {.lex_state = 193, .external_lex_state = 11}, + [1007] = {.lex_state = 193, .external_lex_state = 11}, + [1008] = {.lex_state = 193, .external_lex_state = 12}, + [1009] = {.lex_state = 124, .external_lex_state = 8}, + [1010] = {.lex_state = 124, .external_lex_state = 8}, + [1011] = {.lex_state = 104}, + [1012] = {.lex_state = 83}, + [1013] = {.lex_state = 83}, + [1014] = {.lex_state = 124, .external_lex_state = 8}, + [1015] = {.lex_state = 83}, + [1016] = {.lex_state = 104}, + [1017] = {.lex_state = 124, .external_lex_state = 8}, + [1018] = {.lex_state = 83}, + [1019] = {.lex_state = 104}, + [1020] = {.lex_state = 124, .external_lex_state = 8}, + [1021] = {.lex_state = 124, .external_lex_state = 8}, + [1022] = {.lex_state = 164, .external_lex_state = 3}, + [1023] = {.lex_state = 164, .external_lex_state = 3}, + [1024] = {.lex_state = 83}, + [1025] = {.lex_state = 164, .external_lex_state = 3}, + [1026] = {.lex_state = 83}, + [1027] = {.lex_state = 83}, + [1028] = {.lex_state = 211, .external_lex_state = 9}, + [1029] = {.lex_state = 83}, + [1030] = {.lex_state = 83}, + [1031] = {.lex_state = 211, .external_lex_state = 9}, + [1032] = {.lex_state = 83}, + [1033] = {.lex_state = 83}, + [1034] = {.lex_state = 83}, + [1035] = {.lex_state = 195, .external_lex_state = 15}, + [1036] = {.lex_state = 83}, + [1037] = {.lex_state = 104}, + [1038] = {.lex_state = 195, .external_lex_state = 15}, + [1039] = {.lex_state = 83}, + [1040] = {.lex_state = 104}, + [1041] = {.lex_state = 104, .external_lex_state = 2}, + [1042] = {.lex_state = 83}, + [1043] = {.lex_state = 83}, + [1044] = {.lex_state = 83}, + [1045] = {.lex_state = 198, .external_lex_state = 9}, + [1046] = {.lex_state = 83}, + [1047] = {.lex_state = 198, .external_lex_state = 9}, + [1048] = {.lex_state = 169, .external_lex_state = 9}, + [1049] = {.lex_state = 169, .external_lex_state = 9}, + [1050] = {.lex_state = 83}, + [1051] = {.lex_state = 169, .external_lex_state = 9}, + [1052] = {.lex_state = 83}, + [1053] = {.lex_state = 83}, + [1054] = {.lex_state = 211, .external_lex_state = 9}, + [1055] = {.lex_state = 83}, + [1056] = {.lex_state = 83}, + [1057] = {.lex_state = 211, .external_lex_state = 9}, + [1058] = {.lex_state = 83}, + [1059] = {.lex_state = 83}, + [1060] = {.lex_state = 83}, + [1061] = {.lex_state = 83}, + [1062] = {.lex_state = 136, .external_lex_state = 14}, + [1063] = {.lex_state = 83}, + [1064] = {.lex_state = 136, .external_lex_state = 14}, + [1065] = {.lex_state = 201, .external_lex_state = 8}, + [1066] = {.lex_state = 201, .external_lex_state = 8}, + [1067] = {.lex_state = 83}, + [1068] = {.lex_state = 201, .external_lex_state = 8}, + [1069] = {.lex_state = 83}, + [1070] = {.lex_state = 83}, + [1071] = {.lex_state = 211, .external_lex_state = 9}, + [1072] = {.lex_state = 83}, + [1073] = {.lex_state = 83}, + [1074] = {.lex_state = 211, .external_lex_state = 9}, + [1075] = {.lex_state = 83}, + [1076] = {.lex_state = 177, .external_lex_state = 2}, + [1077] = {.lex_state = 124, .external_lex_state = 4}, + [1078] = {.lex_state = 213, .external_lex_state = 9}, + [1079] = {.lex_state = 198}, + [1080] = {.lex_state = 205}, + [1081] = {.lex_state = 217, .external_lex_state = 2}, + [1082] = {.lex_state = 104}, + [1083] = {.lex_state = 217, .external_lex_state = 2}, + [1084] = {.lex_state = 124, .external_lex_state = 4}, + [1085] = {.lex_state = 83}, + [1086] = {.lex_state = 83}, + [1087] = {.lex_state = 133, .external_lex_state = 8}, + [1088] = {.lex_state = 133, .external_lex_state = 8}, + [1089] = {.lex_state = 83}, + [1090] = {.lex_state = 83}, + [1091] = {.lex_state = 189, .external_lex_state = 9}, + [1092] = {.lex_state = 189, .external_lex_state = 9}, + [1093] = {.lex_state = 83}, + [1094] = {.lex_state = 83}, + [1095] = {.lex_state = 141, .external_lex_state = 9}, + [1096] = {.lex_state = 141, .external_lex_state = 9}, + [1097] = {.lex_state = 83}, + [1098] = {.lex_state = 83}, + [1099] = {.lex_state = 104, .external_lex_state = 10}, + [1100] = {.lex_state = 104, .external_lex_state = 10}, + [1101] = {.lex_state = 83}, + [1102] = {.lex_state = 83}, + [1103] = {.lex_state = 106}, + [1104] = {.lex_state = 106}, + [1105] = {.lex_state = 111, .external_lex_state = 3}, + [1106] = {.lex_state = 111, .external_lex_state = 3}, + [1107] = {.lex_state = 150, .external_lex_state = 10}, + [1108] = {.lex_state = 150, .external_lex_state = 10}, + [1109] = {.lex_state = 83}, + [1110] = {.lex_state = 150, .external_lex_state = 10}, + [1111] = {.lex_state = 83}, + [1112] = {.lex_state = 83}, + [1113] = {.lex_state = 211, .external_lex_state = 9}, + [1114] = {.lex_state = 83}, + [1115] = {.lex_state = 83}, + [1116] = {.lex_state = 211, .external_lex_state = 9}, + [1117] = {.lex_state = 83}, + [1118] = {.lex_state = 83}, + [1119] = {.lex_state = 83}, + [1120] = {.lex_state = 83}, + [1121] = {.lex_state = 83}, + [1122] = {.lex_state = 205}, + [1123] = {.lex_state = 83}, + [1124] = {.lex_state = 83}, + [1125] = {.lex_state = 83}, + [1126] = {.lex_state = 145, .external_lex_state = 11}, + [1127] = {.lex_state = 145, .external_lex_state = 11}, + [1128] = {.lex_state = 215, .external_lex_state = 9}, + [1129] = {.lex_state = 215, .external_lex_state = 9}, + [1130] = {.lex_state = 104}, + [1131] = {.lex_state = 83}, + [1132] = {.lex_state = 83}, + [1133] = {.lex_state = 215, .external_lex_state = 9}, + [1134] = {.lex_state = 83}, + [1135] = {.lex_state = 104}, + [1136] = {.lex_state = 215, .external_lex_state = 9}, + [1137] = {.lex_state = 83}, + [1138] = {.lex_state = 104}, + [1139] = {.lex_state = 215, .external_lex_state = 9}, + [1140] = {.lex_state = 215, .external_lex_state = 9}, + [1141] = {.lex_state = 193, .external_lex_state = 11}, + [1142] = {.lex_state = 193, .external_lex_state = 11}, + [1143] = {.lex_state = 83}, + [1144] = {.lex_state = 193, .external_lex_state = 11}, + [1145] = {.lex_state = 83}, + [1146] = {.lex_state = 83}, + [1147] = {.lex_state = 211, .external_lex_state = 9}, + [1148] = {.lex_state = 83}, + [1149] = {.lex_state = 83}, + [1150] = {.lex_state = 211, .external_lex_state = 9}, + [1151] = {.lex_state = 83}, + [1152] = {.lex_state = 124, .external_lex_state = 8}, + [1153] = {.lex_state = 124, .external_lex_state = 8}, + [1154] = {.lex_state = 83}, + [1155] = {.lex_state = 124, .external_lex_state = 8}, + [1156] = {.lex_state = 83}, + [1157] = {.lex_state = 83}, + [1158] = {.lex_state = 211, .external_lex_state = 9}, + [1159] = {.lex_state = 83}, + [1160] = {.lex_state = 83}, + [1161] = {.lex_state = 211, .external_lex_state = 9}, + [1162] = {.lex_state = 83}, + [1163] = {.lex_state = 83}, + [1164] = {.lex_state = 83}, + [1165] = {.lex_state = 83}, + [1166] = {.lex_state = 164, .external_lex_state = 3}, + [1167] = {.lex_state = 83}, + [1168] = {.lex_state = 164, .external_lex_state = 3}, + [1169] = {.lex_state = 195, .external_lex_state = 15}, + [1170] = {.lex_state = 83}, + [1171] = {.lex_state = 195, .external_lex_state = 15}, + [1172] = {.lex_state = 83}, + [1173] = {.lex_state = 83}, + [1174] = {.lex_state = 211, .external_lex_state = 9}, + [1175] = {.lex_state = 83}, + [1176] = {.lex_state = 83}, + [1177] = {.lex_state = 211, .external_lex_state = 9}, + [1178] = {.lex_state = 83}, + [1179] = {.lex_state = 83}, + [1180] = {.lex_state = 83}, + [1181] = {.lex_state = 198, .external_lex_state = 9}, + [1182] = {.lex_state = 198, .external_lex_state = 9}, + [1183] = {.lex_state = 83}, + [1184] = {.lex_state = 83}, + [1185] = {.lex_state = 83}, + [1186] = {.lex_state = 169, .external_lex_state = 9}, + [1187] = {.lex_state = 83}, + [1188] = {.lex_state = 169, .external_lex_state = 9}, + [1189] = {.lex_state = 83}, + [1190] = {.lex_state = 83}, + [1191] = {.lex_state = 136, .external_lex_state = 14}, + [1192] = {.lex_state = 136, .external_lex_state = 14}, + [1193] = {.lex_state = 83}, + [1194] = {.lex_state = 83}, + [1195] = {.lex_state = 83}, + [1196] = {.lex_state = 201, .external_lex_state = 8}, + [1197] = {.lex_state = 83}, + [1198] = {.lex_state = 201, .external_lex_state = 8}, + [1199] = {.lex_state = 205}, + [1200] = {.lex_state = 213, .external_lex_state = 9}, + [1201] = {.lex_state = 198}, + [1202] = {.lex_state = 217, .external_lex_state = 2}, + [1203] = {.lex_state = 133, .external_lex_state = 8}, + [1204] = {.lex_state = 133, .external_lex_state = 8}, + [1205] = {.lex_state = 189, .external_lex_state = 9}, + [1206] = {.lex_state = 189, .external_lex_state = 9}, + [1207] = {.lex_state = 141, .external_lex_state = 9}, + [1208] = {.lex_state = 141, .external_lex_state = 9}, + [1209] = {.lex_state = 104, .external_lex_state = 10}, + [1210] = {.lex_state = 104, .external_lex_state = 10}, + [1211] = {.lex_state = 106}, + [1212] = {.lex_state = 106}, + [1213] = {.lex_state = 83}, + [1214] = {.lex_state = 83}, + [1215] = {.lex_state = 83}, + [1216] = {.lex_state = 150, .external_lex_state = 10}, + [1217] = {.lex_state = 83}, + [1218] = {.lex_state = 150, .external_lex_state = 10}, + [1219] = {.lex_state = 83}, + [1220] = {.lex_state = 83}, + [1221] = {.lex_state = 145, .external_lex_state = 11}, + [1222] = {.lex_state = 145, .external_lex_state = 11}, + [1223] = {.lex_state = 215, .external_lex_state = 9}, + [1224] = {.lex_state = 215, .external_lex_state = 9}, + [1225] = {.lex_state = 83}, + [1226] = {.lex_state = 215, .external_lex_state = 9}, + [1227] = {.lex_state = 83}, + [1228] = {.lex_state = 83}, + [1229] = {.lex_state = 211, .external_lex_state = 9}, + [1230] = {.lex_state = 83}, + [1231] = {.lex_state = 83}, + [1232] = {.lex_state = 211, .external_lex_state = 9}, + [1233] = {.lex_state = 83}, + [1234] = {.lex_state = 83}, + [1235] = {.lex_state = 83}, + [1236] = {.lex_state = 83}, + [1237] = {.lex_state = 193, .external_lex_state = 11}, + [1238] = {.lex_state = 83}, + [1239] = {.lex_state = 193, .external_lex_state = 11}, + [1240] = {.lex_state = 83}, + [1241] = {.lex_state = 83}, + [1242] = {.lex_state = 83}, + [1243] = {.lex_state = 124, .external_lex_state = 8}, + [1244] = {.lex_state = 83}, + [1245] = {.lex_state = 124, .external_lex_state = 8}, + [1246] = {.lex_state = 83}, + [1247] = {.lex_state = 83}, + [1248] = {.lex_state = 164, .external_lex_state = 3}, + [1249] = {.lex_state = 164, .external_lex_state = 3}, + [1250] = {.lex_state = 83}, + [1251] = {.lex_state = 83}, + [1252] = {.lex_state = 83}, + [1253] = {.lex_state = 195, .external_lex_state = 15}, + [1254] = {.lex_state = 83}, + [1255] = {.lex_state = 195, .external_lex_state = 15}, + [1256] = {.lex_state = 198, .external_lex_state = 9}, + [1257] = {.lex_state = 198, .external_lex_state = 9}, + [1258] = {.lex_state = 83}, + [1259] = {.lex_state = 83}, + [1260] = {.lex_state = 169, .external_lex_state = 9}, + [1261] = {.lex_state = 169, .external_lex_state = 9}, + [1262] = {.lex_state = 136, .external_lex_state = 14}, + [1263] = {.lex_state = 136, .external_lex_state = 14}, + [1264] = {.lex_state = 83}, + [1265] = {.lex_state = 83}, + [1266] = {.lex_state = 201, .external_lex_state = 8}, + [1267] = {.lex_state = 201, .external_lex_state = 8}, + [1268] = {.lex_state = 205}, + [1269] = {.lex_state = 83}, + [1270] = {.lex_state = 83}, + [1271] = {.lex_state = 150, .external_lex_state = 10}, + [1272] = {.lex_state = 150, .external_lex_state = 10}, + [1273] = {.lex_state = 83}, + [1274] = {.lex_state = 83}, + [1275] = {.lex_state = 83}, + [1276] = {.lex_state = 215, .external_lex_state = 9}, + [1277] = {.lex_state = 83}, + [1278] = {.lex_state = 215, .external_lex_state = 9}, + [1279] = {.lex_state = 83}, + [1280] = {.lex_state = 83}, + [1281] = {.lex_state = 193, .external_lex_state = 11}, + [1282] = {.lex_state = 193, .external_lex_state = 11}, + [1283] = {.lex_state = 83}, + [1284] = {.lex_state = 83}, + [1285] = {.lex_state = 124, .external_lex_state = 8}, + [1286] = {.lex_state = 124, .external_lex_state = 8}, + [1287] = {.lex_state = 164, .external_lex_state = 3}, + [1288] = {.lex_state = 164, .external_lex_state = 3}, + [1289] = {.lex_state = 83}, + [1290] = {.lex_state = 83}, + [1291] = {.lex_state = 195, .external_lex_state = 15}, + [1292] = {.lex_state = 195, .external_lex_state = 15}, + [1293] = {.lex_state = 169, .external_lex_state = 9}, + [1294] = {.lex_state = 169, .external_lex_state = 9}, + [1295] = {.lex_state = 201, .external_lex_state = 8}, + [1296] = {.lex_state = 201, .external_lex_state = 8}, + [1297] = {.lex_state = 150, .external_lex_state = 10}, + [1298] = {.lex_state = 150, .external_lex_state = 10}, + [1299] = {.lex_state = 83}, + [1300] = {.lex_state = 83}, + [1301] = {.lex_state = 215, .external_lex_state = 9}, + [1302] = {.lex_state = 215, .external_lex_state = 9}, + [1303] = {.lex_state = 193, .external_lex_state = 11}, + [1304] = {.lex_state = 193, .external_lex_state = 11}, + [1305] = {.lex_state = 124, .external_lex_state = 8}, + [1306] = {.lex_state = 124, .external_lex_state = 8}, + [1307] = {.lex_state = 195, .external_lex_state = 15}, + [1308] = {.lex_state = 195, .external_lex_state = 15}, + [1309] = {.lex_state = 215, .external_lex_state = 9}, + [1310] = {.lex_state = 215, .external_lex_state = 9}, }; enum { @@ -5089,6 +5169,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_LBRACK] = ACTIONS(1), [anon_sym_RBRACK_RBRACK] = ACTIONS(1), [anon_sym_EQ] = ACTIONS(1), + [anon_sym_PLUS_EQ] = ACTIONS(1), [anon_sym_LT] = ACTIONS(3), [anon_sym_GT] = ACTIONS(3), [anon_sym_GT_GT] = ACTIONS(1), @@ -5191,6 +5272,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [3] = { [anon_sym_LBRACK] = ACTIONS(58), [anon_sym_EQ] = ACTIONS(60), + [anon_sym_PLUS_EQ] = ACTIONS(60), [sym_comment] = ACTIONS(52), }, [4] = { @@ -5808,6 +5890,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [26] = { [anon_sym_EQ] = ACTIONS(60), + [anon_sym_PLUS_EQ] = ACTIONS(60), [sym_comment] = ACTIONS(52), }, [27] = { @@ -7458,6 +7541,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [93] = { [anon_sym_LBRACK] = ACTIONS(58), [anon_sym_EQ] = ACTIONS(450), + [anon_sym_PLUS_EQ] = ACTIONS(450), [sym_comment] = ACTIONS(52), }, [94] = { @@ -8003,6 +8087,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [113] = { [anon_sym_EQ] = ACTIONS(450), + [anon_sym_PLUS_EQ] = ACTIONS(450), [sym_comment] = ACTIONS(52), }, [114] = { @@ -8626,6 +8711,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [137] = { [anon_sym_LBRACK] = ACTIONS(58), [anon_sym_EQ] = ACTIONS(574), + [anon_sym_PLUS_EQ] = ACTIONS(574), [sym_comment] = ACTIONS(52), }, [138] = { @@ -8692,6 +8778,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [140] = { [anon_sym_EQ] = ACTIONS(574), + [anon_sym_PLUS_EQ] = ACTIONS(574), [sym_comment] = ACTIONS(52), }, [141] = { @@ -8970,17 +9057,31 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(602), }, [152] = { - [aux_sym_array_repeat1] = STATE(359), + [sym_concatenation] = STATE(365), + [sym_string] = STATE(359), + [sym_simple_expansion] = STATE(359), + [sym_expansion] = STATE(359), + [sym_command_substitution] = STATE(359), + [sym_process_substitution] = STATE(359), + [aux_sym_for_statement_repeat1] = STATE(366), [anon_sym_RPAREN] = ACTIONS(604), - [sym_word] = ACTIONS(606), + [anon_sym_DQUOTE] = ACTIONS(606), + [sym_raw_string] = ACTIONS(608), + [anon_sym_DOLLAR] = ACTIONS(610), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(612), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(614), + [anon_sym_BQUOTE] = ACTIONS(616), + [anon_sym_LT_LPAREN] = ACTIONS(618), + [anon_sym_GT_LPAREN] = ACTIONS(618), + [sym_word] = ACTIONS(620), [sym_comment] = ACTIONS(52), }, [153] = { [sym_simple_expansion] = STATE(78), [sym_expansion] = STATE(78), [sym_command_substitution] = STATE(78), - [aux_sym_string_repeat1] = STATE(361), - [anon_sym_DQUOTE] = ACTIONS(608), + [aux_sym_string_repeat1] = STATE(368), + [anon_sym_DQUOTE] = ACTIONS(622), [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(132), [anon_sym_DOLLAR] = ACTIONS(134), [anon_sym_DOLLAR_LBRACE] = ACTIONS(136), @@ -8989,9 +9090,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(142), }, [154] = { - [aux_sym_concatenation_repeat1] = STATE(363), + [aux_sym_concatenation_repeat1] = STATE(370), [sym_file_descriptor] = ACTIONS(600), - [sym__concat] = ACTIONS(610), + [sym__concat] = ACTIONS(624), [sym_variable_name] = ACTIONS(600), [anon_sym_PIPE] = ACTIONS(602), [anon_sym_RPAREN] = ACTIONS(602), @@ -9021,26 +9122,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(602), }, [155] = { - [sym_special_variable_name] = STATE(366), - [anon_sym_DOLLAR] = ACTIONS(612), - [anon_sym_POUND] = ACTIONS(612), - [anon_sym_AT] = ACTIONS(612), + [sym_special_variable_name] = STATE(373), + [anon_sym_DOLLAR] = ACTIONS(626), + [anon_sym_POUND] = ACTIONS(626), + [anon_sym_AT] = ACTIONS(626), [sym_comment] = ACTIONS(142), - [sym_simple_variable_name] = ACTIONS(614), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_QMARK] = ACTIONS(612), - [anon_sym_DASH] = ACTIONS(612), - [anon_sym_BANG] = ACTIONS(612), - [anon_sym_0] = ACTIONS(616), - [anon_sym__] = ACTIONS(616), + [sym_simple_variable_name] = ACTIONS(628), + [anon_sym_STAR] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(626), + [anon_sym_DASH] = ACTIONS(626), + [anon_sym_BANG] = ACTIONS(626), + [anon_sym_0] = ACTIONS(630), + [anon_sym__] = ACTIONS(630), }, [156] = { - [sym_special_variable_name] = STATE(369), + [sym_special_variable_name] = STATE(376), [anon_sym_DOLLAR] = ACTIONS(156), - [anon_sym_POUND] = ACTIONS(618), + [anon_sym_POUND] = ACTIONS(632), [anon_sym_AT] = ACTIONS(156), [sym_comment] = ACTIONS(142), - [sym_simple_variable_name] = ACTIONS(620), + [sym_simple_variable_name] = ACTIONS(634), [anon_sym_STAR] = ACTIONS(156), [anon_sym_QMARK] = ACTIONS(156), [anon_sym_DASH] = ACTIONS(156), @@ -9049,18 +9150,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(162), }, [157] = { - [sym_for_statement] = STATE(370), - [sym_while_statement] = STATE(370), - [sym_if_statement] = STATE(370), - [sym_case_statement] = STATE(370), - [sym_function_definition] = STATE(370), - [sym_subshell] = STATE(370), - [sym_pipeline] = STATE(370), - [sym_list] = STATE(370), - [sym_bracket_command] = STATE(370), - [sym_command] = STATE(370), + [sym_for_statement] = STATE(377), + [sym_while_statement] = STATE(377), + [sym_if_statement] = STATE(377), + [sym_case_statement] = STATE(377), + [sym_function_definition] = STATE(377), + [sym_subshell] = STATE(377), + [sym_pipeline] = STATE(377), + [sym_list] = STATE(377), + [sym_bracket_command] = STATE(377), + [sym_command] = STATE(377), [sym_command_name] = STATE(111), - [sym_environment_variable_assignment] = STATE(371), + [sym_environment_variable_assignment] = STATE(378), [sym_subscript] = STATE(113), [sym_file_redirect] = STATE(27), [sym_concatenation] = STATE(114), @@ -9099,18 +9200,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(52), }, [158] = { - [sym_for_statement] = STATE(372), - [sym_while_statement] = STATE(372), - [sym_if_statement] = STATE(372), - [sym_case_statement] = STATE(372), - [sym_function_definition] = STATE(372), - [sym_subshell] = STATE(372), - [sym_pipeline] = STATE(372), - [sym_list] = STATE(372), - [sym_bracket_command] = STATE(372), - [sym_command] = STATE(372), + [sym_for_statement] = STATE(379), + [sym_while_statement] = STATE(379), + [sym_if_statement] = STATE(379), + [sym_case_statement] = STATE(379), + [sym_function_definition] = STATE(379), + [sym_subshell] = STATE(379), + [sym_pipeline] = STATE(379), + [sym_list] = STATE(379), + [sym_bracket_command] = STATE(379), + [sym_command] = STATE(379), [sym_command_name] = STATE(117), - [sym_environment_variable_assignment] = STATE(373), + [sym_environment_variable_assignment] = STATE(380), [sym_subscript] = STATE(113), [sym_file_redirect] = STATE(27), [sym_concatenation] = STATE(114), @@ -9149,18 +9250,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(52), }, [159] = { - [sym_for_statement] = STATE(374), - [sym_while_statement] = STATE(374), - [sym_if_statement] = STATE(374), - [sym_case_statement] = STATE(374), - [sym_function_definition] = STATE(374), - [sym_subshell] = STATE(374), - [sym_pipeline] = STATE(374), - [sym_list] = STATE(374), - [sym_bracket_command] = STATE(374), - [sym_command] = STATE(374), + [sym_for_statement] = STATE(381), + [sym_while_statement] = STATE(381), + [sym_if_statement] = STATE(381), + [sym_case_statement] = STATE(381), + [sym_function_definition] = STATE(381), + [sym_subshell] = STATE(381), + [sym_pipeline] = STATE(381), + [sym_list] = STATE(381), + [sym_bracket_command] = STATE(381), + [sym_command] = STATE(381), [sym_command_name] = STATE(111), - [sym_environment_variable_assignment] = STATE(375), + [sym_environment_variable_assignment] = STATE(382), [sym_subscript] = STATE(113), [sym_file_redirect] = STATE(27), [sym_concatenation] = STATE(114), @@ -9199,38 +9300,38 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(52), }, [160] = { - [sym_concatenation] = STATE(383), - [sym_string] = STATE(377), - [sym_simple_expansion] = STATE(377), - [sym_expansion] = STATE(377), - [sym_command_substitution] = STATE(377), - [sym_process_substitution] = STATE(377), - [aux_sym_for_statement_repeat1] = STATE(384), - [anon_sym_DQUOTE] = ACTIONS(622), - [sym_raw_string] = ACTIONS(624), - [anon_sym_DOLLAR] = ACTIONS(626), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(628), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(630), - [anon_sym_BQUOTE] = ACTIONS(632), - [anon_sym_LT_LPAREN] = ACTIONS(634), - [anon_sym_GT_LPAREN] = ACTIONS(634), - [sym_word] = ACTIONS(636), + [sym_concatenation] = STATE(390), + [sym_string] = STATE(384), + [sym_simple_expansion] = STATE(384), + [sym_expansion] = STATE(384), + [sym_command_substitution] = STATE(384), + [sym_process_substitution] = STATE(384), + [aux_sym_for_statement_repeat1] = STATE(391), + [anon_sym_DQUOTE] = ACTIONS(636), + [sym_raw_string] = ACTIONS(638), + [anon_sym_DOLLAR] = ACTIONS(640), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(642), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(644), + [anon_sym_BQUOTE] = ACTIONS(646), + [anon_sym_LT_LPAREN] = ACTIONS(648), + [anon_sym_GT_LPAREN] = ACTIONS(648), + [sym_word] = ACTIONS(650), [sym_comment] = ACTIONS(52), }, [161] = { - [sym__terminated_statement] = STATE(386), - [sym_for_statement] = STATE(387), - [sym_while_statement] = STATE(387), - [sym_if_statement] = STATE(387), - [sym_case_statement] = STATE(387), - [sym_function_definition] = STATE(387), - [sym_subshell] = STATE(387), - [sym_pipeline] = STATE(387), - [sym_list] = STATE(387), - [sym_bracket_command] = STATE(387), - [sym_command] = STATE(387), + [sym__terminated_statement] = STATE(393), + [sym_for_statement] = STATE(394), + [sym_while_statement] = STATE(394), + [sym_if_statement] = STATE(394), + [sym_case_statement] = STATE(394), + [sym_function_definition] = STATE(394), + [sym_subshell] = STATE(394), + [sym_pipeline] = STATE(394), + [sym_list] = STATE(394), + [sym_bracket_command] = STATE(394), + [sym_command] = STATE(394), [sym_command_name] = STATE(24), - [sym_environment_variable_assignment] = STATE(388), + [sym_environment_variable_assignment] = STATE(395), [sym_subscript] = STATE(26), [sym_file_redirect] = STATE(27), [sym_concatenation] = STATE(28), @@ -9239,13 +9340,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(14), [sym_command_substitution] = STATE(14), [sym_process_substitution] = STATE(14), - [aux_sym_program_repeat1] = STATE(389), + [aux_sym_program_repeat1] = STATE(396), [aux_sym_command_repeat1] = STATE(30), [sym_file_descriptor] = ACTIONS(10), [sym_variable_name] = ACTIONS(12), [anon_sym_for] = ACTIONS(16), [anon_sym_while] = ACTIONS(18), - [anon_sym_done] = ACTIONS(638), + [anon_sym_done] = ACTIONS(652), [anon_sym_if] = ACTIONS(20), [anon_sym_case] = ACTIONS(22), [anon_sym_function] = ACTIONS(24), @@ -9271,16 +9372,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(52), }, [162] = { - [anon_sym_PIPE] = ACTIONS(640), - [anon_sym_RPAREN] = ACTIONS(640), - [anon_sym_SEMI_SEMI] = ACTIONS(640), - [anon_sym_PIPE_AMP] = ACTIONS(640), - [anon_sym_AMP_AMP] = ACTIONS(640), - [anon_sym_PIPE_PIPE] = ACTIONS(640), + [anon_sym_PIPE] = ACTIONS(654), + [anon_sym_RPAREN] = ACTIONS(654), + [anon_sym_SEMI_SEMI] = ACTIONS(654), + [anon_sym_PIPE_AMP] = ACTIONS(654), + [anon_sym_AMP_AMP] = ACTIONS(654), + [anon_sym_PIPE_PIPE] = ACTIONS(654), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(640), - [anon_sym_LF] = ACTIONS(640), - [anon_sym_AMP] = ACTIONS(640), + [anon_sym_SEMI] = ACTIONS(654), + [anon_sym_LF] = ACTIONS(654), + [anon_sym_AMP] = ACTIONS(654), }, [163] = { [anon_sym_do] = ACTIONS(530), @@ -9288,21 +9389,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(52), }, [164] = { - [sym__terminated_statement] = STATE(393), - [sym_for_statement] = STATE(394), - [sym_while_statement] = STATE(394), - [sym_if_statement] = STATE(394), - [sym_elif_clause] = STATE(395), - [sym_else_clause] = STATE(396), - [sym_case_statement] = STATE(394), - [sym_function_definition] = STATE(394), - [sym_subshell] = STATE(394), - [sym_pipeline] = STATE(394), - [sym_list] = STATE(394), - [sym_bracket_command] = STATE(394), - [sym_command] = STATE(394), + [sym__terminated_statement] = STATE(400), + [sym_for_statement] = STATE(401), + [sym_while_statement] = STATE(401), + [sym_if_statement] = STATE(401), + [sym_elif_clause] = STATE(402), + [sym_else_clause] = STATE(403), + [sym_case_statement] = STATE(401), + [sym_function_definition] = STATE(401), + [sym_subshell] = STATE(401), + [sym_pipeline] = STATE(401), + [sym_list] = STATE(401), + [sym_bracket_command] = STATE(401), + [sym_command] = STATE(401), [sym_command_name] = STATE(24), - [sym_environment_variable_assignment] = STATE(397), + [sym_environment_variable_assignment] = STATE(404), [sym_subscript] = STATE(26), [sym_file_redirect] = STATE(27), [sym_concatenation] = STATE(28), @@ -9311,17 +9412,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(14), [sym_command_substitution] = STATE(14), [sym_process_substitution] = STATE(14), - [aux_sym_program_repeat1] = STATE(398), - [aux_sym_if_statement_repeat1] = STATE(399), + [aux_sym_program_repeat1] = STATE(405), + [aux_sym_if_statement_repeat1] = STATE(406), [aux_sym_command_repeat1] = STATE(30), [sym_file_descriptor] = ACTIONS(10), [sym_variable_name] = ACTIONS(12), [anon_sym_for] = ACTIONS(16), [anon_sym_while] = ACTIONS(18), [anon_sym_if] = ACTIONS(20), - [anon_sym_fi] = ACTIONS(642), - [anon_sym_elif] = ACTIONS(644), - [anon_sym_else] = ACTIONS(646), + [anon_sym_fi] = ACTIONS(656), + [anon_sym_elif] = ACTIONS(658), + [anon_sym_else] = ACTIONS(660), [anon_sym_case] = ACTIONS(22), [anon_sym_function] = ACTIONS(24), [anon_sym_LPAREN] = ACTIONS(26), @@ -9358,7 +9459,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_expansion] = STATE(253), [sym_expansion] = STATE(253), [sym_command_substitution] = STATE(253), - [anon_sym_DQUOTE] = ACTIONS(648), + [anon_sym_DQUOTE] = ACTIONS(662), [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(406), [anon_sym_DOLLAR] = ACTIONS(134), [anon_sym_DOLLAR_LBRACE] = ACTIONS(136), @@ -9367,35 +9468,35 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(142), }, [167] = { - [sym_string] = STATE(401), - [sym_simple_expansion] = STATE(401), - [sym_expansion] = STATE(401), - [sym_command_substitution] = STATE(401), - [sym_process_substitution] = STATE(401), + [sym_string] = STATE(408), + [sym_simple_expansion] = STATE(408), + [sym_expansion] = STATE(408), + [sym_command_substitution] = STATE(408), + [sym_process_substitution] = STATE(408), [anon_sym_DQUOTE] = ACTIONS(64), - [sym_raw_string] = ACTIONS(650), + [sym_raw_string] = ACTIONS(664), [anon_sym_DOLLAR] = ACTIONS(68), [anon_sym_DOLLAR_LBRACE] = ACTIONS(70), [anon_sym_DOLLAR_LPAREN] = ACTIONS(72), [anon_sym_BQUOTE] = ACTIONS(74), [anon_sym_LT_LPAREN] = ACTIONS(76), [anon_sym_GT_LPAREN] = ACTIONS(76), - [sym_word] = ACTIONS(652), + [sym_word] = ACTIONS(666), [sym_comment] = ACTIONS(52), }, [168] = { - [anon_sym_SEMI_SEMI] = ACTIONS(654), + [anon_sym_SEMI_SEMI] = ACTIONS(668), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(654), - [anon_sym_LF] = ACTIONS(654), - [anon_sym_AMP] = ACTIONS(654), + [anon_sym_SEMI] = ACTIONS(668), + [anon_sym_LF] = ACTIONS(668), + [anon_sym_AMP] = ACTIONS(668), }, [169] = { - [anon_sym_in] = ACTIONS(656), + [anon_sym_in] = ACTIONS(670), [sym_comment] = ACTIONS(52), }, [170] = { - [sym__concat] = ACTIONS(658), + [sym__concat] = ACTIONS(672), [anon_sym_in] = ACTIONS(416), [anon_sym_SEMI_SEMI] = ACTIONS(416), [sym_comment] = ACTIONS(142), @@ -9431,7 +9532,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(428), }, [174] = { - [sym_special_variable_name] = STATE(406), + [sym_special_variable_name] = STATE(413), [anon_sym_RBRACE] = ACTIONS(418), [anon_sym_LBRACK] = ACTIONS(418), [anon_sym_EQ] = ACTIONS(418), @@ -9444,7 +9545,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(418), [anon_sym_SLASH] = ACTIONS(418), [sym_comment] = ACTIONS(142), - [sym_simple_variable_name] = ACTIONS(660), + [sym_simple_variable_name] = ACTIONS(674), [anon_sym_STAR] = ACTIONS(156), [anon_sym_QMARK] = ACTIONS(156), [anon_sym_DASH] = ACTIONS(156), @@ -9453,30 +9554,30 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(162), }, [175] = { - [anon_sym_RBRACE] = ACTIONS(662), - [anon_sym_LBRACK] = ACTIONS(664), - [anon_sym_EQ] = ACTIONS(666), - [anon_sym_COLON] = ACTIONS(668), - [anon_sym_COLON_QMARK] = ACTIONS(666), - [anon_sym_COLON_DASH] = ACTIONS(666), - [anon_sym_PERCENT] = ACTIONS(666), - [anon_sym_SLASH] = ACTIONS(666), + [anon_sym_RBRACE] = ACTIONS(676), + [anon_sym_LBRACK] = ACTIONS(678), + [anon_sym_EQ] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(682), + [anon_sym_COLON_QMARK] = ACTIONS(680), + [anon_sym_COLON_DASH] = ACTIONS(680), + [anon_sym_PERCENT] = ACTIONS(680), + [anon_sym_SLASH] = ACTIONS(680), [sym_comment] = ACTIONS(52), }, [176] = { - [anon_sym_RBRACE] = ACTIONS(670), - [anon_sym_LBRACK] = ACTIONS(672), - [anon_sym_EQ] = ACTIONS(674), - [anon_sym_COLON] = ACTIONS(676), - [anon_sym_COLON_QMARK] = ACTIONS(674), - [anon_sym_COLON_DASH] = ACTIONS(674), - [anon_sym_PERCENT] = ACTIONS(674), - [anon_sym_SLASH] = ACTIONS(674), + [anon_sym_RBRACE] = ACTIONS(684), + [anon_sym_LBRACK] = ACTIONS(686), + [anon_sym_EQ] = ACTIONS(688), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_COLON_QMARK] = ACTIONS(688), + [anon_sym_COLON_DASH] = ACTIONS(688), + [anon_sym_PERCENT] = ACTIONS(688), + [anon_sym_SLASH] = ACTIONS(688), [sym_comment] = ACTIONS(52), }, [177] = { [anon_sym_PIPE] = ACTIONS(480), - [anon_sym_RPAREN] = ACTIONS(678), + [anon_sym_RPAREN] = ACTIONS(692), [anon_sym_PIPE_AMP] = ACTIONS(484), [anon_sym_AMP_AMP] = ACTIONS(486), [anon_sym_PIPE_PIPE] = ACTIONS(486), @@ -9486,7 +9587,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(238), [sym_variable_name] = ACTIONS(238), [anon_sym_PIPE] = ACTIONS(480), - [anon_sym_RPAREN] = ACTIONS(678), + [anon_sym_RPAREN] = ACTIONS(692), [anon_sym_PIPE_AMP] = ACTIONS(484), [anon_sym_AMP_AMP] = ACTIONS(486), [anon_sym_PIPE_PIPE] = ACTIONS(506), @@ -9513,7 +9614,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_AMP] = ACTIONS(512), [anon_sym_AMP_AMP] = ACTIONS(514), [anon_sym_PIPE_PIPE] = ACTIONS(514), - [anon_sym_BQUOTE] = ACTIONS(678), + [anon_sym_BQUOTE] = ACTIONS(692), [sym_comment] = ACTIONS(52), }, [180] = { @@ -9535,7 +9636,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(242), [anon_sym_DOLLAR_LBRACE] = ACTIONS(238), [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(678), + [anon_sym_BQUOTE] = ACTIONS(692), [anon_sym_LT_LPAREN] = ACTIONS(238), [anon_sym_GT_LPAREN] = ACTIONS(238), [sym_word] = ACTIONS(240), @@ -9543,7 +9644,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [181] = { [anon_sym_PIPE] = ACTIONS(480), - [anon_sym_RPAREN] = ACTIONS(680), + [anon_sym_RPAREN] = ACTIONS(694), [anon_sym_PIPE_AMP] = ACTIONS(484), [anon_sym_AMP_AMP] = ACTIONS(486), [anon_sym_PIPE_PIPE] = ACTIONS(486), @@ -9553,7 +9654,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(238), [sym_variable_name] = ACTIONS(238), [anon_sym_PIPE] = ACTIONS(480), - [anon_sym_RPAREN] = ACTIONS(680), + [anon_sym_RPAREN] = ACTIONS(694), [anon_sym_PIPE_AMP] = ACTIONS(484), [anon_sym_AMP_AMP] = ACTIONS(486), [anon_sym_PIPE_PIPE] = ACTIONS(506), @@ -9576,18 +9677,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(52), }, [183] = { - [anon_sym_RPAREN] = ACTIONS(682), + [anon_sym_RPAREN] = ACTIONS(696), [sym_comment] = ACTIONS(52), }, [184] = { - [sym_file_redirect] = STATE(416), + [sym_file_redirect] = STATE(423), [sym_file_descriptor] = ACTIONS(524), - [anon_sym_PIPE] = ACTIONS(684), - [anon_sym_RPAREN] = ACTIONS(684), - [anon_sym_SEMI_SEMI] = ACTIONS(684), - [anon_sym_PIPE_AMP] = ACTIONS(684), - [anon_sym_AMP_AMP] = ACTIONS(684), - [anon_sym_PIPE_PIPE] = ACTIONS(684), + [anon_sym_PIPE] = ACTIONS(698), + [anon_sym_RPAREN] = ACTIONS(698), + [anon_sym_SEMI_SEMI] = ACTIONS(698), + [anon_sym_PIPE_AMP] = ACTIONS(698), + [anon_sym_AMP_AMP] = ACTIONS(698), + [anon_sym_PIPE_PIPE] = ACTIONS(698), [anon_sym_LT] = ACTIONS(528), [anon_sym_GT] = ACTIONS(528), [anon_sym_GT_GT] = ACTIONS(528), @@ -9596,21 +9697,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(528), [anon_sym_GT_AMP] = ACTIONS(528), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(684), - [anon_sym_LF] = ACTIONS(684), - [anon_sym_AMP] = ACTIONS(684), + [anon_sym_SEMI] = ACTIONS(698), + [anon_sym_LF] = ACTIONS(698), + [anon_sym_AMP] = ACTIONS(698), }, [185] = { - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_RPAREN] = ACTIONS(686), - [anon_sym_SEMI_SEMI] = ACTIONS(686), - [anon_sym_PIPE_AMP] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(686), - [anon_sym_PIPE_PIPE] = ACTIONS(686), + [anon_sym_PIPE] = ACTIONS(700), + [anon_sym_RPAREN] = ACTIONS(700), + [anon_sym_SEMI_SEMI] = ACTIONS(700), + [anon_sym_PIPE_AMP] = ACTIONS(700), + [anon_sym_AMP_AMP] = ACTIONS(700), + [anon_sym_PIPE_PIPE] = ACTIONS(700), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(686), - [anon_sym_LF] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), + [anon_sym_SEMI] = ACTIONS(700), + [anon_sym_LF] = ACTIONS(700), + [anon_sym_AMP] = ACTIONS(700), }, [186] = { [sym_file_descriptor] = ACTIONS(530), @@ -9619,7 +9720,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(532), [anon_sym_if] = ACTIONS(532), [anon_sym_case] = ACTIONS(532), - [anon_sym_RPAREN] = ACTIONS(688), + [anon_sym_RPAREN] = ACTIONS(702), [anon_sym_function] = ACTIONS(532), [anon_sym_LPAREN] = ACTIONS(530), [anon_sym_LBRACK] = ACTIONS(532), @@ -9644,22 +9745,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [187] = { [anon_sym_PIPE] = ACTIONS(210), - [anon_sym_RPAREN] = ACTIONS(690), - [anon_sym_SEMI_SEMI] = ACTIONS(692), + [anon_sym_RPAREN] = ACTIONS(704), + [anon_sym_SEMI_SEMI] = ACTIONS(706), [anon_sym_PIPE_AMP] = ACTIONS(210), [anon_sym_AMP_AMP] = ACTIONS(214), [anon_sym_PIPE_PIPE] = ACTIONS(214), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(692), - [anon_sym_LF] = ACTIONS(692), - [anon_sym_AMP] = ACTIONS(692), + [anon_sym_SEMI] = ACTIONS(706), + [anon_sym_LF] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), }, [188] = { [sym_file_descriptor] = ACTIONS(238), [sym_variable_name] = ACTIONS(238), [anon_sym_PIPE] = ACTIONS(210), - [anon_sym_RPAREN] = ACTIONS(690), - [anon_sym_SEMI_SEMI] = ACTIONS(692), + [anon_sym_RPAREN] = ACTIONS(704), + [anon_sym_SEMI_SEMI] = ACTIONS(706), [anon_sym_PIPE_AMP] = ACTIONS(210), [anon_sym_AMP_AMP] = ACTIONS(214), [anon_sym_PIPE_PIPE] = ACTIONS(214), @@ -9680,17 +9781,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_LPAREN] = ACTIONS(240), [sym_word] = ACTIONS(240), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(692), - [anon_sym_LF] = ACTIONS(692), - [anon_sym_AMP] = ACTIONS(692), + [anon_sym_SEMI] = ACTIONS(706), + [anon_sym_LF] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), }, [189] = { [sym__concat] = ACTIONS(386), [anon_sym_RBRACE] = ACTIONS(386), - [anon_sym_RBRACK] = ACTIONS(694), + [anon_sym_RBRACK] = ACTIONS(708), [anon_sym_DQUOTE] = ACTIONS(386), [sym_raw_string] = ACTIONS(386), - [anon_sym_DOLLAR] = ACTIONS(694), + [anon_sym_DOLLAR] = ACTIONS(708), [anon_sym_DOLLAR_LBRACE] = ACTIONS(386), [anon_sym_DOLLAR_LPAREN] = ACTIONS(386), [anon_sym_BQUOTE] = ACTIONS(386), @@ -9703,7 +9804,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_expansion] = STATE(253), [sym_expansion] = STATE(253), [sym_command_substitution] = STATE(253), - [anon_sym_DQUOTE] = ACTIONS(696), + [anon_sym_DQUOTE] = ACTIONS(710), [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(406), [anon_sym_DOLLAR] = ACTIONS(134), [anon_sym_DOLLAR_LBRACE] = ACTIONS(136), @@ -9712,29 +9813,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(142), }, [191] = { - [sym_string] = STATE(420), - [sym_simple_expansion] = STATE(420), - [sym_expansion] = STATE(420), - [sym_command_substitution] = STATE(420), - [sym_process_substitution] = STATE(420), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), [anon_sym_DQUOTE] = ACTIONS(82), - [sym_raw_string] = ACTIONS(698), + [sym_raw_string] = ACTIONS(712), [anon_sym_DOLLAR] = ACTIONS(86), [anon_sym_DOLLAR_LBRACE] = ACTIONS(88), [anon_sym_DOLLAR_LPAREN] = ACTIONS(90), [anon_sym_BQUOTE] = ACTIONS(92), [anon_sym_LT_LPAREN] = ACTIONS(94), [anon_sym_GT_LPAREN] = ACTIONS(94), - [sym_word] = ACTIONS(700), + [sym_word] = ACTIONS(714), [sym_comment] = ACTIONS(52), }, [192] = { - [sym__concat] = ACTIONS(702), + [sym__concat] = ACTIONS(716), [anon_sym_RBRACE] = ACTIONS(412), - [anon_sym_RBRACK] = ACTIONS(704), + [anon_sym_RBRACK] = ACTIONS(718), [anon_sym_DQUOTE] = ACTIONS(412), [sym_raw_string] = ACTIONS(412), - [anon_sym_DOLLAR] = ACTIONS(704), + [anon_sym_DOLLAR] = ACTIONS(718), [anon_sym_DOLLAR_LBRACE] = ACTIONS(412), [anon_sym_DOLLAR_LPAREN] = ACTIONS(412), [anon_sym_BQUOTE] = ACTIONS(412), @@ -9761,10 +9862,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [194] = { [sym__concat] = ACTIONS(422), [anon_sym_RBRACE] = ACTIONS(422), - [anon_sym_RBRACK] = ACTIONS(706), + [anon_sym_RBRACK] = ACTIONS(720), [anon_sym_DQUOTE] = ACTIONS(422), [sym_raw_string] = ACTIONS(422), - [anon_sym_DOLLAR] = ACTIONS(706), + [anon_sym_DOLLAR] = ACTIONS(720), [anon_sym_DOLLAR_LBRACE] = ACTIONS(422), [anon_sym_DOLLAR_LPAREN] = ACTIONS(422), [anon_sym_BQUOTE] = ACTIONS(422), @@ -9776,10 +9877,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [195] = { [sym__concat] = ACTIONS(426), [anon_sym_RBRACE] = ACTIONS(426), - [anon_sym_RBRACK] = ACTIONS(708), + [anon_sym_RBRACK] = ACTIONS(722), [anon_sym_DQUOTE] = ACTIONS(426), [sym_raw_string] = ACTIONS(426), - [anon_sym_DOLLAR] = ACTIONS(708), + [anon_sym_DOLLAR] = ACTIONS(722), [anon_sym_DOLLAR_LBRACE] = ACTIONS(426), [anon_sym_DOLLAR_LPAREN] = ACTIONS(426), [anon_sym_BQUOTE] = ACTIONS(426), @@ -9789,7 +9890,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(52), }, [196] = { - [sym_special_variable_name] = STATE(423), + [sym_special_variable_name] = STATE(430), [anon_sym_RBRACE] = ACTIONS(418), [anon_sym_LBRACK] = ACTIONS(418), [anon_sym_EQ] = ACTIONS(418), @@ -9802,7 +9903,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(418), [anon_sym_SLASH] = ACTIONS(418), [sym_comment] = ACTIONS(142), - [sym_simple_variable_name] = ACTIONS(710), + [sym_simple_variable_name] = ACTIONS(724), [anon_sym_STAR] = ACTIONS(156), [anon_sym_QMARK] = ACTIONS(156), [anon_sym_DASH] = ACTIONS(156), @@ -9811,30 +9912,30 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(162), }, [197] = { - [anon_sym_RBRACE] = ACTIONS(712), - [anon_sym_LBRACK] = ACTIONS(714), - [anon_sym_EQ] = ACTIONS(716), - [anon_sym_COLON] = ACTIONS(718), - [anon_sym_COLON_QMARK] = ACTIONS(716), - [anon_sym_COLON_DASH] = ACTIONS(716), - [anon_sym_PERCENT] = ACTIONS(716), - [anon_sym_SLASH] = ACTIONS(716), + [anon_sym_RBRACE] = ACTIONS(726), + [anon_sym_LBRACK] = ACTIONS(728), + [anon_sym_EQ] = ACTIONS(730), + [anon_sym_COLON] = ACTIONS(732), + [anon_sym_COLON_QMARK] = ACTIONS(730), + [anon_sym_COLON_DASH] = ACTIONS(730), + [anon_sym_PERCENT] = ACTIONS(730), + [anon_sym_SLASH] = ACTIONS(730), [sym_comment] = ACTIONS(52), }, [198] = { - [anon_sym_RBRACE] = ACTIONS(720), - [anon_sym_LBRACK] = ACTIONS(722), - [anon_sym_EQ] = ACTIONS(724), - [anon_sym_COLON] = ACTIONS(726), - [anon_sym_COLON_QMARK] = ACTIONS(724), - [anon_sym_COLON_DASH] = ACTIONS(724), - [anon_sym_PERCENT] = ACTIONS(724), - [anon_sym_SLASH] = ACTIONS(724), + [anon_sym_RBRACE] = ACTIONS(734), + [anon_sym_LBRACK] = ACTIONS(736), + [anon_sym_EQ] = ACTIONS(738), + [anon_sym_COLON] = ACTIONS(740), + [anon_sym_COLON_QMARK] = ACTIONS(738), + [anon_sym_COLON_DASH] = ACTIONS(738), + [anon_sym_PERCENT] = ACTIONS(738), + [anon_sym_SLASH] = ACTIONS(738), [sym_comment] = ACTIONS(52), }, [199] = { [anon_sym_PIPE] = ACTIONS(480), - [anon_sym_RPAREN] = ACTIONS(728), + [anon_sym_RPAREN] = ACTIONS(742), [anon_sym_PIPE_AMP] = ACTIONS(484), [anon_sym_AMP_AMP] = ACTIONS(486), [anon_sym_PIPE_PIPE] = ACTIONS(486), @@ -9844,7 +9945,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(238), [sym_variable_name] = ACTIONS(238), [anon_sym_PIPE] = ACTIONS(480), - [anon_sym_RPAREN] = ACTIONS(728), + [anon_sym_RPAREN] = ACTIONS(742), [anon_sym_PIPE_AMP] = ACTIONS(484), [anon_sym_AMP_AMP] = ACTIONS(486), [anon_sym_PIPE_PIPE] = ACTIONS(506), @@ -9871,7 +9972,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_AMP] = ACTIONS(512), [anon_sym_AMP_AMP] = ACTIONS(514), [anon_sym_PIPE_PIPE] = ACTIONS(514), - [anon_sym_BQUOTE] = ACTIONS(728), + [anon_sym_BQUOTE] = ACTIONS(742), [sym_comment] = ACTIONS(52), }, [202] = { @@ -9893,7 +9994,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(242), [anon_sym_DOLLAR_LBRACE] = ACTIONS(238), [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(728), + [anon_sym_BQUOTE] = ACTIONS(742), [anon_sym_LT_LPAREN] = ACTIONS(238), [anon_sym_GT_LPAREN] = ACTIONS(238), [sym_word] = ACTIONS(240), @@ -9901,7 +10002,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [203] = { [anon_sym_PIPE] = ACTIONS(480), - [anon_sym_RPAREN] = ACTIONS(730), + [anon_sym_RPAREN] = ACTIONS(744), [anon_sym_PIPE_AMP] = ACTIONS(484), [anon_sym_AMP_AMP] = ACTIONS(486), [anon_sym_PIPE_PIPE] = ACTIONS(486), @@ -9911,7 +10012,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(238), [sym_variable_name] = ACTIONS(238), [anon_sym_PIPE] = ACTIONS(480), - [anon_sym_RPAREN] = ACTIONS(730), + [anon_sym_RPAREN] = ACTIONS(744), [anon_sym_PIPE_AMP] = ACTIONS(484), [anon_sym_AMP_AMP] = ACTIONS(486), [anon_sym_PIPE_PIPE] = ACTIONS(506), @@ -9934,51 +10035,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(52), }, [205] = { - [anon_sym_PIPE] = ACTIONS(732), - [anon_sym_RPAREN] = ACTIONS(732), - [anon_sym_SEMI_SEMI] = ACTIONS(732), - [anon_sym_PIPE_AMP] = ACTIONS(732), - [anon_sym_AMP_AMP] = ACTIONS(732), - [anon_sym_PIPE_PIPE] = ACTIONS(732), + [anon_sym_PIPE] = ACTIONS(746), + [anon_sym_RPAREN] = ACTIONS(746), + [anon_sym_SEMI_SEMI] = ACTIONS(746), + [anon_sym_PIPE_AMP] = ACTIONS(746), + [anon_sym_AMP_AMP] = ACTIONS(746), + [anon_sym_PIPE_PIPE] = ACTIONS(746), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(732), - [anon_sym_LF] = ACTIONS(732), - [anon_sym_AMP] = ACTIONS(732), + [anon_sym_SEMI] = ACTIONS(746), + [anon_sym_LF] = ACTIONS(746), + [anon_sym_AMP] = ACTIONS(746), }, [206] = { [aux_sym_concatenation_repeat1] = STATE(192), [sym__concat] = ACTIONS(326), - [anon_sym_RBRACK] = ACTIONS(734), - [anon_sym_DQUOTE] = ACTIONS(736), - [sym_raw_string] = ACTIONS(736), - [anon_sym_DOLLAR] = ACTIONS(734), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(736), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(736), - [anon_sym_BQUOTE] = ACTIONS(736), - [anon_sym_LT_LPAREN] = ACTIONS(736), - [anon_sym_GT_LPAREN] = ACTIONS(736), - [sym_word] = ACTIONS(738), + [anon_sym_RBRACK] = ACTIONS(748), + [anon_sym_DQUOTE] = ACTIONS(750), + [sym_raw_string] = ACTIONS(750), + [anon_sym_DOLLAR] = ACTIONS(748), + [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_word] = ACTIONS(752), [sym_comment] = ACTIONS(52), }, [207] = { - [anon_sym_RBRACK] = ACTIONS(734), - [anon_sym_DQUOTE] = ACTIONS(736), - [sym_raw_string] = ACTIONS(736), - [anon_sym_DOLLAR] = ACTIONS(734), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(736), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(736), - [anon_sym_BQUOTE] = ACTIONS(736), - [anon_sym_LT_LPAREN] = ACTIONS(736), - [anon_sym_GT_LPAREN] = ACTIONS(736), - [sym_word] = ACTIONS(738), + [anon_sym_RBRACK] = ACTIONS(748), + [anon_sym_DQUOTE] = ACTIONS(750), + [sym_raw_string] = ACTIONS(750), + [anon_sym_DOLLAR] = ACTIONS(748), + [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_word] = ACTIONS(752), [sym_comment] = ACTIONS(52), }, [208] = { [sym__concat] = ACTIONS(386), - [anon_sym_RBRACK_RBRACK] = ACTIONS(694), + [anon_sym_RBRACK_RBRACK] = ACTIONS(708), [anon_sym_DQUOTE] = ACTIONS(386), [sym_raw_string] = ACTIONS(386), - [anon_sym_DOLLAR] = ACTIONS(694), + [anon_sym_DOLLAR] = ACTIONS(708), [anon_sym_DOLLAR_LBRACE] = ACTIONS(386), [anon_sym_DOLLAR_LPAREN] = ACTIONS(386), [anon_sym_BQUOTE] = ACTIONS(386), @@ -9991,7 +10092,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_expansion] = STATE(253), [sym_expansion] = STATE(253), [sym_command_substitution] = STATE(253), - [anon_sym_DQUOTE] = ACTIONS(740), + [anon_sym_DQUOTE] = ACTIONS(754), [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(406), [anon_sym_DOLLAR] = ACTIONS(134), [anon_sym_DOLLAR_LBRACE] = ACTIONS(136), @@ -10000,28 +10101,28 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(142), }, [210] = { - [sym_string] = STATE(433), - [sym_simple_expansion] = STATE(433), - [sym_expansion] = STATE(433), - [sym_command_substitution] = STATE(433), - [sym_process_substitution] = STATE(433), + [sym_string] = STATE(440), + [sym_simple_expansion] = STATE(440), + [sym_expansion] = STATE(440), + [sym_command_substitution] = STATE(440), + [sym_process_substitution] = STATE(440), [anon_sym_DQUOTE] = ACTIONS(98), - [sym_raw_string] = ACTIONS(742), + [sym_raw_string] = ACTIONS(756), [anon_sym_DOLLAR] = ACTIONS(102), [anon_sym_DOLLAR_LBRACE] = ACTIONS(104), [anon_sym_DOLLAR_LPAREN] = ACTIONS(106), [anon_sym_BQUOTE] = ACTIONS(108), [anon_sym_LT_LPAREN] = ACTIONS(110), [anon_sym_GT_LPAREN] = ACTIONS(110), - [sym_word] = ACTIONS(744), + [sym_word] = ACTIONS(758), [sym_comment] = ACTIONS(52), }, [211] = { - [sym__concat] = ACTIONS(746), - [anon_sym_RBRACK_RBRACK] = ACTIONS(704), + [sym__concat] = ACTIONS(760), + [anon_sym_RBRACK_RBRACK] = ACTIONS(718), [anon_sym_DQUOTE] = ACTIONS(412), [sym_raw_string] = ACTIONS(412), - [anon_sym_DOLLAR] = ACTIONS(704), + [anon_sym_DOLLAR] = ACTIONS(718), [anon_sym_DOLLAR_LBRACE] = ACTIONS(412), [anon_sym_DOLLAR_LPAREN] = ACTIONS(412), [anon_sym_BQUOTE] = ACTIONS(412), @@ -10046,10 +10147,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [213] = { [sym__concat] = ACTIONS(422), - [anon_sym_RBRACK_RBRACK] = ACTIONS(706), + [anon_sym_RBRACK_RBRACK] = ACTIONS(720), [anon_sym_DQUOTE] = ACTIONS(422), [sym_raw_string] = ACTIONS(422), - [anon_sym_DOLLAR] = ACTIONS(706), + [anon_sym_DOLLAR] = ACTIONS(720), [anon_sym_DOLLAR_LBRACE] = ACTIONS(422), [anon_sym_DOLLAR_LPAREN] = ACTIONS(422), [anon_sym_BQUOTE] = ACTIONS(422), @@ -10060,10 +10161,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [214] = { [sym__concat] = ACTIONS(426), - [anon_sym_RBRACK_RBRACK] = ACTIONS(708), + [anon_sym_RBRACK_RBRACK] = ACTIONS(722), [anon_sym_DQUOTE] = ACTIONS(426), [sym_raw_string] = ACTIONS(426), - [anon_sym_DOLLAR] = ACTIONS(708), + [anon_sym_DOLLAR] = ACTIONS(722), [anon_sym_DOLLAR_LBRACE] = ACTIONS(426), [anon_sym_DOLLAR_LPAREN] = ACTIONS(426), [anon_sym_BQUOTE] = ACTIONS(426), @@ -10073,7 +10174,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(52), }, [215] = { - [sym_special_variable_name] = STATE(436), + [sym_special_variable_name] = STATE(443), [anon_sym_RBRACE] = ACTIONS(418), [anon_sym_LBRACK] = ACTIONS(418), [anon_sym_EQ] = ACTIONS(418), @@ -10086,7 +10187,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(418), [anon_sym_SLASH] = ACTIONS(418), [sym_comment] = ACTIONS(142), - [sym_simple_variable_name] = ACTIONS(748), + [sym_simple_variable_name] = ACTIONS(762), [anon_sym_STAR] = ACTIONS(156), [anon_sym_QMARK] = ACTIONS(156), [anon_sym_DASH] = ACTIONS(156), @@ -10095,30 +10196,30 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(162), }, [216] = { - [anon_sym_RBRACE] = ACTIONS(750), - [anon_sym_LBRACK] = ACTIONS(752), - [anon_sym_EQ] = ACTIONS(754), - [anon_sym_COLON] = ACTIONS(756), - [anon_sym_COLON_QMARK] = ACTIONS(754), - [anon_sym_COLON_DASH] = ACTIONS(754), - [anon_sym_PERCENT] = ACTIONS(754), - [anon_sym_SLASH] = ACTIONS(754), + [anon_sym_RBRACE] = ACTIONS(764), + [anon_sym_LBRACK] = ACTIONS(766), + [anon_sym_EQ] = ACTIONS(768), + [anon_sym_COLON] = ACTIONS(770), + [anon_sym_COLON_QMARK] = ACTIONS(768), + [anon_sym_COLON_DASH] = ACTIONS(768), + [anon_sym_PERCENT] = ACTIONS(768), + [anon_sym_SLASH] = ACTIONS(768), [sym_comment] = ACTIONS(52), }, [217] = { - [anon_sym_RBRACE] = ACTIONS(758), - [anon_sym_LBRACK] = ACTIONS(760), - [anon_sym_EQ] = ACTIONS(762), - [anon_sym_COLON] = ACTIONS(764), - [anon_sym_COLON_QMARK] = ACTIONS(762), - [anon_sym_COLON_DASH] = ACTIONS(762), - [anon_sym_PERCENT] = ACTIONS(762), - [anon_sym_SLASH] = ACTIONS(762), + [anon_sym_RBRACE] = ACTIONS(772), + [anon_sym_LBRACK] = ACTIONS(774), + [anon_sym_EQ] = ACTIONS(776), + [anon_sym_COLON] = ACTIONS(778), + [anon_sym_COLON_QMARK] = ACTIONS(776), + [anon_sym_COLON_DASH] = ACTIONS(776), + [anon_sym_PERCENT] = ACTIONS(776), + [anon_sym_SLASH] = ACTIONS(776), [sym_comment] = ACTIONS(52), }, [218] = { [anon_sym_PIPE] = ACTIONS(480), - [anon_sym_RPAREN] = ACTIONS(766), + [anon_sym_RPAREN] = ACTIONS(780), [anon_sym_PIPE_AMP] = ACTIONS(484), [anon_sym_AMP_AMP] = ACTIONS(486), [anon_sym_PIPE_PIPE] = ACTIONS(486), @@ -10128,7 +10229,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(238), [sym_variable_name] = ACTIONS(238), [anon_sym_PIPE] = ACTIONS(480), - [anon_sym_RPAREN] = ACTIONS(766), + [anon_sym_RPAREN] = ACTIONS(780), [anon_sym_PIPE_AMP] = ACTIONS(484), [anon_sym_AMP_AMP] = ACTIONS(486), [anon_sym_PIPE_PIPE] = ACTIONS(506), @@ -10155,7 +10256,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_AMP] = ACTIONS(512), [anon_sym_AMP_AMP] = ACTIONS(514), [anon_sym_PIPE_PIPE] = ACTIONS(514), - [anon_sym_BQUOTE] = ACTIONS(766), + [anon_sym_BQUOTE] = ACTIONS(780), [sym_comment] = ACTIONS(52), }, [221] = { @@ -10177,7 +10278,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(242), [anon_sym_DOLLAR_LBRACE] = ACTIONS(238), [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(766), + [anon_sym_BQUOTE] = ACTIONS(780), [anon_sym_LT_LPAREN] = ACTIONS(238), [anon_sym_GT_LPAREN] = ACTIONS(238), [sym_word] = ACTIONS(240), @@ -10185,7 +10286,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [222] = { [anon_sym_PIPE] = ACTIONS(480), - [anon_sym_RPAREN] = ACTIONS(768), + [anon_sym_RPAREN] = ACTIONS(782), [anon_sym_PIPE_AMP] = ACTIONS(484), [anon_sym_AMP_AMP] = ACTIONS(486), [anon_sym_PIPE_PIPE] = ACTIONS(486), @@ -10195,7 +10296,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(238), [sym_variable_name] = ACTIONS(238), [anon_sym_PIPE] = ACTIONS(480), - [anon_sym_RPAREN] = ACTIONS(768), + [anon_sym_RPAREN] = ACTIONS(782), [anon_sym_PIPE_AMP] = ACTIONS(484), [anon_sym_AMP_AMP] = ACTIONS(486), [anon_sym_PIPE_PIPE] = ACTIONS(506), @@ -10220,58 +10321,58 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [224] = { [aux_sym_concatenation_repeat1] = STATE(211), [sym__concat] = ACTIONS(352), - [anon_sym_RBRACK_RBRACK] = ACTIONS(734), - [anon_sym_DQUOTE] = ACTIONS(736), - [sym_raw_string] = ACTIONS(736), - [anon_sym_DOLLAR] = ACTIONS(734), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(736), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(736), - [anon_sym_BQUOTE] = ACTIONS(736), - [anon_sym_LT_LPAREN] = ACTIONS(736), - [anon_sym_GT_LPAREN] = ACTIONS(736), - [sym_word] = ACTIONS(738), + [anon_sym_RBRACK_RBRACK] = ACTIONS(748), + [anon_sym_DQUOTE] = ACTIONS(750), + [sym_raw_string] = ACTIONS(750), + [anon_sym_DOLLAR] = ACTIONS(748), + [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_word] = ACTIONS(752), [sym_comment] = ACTIONS(52), }, [225] = { - [anon_sym_RBRACK_RBRACK] = ACTIONS(734), - [anon_sym_DQUOTE] = ACTIONS(736), - [sym_raw_string] = ACTIONS(736), - [anon_sym_DOLLAR] = ACTIONS(734), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(736), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(736), - [anon_sym_BQUOTE] = ACTIONS(736), - [anon_sym_LT_LPAREN] = ACTIONS(736), - [anon_sym_GT_LPAREN] = ACTIONS(736), - [sym_word] = ACTIONS(738), + [anon_sym_RBRACK_RBRACK] = ACTIONS(748), + [anon_sym_DQUOTE] = ACTIONS(750), + [sym_raw_string] = ACTIONS(750), + [anon_sym_DOLLAR] = ACTIONS(748), + [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_word] = ACTIONS(752), [sym_comment] = ACTIONS(52), }, [226] = { [sym_file_descriptor] = ACTIONS(386), [sym__concat] = ACTIONS(386), [sym_variable_name] = ACTIONS(386), - [anon_sym_LT] = ACTIONS(694), - [anon_sym_GT] = ACTIONS(694), + [anon_sym_LT] = ACTIONS(708), + [anon_sym_GT] = ACTIONS(708), [anon_sym_GT_GT] = ACTIONS(386), - [anon_sym_AMP_GT] = ACTIONS(694), + [anon_sym_AMP_GT] = ACTIONS(708), [anon_sym_AMP_GT_GT] = ACTIONS(386), [anon_sym_LT_AMP] = ACTIONS(386), [anon_sym_GT_AMP] = ACTIONS(386), [anon_sym_DQUOTE] = ACTIONS(386), [sym_raw_string] = ACTIONS(386), - [anon_sym_DOLLAR] = ACTIONS(694), + [anon_sym_DOLLAR] = ACTIONS(708), [anon_sym_DOLLAR_LBRACE] = ACTIONS(386), [anon_sym_DOLLAR_LPAREN] = ACTIONS(386), [anon_sym_BQUOTE] = ACTIONS(386), [anon_sym_LT_LPAREN] = ACTIONS(386), [anon_sym_GT_LPAREN] = ACTIONS(386), - [sym_word] = ACTIONS(694), + [sym_word] = ACTIONS(708), [sym_comment] = ACTIONS(52), }, [227] = { [sym_simple_expansion] = STATE(253), [sym_expansion] = STATE(253), [sym_command_substitution] = STATE(253), - [anon_sym_DQUOTE] = ACTIONS(770), + [anon_sym_DQUOTE] = ACTIONS(784), [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(406), [anon_sym_DOLLAR] = ACTIONS(134), [anon_sym_DOLLAR_LBRACE] = ACTIONS(136), @@ -10280,42 +10381,42 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(142), }, [228] = { - [sym_string] = STATE(446), - [sym_simple_expansion] = STATE(446), - [sym_expansion] = STATE(446), - [sym_command_substitution] = STATE(446), - [sym_process_substitution] = STATE(446), + [sym_string] = STATE(453), + [sym_simple_expansion] = STATE(453), + [sym_expansion] = STATE(453), + [sym_command_substitution] = STATE(453), + [sym_process_substitution] = STATE(453), [anon_sym_DQUOTE] = ACTIONS(114), - [sym_raw_string] = ACTIONS(772), + [sym_raw_string] = ACTIONS(786), [anon_sym_DOLLAR] = ACTIONS(118), [anon_sym_DOLLAR_LBRACE] = ACTIONS(120), [anon_sym_DOLLAR_LPAREN] = ACTIONS(122), [anon_sym_BQUOTE] = ACTIONS(124), [anon_sym_LT_LPAREN] = ACTIONS(126), [anon_sym_GT_LPAREN] = ACTIONS(126), - [sym_word] = ACTIONS(774), + [sym_word] = ACTIONS(788), [sym_comment] = ACTIONS(52), }, [229] = { [sym_file_descriptor] = ACTIONS(412), - [sym__concat] = ACTIONS(776), + [sym__concat] = ACTIONS(790), [sym_variable_name] = ACTIONS(412), - [anon_sym_LT] = ACTIONS(704), - [anon_sym_GT] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(718), + [anon_sym_GT] = ACTIONS(718), [anon_sym_GT_GT] = ACTIONS(412), - [anon_sym_AMP_GT] = ACTIONS(704), + [anon_sym_AMP_GT] = ACTIONS(718), [anon_sym_AMP_GT_GT] = ACTIONS(412), [anon_sym_LT_AMP] = ACTIONS(412), [anon_sym_GT_AMP] = ACTIONS(412), [anon_sym_DQUOTE] = ACTIONS(412), [sym_raw_string] = ACTIONS(412), - [anon_sym_DOLLAR] = ACTIONS(704), + [anon_sym_DOLLAR] = ACTIONS(718), [anon_sym_DOLLAR_LBRACE] = ACTIONS(412), [anon_sym_DOLLAR_LPAREN] = ACTIONS(412), [anon_sym_BQUOTE] = ACTIONS(412), [anon_sym_LT_LPAREN] = ACTIONS(412), [anon_sym_GT_LPAREN] = ACTIONS(412), - [sym_word] = ACTIONS(704), + [sym_word] = ACTIONS(718), [sym_comment] = ACTIONS(52), }, [230] = { @@ -10344,48 +10445,48 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(422), [sym__concat] = ACTIONS(422), [sym_variable_name] = ACTIONS(422), - [anon_sym_LT] = ACTIONS(706), - [anon_sym_GT] = ACTIONS(706), + [anon_sym_LT] = ACTIONS(720), + [anon_sym_GT] = ACTIONS(720), [anon_sym_GT_GT] = ACTIONS(422), - [anon_sym_AMP_GT] = ACTIONS(706), + [anon_sym_AMP_GT] = ACTIONS(720), [anon_sym_AMP_GT_GT] = ACTIONS(422), [anon_sym_LT_AMP] = ACTIONS(422), [anon_sym_GT_AMP] = ACTIONS(422), [anon_sym_DQUOTE] = ACTIONS(422), [sym_raw_string] = ACTIONS(422), - [anon_sym_DOLLAR] = ACTIONS(706), + [anon_sym_DOLLAR] = ACTIONS(720), [anon_sym_DOLLAR_LBRACE] = ACTIONS(422), [anon_sym_DOLLAR_LPAREN] = ACTIONS(422), [anon_sym_BQUOTE] = ACTIONS(422), [anon_sym_LT_LPAREN] = ACTIONS(422), [anon_sym_GT_LPAREN] = ACTIONS(422), - [sym_word] = ACTIONS(706), + [sym_word] = ACTIONS(720), [sym_comment] = ACTIONS(52), }, [232] = { [sym_file_descriptor] = ACTIONS(426), [sym__concat] = ACTIONS(426), [sym_variable_name] = ACTIONS(426), - [anon_sym_LT] = ACTIONS(708), - [anon_sym_GT] = ACTIONS(708), + [anon_sym_LT] = ACTIONS(722), + [anon_sym_GT] = ACTIONS(722), [anon_sym_GT_GT] = ACTIONS(426), - [anon_sym_AMP_GT] = ACTIONS(708), + [anon_sym_AMP_GT] = ACTIONS(722), [anon_sym_AMP_GT_GT] = ACTIONS(426), [anon_sym_LT_AMP] = ACTIONS(426), [anon_sym_GT_AMP] = ACTIONS(426), [anon_sym_DQUOTE] = ACTIONS(426), [sym_raw_string] = ACTIONS(426), - [anon_sym_DOLLAR] = ACTIONS(708), + [anon_sym_DOLLAR] = ACTIONS(722), [anon_sym_DOLLAR_LBRACE] = ACTIONS(426), [anon_sym_DOLLAR_LPAREN] = ACTIONS(426), [anon_sym_BQUOTE] = ACTIONS(426), [anon_sym_LT_LPAREN] = ACTIONS(426), [anon_sym_GT_LPAREN] = ACTIONS(426), - [sym_word] = ACTIONS(708), + [sym_word] = ACTIONS(722), [sym_comment] = ACTIONS(52), }, [233] = { - [sym_special_variable_name] = STATE(449), + [sym_special_variable_name] = STATE(456), [anon_sym_RBRACE] = ACTIONS(418), [anon_sym_LBRACK] = ACTIONS(418), [anon_sym_EQ] = ACTIONS(418), @@ -10398,7 +10499,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(418), [anon_sym_SLASH] = ACTIONS(418), [sym_comment] = ACTIONS(142), - [sym_simple_variable_name] = ACTIONS(778), + [sym_simple_variable_name] = ACTIONS(792), [anon_sym_STAR] = ACTIONS(156), [anon_sym_QMARK] = ACTIONS(156), [anon_sym_DASH] = ACTIONS(156), @@ -10407,30 +10508,30 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(162), }, [234] = { - [anon_sym_RBRACE] = ACTIONS(780), - [anon_sym_LBRACK] = ACTIONS(782), - [anon_sym_EQ] = ACTIONS(784), - [anon_sym_COLON] = ACTIONS(786), - [anon_sym_COLON_QMARK] = ACTIONS(784), - [anon_sym_COLON_DASH] = ACTIONS(784), - [anon_sym_PERCENT] = ACTIONS(784), - [anon_sym_SLASH] = ACTIONS(784), + [anon_sym_RBRACE] = ACTIONS(794), + [anon_sym_LBRACK] = ACTIONS(796), + [anon_sym_EQ] = ACTIONS(798), + [anon_sym_COLON] = ACTIONS(800), + [anon_sym_COLON_QMARK] = ACTIONS(798), + [anon_sym_COLON_DASH] = ACTIONS(798), + [anon_sym_PERCENT] = ACTIONS(798), + [anon_sym_SLASH] = ACTIONS(798), [sym_comment] = ACTIONS(52), }, [235] = { - [anon_sym_RBRACE] = ACTIONS(788), - [anon_sym_LBRACK] = ACTIONS(790), - [anon_sym_EQ] = ACTIONS(792), - [anon_sym_COLON] = ACTIONS(794), - [anon_sym_COLON_QMARK] = ACTIONS(792), - [anon_sym_COLON_DASH] = ACTIONS(792), - [anon_sym_PERCENT] = ACTIONS(792), - [anon_sym_SLASH] = ACTIONS(792), + [anon_sym_RBRACE] = ACTIONS(802), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_EQ] = ACTIONS(806), + [anon_sym_COLON] = ACTIONS(808), + [anon_sym_COLON_QMARK] = ACTIONS(806), + [anon_sym_COLON_DASH] = ACTIONS(806), + [anon_sym_PERCENT] = ACTIONS(806), + [anon_sym_SLASH] = ACTIONS(806), [sym_comment] = ACTIONS(52), }, [236] = { [anon_sym_PIPE] = ACTIONS(480), - [anon_sym_RPAREN] = ACTIONS(796), + [anon_sym_RPAREN] = ACTIONS(810), [anon_sym_PIPE_AMP] = ACTIONS(484), [anon_sym_AMP_AMP] = ACTIONS(486), [anon_sym_PIPE_PIPE] = ACTIONS(486), @@ -10440,7 +10541,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(238), [sym_variable_name] = ACTIONS(238), [anon_sym_PIPE] = ACTIONS(480), - [anon_sym_RPAREN] = ACTIONS(796), + [anon_sym_RPAREN] = ACTIONS(810), [anon_sym_PIPE_AMP] = ACTIONS(484), [anon_sym_AMP_AMP] = ACTIONS(486), [anon_sym_PIPE_PIPE] = ACTIONS(506), @@ -10467,7 +10568,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_AMP] = ACTIONS(512), [anon_sym_AMP_AMP] = ACTIONS(514), [anon_sym_PIPE_PIPE] = ACTIONS(514), - [anon_sym_BQUOTE] = ACTIONS(796), + [anon_sym_BQUOTE] = ACTIONS(810), [sym_comment] = ACTIONS(52), }, [239] = { @@ -10489,7 +10590,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(242), [anon_sym_DOLLAR_LBRACE] = ACTIONS(238), [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(796), + [anon_sym_BQUOTE] = ACTIONS(810), [anon_sym_LT_LPAREN] = ACTIONS(238), [anon_sym_GT_LPAREN] = ACTIONS(238), [sym_word] = ACTIONS(240), @@ -10497,7 +10598,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [240] = { [anon_sym_PIPE] = ACTIONS(480), - [anon_sym_RPAREN] = ACTIONS(798), + [anon_sym_RPAREN] = ACTIONS(812), [anon_sym_PIPE_AMP] = ACTIONS(484), [anon_sym_AMP_AMP] = ACTIONS(486), [anon_sym_PIPE_PIPE] = ACTIONS(486), @@ -10507,7 +10608,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(238), [sym_variable_name] = ACTIONS(238), [anon_sym_PIPE] = ACTIONS(480), - [anon_sym_RPAREN] = ACTIONS(798), + [anon_sym_RPAREN] = ACTIONS(812), [anon_sym_PIPE_AMP] = ACTIONS(484), [anon_sym_AMP_AMP] = ACTIONS(486), [anon_sym_PIPE_PIPE] = ACTIONS(506), @@ -10540,7 +10641,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [243] = { [anon_sym_DQUOTE] = ACTIONS(424), - [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(706), + [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(720), [anon_sym_DOLLAR] = ACTIONS(424), [anon_sym_DOLLAR_LBRACE] = ACTIONS(424), [anon_sym_DOLLAR_LPAREN] = ACTIONS(424), @@ -10549,7 +10650,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [244] = { [anon_sym_DQUOTE] = ACTIONS(428), - [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(708), + [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(722), [anon_sym_DOLLAR] = ACTIONS(428), [anon_sym_DOLLAR_LBRACE] = ACTIONS(428), [anon_sym_DOLLAR_LPAREN] = ACTIONS(428), @@ -10557,7 +10658,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(142), }, [245] = { - [sym_special_variable_name] = STATE(459), + [sym_special_variable_name] = STATE(466), [anon_sym_RBRACE] = ACTIONS(418), [anon_sym_LBRACK] = ACTIONS(418), [anon_sym_EQ] = ACTIONS(418), @@ -10570,7 +10671,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(418), [anon_sym_SLASH] = ACTIONS(418), [sym_comment] = ACTIONS(142), - [sym_simple_variable_name] = ACTIONS(800), + [sym_simple_variable_name] = ACTIONS(814), [anon_sym_STAR] = ACTIONS(156), [anon_sym_QMARK] = ACTIONS(156), [anon_sym_DASH] = ACTIONS(156), @@ -10579,30 +10680,30 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(162), }, [246] = { - [anon_sym_RBRACE] = ACTIONS(802), - [anon_sym_LBRACK] = ACTIONS(804), - [anon_sym_EQ] = ACTIONS(806), - [anon_sym_COLON] = ACTIONS(808), - [anon_sym_COLON_QMARK] = ACTIONS(806), - [anon_sym_COLON_DASH] = ACTIONS(806), - [anon_sym_PERCENT] = ACTIONS(806), - [anon_sym_SLASH] = ACTIONS(806), + [anon_sym_RBRACE] = ACTIONS(816), + [anon_sym_LBRACK] = ACTIONS(818), + [anon_sym_EQ] = ACTIONS(820), + [anon_sym_COLON] = ACTIONS(822), + [anon_sym_COLON_QMARK] = ACTIONS(820), + [anon_sym_COLON_DASH] = ACTIONS(820), + [anon_sym_PERCENT] = ACTIONS(820), + [anon_sym_SLASH] = ACTIONS(820), [sym_comment] = ACTIONS(52), }, [247] = { - [anon_sym_RBRACE] = ACTIONS(810), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_EQ] = ACTIONS(814), - [anon_sym_COLON] = ACTIONS(816), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), + [anon_sym_RBRACE] = ACTIONS(824), + [anon_sym_LBRACK] = ACTIONS(826), + [anon_sym_EQ] = ACTIONS(828), + [anon_sym_COLON] = ACTIONS(830), + [anon_sym_COLON_QMARK] = ACTIONS(828), + [anon_sym_COLON_DASH] = ACTIONS(828), + [anon_sym_PERCENT] = ACTIONS(828), + [anon_sym_SLASH] = ACTIONS(828), [sym_comment] = ACTIONS(52), }, [248] = { [anon_sym_PIPE] = ACTIONS(480), - [anon_sym_RPAREN] = ACTIONS(818), + [anon_sym_RPAREN] = ACTIONS(832), [anon_sym_PIPE_AMP] = ACTIONS(484), [anon_sym_AMP_AMP] = ACTIONS(486), [anon_sym_PIPE_PIPE] = ACTIONS(486), @@ -10612,7 +10713,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(238), [sym_variable_name] = ACTIONS(238), [anon_sym_PIPE] = ACTIONS(480), - [anon_sym_RPAREN] = ACTIONS(818), + [anon_sym_RPAREN] = ACTIONS(832), [anon_sym_PIPE_AMP] = ACTIONS(484), [anon_sym_AMP_AMP] = ACTIONS(486), [anon_sym_PIPE_PIPE] = ACTIONS(506), @@ -10639,7 +10740,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_AMP] = ACTIONS(512), [anon_sym_AMP_AMP] = ACTIONS(514), [anon_sym_PIPE_PIPE] = ACTIONS(514), - [anon_sym_BQUOTE] = ACTIONS(818), + [anon_sym_BQUOTE] = ACTIONS(832), [sym_comment] = ACTIONS(52), }, [251] = { @@ -10661,296 +10762,296 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(242), [anon_sym_DOLLAR_LBRACE] = ACTIONS(238), [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(818), + [anon_sym_BQUOTE] = ACTIONS(832), [anon_sym_LT_LPAREN] = ACTIONS(238), [anon_sym_GT_LPAREN] = ACTIONS(238), [sym_word] = ACTIONS(240), [sym_comment] = ACTIONS(52), }, [252] = { - [sym_file_descriptor] = ACTIONS(820), - [sym__concat] = ACTIONS(820), - [anon_sym_PIPE] = ACTIONS(822), - [anon_sym_RPAREN] = ACTIONS(822), - [anon_sym_SEMI_SEMI] = ACTIONS(822), - [anon_sym_PIPE_AMP] = ACTIONS(822), - [anon_sym_AMP_AMP] = ACTIONS(822), - [anon_sym_PIPE_PIPE] = ACTIONS(822), - [anon_sym_LT] = ACTIONS(822), - [anon_sym_GT] = ACTIONS(822), - [anon_sym_GT_GT] = ACTIONS(822), - [anon_sym_AMP_GT] = ACTIONS(822), - [anon_sym_AMP_GT_GT] = ACTIONS(822), - [anon_sym_LT_AMP] = ACTIONS(822), - [anon_sym_GT_AMP] = ACTIONS(822), - [anon_sym_LT_LT] = ACTIONS(822), - [anon_sym_LT_LT_DASH] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(822), - [sym_raw_string] = ACTIONS(822), - [anon_sym_DOLLAR] = ACTIONS(822), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(822), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(822), - [anon_sym_BQUOTE] = ACTIONS(822), - [anon_sym_LT_LPAREN] = ACTIONS(822), - [anon_sym_GT_LPAREN] = ACTIONS(822), - [sym_word] = ACTIONS(822), + [sym_file_descriptor] = ACTIONS(834), + [sym__concat] = ACTIONS(834), + [anon_sym_PIPE] = ACTIONS(836), + [anon_sym_RPAREN] = ACTIONS(836), + [anon_sym_SEMI_SEMI] = ACTIONS(836), + [anon_sym_PIPE_AMP] = ACTIONS(836), + [anon_sym_AMP_AMP] = ACTIONS(836), + [anon_sym_PIPE_PIPE] = ACTIONS(836), + [anon_sym_LT] = ACTIONS(836), + [anon_sym_GT] = ACTIONS(836), + [anon_sym_GT_GT] = ACTIONS(836), + [anon_sym_AMP_GT] = ACTIONS(836), + [anon_sym_AMP_GT_GT] = ACTIONS(836), + [anon_sym_LT_AMP] = ACTIONS(836), + [anon_sym_GT_AMP] = ACTIONS(836), + [anon_sym_LT_LT] = ACTIONS(836), + [anon_sym_LT_LT_DASH] = ACTIONS(836), + [anon_sym_DQUOTE] = ACTIONS(836), + [sym_raw_string] = ACTIONS(836), + [anon_sym_DOLLAR] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(836), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(836), + [anon_sym_BQUOTE] = ACTIONS(836), + [anon_sym_LT_LPAREN] = ACTIONS(836), + [anon_sym_GT_LPAREN] = ACTIONS(836), + [sym_word] = ACTIONS(836), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(822), - [anon_sym_LF] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(822), + [anon_sym_SEMI] = ACTIONS(836), + [anon_sym_LF] = ACTIONS(836), + [anon_sym_AMP] = ACTIONS(836), }, [253] = { - [anon_sym_DQUOTE] = ACTIONS(824), - [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(826), - [anon_sym_DOLLAR] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(824), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(824), - [anon_sym_BQUOTE] = ACTIONS(824), + [anon_sym_DQUOTE] = ACTIONS(838), + [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(840), + [anon_sym_DOLLAR] = ACTIONS(838), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(838), + [anon_sym_BQUOTE] = ACTIONS(838), [sym_comment] = ACTIONS(142), }, [254] = { - [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_DQUOTE] = ACTIONS(830), - [sym_raw_string] = ACTIONS(830), - [anon_sym_DOLLAR] = 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_word] = ACTIONS(830), + [sym_file_descriptor] = ACTIONS(842), + [sym__concat] = ACTIONS(842), + [anon_sym_PIPE] = ACTIONS(844), + [anon_sym_RPAREN] = ACTIONS(844), + [anon_sym_SEMI_SEMI] = ACTIONS(844), + [anon_sym_PIPE_AMP] = ACTIONS(844), + [anon_sym_AMP_AMP] = ACTIONS(844), + [anon_sym_PIPE_PIPE] = ACTIONS(844), + [anon_sym_LT] = ACTIONS(844), + [anon_sym_GT] = ACTIONS(844), + [anon_sym_GT_GT] = ACTIONS(844), + [anon_sym_AMP_GT] = ACTIONS(844), + [anon_sym_AMP_GT_GT] = ACTIONS(844), + [anon_sym_LT_AMP] = ACTIONS(844), + [anon_sym_GT_AMP] = ACTIONS(844), + [anon_sym_LT_LT] = ACTIONS(844), + [anon_sym_LT_LT_DASH] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(844), + [sym_raw_string] = ACTIONS(844), + [anon_sym_DOLLAR] = ACTIONS(844), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(844), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(844), + [anon_sym_GT_LPAREN] = ACTIONS(844), + [sym_word] = ACTIONS(844), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(830), - [anon_sym_LF] = ACTIONS(830), - [anon_sym_AMP] = ACTIONS(830), + [anon_sym_SEMI] = ACTIONS(844), + [anon_sym_LF] = ACTIONS(844), + [anon_sym_AMP] = ACTIONS(844), }, [255] = { - [sym_string] = STATE(467), - [sym_simple_expansion] = STATE(467), - [sym_expansion] = STATE(467), - [sym_command_substitution] = STATE(467), - [sym_process_substitution] = STATE(467), + [sym_string] = STATE(474), + [sym_simple_expansion] = STATE(474), + [sym_expansion] = STATE(474), + [sym_command_substitution] = STATE(474), + [sym_process_substitution] = STATE(474), [anon_sym_DQUOTE] = ACTIONS(36), - [sym_raw_string] = ACTIONS(832), + [sym_raw_string] = ACTIONS(846), [anon_sym_DOLLAR] = ACTIONS(40), [anon_sym_DOLLAR_LBRACE] = ACTIONS(42), [anon_sym_DOLLAR_LPAREN] = ACTIONS(44), [anon_sym_BQUOTE] = ACTIONS(46), [anon_sym_LT_LPAREN] = ACTIONS(48), [anon_sym_GT_LPAREN] = ACTIONS(48), - [sym_word] = ACTIONS(834), + [sym_word] = ACTIONS(848), [sym_comment] = ACTIONS(52), }, [256] = { - [anon_sym_RBRACE] = ACTIONS(836), - [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_RBRACE] = ACTIONS(850), + [anon_sym_LBRACK] = ACTIONS(852), [sym_comment] = ACTIONS(52), }, [257] = { - [anon_sym_RBRACE] = ACTIONS(840), - [anon_sym_LBRACK] = ACTIONS(842), + [anon_sym_RBRACE] = ACTIONS(854), + [anon_sym_LBRACK] = ACTIONS(856), [sym_comment] = ACTIONS(52), }, [258] = { - [sym_file_descriptor] = ACTIONS(844), - [sym__concat] = ACTIONS(844), - [anon_sym_PIPE] = ACTIONS(846), - [anon_sym_RPAREN] = ACTIONS(846), - [anon_sym_SEMI_SEMI] = ACTIONS(846), - [anon_sym_PIPE_AMP] = ACTIONS(846), - [anon_sym_AMP_AMP] = ACTIONS(846), - [anon_sym_PIPE_PIPE] = ACTIONS(846), - [anon_sym_LT] = ACTIONS(846), - [anon_sym_GT] = ACTIONS(846), - [anon_sym_GT_GT] = ACTIONS(846), - [anon_sym_AMP_GT] = ACTIONS(846), - [anon_sym_AMP_GT_GT] = ACTIONS(846), - [anon_sym_LT_AMP] = ACTIONS(846), - [anon_sym_GT_AMP] = ACTIONS(846), - [anon_sym_LT_LT] = ACTIONS(846), - [anon_sym_LT_LT_DASH] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(846), - [sym_raw_string] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(846), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(846), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(846), - [anon_sym_BQUOTE] = ACTIONS(846), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), - [sym_word] = ACTIONS(846), + [sym_file_descriptor] = ACTIONS(858), + [sym__concat] = ACTIONS(858), + [anon_sym_PIPE] = ACTIONS(860), + [anon_sym_RPAREN] = ACTIONS(860), + [anon_sym_SEMI_SEMI] = ACTIONS(860), + [anon_sym_PIPE_AMP] = ACTIONS(860), + [anon_sym_AMP_AMP] = ACTIONS(860), + [anon_sym_PIPE_PIPE] = ACTIONS(860), + [anon_sym_LT] = ACTIONS(860), + [anon_sym_GT] = ACTIONS(860), + [anon_sym_GT_GT] = ACTIONS(860), + [anon_sym_AMP_GT] = ACTIONS(860), + [anon_sym_AMP_GT_GT] = ACTIONS(860), + [anon_sym_LT_AMP] = ACTIONS(860), + [anon_sym_GT_AMP] = ACTIONS(860), + [anon_sym_LT_LT] = ACTIONS(860), + [anon_sym_LT_LT_DASH] = ACTIONS(860), + [anon_sym_DQUOTE] = ACTIONS(860), + [sym_raw_string] = ACTIONS(860), + [anon_sym_DOLLAR] = ACTIONS(860), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(860), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(860), + [anon_sym_GT_LPAREN] = ACTIONS(860), + [sym_word] = ACTIONS(860), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(846), - [anon_sym_LF] = ACTIONS(846), - [anon_sym_AMP] = ACTIONS(846), + [anon_sym_SEMI] = ACTIONS(860), + [anon_sym_LF] = ACTIONS(860), + [anon_sym_AMP] = ACTIONS(860), }, [259] = { - [anon_sym_AT] = ACTIONS(848), + [anon_sym_AT] = ACTIONS(862), [sym_comment] = ACTIONS(52), }, [260] = { - [sym_concatenation] = STATE(474), - [sym_string] = STATE(473), - [sym_simple_expansion] = STATE(473), - [sym_expansion] = STATE(473), - [sym_command_substitution] = STATE(473), - [sym_process_substitution] = STATE(473), + [sym_concatenation] = STATE(481), + [sym_string] = STATE(480), + [sym_simple_expansion] = STATE(480), + [sym_expansion] = STATE(480), + [sym_command_substitution] = STATE(480), + [sym_process_substitution] = STATE(480), [anon_sym_DQUOTE] = ACTIONS(82), - [sym_raw_string] = ACTIONS(850), + [sym_raw_string] = ACTIONS(864), [anon_sym_DOLLAR] = ACTIONS(86), [anon_sym_DOLLAR_LBRACE] = ACTIONS(88), [anon_sym_DOLLAR_LPAREN] = ACTIONS(90), [anon_sym_BQUOTE] = ACTIONS(92), [anon_sym_LT_LPAREN] = ACTIONS(94), [anon_sym_GT_LPAREN] = ACTIONS(94), - [sym_word] = ACTIONS(852), + [sym_word] = ACTIONS(866), [sym_comment] = ACTIONS(52), }, [261] = { - [sym_file_descriptor] = ACTIONS(854), - [sym__concat] = ACTIONS(854), - [anon_sym_PIPE] = ACTIONS(856), - [anon_sym_RPAREN] = ACTIONS(856), - [anon_sym_SEMI_SEMI] = ACTIONS(856), - [anon_sym_PIPE_AMP] = ACTIONS(856), - [anon_sym_AMP_AMP] = ACTIONS(856), - [anon_sym_PIPE_PIPE] = ACTIONS(856), - [anon_sym_LT] = ACTIONS(856), - [anon_sym_GT] = ACTIONS(856), - [anon_sym_GT_GT] = ACTIONS(856), - [anon_sym_AMP_GT] = ACTIONS(856), - [anon_sym_AMP_GT_GT] = ACTIONS(856), - [anon_sym_LT_AMP] = ACTIONS(856), - [anon_sym_GT_AMP] = ACTIONS(856), - [anon_sym_LT_LT] = ACTIONS(856), - [anon_sym_LT_LT_DASH] = ACTIONS(856), - [anon_sym_DQUOTE] = ACTIONS(856), - [sym_raw_string] = ACTIONS(856), - [anon_sym_DOLLAR] = ACTIONS(856), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(856), - [anon_sym_BQUOTE] = ACTIONS(856), - [anon_sym_LT_LPAREN] = ACTIONS(856), - [anon_sym_GT_LPAREN] = ACTIONS(856), - [sym_word] = ACTIONS(856), + [sym_file_descriptor] = ACTIONS(868), + [sym__concat] = ACTIONS(868), + [anon_sym_PIPE] = ACTIONS(870), + [anon_sym_RPAREN] = ACTIONS(870), + [anon_sym_SEMI_SEMI] = ACTIONS(870), + [anon_sym_PIPE_AMP] = ACTIONS(870), + [anon_sym_AMP_AMP] = ACTIONS(870), + [anon_sym_PIPE_PIPE] = ACTIONS(870), + [anon_sym_LT] = ACTIONS(870), + [anon_sym_GT] = ACTIONS(870), + [anon_sym_GT_GT] = ACTIONS(870), + [anon_sym_AMP_GT] = ACTIONS(870), + [anon_sym_AMP_GT_GT] = ACTIONS(870), + [anon_sym_LT_AMP] = ACTIONS(870), + [anon_sym_GT_AMP] = ACTIONS(870), + [anon_sym_LT_LT] = ACTIONS(870), + [anon_sym_LT_LT_DASH] = ACTIONS(870), + [anon_sym_DQUOTE] = ACTIONS(870), + [sym_raw_string] = ACTIONS(870), + [anon_sym_DOLLAR] = ACTIONS(870), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(870), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(870), + [anon_sym_BQUOTE] = ACTIONS(870), + [anon_sym_LT_LPAREN] = ACTIONS(870), + [anon_sym_GT_LPAREN] = ACTIONS(870), + [sym_word] = ACTIONS(870), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(856), - [anon_sym_LF] = ACTIONS(856), - [anon_sym_AMP] = ACTIONS(856), + [anon_sym_SEMI] = ACTIONS(870), + [anon_sym_LF] = ACTIONS(870), + [anon_sym_AMP] = ACTIONS(870), }, [262] = { - [anon_sym_AT] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(872), [sym_comment] = ACTIONS(52), }, [263] = { - [sym_concatenation] = STATE(477), - [sym_string] = STATE(476), - [sym_simple_expansion] = STATE(476), - [sym_expansion] = STATE(476), - [sym_command_substitution] = STATE(476), - [sym_process_substitution] = STATE(476), + [sym_concatenation] = STATE(484), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), [anon_sym_DQUOTE] = ACTIONS(82), - [sym_raw_string] = ACTIONS(860), + [sym_raw_string] = ACTIONS(874), [anon_sym_DOLLAR] = ACTIONS(86), [anon_sym_DOLLAR_LBRACE] = ACTIONS(88), [anon_sym_DOLLAR_LPAREN] = ACTIONS(90), [anon_sym_BQUOTE] = ACTIONS(92), [anon_sym_LT_LPAREN] = ACTIONS(94), [anon_sym_GT_LPAREN] = ACTIONS(94), - [sym_word] = ACTIONS(862), + [sym_word] = ACTIONS(876), [sym_comment] = ACTIONS(52), }, [264] = { - [sym_concatenation] = STATE(478), - [sym_string] = STATE(481), - [sym_array] = STATE(478), - [sym_simple_expansion] = STATE(481), - [sym_expansion] = STATE(481), - [sym_command_substitution] = STATE(481), - [sym_process_substitution] = STATE(481), - [sym__empty_value] = ACTIONS(864), - [anon_sym_LPAREN] = ACTIONS(866), - [anon_sym_DQUOTE] = ACTIONS(868), - [sym_raw_string] = ACTIONS(870), - [anon_sym_DOLLAR] = ACTIONS(872), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(874), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(876), - [anon_sym_BQUOTE] = ACTIONS(878), - [anon_sym_LT_LPAREN] = ACTIONS(880), - [anon_sym_GT_LPAREN] = ACTIONS(880), - [sym_word] = ACTIONS(882), + [sym_concatenation] = STATE(485), + [sym_string] = STATE(488), + [sym_array] = STATE(485), + [sym_simple_expansion] = STATE(488), + [sym_expansion] = STATE(488), + [sym_command_substitution] = STATE(488), + [sym_process_substitution] = STATE(488), + [sym__empty_value] = ACTIONS(878), + [anon_sym_LPAREN] = ACTIONS(880), + [anon_sym_DQUOTE] = ACTIONS(882), + [sym_raw_string] = ACTIONS(884), + [anon_sym_DOLLAR] = ACTIONS(886), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(888), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(890), + [anon_sym_BQUOTE] = ACTIONS(892), + [anon_sym_LT_LPAREN] = ACTIONS(894), + [anon_sym_GT_LPAREN] = ACTIONS(894), + [sym_word] = ACTIONS(896), [sym_comment] = ACTIONS(52), }, [265] = { - [anon_sym_in] = ACTIONS(884), + [anon_sym_in] = ACTIONS(898), [sym_comment] = ACTIONS(52), }, [266] = { - [sym_do_group] = STATE(489), - [anon_sym_do] = ACTIONS(886), + [sym_do_group] = STATE(496), + [anon_sym_do] = ACTIONS(900), [sym_comment] = ACTIONS(52), }, [267] = { - [anon_sym_then] = ACTIONS(888), + [anon_sym_then] = ACTIONS(902), [sym_comment] = ACTIONS(52), }, [268] = { [aux_sym_concatenation_repeat1] = STATE(170), [sym__concat] = ACTIONS(300), - [anon_sym_in] = ACTIONS(890), - [anon_sym_SEMI_SEMI] = ACTIONS(892), + [anon_sym_in] = ACTIONS(904), + [anon_sym_SEMI_SEMI] = ACTIONS(906), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(892), - [anon_sym_LF] = ACTIONS(892), - [anon_sym_AMP] = ACTIONS(892), + [anon_sym_SEMI] = ACTIONS(906), + [anon_sym_LF] = ACTIONS(906), + [anon_sym_AMP] = ACTIONS(906), }, [269] = { - [anon_sym_in] = ACTIONS(890), - [anon_sym_SEMI_SEMI] = ACTIONS(892), + [anon_sym_in] = ACTIONS(904), + [anon_sym_SEMI_SEMI] = ACTIONS(906), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(892), - [anon_sym_LF] = ACTIONS(892), - [anon_sym_AMP] = ACTIONS(892), + [anon_sym_SEMI] = ACTIONS(906), + [anon_sym_LF] = ACTIONS(906), + [anon_sym_AMP] = ACTIONS(906), }, [270] = { - [sym_compound_statement] = STATE(494), - [anon_sym_LPAREN] = ACTIONS(894), + [sym_compound_statement] = STATE(501), + [anon_sym_LPAREN] = ACTIONS(908), [anon_sym_LBRACE] = ACTIONS(478), [sym_comment] = ACTIONS(52), }, [271] = { [anon_sym_PIPE] = ACTIONS(210), - [anon_sym_RPAREN] = ACTIONS(896), - [anon_sym_SEMI_SEMI] = ACTIONS(898), + [anon_sym_RPAREN] = ACTIONS(910), + [anon_sym_SEMI_SEMI] = ACTIONS(912), [anon_sym_PIPE_AMP] = ACTIONS(210), [anon_sym_AMP_AMP] = ACTIONS(214), [anon_sym_PIPE_PIPE] = ACTIONS(214), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(898), - [anon_sym_LF] = ACTIONS(898), - [anon_sym_AMP] = ACTIONS(898), + [anon_sym_SEMI] = ACTIONS(912), + [anon_sym_LF] = ACTIONS(912), + [anon_sym_AMP] = ACTIONS(912), }, [272] = { [sym_file_descriptor] = ACTIONS(238), [sym_variable_name] = ACTIONS(238), [anon_sym_PIPE] = ACTIONS(210), - [anon_sym_RPAREN] = ACTIONS(896), - [anon_sym_SEMI_SEMI] = ACTIONS(898), + [anon_sym_RPAREN] = ACTIONS(910), + [anon_sym_SEMI_SEMI] = ACTIONS(912), [anon_sym_PIPE_AMP] = ACTIONS(210), [anon_sym_AMP_AMP] = ACTIONS(214), [anon_sym_PIPE_PIPE] = ACTIONS(214), @@ -10971,24 +11072,24 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_LPAREN] = ACTIONS(240), [sym_word] = ACTIONS(240), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(898), - [anon_sym_LF] = ACTIONS(898), - [anon_sym_AMP] = ACTIONS(898), + [anon_sym_SEMI] = ACTIONS(912), + [anon_sym_LF] = ACTIONS(912), + [anon_sym_AMP] = ACTIONS(912), }, [273] = { [sym__terminated_statement] = STATE(136), - [sym_for_statement] = STATE(497), - [sym_while_statement] = STATE(497), - [sym_if_statement] = STATE(497), - [sym_case_statement] = STATE(497), - [sym_function_definition] = STATE(497), - [sym_subshell] = STATE(497), - [sym_pipeline] = STATE(497), - [sym_list] = STATE(497), - [sym_bracket_command] = STATE(497), - [sym_command] = STATE(497), + [sym_for_statement] = STATE(504), + [sym_while_statement] = STATE(504), + [sym_if_statement] = STATE(504), + [sym_case_statement] = STATE(504), + [sym_function_definition] = STATE(504), + [sym_subshell] = STATE(504), + [sym_pipeline] = STATE(504), + [sym_list] = STATE(504), + [sym_bracket_command] = STATE(504), + [sym_command] = STATE(504), [sym_command_name] = STATE(24), - [sym_environment_variable_assignment] = STATE(498), + [sym_environment_variable_assignment] = STATE(505), [sym_subscript] = STATE(26), [sym_file_redirect] = STATE(27), [sym_concatenation] = STATE(28), @@ -11033,7 +11134,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(206), [sym_command_substitution] = STATE(206), [sym_process_substitution] = STATE(206), - [anon_sym_RBRACK] = ACTIONS(900), + [anon_sym_RBRACK] = ACTIONS(914), [anon_sym_DQUOTE] = ACTIONS(82), [sym_raw_string] = ACTIONS(346), [anon_sym_DOLLAR] = ACTIONS(86), @@ -11052,7 +11153,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(224), [sym_command_substitution] = STATE(224), [sym_process_substitution] = STATE(224), - [anon_sym_RBRACK_RBRACK] = ACTIONS(900), + [anon_sym_RBRACK_RBRACK] = ACTIONS(914), [anon_sym_DQUOTE] = ACTIONS(98), [sym_raw_string] = ACTIONS(364), [anon_sym_DOLLAR] = ACTIONS(102), @@ -11067,23 +11168,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [276] = { [sym_file_descriptor] = ACTIONS(386), [sym__concat] = ACTIONS(386), - [anon_sym_PIPE] = ACTIONS(694), + [anon_sym_PIPE] = ACTIONS(708), [anon_sym_RPAREN] = ACTIONS(386), [anon_sym_PIPE_AMP] = ACTIONS(386), [anon_sym_AMP_AMP] = ACTIONS(386), - [anon_sym_PIPE_PIPE] = ACTIONS(694), - [anon_sym_LT] = ACTIONS(694), - [anon_sym_GT] = ACTIONS(694), + [anon_sym_PIPE_PIPE] = ACTIONS(708), + [anon_sym_LT] = ACTIONS(708), + [anon_sym_GT] = ACTIONS(708), [anon_sym_GT_GT] = ACTIONS(386), - [anon_sym_AMP_GT] = ACTIONS(694), + [anon_sym_AMP_GT] = ACTIONS(708), [anon_sym_AMP_GT_GT] = ACTIONS(386), [anon_sym_LT_AMP] = ACTIONS(386), [anon_sym_GT_AMP] = ACTIONS(386), - [anon_sym_LT_LT] = ACTIONS(694), + [anon_sym_LT_LT] = ACTIONS(708), [anon_sym_LT_LT_DASH] = ACTIONS(386), [anon_sym_DQUOTE] = ACTIONS(386), [sym_raw_string] = ACTIONS(386), - [anon_sym_DOLLAR] = ACTIONS(694), + [anon_sym_DOLLAR] = ACTIONS(708), [anon_sym_DOLLAR_LBRACE] = ACTIONS(386), [anon_sym_DOLLAR_LPAREN] = ACTIONS(386), [anon_sym_BQUOTE] = ACTIONS(386), @@ -11096,7 +11197,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_expansion] = STATE(253), [sym_expansion] = STATE(253), [sym_command_substitution] = STATE(253), - [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_DQUOTE] = ACTIONS(916), [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(406), [anon_sym_DOLLAR] = ACTIONS(134), [anon_sym_DOLLAR_LBRACE] = ACTIONS(136), @@ -11105,42 +11206,42 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(142), }, [278] = { - [sym_string] = STATE(501), - [sym_simple_expansion] = STATE(501), - [sym_expansion] = STATE(501), - [sym_command_substitution] = STATE(501), - [sym_process_substitution] = STATE(501), + [sym_string] = STATE(508), + [sym_simple_expansion] = STATE(508), + [sym_expansion] = STATE(508), + [sym_command_substitution] = STATE(508), + [sym_process_substitution] = STATE(508), [anon_sym_DQUOTE] = ACTIONS(182), - [sym_raw_string] = ACTIONS(904), + [sym_raw_string] = ACTIONS(918), [anon_sym_DOLLAR] = ACTIONS(186), [anon_sym_DOLLAR_LBRACE] = ACTIONS(188), [anon_sym_DOLLAR_LPAREN] = ACTIONS(190), [anon_sym_BQUOTE] = ACTIONS(192), [anon_sym_LT_LPAREN] = ACTIONS(194), [anon_sym_GT_LPAREN] = ACTIONS(194), - [sym_word] = ACTIONS(906), + [sym_word] = ACTIONS(920), [sym_comment] = ACTIONS(52), }, [279] = { [sym_file_descriptor] = ACTIONS(412), - [sym__concat] = ACTIONS(908), - [anon_sym_PIPE] = ACTIONS(704), + [sym__concat] = ACTIONS(922), + [anon_sym_PIPE] = ACTIONS(718), [anon_sym_RPAREN] = ACTIONS(412), [anon_sym_PIPE_AMP] = ACTIONS(412), [anon_sym_AMP_AMP] = ACTIONS(412), - [anon_sym_PIPE_PIPE] = ACTIONS(704), - [anon_sym_LT] = ACTIONS(704), - [anon_sym_GT] = ACTIONS(704), + [anon_sym_PIPE_PIPE] = ACTIONS(718), + [anon_sym_LT] = ACTIONS(718), + [anon_sym_GT] = ACTIONS(718), [anon_sym_GT_GT] = ACTIONS(412), - [anon_sym_AMP_GT] = ACTIONS(704), + [anon_sym_AMP_GT] = ACTIONS(718), [anon_sym_AMP_GT_GT] = ACTIONS(412), [anon_sym_LT_AMP] = ACTIONS(412), [anon_sym_GT_AMP] = ACTIONS(412), - [anon_sym_LT_LT] = ACTIONS(704), + [anon_sym_LT_LT] = ACTIONS(718), [anon_sym_LT_LT_DASH] = ACTIONS(412), [anon_sym_DQUOTE] = ACTIONS(412), [sym_raw_string] = ACTIONS(412), - [anon_sym_DOLLAR] = ACTIONS(704), + [anon_sym_DOLLAR] = ACTIONS(718), [anon_sym_DOLLAR_LBRACE] = ACTIONS(412), [anon_sym_DOLLAR_LPAREN] = ACTIONS(412), [anon_sym_BQUOTE] = ACTIONS(412), @@ -11180,23 +11281,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [281] = { [sym_file_descriptor] = ACTIONS(422), [sym__concat] = ACTIONS(422), - [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_PIPE] = ACTIONS(720), [anon_sym_RPAREN] = ACTIONS(422), [anon_sym_PIPE_AMP] = ACTIONS(422), [anon_sym_AMP_AMP] = ACTIONS(422), - [anon_sym_PIPE_PIPE] = ACTIONS(706), - [anon_sym_LT] = ACTIONS(706), - [anon_sym_GT] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(720), + [anon_sym_LT] = ACTIONS(720), + [anon_sym_GT] = ACTIONS(720), [anon_sym_GT_GT] = ACTIONS(422), - [anon_sym_AMP_GT] = ACTIONS(706), + [anon_sym_AMP_GT] = ACTIONS(720), [anon_sym_AMP_GT_GT] = ACTIONS(422), [anon_sym_LT_AMP] = ACTIONS(422), [anon_sym_GT_AMP] = ACTIONS(422), - [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(720), [anon_sym_LT_LT_DASH] = ACTIONS(422), [anon_sym_DQUOTE] = ACTIONS(422), [sym_raw_string] = ACTIONS(422), - [anon_sym_DOLLAR] = ACTIONS(706), + [anon_sym_DOLLAR] = ACTIONS(720), [anon_sym_DOLLAR_LBRACE] = ACTIONS(422), [anon_sym_DOLLAR_LPAREN] = ACTIONS(422), [anon_sym_BQUOTE] = ACTIONS(422), @@ -11208,23 +11309,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [282] = { [sym_file_descriptor] = ACTIONS(426), [sym__concat] = ACTIONS(426), - [anon_sym_PIPE] = ACTIONS(708), + [anon_sym_PIPE] = ACTIONS(722), [anon_sym_RPAREN] = ACTIONS(426), [anon_sym_PIPE_AMP] = ACTIONS(426), [anon_sym_AMP_AMP] = ACTIONS(426), - [anon_sym_PIPE_PIPE] = ACTIONS(708), - [anon_sym_LT] = ACTIONS(708), - [anon_sym_GT] = ACTIONS(708), + [anon_sym_PIPE_PIPE] = ACTIONS(722), + [anon_sym_LT] = ACTIONS(722), + [anon_sym_GT] = ACTIONS(722), [anon_sym_GT_GT] = ACTIONS(426), - [anon_sym_AMP_GT] = ACTIONS(708), + [anon_sym_AMP_GT] = ACTIONS(722), [anon_sym_AMP_GT_GT] = ACTIONS(426), [anon_sym_LT_AMP] = ACTIONS(426), [anon_sym_GT_AMP] = ACTIONS(426), - [anon_sym_LT_LT] = ACTIONS(708), + [anon_sym_LT_LT] = ACTIONS(722), [anon_sym_LT_LT_DASH] = ACTIONS(426), [anon_sym_DQUOTE] = ACTIONS(426), [sym_raw_string] = ACTIONS(426), - [anon_sym_DOLLAR] = ACTIONS(708), + [anon_sym_DOLLAR] = ACTIONS(722), [anon_sym_DOLLAR_LBRACE] = ACTIONS(426), [anon_sym_DOLLAR_LPAREN] = ACTIONS(426), [anon_sym_BQUOTE] = ACTIONS(426), @@ -11234,7 +11335,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(52), }, [283] = { - [sym_special_variable_name] = STATE(504), + [sym_special_variable_name] = STATE(511), [anon_sym_RBRACE] = ACTIONS(418), [anon_sym_LBRACK] = ACTIONS(418), [anon_sym_EQ] = ACTIONS(418), @@ -11247,7 +11348,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(418), [anon_sym_SLASH] = ACTIONS(418), [sym_comment] = ACTIONS(142), - [sym_simple_variable_name] = ACTIONS(910), + [sym_simple_variable_name] = ACTIONS(924), [anon_sym_STAR] = ACTIONS(156), [anon_sym_QMARK] = ACTIONS(156), [anon_sym_DASH] = ACTIONS(156), @@ -11256,30 +11357,30 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(162), }, [284] = { - [anon_sym_RBRACE] = ACTIONS(912), - [anon_sym_LBRACK] = ACTIONS(914), - [anon_sym_EQ] = ACTIONS(916), - [anon_sym_COLON] = ACTIONS(918), - [anon_sym_COLON_QMARK] = ACTIONS(916), - [anon_sym_COLON_DASH] = ACTIONS(916), - [anon_sym_PERCENT] = ACTIONS(916), - [anon_sym_SLASH] = ACTIONS(916), + [anon_sym_RBRACE] = ACTIONS(926), + [anon_sym_LBRACK] = ACTIONS(928), + [anon_sym_EQ] = ACTIONS(930), + [anon_sym_COLON] = ACTIONS(932), + [anon_sym_COLON_QMARK] = ACTIONS(930), + [anon_sym_COLON_DASH] = ACTIONS(930), + [anon_sym_PERCENT] = ACTIONS(930), + [anon_sym_SLASH] = ACTIONS(930), [sym_comment] = ACTIONS(52), }, [285] = { - [anon_sym_RBRACE] = ACTIONS(920), - [anon_sym_LBRACK] = ACTIONS(922), - [anon_sym_EQ] = ACTIONS(924), - [anon_sym_COLON] = ACTIONS(926), - [anon_sym_COLON_QMARK] = ACTIONS(924), - [anon_sym_COLON_DASH] = ACTIONS(924), - [anon_sym_PERCENT] = ACTIONS(924), - [anon_sym_SLASH] = ACTIONS(924), + [anon_sym_RBRACE] = ACTIONS(934), + [anon_sym_LBRACK] = ACTIONS(936), + [anon_sym_EQ] = ACTIONS(938), + [anon_sym_COLON] = ACTIONS(940), + [anon_sym_COLON_QMARK] = ACTIONS(938), + [anon_sym_COLON_DASH] = ACTIONS(938), + [anon_sym_PERCENT] = ACTIONS(938), + [anon_sym_SLASH] = ACTIONS(938), [sym_comment] = ACTIONS(52), }, [286] = { [anon_sym_PIPE] = ACTIONS(480), - [anon_sym_RPAREN] = ACTIONS(928), + [anon_sym_RPAREN] = ACTIONS(942), [anon_sym_PIPE_AMP] = ACTIONS(484), [anon_sym_AMP_AMP] = ACTIONS(486), [anon_sym_PIPE_PIPE] = ACTIONS(486), @@ -11289,7 +11390,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(238), [sym_variable_name] = ACTIONS(238), [anon_sym_PIPE] = ACTIONS(480), - [anon_sym_RPAREN] = ACTIONS(928), + [anon_sym_RPAREN] = ACTIONS(942), [anon_sym_PIPE_AMP] = ACTIONS(484), [anon_sym_AMP_AMP] = ACTIONS(486), [anon_sym_PIPE_PIPE] = ACTIONS(506), @@ -11316,7 +11417,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_AMP] = ACTIONS(512), [anon_sym_AMP_AMP] = ACTIONS(514), [anon_sym_PIPE_PIPE] = ACTIONS(514), - [anon_sym_BQUOTE] = ACTIONS(928), + [anon_sym_BQUOTE] = ACTIONS(942), [sym_comment] = ACTIONS(52), }, [289] = { @@ -11338,7 +11439,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(242), [anon_sym_DOLLAR_LBRACE] = ACTIONS(238), [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(928), + [anon_sym_BQUOTE] = ACTIONS(942), [anon_sym_LT_LPAREN] = ACTIONS(238), [anon_sym_GT_LPAREN] = ACTIONS(238), [sym_word] = ACTIONS(240), @@ -11346,7 +11447,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [290] = { [anon_sym_PIPE] = ACTIONS(480), - [anon_sym_RPAREN] = ACTIONS(930), + [anon_sym_RPAREN] = ACTIONS(944), [anon_sym_PIPE_AMP] = ACTIONS(484), [anon_sym_AMP_AMP] = ACTIONS(486), [anon_sym_PIPE_PIPE] = ACTIONS(486), @@ -11356,7 +11457,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(238), [sym_variable_name] = ACTIONS(238), [anon_sym_PIPE] = ACTIONS(480), - [anon_sym_RPAREN] = ACTIONS(930), + [anon_sym_RPAREN] = ACTIONS(944), [anon_sym_PIPE_AMP] = ACTIONS(484), [anon_sym_AMP_AMP] = ACTIONS(486), [anon_sym_PIPE_PIPE] = ACTIONS(506), @@ -11379,7 +11480,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(52), }, [292] = { - [anon_sym_RPAREN] = ACTIONS(932), + [anon_sym_RPAREN] = ACTIONS(946), [sym_comment] = ACTIONS(52), }, [293] = { @@ -11404,7 +11505,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(14), [sym_command_substitution] = STATE(14), [sym_process_substitution] = STATE(14), - [aux_sym_program_repeat1] = STATE(515), + [aux_sym_program_repeat1] = STATE(522), [aux_sym_command_repeat1] = STATE(30), [sym_file_descriptor] = ACTIONS(10), [sym_variable_name] = ACTIONS(12), @@ -11414,7 +11515,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(934), + [anon_sym_RBRACE] = ACTIONS(948), [anon_sym_LBRACK] = ACTIONS(28), [anon_sym_LBRACK_LBRACK] = ACTIONS(30), [anon_sym_LT] = ACTIONS(32), @@ -11436,36 +11537,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(52), }, [294] = { - [sym_file_redirect] = STATE(518), - [sym_file_descriptor] = ACTIONS(936), - [anon_sym_PIPE] = ACTIONS(938), - [anon_sym_RPAREN] = ACTIONS(940), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(940), - [anon_sym_PIPE_PIPE] = ACTIONS(940), - [anon_sym_LT] = ACTIONS(942), - [anon_sym_GT] = ACTIONS(942), - [anon_sym_GT_GT] = ACTIONS(944), - [anon_sym_AMP_GT] = ACTIONS(942), - [anon_sym_AMP_GT_GT] = ACTIONS(944), - [anon_sym_LT_AMP] = ACTIONS(944), - [anon_sym_GT_AMP] = ACTIONS(944), - [anon_sym_BQUOTE] = ACTIONS(940), + [sym_file_redirect] = STATE(525), + [sym_file_descriptor] = ACTIONS(950), + [anon_sym_PIPE] = ACTIONS(952), + [anon_sym_RPAREN] = ACTIONS(954), + [anon_sym_PIPE_AMP] = ACTIONS(954), + [anon_sym_AMP_AMP] = ACTIONS(954), + [anon_sym_PIPE_PIPE] = ACTIONS(954), + [anon_sym_LT] = ACTIONS(956), + [anon_sym_GT] = ACTIONS(956), + [anon_sym_GT_GT] = ACTIONS(958), + [anon_sym_AMP_GT] = ACTIONS(956), + [anon_sym_AMP_GT_GT] = ACTIONS(958), + [anon_sym_LT_AMP] = ACTIONS(958), + [anon_sym_GT_AMP] = ACTIONS(958), + [anon_sym_BQUOTE] = ACTIONS(954), [sym_comment] = ACTIONS(52), }, [295] = { - [sym_for_statement] = STATE(519), - [sym_while_statement] = STATE(519), - [sym_if_statement] = STATE(519), - [sym_case_statement] = STATE(519), - [sym_function_definition] = STATE(519), - [sym_subshell] = STATE(519), - [sym_pipeline] = STATE(519), - [sym_list] = STATE(519), - [sym_bracket_command] = STATE(519), - [sym_command] = STATE(519), + [sym_for_statement] = STATE(526), + [sym_while_statement] = STATE(526), + [sym_if_statement] = STATE(526), + [sym_case_statement] = STATE(526), + [sym_function_definition] = STATE(526), + [sym_subshell] = STATE(526), + [sym_pipeline] = STATE(526), + [sym_list] = STATE(526), + [sym_bracket_command] = STATE(526), + [sym_command] = STATE(526), [sym_command_name] = STATE(111), - [sym_environment_variable_assignment] = STATE(520), + [sym_environment_variable_assignment] = STATE(527), [sym_subscript] = STATE(113), [sym_file_redirect] = STATE(27), [sym_concatenation] = STATE(114), @@ -11504,50 +11605,50 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(52), }, [296] = { - [sym_file_descriptor] = ACTIONS(946), - [sym__concat] = ACTIONS(946), - [anon_sym_PIPE] = ACTIONS(948), - [anon_sym_RPAREN] = ACTIONS(948), - [anon_sym_SEMI_SEMI] = ACTIONS(948), - [anon_sym_PIPE_AMP] = ACTIONS(948), - [anon_sym_AMP_AMP] = ACTIONS(948), - [anon_sym_PIPE_PIPE] = ACTIONS(948), - [anon_sym_LT] = ACTIONS(948), - [anon_sym_GT] = ACTIONS(948), - [anon_sym_GT_GT] = ACTIONS(948), - [anon_sym_AMP_GT] = ACTIONS(948), - [anon_sym_AMP_GT_GT] = ACTIONS(948), - [anon_sym_LT_AMP] = ACTIONS(948), - [anon_sym_GT_AMP] = ACTIONS(948), - [anon_sym_LT_LT] = ACTIONS(948), - [anon_sym_LT_LT_DASH] = ACTIONS(948), - [anon_sym_DQUOTE] = ACTIONS(948), - [sym_raw_string] = ACTIONS(948), - [anon_sym_DOLLAR] = ACTIONS(948), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(948), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(948), - [anon_sym_BQUOTE] = ACTIONS(948), - [anon_sym_LT_LPAREN] = ACTIONS(948), - [anon_sym_GT_LPAREN] = ACTIONS(948), - [sym_word] = ACTIONS(948), + [sym_file_descriptor] = ACTIONS(960), + [sym__concat] = ACTIONS(960), + [anon_sym_PIPE] = ACTIONS(962), + [anon_sym_RPAREN] = ACTIONS(962), + [anon_sym_SEMI_SEMI] = ACTIONS(962), + [anon_sym_PIPE_AMP] = ACTIONS(962), + [anon_sym_AMP_AMP] = ACTIONS(962), + [anon_sym_PIPE_PIPE] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(962), + [anon_sym_GT] = ACTIONS(962), + [anon_sym_GT_GT] = ACTIONS(962), + [anon_sym_AMP_GT] = ACTIONS(962), + [anon_sym_AMP_GT_GT] = ACTIONS(962), + [anon_sym_LT_AMP] = ACTIONS(962), + [anon_sym_GT_AMP] = ACTIONS(962), + [anon_sym_LT_LT] = ACTIONS(962), + [anon_sym_LT_LT_DASH] = ACTIONS(962), + [anon_sym_DQUOTE] = ACTIONS(962), + [sym_raw_string] = ACTIONS(962), + [anon_sym_DOLLAR] = ACTIONS(962), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(962), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(962), + [anon_sym_BQUOTE] = ACTIONS(962), + [anon_sym_LT_LPAREN] = ACTIONS(962), + [anon_sym_GT_LPAREN] = ACTIONS(962), + [sym_word] = ACTIONS(962), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(948), - [anon_sym_LF] = ACTIONS(948), - [anon_sym_AMP] = ACTIONS(948), + [anon_sym_SEMI] = ACTIONS(962), + [anon_sym_LF] = ACTIONS(962), + [anon_sym_AMP] = ACTIONS(962), }, [297] = { - [sym_for_statement] = STATE(521), - [sym_while_statement] = STATE(521), - [sym_if_statement] = STATE(521), - [sym_case_statement] = STATE(521), - [sym_function_definition] = STATE(521), - [sym_subshell] = STATE(521), - [sym_pipeline] = STATE(521), - [sym_list] = STATE(521), - [sym_bracket_command] = STATE(521), - [sym_command] = STATE(521), + [sym_for_statement] = STATE(528), + [sym_while_statement] = STATE(528), + [sym_if_statement] = STATE(528), + [sym_case_statement] = STATE(528), + [sym_function_definition] = STATE(528), + [sym_subshell] = STATE(528), + [sym_pipeline] = STATE(528), + [sym_list] = STATE(528), + [sym_bracket_command] = STATE(528), + [sym_command] = STATE(528), [sym_command_name] = STATE(111), - [sym_environment_variable_assignment] = STATE(522), + [sym_environment_variable_assignment] = STATE(529), [sym_subscript] = STATE(113), [sym_file_redirect] = STATE(27), [sym_concatenation] = STATE(114), @@ -11586,37 +11687,37 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(52), }, [298] = { - [anon_sym_LT] = ACTIONS(950), - [anon_sym_GT] = ACTIONS(950), - [anon_sym_GT_GT] = ACTIONS(952), - [anon_sym_AMP_GT] = ACTIONS(950), - [anon_sym_AMP_GT_GT] = ACTIONS(952), - [anon_sym_LT_AMP] = ACTIONS(952), - [anon_sym_GT_AMP] = ACTIONS(952), + [anon_sym_LT] = ACTIONS(964), + [anon_sym_GT] = ACTIONS(964), + [anon_sym_GT_GT] = ACTIONS(966), + [anon_sym_AMP_GT] = ACTIONS(964), + [anon_sym_AMP_GT_GT] = ACTIONS(966), + [anon_sym_LT_AMP] = ACTIONS(966), + [anon_sym_GT_AMP] = ACTIONS(966), [sym_comment] = ACTIONS(52), }, [299] = { - [sym_concatenation] = STATE(531), - [sym_string] = STATE(525), - [sym_simple_expansion] = STATE(525), - [sym_expansion] = STATE(525), - [sym_command_substitution] = STATE(525), - [sym_process_substitution] = STATE(525), - [anon_sym_DQUOTE] = ACTIONS(954), - [sym_raw_string] = ACTIONS(956), - [anon_sym_DOLLAR] = ACTIONS(958), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(960), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(962), - [anon_sym_BQUOTE] = ACTIONS(964), - [anon_sym_LT_LPAREN] = ACTIONS(966), - [anon_sym_GT_LPAREN] = ACTIONS(966), - [sym_word] = ACTIONS(968), + [sym_concatenation] = STATE(538), + [sym_string] = STATE(532), + [sym_simple_expansion] = STATE(532), + [sym_expansion] = STATE(532), + [sym_command_substitution] = STATE(532), + [sym_process_substitution] = STATE(532), + [anon_sym_DQUOTE] = ACTIONS(968), + [sym_raw_string] = ACTIONS(970), + [anon_sym_DOLLAR] = ACTIONS(972), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(974), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(976), + [anon_sym_BQUOTE] = ACTIONS(978), + [anon_sym_LT_LPAREN] = ACTIONS(980), + [anon_sym_GT_LPAREN] = ACTIONS(980), + [sym_word] = ACTIONS(982), [sym_comment] = ACTIONS(52), }, [300] = { - [sym_heredoc] = STATE(534), - [sym__simple_heredoc] = ACTIONS(970), - [sym__heredoc_beginning] = ACTIONS(972), + [sym_heredoc] = STATE(541), + [sym__simple_heredoc] = ACTIONS(984), + [sym__heredoc_beginning] = ACTIONS(986), [sym_comment] = ACTIONS(52), }, [301] = { @@ -11650,19 +11751,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [302] = { [sym_file_descriptor] = ACTIONS(560), - [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_PIPE] = ACTIONS(988), [anon_sym_RPAREN] = ACTIONS(560), [anon_sym_PIPE_AMP] = ACTIONS(560), [anon_sym_AMP_AMP] = ACTIONS(560), [anon_sym_PIPE_PIPE] = ACTIONS(560), - [anon_sym_LT] = ACTIONS(974), - [anon_sym_GT] = ACTIONS(974), + [anon_sym_LT] = ACTIONS(988), + [anon_sym_GT] = ACTIONS(988), [anon_sym_GT_GT] = ACTIONS(560), - [anon_sym_AMP_GT] = ACTIONS(974), + [anon_sym_AMP_GT] = ACTIONS(988), [anon_sym_AMP_GT_GT] = ACTIONS(560), [anon_sym_LT_AMP] = ACTIONS(560), [anon_sym_GT_AMP] = ACTIONS(560), - [anon_sym_LT_LT] = ACTIONS(974), + [anon_sym_LT_LT] = ACTIONS(988), [anon_sym_LT_LT_DASH] = ACTIONS(560), [anon_sym_BQUOTE] = ACTIONS(560), [sym_comment] = ACTIONS(52), @@ -11697,19 +11798,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [304] = { [sym_file_redirect] = STATE(302), [sym_heredoc_redirect] = STATE(302), - [sym_concatenation] = STATE(536), - [sym_string] = STATE(535), - [sym_simple_expansion] = STATE(535), - [sym_expansion] = STATE(535), - [sym_command_substitution] = STATE(535), - [sym_process_substitution] = STATE(535), - [aux_sym_command_repeat2] = STATE(537), + [sym_concatenation] = STATE(543), + [sym_string] = STATE(542), + [sym_simple_expansion] = STATE(542), + [sym_expansion] = STATE(542), + [sym_command_substitution] = STATE(542), + [sym_process_substitution] = STATE(542), + [aux_sym_command_repeat2] = STATE(544), [sym_file_descriptor] = ACTIONS(488), - [anon_sym_PIPE] = ACTIONS(976), - [anon_sym_RPAREN] = ACTIONS(978), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(976), + [anon_sym_PIPE] = ACTIONS(990), + [anon_sym_RPAREN] = ACTIONS(992), + [anon_sym_PIPE_AMP] = ACTIONS(992), + [anon_sym_AMP_AMP] = ACTIONS(992), + [anon_sym_PIPE_PIPE] = ACTIONS(990), [anon_sym_LT] = ACTIONS(494), [anon_sym_GT] = ACTIONS(494), [anon_sym_GT_GT] = ACTIONS(496), @@ -11720,25 +11821,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(498), [anon_sym_LT_LT_DASH] = ACTIONS(500), [anon_sym_DQUOTE] = ACTIONS(182), - [sym_raw_string] = ACTIONS(980), + [sym_raw_string] = ACTIONS(994), [anon_sym_DOLLAR] = ACTIONS(186), [anon_sym_DOLLAR_LBRACE] = ACTIONS(188), [anon_sym_DOLLAR_LPAREN] = ACTIONS(190), [anon_sym_BQUOTE] = ACTIONS(192), [anon_sym_LT_LPAREN] = ACTIONS(194), [anon_sym_GT_LPAREN] = ACTIONS(194), - [sym_word] = ACTIONS(982), + [sym_word] = ACTIONS(996), [sym_comment] = ACTIONS(52), }, [305] = { - [sym_file_redirect] = STATE(538), - [sym_heredoc_redirect] = STATE(538), + [sym_file_redirect] = STATE(545), + [sym_heredoc_redirect] = STATE(545), [sym_file_descriptor] = ACTIONS(488), - [anon_sym_PIPE] = ACTIONS(976), - [anon_sym_RPAREN] = ACTIONS(978), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_PIPE] = ACTIONS(990), + [anon_sym_RPAREN] = ACTIONS(992), + [anon_sym_PIPE_AMP] = ACTIONS(992), + [anon_sym_AMP_AMP] = ACTIONS(992), + [anon_sym_PIPE_PIPE] = ACTIONS(992), [anon_sym_LT] = ACTIONS(494), [anon_sym_GT] = ACTIONS(494), [anon_sym_GT_GT] = ACTIONS(496), @@ -11748,7 +11849,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_AMP] = ACTIONS(496), [anon_sym_LT_LT] = ACTIONS(498), [anon_sym_LT_LT_DASH] = ACTIONS(500), - [anon_sym_BQUOTE] = ACTIONS(978), + [anon_sym_BQUOTE] = ACTIONS(992), [sym_comment] = ACTIONS(52), }, [306] = { @@ -11760,14 +11861,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(301), [sym_command_substitution] = STATE(301), [sym_process_substitution] = STATE(301), - [aux_sym_for_statement_repeat1] = STATE(539), - [aux_sym_command_repeat2] = STATE(537), + [aux_sym_for_statement_repeat1] = STATE(546), + [aux_sym_command_repeat2] = STATE(544), [sym_file_descriptor] = ACTIONS(488), - [anon_sym_PIPE] = ACTIONS(976), - [anon_sym_RPAREN] = ACTIONS(978), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(976), + [anon_sym_PIPE] = ACTIONS(990), + [anon_sym_RPAREN] = ACTIONS(992), + [anon_sym_PIPE_AMP] = ACTIONS(992), + [anon_sym_AMP_AMP] = ACTIONS(992), + [anon_sym_PIPE_PIPE] = ACTIONS(990), [anon_sym_LT] = ACTIONS(494), [anon_sym_GT] = ACTIONS(494), [anon_sym_GT_GT] = ACTIONS(496), @@ -11789,18 +11890,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(52), }, [307] = { - [sym_for_statement] = STATE(519), - [sym_while_statement] = STATE(519), - [sym_if_statement] = STATE(519), - [sym_case_statement] = STATE(519), - [sym_function_definition] = STATE(519), - [sym_subshell] = STATE(519), - [sym_pipeline] = STATE(519), - [sym_list] = STATE(519), - [sym_bracket_command] = STATE(519), - [sym_command] = STATE(519), + [sym_for_statement] = STATE(526), + [sym_while_statement] = STATE(526), + [sym_if_statement] = STATE(526), + [sym_case_statement] = STATE(526), + [sym_function_definition] = STATE(526), + [sym_subshell] = STATE(526), + [sym_pipeline] = STATE(526), + [sym_list] = STATE(526), + [sym_bracket_command] = STATE(526), + [sym_command] = STATE(526), [sym_command_name] = STATE(117), - [sym_environment_variable_assignment] = STATE(540), + [sym_environment_variable_assignment] = STATE(547), [sym_subscript] = STATE(113), [sym_file_redirect] = STATE(27), [sym_concatenation] = STATE(114), @@ -11839,18 +11940,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(52), }, [308] = { - [sym_for_statement] = STATE(541), - [sym_while_statement] = STATE(541), - [sym_if_statement] = STATE(541), - [sym_case_statement] = STATE(541), - [sym_function_definition] = STATE(541), - [sym_subshell] = STATE(541), - [sym_pipeline] = STATE(541), - [sym_list] = STATE(541), - [sym_bracket_command] = STATE(541), - [sym_command] = STATE(541), + [sym_for_statement] = STATE(548), + [sym_while_statement] = STATE(548), + [sym_if_statement] = STATE(548), + [sym_case_statement] = STATE(548), + [sym_function_definition] = STATE(548), + [sym_subshell] = STATE(548), + [sym_pipeline] = STATE(548), + [sym_list] = STATE(548), + [sym_bracket_command] = STATE(548), + [sym_command] = STATE(548), [sym_command_name] = STATE(117), - [sym_environment_variable_assignment] = STATE(542), + [sym_environment_variable_assignment] = STATE(549), [sym_subscript] = STATE(113), [sym_file_redirect] = STATE(27), [sym_concatenation] = STATE(114), @@ -11891,18 +11992,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [309] = { [sym_file_redirect] = STATE(302), [sym_heredoc_redirect] = STATE(302), - [sym_concatenation] = STATE(536), - [sym_string] = STATE(535), - [sym_simple_expansion] = STATE(535), - [sym_expansion] = STATE(535), - [sym_command_substitution] = STATE(535), - [sym_process_substitution] = STATE(535), - [aux_sym_command_repeat2] = STATE(537), + [sym_concatenation] = STATE(543), + [sym_string] = STATE(542), + [sym_simple_expansion] = STATE(542), + [sym_expansion] = STATE(542), + [sym_command_substitution] = STATE(542), + [sym_process_substitution] = STATE(542), + [aux_sym_command_repeat2] = STATE(544), [sym_file_descriptor] = ACTIONS(488), - [anon_sym_PIPE] = ACTIONS(976), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(976), + [anon_sym_PIPE] = ACTIONS(990), + [anon_sym_PIPE_AMP] = ACTIONS(992), + [anon_sym_AMP_AMP] = ACTIONS(992), + [anon_sym_PIPE_PIPE] = ACTIONS(990), [anon_sym_LT] = ACTIONS(494), [anon_sym_GT] = ACTIONS(494), [anon_sym_GT_GT] = ACTIONS(496), @@ -11913,14 +12014,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(498), [anon_sym_LT_LT_DASH] = ACTIONS(500), [anon_sym_DQUOTE] = ACTIONS(182), - [sym_raw_string] = ACTIONS(980), + [sym_raw_string] = ACTIONS(994), [anon_sym_DOLLAR] = ACTIONS(186), [anon_sym_DOLLAR_LBRACE] = ACTIONS(188), [anon_sym_DOLLAR_LPAREN] = ACTIONS(190), - [anon_sym_BQUOTE] = ACTIONS(978), + [anon_sym_BQUOTE] = ACTIONS(992), [anon_sym_LT_LPAREN] = ACTIONS(194), [anon_sym_GT_LPAREN] = ACTIONS(194), - [sym_word] = ACTIONS(982), + [sym_word] = ACTIONS(996), [sym_comment] = ACTIONS(52), }, [310] = { @@ -11932,13 +12033,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(301), [sym_command_substitution] = STATE(301), [sym_process_substitution] = STATE(301), - [aux_sym_for_statement_repeat1] = STATE(543), - [aux_sym_command_repeat2] = STATE(537), + [aux_sym_for_statement_repeat1] = STATE(550), + [aux_sym_command_repeat2] = STATE(544), [sym_file_descriptor] = ACTIONS(488), - [anon_sym_PIPE] = ACTIONS(976), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(976), + [anon_sym_PIPE] = ACTIONS(990), + [anon_sym_PIPE_AMP] = ACTIONS(992), + [anon_sym_AMP_AMP] = ACTIONS(992), + [anon_sym_PIPE_PIPE] = ACTIONS(990), [anon_sym_LT] = ACTIONS(494), [anon_sym_GT] = ACTIONS(494), [anon_sym_GT_GT] = ACTIONS(496), @@ -11953,68 +12054,68 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(186), [anon_sym_DOLLAR_LBRACE] = ACTIONS(188), [anon_sym_DOLLAR_LPAREN] = ACTIONS(190), - [anon_sym_BQUOTE] = ACTIONS(978), + [anon_sym_BQUOTE] = ACTIONS(992), [anon_sym_LT_LPAREN] = ACTIONS(194), [anon_sym_GT_LPAREN] = ACTIONS(194), [sym_word] = ACTIONS(504), [sym_comment] = ACTIONS(52), }, [311] = { - [sym_file_descriptor] = ACTIONS(984), - [sym__concat] = ACTIONS(984), - [anon_sym_PIPE] = ACTIONS(986), - [anon_sym_RPAREN] = ACTIONS(986), - [anon_sym_SEMI_SEMI] = ACTIONS(986), - [anon_sym_PIPE_AMP] = ACTIONS(986), - [anon_sym_AMP_AMP] = ACTIONS(986), - [anon_sym_PIPE_PIPE] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(986), - [anon_sym_GT] = ACTIONS(986), - [anon_sym_GT_GT] = ACTIONS(986), - [anon_sym_AMP_GT] = ACTIONS(986), - [anon_sym_AMP_GT_GT] = ACTIONS(986), - [anon_sym_LT_AMP] = ACTIONS(986), - [anon_sym_GT_AMP] = ACTIONS(986), - [anon_sym_LT_LT] = ACTIONS(986), - [anon_sym_LT_LT_DASH] = ACTIONS(986), - [anon_sym_DQUOTE] = ACTIONS(986), - [sym_raw_string] = ACTIONS(986), - [anon_sym_DOLLAR] = ACTIONS(986), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(986), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(986), - [anon_sym_BQUOTE] = ACTIONS(986), - [anon_sym_LT_LPAREN] = ACTIONS(986), - [anon_sym_GT_LPAREN] = ACTIONS(986), - [sym_word] = ACTIONS(986), + [sym_file_descriptor] = ACTIONS(998), + [sym__concat] = ACTIONS(998), + [anon_sym_PIPE] = ACTIONS(1000), + [anon_sym_RPAREN] = ACTIONS(1000), + [anon_sym_SEMI_SEMI] = ACTIONS(1000), + [anon_sym_PIPE_AMP] = ACTIONS(1000), + [anon_sym_AMP_AMP] = ACTIONS(1000), + [anon_sym_PIPE_PIPE] = ACTIONS(1000), + [anon_sym_LT] = ACTIONS(1000), + [anon_sym_GT] = ACTIONS(1000), + [anon_sym_GT_GT] = ACTIONS(1000), + [anon_sym_AMP_GT] = ACTIONS(1000), + [anon_sym_AMP_GT_GT] = ACTIONS(1000), + [anon_sym_LT_AMP] = ACTIONS(1000), + [anon_sym_GT_AMP] = ACTIONS(1000), + [anon_sym_LT_LT] = ACTIONS(1000), + [anon_sym_LT_LT_DASH] = ACTIONS(1000), + [anon_sym_DQUOTE] = ACTIONS(1000), + [sym_raw_string] = ACTIONS(1000), + [anon_sym_DOLLAR] = ACTIONS(1000), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1000), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1000), + [anon_sym_BQUOTE] = ACTIONS(1000), + [anon_sym_LT_LPAREN] = ACTIONS(1000), + [anon_sym_GT_LPAREN] = ACTIONS(1000), + [sym_word] = ACTIONS(1000), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(986), - [anon_sym_LF] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), + [anon_sym_SEMI] = ACTIONS(1000), + [anon_sym_LF] = ACTIONS(1000), + [anon_sym_AMP] = ACTIONS(1000), }, [312] = { - [sym_compound_statement] = STATE(544), + [sym_compound_statement] = STATE(551), [anon_sym_LBRACE] = ACTIONS(318), [sym_comment] = ACTIONS(52), }, [313] = { - [sym_file_descriptor] = ACTIONS(988), - [anon_sym_PIPE] = ACTIONS(990), - [anon_sym_RPAREN] = ACTIONS(990), - [anon_sym_SEMI_SEMI] = ACTIONS(990), - [anon_sym_PIPE_AMP] = ACTIONS(990), - [anon_sym_AMP_AMP] = ACTIONS(990), - [anon_sym_PIPE_PIPE] = ACTIONS(990), - [anon_sym_LT] = ACTIONS(990), - [anon_sym_GT] = ACTIONS(990), - [anon_sym_GT_GT] = ACTIONS(990), - [anon_sym_AMP_GT] = ACTIONS(990), - [anon_sym_AMP_GT_GT] = ACTIONS(990), - [anon_sym_LT_AMP] = ACTIONS(990), - [anon_sym_GT_AMP] = ACTIONS(990), + [sym_file_descriptor] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1004), + [anon_sym_RPAREN] = ACTIONS(1004), + [anon_sym_SEMI_SEMI] = ACTIONS(1004), + [anon_sym_PIPE_AMP] = ACTIONS(1004), + [anon_sym_AMP_AMP] = ACTIONS(1004), + [anon_sym_PIPE_PIPE] = ACTIONS(1004), + [anon_sym_LT] = ACTIONS(1004), + [anon_sym_GT] = ACTIONS(1004), + [anon_sym_GT_GT] = ACTIONS(1004), + [anon_sym_AMP_GT] = ACTIONS(1004), + [anon_sym_AMP_GT_GT] = ACTIONS(1004), + [anon_sym_LT_AMP] = ACTIONS(1004), + [anon_sym_GT_AMP] = ACTIONS(1004), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(990), - [anon_sym_LF] = ACTIONS(990), - [anon_sym_AMP] = ACTIONS(990), + [anon_sym_SEMI] = ACTIONS(1004), + [anon_sym_LF] = ACTIONS(1004), + [anon_sym_AMP] = ACTIONS(1004), }, [314] = { [sym__terminated_statement] = STATE(136), @@ -12047,7 +12148,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(992), + [anon_sym_RBRACE] = ACTIONS(1006), [anon_sym_LBRACK] = ACTIONS(28), [anon_sym_LBRACK_LBRACK] = ACTIONS(30), [anon_sym_LT] = ACTIONS(32), @@ -12069,153 +12170,153 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(52), }, [315] = { - [anon_sym_LT] = ACTIONS(994), - [anon_sym_GT] = ACTIONS(994), - [anon_sym_GT_GT] = ACTIONS(996), - [anon_sym_AMP_GT] = ACTIONS(994), - [anon_sym_AMP_GT_GT] = ACTIONS(996), - [anon_sym_LT_AMP] = ACTIONS(996), - [anon_sym_GT_AMP] = ACTIONS(996), + [anon_sym_LT] = ACTIONS(1008), + [anon_sym_GT] = ACTIONS(1008), + [anon_sym_GT_GT] = ACTIONS(1010), + [anon_sym_AMP_GT] = ACTIONS(1008), + [anon_sym_AMP_GT_GT] = ACTIONS(1010), + [anon_sym_LT_AMP] = ACTIONS(1010), + [anon_sym_GT_AMP] = ACTIONS(1010), [sym_comment] = ACTIONS(52), }, [316] = { - [sym_concatenation] = STATE(554), - [sym_string] = STATE(548), - [sym_simple_expansion] = STATE(548), - [sym_expansion] = STATE(548), - [sym_command_substitution] = STATE(548), - [sym_process_substitution] = STATE(548), - [anon_sym_DQUOTE] = ACTIONS(998), - [sym_raw_string] = ACTIONS(1000), - [anon_sym_DOLLAR] = ACTIONS(1002), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1004), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1006), - [anon_sym_BQUOTE] = ACTIONS(1008), - [anon_sym_LT_LPAREN] = ACTIONS(1010), - [anon_sym_GT_LPAREN] = ACTIONS(1010), - [sym_word] = ACTIONS(1012), - [sym_comment] = ACTIONS(52), - }, - [317] = { - [anon_sym_PIPE] = ACTIONS(684), - [anon_sym_RPAREN] = ACTIONS(684), - [anon_sym_SEMI_SEMI] = ACTIONS(684), - [anon_sym_PIPE_AMP] = ACTIONS(684), - [anon_sym_AMP_AMP] = ACTIONS(684), - [anon_sym_PIPE_PIPE] = ACTIONS(684), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(684), - [anon_sym_LF] = ACTIONS(684), - [anon_sym_AMP] = ACTIONS(684), - }, - [318] = { - [anon_sym_PIPE] = ACTIONS(1014), - [anon_sym_RPAREN] = ACTIONS(1014), - [anon_sym_SEMI_SEMI] = ACTIONS(1014), - [anon_sym_PIPE_AMP] = ACTIONS(1014), - [anon_sym_AMP_AMP] = ACTIONS(1014), - [anon_sym_PIPE_PIPE] = ACTIONS(1014), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1014), - [anon_sym_LF] = ACTIONS(1014), - [anon_sym_AMP] = ACTIONS(1014), - }, - [319] = { - [sym_file_descriptor] = ACTIONS(238), - [sym_variable_name] = ACTIONS(238), - [anon_sym_PIPE] = ACTIONS(1014), - [anon_sym_RPAREN] = ACTIONS(1014), - [anon_sym_SEMI_SEMI] = ACTIONS(1014), - [anon_sym_PIPE_AMP] = ACTIONS(1014), - [anon_sym_AMP_AMP] = ACTIONS(1014), - [anon_sym_PIPE_PIPE] = ACTIONS(1014), - [anon_sym_LT] = ACTIONS(240), - [anon_sym_GT] = ACTIONS(240), - [anon_sym_GT_GT] = ACTIONS(240), - [anon_sym_AMP_GT] = ACTIONS(240), - [anon_sym_AMP_GT_GT] = ACTIONS(240), - [anon_sym_LT_AMP] = ACTIONS(240), - [anon_sym_GT_AMP] = ACTIONS(240), - [anon_sym_DQUOTE] = ACTIONS(240), - [sym_raw_string] = ACTIONS(240), - [anon_sym_DOLLAR] = ACTIONS(240), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(240), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(240), - [anon_sym_BQUOTE] = ACTIONS(240), - [anon_sym_LT_LPAREN] = ACTIONS(240), - [anon_sym_GT_LPAREN] = ACTIONS(240), - [sym_word] = ACTIONS(240), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1014), - [anon_sym_LF] = ACTIONS(1014), - [anon_sym_AMP] = ACTIONS(1014), - }, - [320] = { - [anon_sym_PIPE] = ACTIONS(210), - [anon_sym_RPAREN] = ACTIONS(1016), - [anon_sym_SEMI_SEMI] = ACTIONS(1016), - [anon_sym_PIPE_AMP] = ACTIONS(210), - [anon_sym_AMP_AMP] = ACTIONS(1016), - [anon_sym_PIPE_PIPE] = ACTIONS(1016), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1016), - [anon_sym_LF] = ACTIONS(1016), - [anon_sym_AMP] = ACTIONS(1016), - }, - [321] = { - [sym_file_descriptor] = ACTIONS(238), - [sym_variable_name] = ACTIONS(238), - [anon_sym_PIPE] = ACTIONS(210), - [anon_sym_RPAREN] = ACTIONS(1016), - [anon_sym_SEMI_SEMI] = ACTIONS(1016), - [anon_sym_PIPE_AMP] = ACTIONS(210), - [anon_sym_AMP_AMP] = ACTIONS(1016), - [anon_sym_PIPE_PIPE] = ACTIONS(1016), - [anon_sym_LT] = ACTIONS(240), - [anon_sym_GT] = ACTIONS(240), - [anon_sym_GT_GT] = ACTIONS(240), - [anon_sym_AMP_GT] = ACTIONS(240), - [anon_sym_AMP_GT_GT] = ACTIONS(240), - [anon_sym_LT_AMP] = ACTIONS(240), - [anon_sym_GT_AMP] = ACTIONS(240), - [anon_sym_DQUOTE] = ACTIONS(240), - [sym_raw_string] = ACTIONS(240), - [anon_sym_DOLLAR] = ACTIONS(240), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(240), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(240), - [anon_sym_BQUOTE] = ACTIONS(240), - [anon_sym_LT_LPAREN] = ACTIONS(240), - [anon_sym_GT_LPAREN] = ACTIONS(240), - [sym_word] = ACTIONS(240), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1016), - [anon_sym_LF] = ACTIONS(1016), - [anon_sym_AMP] = ACTIONS(1016), - }, - [322] = { - [sym_concatenation] = STATE(556), + [sym_concatenation] = STATE(561), [sym_string] = STATE(555), [sym_simple_expansion] = STATE(555), [sym_expansion] = STATE(555), [sym_command_substitution] = STATE(555), [sym_process_substitution] = STATE(555), + [anon_sym_DQUOTE] = ACTIONS(1012), + [sym_raw_string] = ACTIONS(1014), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1018), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1020), + [anon_sym_BQUOTE] = ACTIONS(1022), + [anon_sym_LT_LPAREN] = ACTIONS(1024), + [anon_sym_GT_LPAREN] = ACTIONS(1024), + [sym_word] = ACTIONS(1026), + [sym_comment] = ACTIONS(52), + }, + [317] = { + [anon_sym_PIPE] = ACTIONS(698), + [anon_sym_RPAREN] = ACTIONS(698), + [anon_sym_SEMI_SEMI] = ACTIONS(698), + [anon_sym_PIPE_AMP] = ACTIONS(698), + [anon_sym_AMP_AMP] = ACTIONS(698), + [anon_sym_PIPE_PIPE] = ACTIONS(698), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(698), + [anon_sym_LF] = ACTIONS(698), + [anon_sym_AMP] = ACTIONS(698), + }, + [318] = { + [anon_sym_PIPE] = ACTIONS(1028), + [anon_sym_RPAREN] = ACTIONS(1028), + [anon_sym_SEMI_SEMI] = ACTIONS(1028), + [anon_sym_PIPE_AMP] = ACTIONS(1028), + [anon_sym_AMP_AMP] = ACTIONS(1028), + [anon_sym_PIPE_PIPE] = ACTIONS(1028), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(1028), + [anon_sym_LF] = ACTIONS(1028), + [anon_sym_AMP] = ACTIONS(1028), + }, + [319] = { + [sym_file_descriptor] = ACTIONS(238), + [sym_variable_name] = ACTIONS(238), + [anon_sym_PIPE] = ACTIONS(1028), + [anon_sym_RPAREN] = ACTIONS(1028), + [anon_sym_SEMI_SEMI] = ACTIONS(1028), + [anon_sym_PIPE_AMP] = ACTIONS(1028), + [anon_sym_AMP_AMP] = ACTIONS(1028), + [anon_sym_PIPE_PIPE] = ACTIONS(1028), + [anon_sym_LT] = ACTIONS(240), + [anon_sym_GT] = ACTIONS(240), + [anon_sym_GT_GT] = ACTIONS(240), + [anon_sym_AMP_GT] = ACTIONS(240), + [anon_sym_AMP_GT_GT] = ACTIONS(240), + [anon_sym_LT_AMP] = ACTIONS(240), + [anon_sym_GT_AMP] = ACTIONS(240), + [anon_sym_DQUOTE] = ACTIONS(240), + [sym_raw_string] = ACTIONS(240), + [anon_sym_DOLLAR] = ACTIONS(240), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(240), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(240), + [anon_sym_BQUOTE] = ACTIONS(240), + [anon_sym_LT_LPAREN] = ACTIONS(240), + [anon_sym_GT_LPAREN] = ACTIONS(240), + [sym_word] = ACTIONS(240), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(1028), + [anon_sym_LF] = ACTIONS(1028), + [anon_sym_AMP] = ACTIONS(1028), + }, + [320] = { + [anon_sym_PIPE] = ACTIONS(210), + [anon_sym_RPAREN] = ACTIONS(1030), + [anon_sym_SEMI_SEMI] = ACTIONS(1030), + [anon_sym_PIPE_AMP] = ACTIONS(210), + [anon_sym_AMP_AMP] = ACTIONS(1030), + [anon_sym_PIPE_PIPE] = ACTIONS(1030), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(1030), + [anon_sym_LF] = ACTIONS(1030), + [anon_sym_AMP] = ACTIONS(1030), + }, + [321] = { + [sym_file_descriptor] = ACTIONS(238), + [sym_variable_name] = ACTIONS(238), + [anon_sym_PIPE] = ACTIONS(210), + [anon_sym_RPAREN] = ACTIONS(1030), + [anon_sym_SEMI_SEMI] = ACTIONS(1030), + [anon_sym_PIPE_AMP] = ACTIONS(210), + [anon_sym_AMP_AMP] = ACTIONS(1030), + [anon_sym_PIPE_PIPE] = ACTIONS(1030), + [anon_sym_LT] = ACTIONS(240), + [anon_sym_GT] = ACTIONS(240), + [anon_sym_GT_GT] = ACTIONS(240), + [anon_sym_AMP_GT] = ACTIONS(240), + [anon_sym_AMP_GT_GT] = ACTIONS(240), + [anon_sym_LT_AMP] = ACTIONS(240), + [anon_sym_GT_AMP] = ACTIONS(240), + [anon_sym_DQUOTE] = ACTIONS(240), + [sym_raw_string] = ACTIONS(240), + [anon_sym_DOLLAR] = ACTIONS(240), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(240), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(240), + [anon_sym_BQUOTE] = ACTIONS(240), + [anon_sym_LT_LPAREN] = ACTIONS(240), + [anon_sym_GT_LPAREN] = ACTIONS(240), + [sym_word] = ACTIONS(240), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(1030), + [anon_sym_LF] = ACTIONS(1030), + [anon_sym_AMP] = ACTIONS(1030), + }, + [322] = { + [sym_concatenation] = STATE(563), + [sym_string] = STATE(562), + [sym_simple_expansion] = STATE(562), + [sym_expansion] = STATE(562), + [sym_command_substitution] = STATE(562), + [sym_process_substitution] = STATE(562), [anon_sym_DQUOTE] = ACTIONS(540), - [sym_raw_string] = ACTIONS(1018), + [sym_raw_string] = ACTIONS(1032), [anon_sym_DOLLAR] = ACTIONS(544), [anon_sym_DOLLAR_LBRACE] = ACTIONS(546), [anon_sym_DOLLAR_LPAREN] = ACTIONS(548), [anon_sym_BQUOTE] = ACTIONS(550), [anon_sym_LT_LPAREN] = ACTIONS(552), [anon_sym_GT_LPAREN] = ACTIONS(552), - [sym_word] = ACTIONS(1020), + [sym_word] = ACTIONS(1034), [sym_comment] = ACTIONS(52), }, [323] = { [sym_simple_expansion] = STATE(78), [sym_expansion] = STATE(78), [sym_command_substitution] = STATE(78), - [aux_sym_string_repeat1] = STATE(558), - [anon_sym_DQUOTE] = ACTIONS(1022), + [aux_sym_string_repeat1] = STATE(565), + [anon_sym_DQUOTE] = ACTIONS(1036), [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(132), [anon_sym_DOLLAR] = ACTIONS(134), [anon_sym_DOLLAR_LBRACE] = ACTIONS(136), @@ -12224,50 +12325,50 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(142), }, [324] = { - [aux_sym_concatenation_repeat1] = STATE(560), + [aux_sym_concatenation_repeat1] = STATE(567), [sym_file_descriptor] = ACTIONS(370), - [sym__concat] = ACTIONS(1024), - [anon_sym_PIPE] = ACTIONS(1026), - [anon_sym_RPAREN] = ACTIONS(1026), - [anon_sym_SEMI_SEMI] = ACTIONS(1026), - [anon_sym_PIPE_AMP] = ACTIONS(1026), - [anon_sym_AMP_AMP] = ACTIONS(1026), - [anon_sym_PIPE_PIPE] = ACTIONS(1026), - [anon_sym_LT] = ACTIONS(1026), - [anon_sym_GT] = ACTIONS(1026), - [anon_sym_GT_GT] = ACTIONS(1026), - [anon_sym_AMP_GT] = ACTIONS(1026), - [anon_sym_AMP_GT_GT] = ACTIONS(1026), - [anon_sym_LT_AMP] = ACTIONS(1026), - [anon_sym_GT_AMP] = ACTIONS(1026), - [anon_sym_LT_LT] = ACTIONS(1026), - [anon_sym_LT_LT_DASH] = ACTIONS(1026), + [sym__concat] = ACTIONS(1038), + [anon_sym_PIPE] = ACTIONS(1040), + [anon_sym_RPAREN] = ACTIONS(1040), + [anon_sym_SEMI_SEMI] = ACTIONS(1040), + [anon_sym_PIPE_AMP] = ACTIONS(1040), + [anon_sym_AMP_AMP] = ACTIONS(1040), + [anon_sym_PIPE_PIPE] = ACTIONS(1040), + [anon_sym_LT] = ACTIONS(1040), + [anon_sym_GT] = ACTIONS(1040), + [anon_sym_GT_GT] = ACTIONS(1040), + [anon_sym_AMP_GT] = ACTIONS(1040), + [anon_sym_AMP_GT_GT] = ACTIONS(1040), + [anon_sym_LT_AMP] = ACTIONS(1040), + [anon_sym_GT_AMP] = ACTIONS(1040), + [anon_sym_LT_LT] = ACTIONS(1040), + [anon_sym_LT_LT_DASH] = ACTIONS(1040), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1026), - [anon_sym_LF] = ACTIONS(1026), - [anon_sym_AMP] = ACTIONS(1026), + [anon_sym_SEMI] = ACTIONS(1040), + [anon_sym_LF] = ACTIONS(1040), + [anon_sym_AMP] = ACTIONS(1040), }, [325] = { - [sym_special_variable_name] = STATE(563), - [anon_sym_DOLLAR] = ACTIONS(1028), - [anon_sym_POUND] = ACTIONS(1028), - [anon_sym_AT] = ACTIONS(1028), + [sym_special_variable_name] = STATE(570), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_POUND] = ACTIONS(1042), + [anon_sym_AT] = ACTIONS(1042), [sym_comment] = ACTIONS(142), - [sym_simple_variable_name] = ACTIONS(1030), - [anon_sym_STAR] = ACTIONS(1028), - [anon_sym_QMARK] = ACTIONS(1028), - [anon_sym_DASH] = ACTIONS(1028), - [anon_sym_BANG] = ACTIONS(1028), - [anon_sym_0] = ACTIONS(1032), - [anon_sym__] = ACTIONS(1032), + [sym_simple_variable_name] = ACTIONS(1044), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_QMARK] = ACTIONS(1042), + [anon_sym_DASH] = ACTIONS(1042), + [anon_sym_BANG] = ACTIONS(1042), + [anon_sym_0] = ACTIONS(1046), + [anon_sym__] = ACTIONS(1046), }, [326] = { - [sym_special_variable_name] = STATE(566), + [sym_special_variable_name] = STATE(573), [anon_sym_DOLLAR] = ACTIONS(156), - [anon_sym_POUND] = ACTIONS(1034), + [anon_sym_POUND] = ACTIONS(1048), [anon_sym_AT] = ACTIONS(156), [sym_comment] = ACTIONS(142), - [sym_simple_variable_name] = ACTIONS(1036), + [sym_simple_variable_name] = ACTIONS(1050), [anon_sym_STAR] = ACTIONS(156), [anon_sym_QMARK] = ACTIONS(156), [anon_sym_DASH] = ACTIONS(156), @@ -12276,18 +12377,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(162), }, [327] = { - [sym_for_statement] = STATE(567), - [sym_while_statement] = STATE(567), - [sym_if_statement] = STATE(567), - [sym_case_statement] = STATE(567), - [sym_function_definition] = STATE(567), - [sym_subshell] = STATE(567), - [sym_pipeline] = STATE(567), - [sym_list] = STATE(567), - [sym_bracket_command] = STATE(567), - [sym_command] = STATE(567), + [sym_for_statement] = STATE(574), + [sym_while_statement] = STATE(574), + [sym_if_statement] = STATE(574), + [sym_case_statement] = STATE(574), + [sym_function_definition] = STATE(574), + [sym_subshell] = STATE(574), + [sym_pipeline] = STATE(574), + [sym_list] = STATE(574), + [sym_bracket_command] = STATE(574), + [sym_command] = STATE(574), [sym_command_name] = STATE(111), - [sym_environment_variable_assignment] = STATE(568), + [sym_environment_variable_assignment] = STATE(575), [sym_subscript] = STATE(113), [sym_file_redirect] = STATE(27), [sym_concatenation] = STATE(114), @@ -12326,18 +12427,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(52), }, [328] = { - [sym_for_statement] = STATE(569), - [sym_while_statement] = STATE(569), - [sym_if_statement] = STATE(569), - [sym_case_statement] = STATE(569), - [sym_function_definition] = STATE(569), - [sym_subshell] = STATE(569), - [sym_pipeline] = STATE(569), - [sym_list] = STATE(569), - [sym_bracket_command] = STATE(569), - [sym_command] = STATE(569), + [sym_for_statement] = STATE(576), + [sym_while_statement] = STATE(576), + [sym_if_statement] = STATE(576), + [sym_case_statement] = STATE(576), + [sym_function_definition] = STATE(576), + [sym_subshell] = STATE(576), + [sym_pipeline] = STATE(576), + [sym_list] = STATE(576), + [sym_bracket_command] = STATE(576), + [sym_command] = STATE(576), [sym_command_name] = STATE(117), - [sym_environment_variable_assignment] = STATE(570), + [sym_environment_variable_assignment] = STATE(577), [sym_subscript] = STATE(113), [sym_file_redirect] = STATE(27), [sym_concatenation] = STATE(114), @@ -12376,18 +12477,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(52), }, [329] = { - [sym_for_statement] = STATE(571), - [sym_while_statement] = STATE(571), - [sym_if_statement] = STATE(571), - [sym_case_statement] = STATE(571), - [sym_function_definition] = STATE(571), - [sym_subshell] = STATE(571), - [sym_pipeline] = STATE(571), - [sym_list] = STATE(571), - [sym_bracket_command] = STATE(571), - [sym_command] = STATE(571), + [sym_for_statement] = STATE(578), + [sym_while_statement] = STATE(578), + [sym_if_statement] = STATE(578), + [sym_case_statement] = STATE(578), + [sym_function_definition] = STATE(578), + [sym_subshell] = STATE(578), + [sym_pipeline] = STATE(578), + [sym_list] = STATE(578), + [sym_bracket_command] = STATE(578), + [sym_command] = STATE(578), [sym_command_name] = STATE(111), - [sym_environment_variable_assignment] = STATE(572), + [sym_environment_variable_assignment] = STATE(579), [sym_subscript] = STATE(113), [sym_file_redirect] = STATE(27), [sym_concatenation] = STATE(114), @@ -12427,28 +12528,6 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [330] = { [sym_file_descriptor] = ACTIONS(370), - [anon_sym_PIPE] = ACTIONS(1026), - [anon_sym_RPAREN] = ACTIONS(1026), - [anon_sym_SEMI_SEMI] = ACTIONS(1026), - [anon_sym_PIPE_AMP] = ACTIONS(1026), - [anon_sym_AMP_AMP] = ACTIONS(1026), - [anon_sym_PIPE_PIPE] = ACTIONS(1026), - [anon_sym_LT] = ACTIONS(1026), - [anon_sym_GT] = ACTIONS(1026), - [anon_sym_GT_GT] = ACTIONS(1026), - [anon_sym_AMP_GT] = ACTIONS(1026), - [anon_sym_AMP_GT_GT] = ACTIONS(1026), - [anon_sym_LT_AMP] = ACTIONS(1026), - [anon_sym_GT_AMP] = ACTIONS(1026), - [anon_sym_LT_LT] = ACTIONS(1026), - [anon_sym_LT_LT_DASH] = ACTIONS(1026), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1026), - [anon_sym_LF] = ACTIONS(1026), - [anon_sym_AMP] = ACTIONS(1026), - }, - [331] = { - [sym_file_descriptor] = ACTIONS(1038), [anon_sym_PIPE] = ACTIONS(1040), [anon_sym_RPAREN] = ACTIONS(1040), [anon_sym_SEMI_SEMI] = ACTIONS(1040), @@ -12469,112 +12548,134 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(1040), [anon_sym_AMP] = ACTIONS(1040), }, - [332] = { - [sym_simple_expansion] = STATE(573), - [sym_expansion] = STATE(573), - [aux_sym_heredoc_repeat1] = STATE(577), - [sym__heredoc_middle] = ACTIONS(1042), - [sym__heredoc_end] = ACTIONS(1044), - [anon_sym_DOLLAR] = ACTIONS(1046), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1048), - [sym_comment] = ACTIONS(52), - }, - [333] = { - [sym_file_descriptor] = ACTIONS(1050), - [anon_sym_PIPE] = ACTIONS(1052), - [anon_sym_RPAREN] = ACTIONS(1052), - [anon_sym_SEMI_SEMI] = ACTIONS(1052), - [anon_sym_PIPE_AMP] = ACTIONS(1052), - [anon_sym_AMP_AMP] = ACTIONS(1052), - [anon_sym_PIPE_PIPE] = ACTIONS(1052), - [anon_sym_LT] = ACTIONS(1052), - [anon_sym_GT] = ACTIONS(1052), - [anon_sym_GT_GT] = ACTIONS(1052), - [anon_sym_AMP_GT] = ACTIONS(1052), - [anon_sym_AMP_GT_GT] = ACTIONS(1052), - [anon_sym_LT_AMP] = ACTIONS(1052), - [anon_sym_GT_AMP] = ACTIONS(1052), - [anon_sym_LT_LT] = ACTIONS(1052), - [anon_sym_LT_LT_DASH] = ACTIONS(1052), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1052), - [anon_sym_LF] = ACTIONS(1052), - [anon_sym_AMP] = ACTIONS(1052), - }, - [334] = { - [aux_sym_concatenation_repeat1] = STATE(85), - [sym_file_descriptor] = ACTIONS(736), - [sym__concat] = ACTIONS(146), - [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), - [anon_sym_LT] = ACTIONS(738), - [anon_sym_GT] = ACTIONS(738), - [anon_sym_GT_GT] = ACTIONS(738), - [anon_sym_AMP_GT] = ACTIONS(738), - [anon_sym_AMP_GT_GT] = ACTIONS(738), - [anon_sym_LT_AMP] = ACTIONS(738), - [anon_sym_GT_AMP] = ACTIONS(738), - [anon_sym_LT_LT] = ACTIONS(738), - [anon_sym_LT_LT_DASH] = ACTIONS(738), - [anon_sym_DQUOTE] = ACTIONS(738), - [sym_raw_string] = ACTIONS(738), - [anon_sym_DOLLAR] = 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_word] = ACTIONS(738), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(738), - [anon_sym_LF] = ACTIONS(738), - [anon_sym_AMP] = ACTIONS(738), - }, - [335] = { - [sym_file_descriptor] = ACTIONS(736), - [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), - [anon_sym_LT] = ACTIONS(738), - [anon_sym_GT] = ACTIONS(738), - [anon_sym_GT_GT] = ACTIONS(738), - [anon_sym_AMP_GT] = ACTIONS(738), - [anon_sym_AMP_GT_GT] = ACTIONS(738), - [anon_sym_LT_AMP] = ACTIONS(738), - [anon_sym_GT_AMP] = ACTIONS(738), - [anon_sym_LT_LT] = ACTIONS(738), - [anon_sym_LT_LT_DASH] = ACTIONS(738), - [anon_sym_DQUOTE] = ACTIONS(738), - [sym_raw_string] = ACTIONS(738), - [anon_sym_DOLLAR] = 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_word] = ACTIONS(738), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(738), - [anon_sym_LF] = ACTIONS(738), - [anon_sym_AMP] = ACTIONS(738), - }, - [336] = { - [sym_file_redirect] = STATE(337), - [sym_heredoc_redirect] = STATE(337), - [sym_file_descriptor] = ACTIONS(216), + [331] = { + [sym_file_descriptor] = ACTIONS(1052), [anon_sym_PIPE] = ACTIONS(1054), [anon_sym_RPAREN] = ACTIONS(1054), [anon_sym_SEMI_SEMI] = ACTIONS(1054), [anon_sym_PIPE_AMP] = ACTIONS(1054), [anon_sym_AMP_AMP] = ACTIONS(1054), [anon_sym_PIPE_PIPE] = ACTIONS(1054), + [anon_sym_LT] = ACTIONS(1054), + [anon_sym_GT] = ACTIONS(1054), + [anon_sym_GT_GT] = ACTIONS(1054), + [anon_sym_AMP_GT] = ACTIONS(1054), + [anon_sym_AMP_GT_GT] = ACTIONS(1054), + [anon_sym_LT_AMP] = ACTIONS(1054), + [anon_sym_GT_AMP] = ACTIONS(1054), + [anon_sym_LT_LT] = ACTIONS(1054), + [anon_sym_LT_LT_DASH] = ACTIONS(1054), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(1054), + [anon_sym_LF] = ACTIONS(1054), + [anon_sym_AMP] = ACTIONS(1054), + }, + [332] = { + [sym_simple_expansion] = STATE(580), + [sym_expansion] = STATE(580), + [aux_sym_heredoc_repeat1] = STATE(584), + [sym__heredoc_middle] = ACTIONS(1056), + [sym__heredoc_end] = ACTIONS(1058), + [anon_sym_DOLLAR] = ACTIONS(1060), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1062), + [sym_comment] = ACTIONS(52), + }, + [333] = { + [sym_file_descriptor] = ACTIONS(1064), + [anon_sym_PIPE] = ACTIONS(1066), + [anon_sym_RPAREN] = ACTIONS(1066), + [anon_sym_SEMI_SEMI] = ACTIONS(1066), + [anon_sym_PIPE_AMP] = ACTIONS(1066), + [anon_sym_AMP_AMP] = ACTIONS(1066), + [anon_sym_PIPE_PIPE] = ACTIONS(1066), + [anon_sym_LT] = ACTIONS(1066), + [anon_sym_GT] = ACTIONS(1066), + [anon_sym_GT_GT] = ACTIONS(1066), + [anon_sym_AMP_GT] = ACTIONS(1066), + [anon_sym_AMP_GT_GT] = ACTIONS(1066), + [anon_sym_LT_AMP] = ACTIONS(1066), + [anon_sym_GT_AMP] = ACTIONS(1066), + [anon_sym_LT_LT] = ACTIONS(1066), + [anon_sym_LT_LT_DASH] = ACTIONS(1066), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(1066), + [anon_sym_LF] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1066), + }, + [334] = { + [aux_sym_concatenation_repeat1] = STATE(85), + [sym_file_descriptor] = ACTIONS(750), + [sym__concat] = ACTIONS(146), + [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), + [anon_sym_LT] = ACTIONS(752), + [anon_sym_GT] = ACTIONS(752), + [anon_sym_GT_GT] = ACTIONS(752), + [anon_sym_AMP_GT] = ACTIONS(752), + [anon_sym_AMP_GT_GT] = ACTIONS(752), + [anon_sym_LT_AMP] = ACTIONS(752), + [anon_sym_GT_AMP] = ACTIONS(752), + [anon_sym_LT_LT] = ACTIONS(752), + [anon_sym_LT_LT_DASH] = ACTIONS(752), + [anon_sym_DQUOTE] = ACTIONS(752), + [sym_raw_string] = ACTIONS(752), + [anon_sym_DOLLAR] = ACTIONS(752), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(752), + [anon_sym_BQUOTE] = ACTIONS(752), + [anon_sym_LT_LPAREN] = ACTIONS(752), + [anon_sym_GT_LPAREN] = ACTIONS(752), + [sym_word] = ACTIONS(752), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(752), + [anon_sym_LF] = ACTIONS(752), + [anon_sym_AMP] = ACTIONS(752), + }, + [335] = { + [sym_file_descriptor] = ACTIONS(750), + [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), + [anon_sym_LT] = ACTIONS(752), + [anon_sym_GT] = ACTIONS(752), + [anon_sym_GT_GT] = ACTIONS(752), + [anon_sym_AMP_GT] = ACTIONS(752), + [anon_sym_AMP_GT_GT] = ACTIONS(752), + [anon_sym_LT_AMP] = ACTIONS(752), + [anon_sym_GT_AMP] = ACTIONS(752), + [anon_sym_LT_LT] = ACTIONS(752), + [anon_sym_LT_LT_DASH] = ACTIONS(752), + [anon_sym_DQUOTE] = ACTIONS(752), + [sym_raw_string] = ACTIONS(752), + [anon_sym_DOLLAR] = ACTIONS(752), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(752), + [anon_sym_BQUOTE] = ACTIONS(752), + [anon_sym_LT_LPAREN] = ACTIONS(752), + [anon_sym_GT_LPAREN] = ACTIONS(752), + [sym_word] = ACTIONS(752), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(752), + [anon_sym_LF] = ACTIONS(752), + [anon_sym_AMP] = ACTIONS(752), + }, + [336] = { + [sym_file_redirect] = STATE(337), + [sym_heredoc_redirect] = STATE(337), + [sym_file_descriptor] = ACTIONS(216), + [anon_sym_PIPE] = ACTIONS(1068), + [anon_sym_RPAREN] = ACTIONS(1068), + [anon_sym_SEMI_SEMI] = ACTIONS(1068), + [anon_sym_PIPE_AMP] = ACTIONS(1068), + [anon_sym_AMP_AMP] = ACTIONS(1068), + [anon_sym_PIPE_PIPE] = ACTIONS(1068), [anon_sym_LT] = ACTIONS(220), [anon_sym_GT] = ACTIONS(220), [anon_sym_GT_GT] = ACTIONS(220), @@ -12585,51 +12686,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(222), [anon_sym_LT_LT_DASH] = ACTIONS(222), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1054), - [anon_sym_LF] = ACTIONS(1054), - [anon_sym_AMP] = ACTIONS(1054), + [anon_sym_SEMI] = ACTIONS(1068), + [anon_sym_LF] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(1068), }, [337] = { - [sym_file_descriptor] = ACTIONS(1056), - [anon_sym_PIPE] = ACTIONS(1058), - [anon_sym_RPAREN] = ACTIONS(1058), - [anon_sym_SEMI_SEMI] = ACTIONS(1058), - [anon_sym_PIPE_AMP] = ACTIONS(1058), - [anon_sym_AMP_AMP] = ACTIONS(1058), - [anon_sym_PIPE_PIPE] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(1058), - [anon_sym_GT] = ACTIONS(1058), - [anon_sym_GT_GT] = ACTIONS(1058), - [anon_sym_AMP_GT] = ACTIONS(1058), - [anon_sym_AMP_GT_GT] = ACTIONS(1058), - [anon_sym_LT_AMP] = ACTIONS(1058), - [anon_sym_GT_AMP] = ACTIONS(1058), - [anon_sym_LT_LT] = ACTIONS(1058), - [anon_sym_LT_LT_DASH] = ACTIONS(1058), + [sym_file_descriptor] = ACTIONS(1070), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_RPAREN] = ACTIONS(1072), + [anon_sym_SEMI_SEMI] = ACTIONS(1072), + [anon_sym_PIPE_AMP] = ACTIONS(1072), + [anon_sym_AMP_AMP] = ACTIONS(1072), + [anon_sym_PIPE_PIPE] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(1072), + [anon_sym_GT] = ACTIONS(1072), + [anon_sym_GT_GT] = ACTIONS(1072), + [anon_sym_AMP_GT] = ACTIONS(1072), + [anon_sym_AMP_GT_GT] = ACTIONS(1072), + [anon_sym_LT_AMP] = ACTIONS(1072), + [anon_sym_GT_AMP] = ACTIONS(1072), + [anon_sym_LT_LT] = ACTIONS(1072), + [anon_sym_LT_LT_DASH] = ACTIONS(1072), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1058), - [anon_sym_LF] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1058), + [anon_sym_SEMI] = ACTIONS(1072), + [anon_sym_LF] = ACTIONS(1072), + [anon_sym_AMP] = ACTIONS(1072), }, [338] = { - [sym_concatenation] = STATE(578), - [sym_string] = STATE(580), - [sym_array] = STATE(578), - [sym_simple_expansion] = STATE(580), - [sym_expansion] = STATE(580), - [sym_command_substitution] = STATE(580), - [sym_process_substitution] = STATE(580), - [sym__empty_value] = ACTIONS(1060), - [anon_sym_LPAREN] = ACTIONS(1062), + [sym_concatenation] = STATE(585), + [sym_string] = STATE(587), + [sym_array] = STATE(585), + [sym_simple_expansion] = STATE(587), + [sym_expansion] = STATE(587), + [sym_command_substitution] = STATE(587), + [sym_process_substitution] = STATE(587), + [sym__empty_value] = ACTIONS(1074), + [anon_sym_LPAREN] = ACTIONS(1076), [anon_sym_DQUOTE] = ACTIONS(114), - [sym_raw_string] = ACTIONS(1064), + [sym_raw_string] = ACTIONS(1078), [anon_sym_DOLLAR] = ACTIONS(118), [anon_sym_DOLLAR_LBRACE] = ACTIONS(120), [anon_sym_DOLLAR_LPAREN] = ACTIONS(122), [anon_sym_BQUOTE] = ACTIONS(124), [anon_sym_LT_LPAREN] = ACTIONS(126), [anon_sym_GT_LPAREN] = ACTIONS(126), - [sym_word] = ACTIONS(1066), + [sym_word] = ACTIONS(1080), [sym_comment] = ACTIONS(52), }, [339] = { @@ -12641,14 +12742,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(334), [sym_command_substitution] = STATE(334), [sym_process_substitution] = STATE(334), - [aux_sym_command_repeat2] = STATE(581), + [aux_sym_command_repeat2] = STATE(588), [sym_file_descriptor] = ACTIONS(216), - [anon_sym_PIPE] = ACTIONS(1054), - [anon_sym_RPAREN] = ACTIONS(1054), - [anon_sym_SEMI_SEMI] = ACTIONS(1054), - [anon_sym_PIPE_AMP] = ACTIONS(1054), - [anon_sym_AMP_AMP] = ACTIONS(1054), - [anon_sym_PIPE_PIPE] = ACTIONS(1054), + [anon_sym_PIPE] = ACTIONS(1068), + [anon_sym_RPAREN] = ACTIONS(1068), + [anon_sym_SEMI_SEMI] = ACTIONS(1068), + [anon_sym_PIPE_AMP] = ACTIONS(1068), + [anon_sym_AMP_AMP] = ACTIONS(1068), + [anon_sym_PIPE_PIPE] = ACTIONS(1068), [anon_sym_LT] = ACTIONS(220), [anon_sym_GT] = ACTIONS(220), [anon_sym_GT_GT] = ACTIONS(220), @@ -12668,9 +12769,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_LPAREN] = ACTIONS(236), [sym_word] = ACTIONS(566), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1054), - [anon_sym_LF] = ACTIONS(1054), - [anon_sym_AMP] = ACTIONS(1054), + [anon_sym_SEMI] = ACTIONS(1068), + [anon_sym_LF] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(1068), }, [340] = { [sym__concat] = ACTIONS(386), @@ -12683,7 +12784,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_expansion] = STATE(253), [sym_expansion] = STATE(253), [sym_command_substitution] = STATE(253), - [anon_sym_DQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE] = ACTIONS(1082), [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(406), [anon_sym_DOLLAR] = ACTIONS(134), [anon_sym_DOLLAR_LBRACE] = ACTIONS(136), @@ -12692,28 +12793,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(142), }, [342] = { - [sym_string] = STATE(583), - [sym_simple_expansion] = STATE(583), - [sym_expansion] = STATE(583), - [sym_command_substitution] = STATE(583), - [sym_process_substitution] = STATE(583), + [sym_string] = STATE(590), + [sym_simple_expansion] = STATE(590), + [sym_expansion] = STATE(590), + [sym_command_substitution] = STATE(590), + [sym_process_substitution] = STATE(590), [anon_sym_DQUOTE] = ACTIONS(254), - [sym_raw_string] = ACTIONS(1070), + [sym_raw_string] = ACTIONS(1084), [anon_sym_DOLLAR] = ACTIONS(258), [anon_sym_DOLLAR_LBRACE] = ACTIONS(260), [anon_sym_DOLLAR_LPAREN] = ACTIONS(262), [anon_sym_BQUOTE] = ACTIONS(264), [anon_sym_LT_LPAREN] = ACTIONS(266), [anon_sym_GT_LPAREN] = ACTIONS(266), - [sym_word] = ACTIONS(1072), + [sym_word] = ACTIONS(1086), [sym_comment] = ACTIONS(52), }, [343] = { - [anon_sym_EQ] = ACTIONS(1074), + [anon_sym_EQ] = ACTIONS(1088), + [anon_sym_PLUS_EQ] = ACTIONS(1088), [sym_comment] = ACTIONS(52), }, [344] = { - [sym__concat] = ACTIONS(1076), + [sym__concat] = ACTIONS(1090), [anon_sym_PIPE] = ACTIONS(412), [anon_sym_RPAREN] = ACTIONS(412), [anon_sym_RBRACK] = ACTIONS(412), @@ -12741,7 +12843,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(52), }, [348] = { - [sym_special_variable_name] = STATE(586), + [sym_special_variable_name] = STATE(593), [anon_sym_RBRACE] = ACTIONS(418), [anon_sym_LBRACK] = ACTIONS(418), [anon_sym_EQ] = ACTIONS(418), @@ -12754,7 +12856,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(418), [anon_sym_SLASH] = ACTIONS(418), [sym_comment] = ACTIONS(142), - [sym_simple_variable_name] = ACTIONS(1078), + [sym_simple_variable_name] = ACTIONS(1092), [anon_sym_STAR] = ACTIONS(156), [anon_sym_QMARK] = ACTIONS(156), [anon_sym_DASH] = ACTIONS(156), @@ -12763,30 +12865,30 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(162), }, [349] = { - [anon_sym_RBRACE] = ACTIONS(1080), - [anon_sym_LBRACK] = ACTIONS(1082), - [anon_sym_EQ] = ACTIONS(1084), - [anon_sym_COLON] = ACTIONS(1086), - [anon_sym_COLON_QMARK] = ACTIONS(1084), - [anon_sym_COLON_DASH] = ACTIONS(1084), - [anon_sym_PERCENT] = ACTIONS(1084), - [anon_sym_SLASH] = ACTIONS(1084), + [anon_sym_RBRACE] = ACTIONS(1094), + [anon_sym_LBRACK] = ACTIONS(1096), + [anon_sym_EQ] = ACTIONS(1098), + [anon_sym_COLON] = ACTIONS(1100), + [anon_sym_COLON_QMARK] = ACTIONS(1098), + [anon_sym_COLON_DASH] = ACTIONS(1098), + [anon_sym_PERCENT] = ACTIONS(1098), + [anon_sym_SLASH] = ACTIONS(1098), [sym_comment] = ACTIONS(52), }, [350] = { - [anon_sym_RBRACE] = ACTIONS(1088), - [anon_sym_LBRACK] = ACTIONS(1090), - [anon_sym_EQ] = ACTIONS(1092), - [anon_sym_COLON] = ACTIONS(1094), - [anon_sym_COLON_QMARK] = ACTIONS(1092), - [anon_sym_COLON_DASH] = ACTIONS(1092), - [anon_sym_PERCENT] = ACTIONS(1092), - [anon_sym_SLASH] = ACTIONS(1092), + [anon_sym_RBRACE] = ACTIONS(1102), + [anon_sym_LBRACK] = ACTIONS(1104), + [anon_sym_EQ] = ACTIONS(1106), + [anon_sym_COLON] = ACTIONS(1108), + [anon_sym_COLON_QMARK] = ACTIONS(1106), + [anon_sym_COLON_DASH] = ACTIONS(1106), + [anon_sym_PERCENT] = ACTIONS(1106), + [anon_sym_SLASH] = ACTIONS(1106), [sym_comment] = ACTIONS(52), }, [351] = { [anon_sym_PIPE] = ACTIONS(480), - [anon_sym_RPAREN] = ACTIONS(1096), + [anon_sym_RPAREN] = ACTIONS(1110), [anon_sym_PIPE_AMP] = ACTIONS(484), [anon_sym_AMP_AMP] = ACTIONS(486), [anon_sym_PIPE_PIPE] = ACTIONS(486), @@ -12796,7 +12898,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(238), [sym_variable_name] = ACTIONS(238), [anon_sym_PIPE] = ACTIONS(480), - [anon_sym_RPAREN] = ACTIONS(1096), + [anon_sym_RPAREN] = ACTIONS(1110), [anon_sym_PIPE_AMP] = ACTIONS(484), [anon_sym_AMP_AMP] = ACTIONS(486), [anon_sym_PIPE_PIPE] = ACTIONS(506), @@ -12823,7 +12925,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_AMP] = ACTIONS(512), [anon_sym_AMP_AMP] = ACTIONS(514), [anon_sym_PIPE_PIPE] = ACTIONS(514), - [anon_sym_BQUOTE] = ACTIONS(1096), + [anon_sym_BQUOTE] = ACTIONS(1110), [sym_comment] = ACTIONS(52), }, [354] = { @@ -12845,7 +12947,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(242), [anon_sym_DOLLAR_LBRACE] = ACTIONS(238), [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(1096), + [anon_sym_BQUOTE] = ACTIONS(1110), [anon_sym_LT_LPAREN] = ACTIONS(238), [anon_sym_GT_LPAREN] = ACTIONS(238), [sym_word] = ACTIONS(240), @@ -12853,7 +12955,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [355] = { [anon_sym_PIPE] = ACTIONS(480), - [anon_sym_RPAREN] = ACTIONS(1098), + [anon_sym_RPAREN] = ACTIONS(1112), [anon_sym_PIPE_AMP] = ACTIONS(484), [anon_sym_AMP_AMP] = ACTIONS(486), [anon_sym_PIPE_PIPE] = ACTIONS(486), @@ -12863,7 +12965,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(238), [sym_variable_name] = ACTIONS(238), [anon_sym_PIPE] = ACTIONS(480), - [anon_sym_RPAREN] = ACTIONS(1098), + [anon_sym_RPAREN] = ACTIONS(1112), [anon_sym_PIPE_AMP] = ACTIONS(484), [anon_sym_AMP_AMP] = ACTIONS(486), [anon_sym_PIPE_PIPE] = ACTIONS(506), @@ -12886,380 +12988,41 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(52), }, [357] = { - [sym_file_descriptor] = ACTIONS(1100), - [sym_variable_name] = ACTIONS(1100), - [anon_sym_PIPE] = ACTIONS(1102), - [anon_sym_RPAREN] = ACTIONS(1102), - [anon_sym_SEMI_SEMI] = ACTIONS(1102), - [anon_sym_PIPE_AMP] = ACTIONS(1102), - [anon_sym_AMP_AMP] = ACTIONS(1102), - [anon_sym_PIPE_PIPE] = ACTIONS(1102), - [anon_sym_LT] = ACTIONS(1102), - [anon_sym_GT] = ACTIONS(1102), - [anon_sym_GT_GT] = ACTIONS(1102), - [anon_sym_AMP_GT] = ACTIONS(1102), - [anon_sym_AMP_GT_GT] = ACTIONS(1102), - [anon_sym_LT_AMP] = ACTIONS(1102), - [anon_sym_GT_AMP] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(1102), - [sym_raw_string] = ACTIONS(1102), - [anon_sym_DOLLAR] = ACTIONS(1102), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1102), - [anon_sym_BQUOTE] = ACTIONS(1102), - [anon_sym_LT_LPAREN] = ACTIONS(1102), - [anon_sym_GT_LPAREN] = ACTIONS(1102), - [sym_word] = ACTIONS(1102), + [sym_file_descriptor] = ACTIONS(1114), + [sym_variable_name] = ACTIONS(1114), + [anon_sym_PIPE] = ACTIONS(1116), + [anon_sym_RPAREN] = ACTIONS(1116), + [anon_sym_SEMI_SEMI] = ACTIONS(1116), + [anon_sym_PIPE_AMP] = ACTIONS(1116), + [anon_sym_AMP_AMP] = ACTIONS(1116), + [anon_sym_PIPE_PIPE] = ACTIONS(1116), + [anon_sym_LT] = ACTIONS(1116), + [anon_sym_GT] = ACTIONS(1116), + [anon_sym_GT_GT] = ACTIONS(1116), + [anon_sym_AMP_GT] = ACTIONS(1116), + [anon_sym_AMP_GT_GT] = ACTIONS(1116), + [anon_sym_LT_AMP] = ACTIONS(1116), + [anon_sym_GT_AMP] = ACTIONS(1116), + [anon_sym_DQUOTE] = ACTIONS(1116), + [sym_raw_string] = ACTIONS(1116), + [anon_sym_DOLLAR] = ACTIONS(1116), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1116), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1116), + [anon_sym_BQUOTE] = ACTIONS(1116), + [anon_sym_LT_LPAREN] = ACTIONS(1116), + [anon_sym_GT_LPAREN] = ACTIONS(1116), + [sym_word] = ACTIONS(1116), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1102), - [anon_sym_LF] = ACTIONS(1102), - [anon_sym_AMP] = ACTIONS(1102), + [anon_sym_SEMI] = ACTIONS(1116), + [anon_sym_LF] = ACTIONS(1116), + [anon_sym_AMP] = ACTIONS(1116), }, [358] = { - [anon_sym_RPAREN] = ACTIONS(1104), - [sym_word] = ACTIONS(1106), - [sym_comment] = ACTIONS(52), - }, - [359] = { - [anon_sym_RPAREN] = ACTIONS(1108), - [sym_word] = ACTIONS(1110), - [sym_comment] = ACTIONS(52), - }, - [360] = { - [sym_file_descriptor] = ACTIONS(386), - [sym__concat] = ACTIONS(386), - [sym_variable_name] = ACTIONS(386), - [anon_sym_PIPE] = ACTIONS(388), - [anon_sym_RPAREN] = ACTIONS(388), - [anon_sym_SEMI_SEMI] = ACTIONS(388), - [anon_sym_PIPE_AMP] = ACTIONS(388), - [anon_sym_AMP_AMP] = ACTIONS(388), - [anon_sym_PIPE_PIPE] = ACTIONS(388), - [anon_sym_LT] = ACTIONS(388), - [anon_sym_GT] = ACTIONS(388), - [anon_sym_GT_GT] = ACTIONS(388), - [anon_sym_AMP_GT] = ACTIONS(388), - [anon_sym_AMP_GT_GT] = ACTIONS(388), - [anon_sym_LT_AMP] = ACTIONS(388), - [anon_sym_GT_AMP] = ACTIONS(388), - [anon_sym_DQUOTE] = ACTIONS(388), - [sym_raw_string] = ACTIONS(388), - [anon_sym_DOLLAR] = ACTIONS(388), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(388), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(388), - [anon_sym_BQUOTE] = ACTIONS(388), - [anon_sym_LT_LPAREN] = ACTIONS(388), - [anon_sym_GT_LPAREN] = ACTIONS(388), - [sym_word] = ACTIONS(388), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(388), - [anon_sym_LF] = ACTIONS(388), - [anon_sym_AMP] = ACTIONS(388), - }, - [361] = { - [sym_simple_expansion] = STATE(253), - [sym_expansion] = STATE(253), - [sym_command_substitution] = STATE(253), - [anon_sym_DQUOTE] = ACTIONS(1112), - [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(406), - [anon_sym_DOLLAR] = ACTIONS(134), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(136), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(138), - [anon_sym_BQUOTE] = ACTIONS(140), - [sym_comment] = ACTIONS(142), - }, - [362] = { - [sym_string] = STATE(598), - [sym_simple_expansion] = STATE(598), - [sym_expansion] = STATE(598), - [sym_command_substitution] = STATE(598), - [sym_process_substitution] = STATE(598), - [anon_sym_DQUOTE] = ACTIONS(274), - [sym_raw_string] = ACTIONS(1114), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(280), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), - [anon_sym_BQUOTE] = ACTIONS(284), - [anon_sym_LT_LPAREN] = ACTIONS(286), - [anon_sym_GT_LPAREN] = ACTIONS(286), - [sym_word] = ACTIONS(1116), - [sym_comment] = ACTIONS(52), - }, - [363] = { - [sym_file_descriptor] = ACTIONS(412), - [sym__concat] = ACTIONS(1118), - [sym_variable_name] = ACTIONS(412), - [anon_sym_PIPE] = ACTIONS(416), - [anon_sym_RPAREN] = ACTIONS(416), - [anon_sym_SEMI_SEMI] = ACTIONS(416), - [anon_sym_PIPE_AMP] = ACTIONS(416), - [anon_sym_AMP_AMP] = ACTIONS(416), - [anon_sym_PIPE_PIPE] = ACTIONS(416), - [anon_sym_LT] = ACTIONS(416), - [anon_sym_GT] = ACTIONS(416), - [anon_sym_GT_GT] = ACTIONS(416), - [anon_sym_AMP_GT] = ACTIONS(416), - [anon_sym_AMP_GT_GT] = ACTIONS(416), - [anon_sym_LT_AMP] = ACTIONS(416), - [anon_sym_GT_AMP] = ACTIONS(416), - [anon_sym_DQUOTE] = ACTIONS(416), - [sym_raw_string] = ACTIONS(416), - [anon_sym_DOLLAR] = ACTIONS(416), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(416), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(416), - [anon_sym_BQUOTE] = ACTIONS(416), - [anon_sym_LT_LPAREN] = ACTIONS(416), - [anon_sym_GT_LPAREN] = ACTIONS(416), - [sym_word] = ACTIONS(416), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(416), - [anon_sym_LF] = ACTIONS(416), - [anon_sym_AMP] = ACTIONS(416), - }, - [364] = { - [sym_file_descriptor] = ACTIONS(418), - [sym__concat] = ACTIONS(418), - [sym_variable_name] = ACTIONS(418), - [anon_sym_PIPE] = ACTIONS(420), - [anon_sym_RPAREN] = ACTIONS(420), - [anon_sym_SEMI_SEMI] = ACTIONS(420), - [anon_sym_PIPE_AMP] = ACTIONS(420), - [anon_sym_AMP_AMP] = ACTIONS(420), - [anon_sym_PIPE_PIPE] = ACTIONS(420), - [anon_sym_LT] = ACTIONS(420), - [anon_sym_GT] = ACTIONS(420), - [anon_sym_GT_GT] = ACTIONS(420), - [anon_sym_AMP_GT] = ACTIONS(420), - [anon_sym_AMP_GT_GT] = ACTIONS(420), - [anon_sym_LT_AMP] = ACTIONS(420), - [anon_sym_GT_AMP] = ACTIONS(420), - [anon_sym_DQUOTE] = ACTIONS(420), - [sym_raw_string] = ACTIONS(420), - [anon_sym_DOLLAR] = ACTIONS(420), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(420), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(420), - [anon_sym_BQUOTE] = ACTIONS(420), - [anon_sym_LT_LPAREN] = ACTIONS(420), - [anon_sym_GT_LPAREN] = ACTIONS(420), - [sym_word] = ACTIONS(420), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(420), - [anon_sym_LF] = ACTIONS(420), - [anon_sym_AMP] = ACTIONS(420), - }, - [365] = { - [sym_file_descriptor] = ACTIONS(422), - [sym__concat] = ACTIONS(422), - [sym_variable_name] = ACTIONS(422), - [anon_sym_PIPE] = ACTIONS(424), - [anon_sym_RPAREN] = ACTIONS(424), - [anon_sym_SEMI_SEMI] = ACTIONS(424), - [anon_sym_PIPE_AMP] = ACTIONS(424), - [anon_sym_AMP_AMP] = ACTIONS(424), - [anon_sym_PIPE_PIPE] = ACTIONS(424), - [anon_sym_LT] = ACTIONS(424), - [anon_sym_GT] = ACTIONS(424), - [anon_sym_GT_GT] = ACTIONS(424), - [anon_sym_AMP_GT] = ACTIONS(424), - [anon_sym_AMP_GT_GT] = ACTIONS(424), - [anon_sym_LT_AMP] = ACTIONS(424), - [anon_sym_GT_AMP] = ACTIONS(424), - [anon_sym_DQUOTE] = ACTIONS(424), - [sym_raw_string] = ACTIONS(424), - [anon_sym_DOLLAR] = ACTIONS(424), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(424), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(424), - [anon_sym_BQUOTE] = ACTIONS(424), - [anon_sym_LT_LPAREN] = ACTIONS(424), - [anon_sym_GT_LPAREN] = ACTIONS(424), - [sym_word] = ACTIONS(424), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(424), - [anon_sym_LF] = ACTIONS(424), - [anon_sym_AMP] = ACTIONS(424), - }, - [366] = { - [sym_file_descriptor] = ACTIONS(426), - [sym__concat] = ACTIONS(426), - [sym_variable_name] = ACTIONS(426), - [anon_sym_PIPE] = ACTIONS(428), - [anon_sym_RPAREN] = ACTIONS(428), - [anon_sym_SEMI_SEMI] = ACTIONS(428), - [anon_sym_PIPE_AMP] = ACTIONS(428), - [anon_sym_AMP_AMP] = ACTIONS(428), - [anon_sym_PIPE_PIPE] = ACTIONS(428), - [anon_sym_LT] = ACTIONS(428), - [anon_sym_GT] = ACTIONS(428), - [anon_sym_GT_GT] = ACTIONS(428), - [anon_sym_AMP_GT] = ACTIONS(428), - [anon_sym_AMP_GT_GT] = ACTIONS(428), - [anon_sym_LT_AMP] = ACTIONS(428), - [anon_sym_GT_AMP] = ACTIONS(428), - [anon_sym_DQUOTE] = ACTIONS(428), - [sym_raw_string] = ACTIONS(428), - [anon_sym_DOLLAR] = ACTIONS(428), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(428), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(428), - [anon_sym_BQUOTE] = ACTIONS(428), - [anon_sym_LT_LPAREN] = ACTIONS(428), - [anon_sym_GT_LPAREN] = ACTIONS(428), - [sym_word] = ACTIONS(428), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(428), - [anon_sym_LF] = ACTIONS(428), - [anon_sym_AMP] = ACTIONS(428), - }, - [367] = { - [sym_special_variable_name] = STATE(601), - [anon_sym_RBRACE] = ACTIONS(418), - [anon_sym_LBRACK] = ACTIONS(418), - [anon_sym_EQ] = ACTIONS(418), - [anon_sym_DOLLAR] = ACTIONS(156), - [anon_sym_POUND] = ACTIONS(156), - [anon_sym_AT] = ACTIONS(156), - [anon_sym_COLON] = ACTIONS(430), - [anon_sym_COLON_QMARK] = ACTIONS(418), - [anon_sym_COLON_DASH] = ACTIONS(418), - [anon_sym_PERCENT] = ACTIONS(418), - [anon_sym_SLASH] = ACTIONS(418), - [sym_comment] = ACTIONS(142), - [sym_simple_variable_name] = ACTIONS(1120), - [anon_sym_STAR] = ACTIONS(156), - [anon_sym_QMARK] = ACTIONS(156), - [anon_sym_DASH] = ACTIONS(156), - [anon_sym_BANG] = ACTIONS(156), - [anon_sym_0] = ACTIONS(162), - [anon_sym__] = ACTIONS(162), - }, - [368] = { - [anon_sym_RBRACE] = ACTIONS(1122), - [anon_sym_LBRACK] = ACTIONS(1124), - [anon_sym_EQ] = ACTIONS(1126), - [anon_sym_COLON] = ACTIONS(1128), - [anon_sym_COLON_QMARK] = ACTIONS(1126), - [anon_sym_COLON_DASH] = ACTIONS(1126), - [anon_sym_PERCENT] = ACTIONS(1126), - [anon_sym_SLASH] = ACTIONS(1126), - [sym_comment] = ACTIONS(52), - }, - [369] = { - [anon_sym_RBRACE] = ACTIONS(1130), - [anon_sym_LBRACK] = ACTIONS(1132), - [anon_sym_EQ] = ACTIONS(1134), - [anon_sym_COLON] = ACTIONS(1136), - [anon_sym_COLON_QMARK] = ACTIONS(1134), - [anon_sym_COLON_DASH] = ACTIONS(1134), - [anon_sym_PERCENT] = ACTIONS(1134), - [anon_sym_SLASH] = ACTIONS(1134), - [sym_comment] = ACTIONS(52), - }, - [370] = { - [anon_sym_PIPE] = ACTIONS(480), - [anon_sym_RPAREN] = ACTIONS(1138), - [anon_sym_PIPE_AMP] = ACTIONS(484), - [anon_sym_AMP_AMP] = ACTIONS(486), - [anon_sym_PIPE_PIPE] = ACTIONS(486), - [sym_comment] = ACTIONS(52), - }, - [371] = { - [sym_file_descriptor] = ACTIONS(238), - [sym_variable_name] = ACTIONS(238), - [anon_sym_PIPE] = ACTIONS(480), - [anon_sym_RPAREN] = ACTIONS(1138), - [anon_sym_PIPE_AMP] = ACTIONS(484), - [anon_sym_AMP_AMP] = ACTIONS(486), - [anon_sym_PIPE_PIPE] = ACTIONS(506), - [anon_sym_LT] = ACTIONS(242), - [anon_sym_GT] = ACTIONS(242), - [anon_sym_GT_GT] = ACTIONS(238), - [anon_sym_AMP_GT] = ACTIONS(242), - [anon_sym_AMP_GT_GT] = ACTIONS(238), - [anon_sym_LT_AMP] = ACTIONS(238), - [anon_sym_GT_AMP] = ACTIONS(238), - [anon_sym_DQUOTE] = ACTIONS(238), - [sym_raw_string] = ACTIONS(238), - [anon_sym_DOLLAR] = ACTIONS(242), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(238), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(238), - [anon_sym_LT_LPAREN] = ACTIONS(238), - [anon_sym_GT_LPAREN] = ACTIONS(238), - [sym_word] = ACTIONS(240), - [sym_comment] = ACTIONS(52), - }, - [372] = { - [anon_sym_PIPE] = ACTIONS(510), - [anon_sym_PIPE_AMP] = ACTIONS(512), - [anon_sym_AMP_AMP] = ACTIONS(514), - [anon_sym_PIPE_PIPE] = ACTIONS(514), - [anon_sym_BQUOTE] = ACTIONS(1138), - [sym_comment] = ACTIONS(52), - }, - [373] = { - [sym_file_descriptor] = ACTIONS(238), - [sym_variable_name] = ACTIONS(238), - [anon_sym_PIPE] = ACTIONS(510), - [anon_sym_PIPE_AMP] = ACTIONS(512), - [anon_sym_AMP_AMP] = ACTIONS(514), - [anon_sym_PIPE_PIPE] = ACTIONS(516), - [anon_sym_LT] = ACTIONS(242), - [anon_sym_GT] = ACTIONS(242), - [anon_sym_GT_GT] = ACTIONS(238), - [anon_sym_AMP_GT] = ACTIONS(242), - [anon_sym_AMP_GT_GT] = ACTIONS(238), - [anon_sym_LT_AMP] = ACTIONS(238), - [anon_sym_GT_AMP] = ACTIONS(238), - [anon_sym_DQUOTE] = ACTIONS(238), - [sym_raw_string] = ACTIONS(238), - [anon_sym_DOLLAR] = ACTIONS(242), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(238), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(1138), - [anon_sym_LT_LPAREN] = ACTIONS(238), - [anon_sym_GT_LPAREN] = ACTIONS(238), - [sym_word] = ACTIONS(240), - [sym_comment] = ACTIONS(52), - }, - [374] = { - [anon_sym_PIPE] = ACTIONS(480), - [anon_sym_RPAREN] = ACTIONS(1140), - [anon_sym_PIPE_AMP] = ACTIONS(484), - [anon_sym_AMP_AMP] = ACTIONS(486), - [anon_sym_PIPE_PIPE] = ACTIONS(486), - [sym_comment] = ACTIONS(52), - }, - [375] = { - [sym_file_descriptor] = ACTIONS(238), - [sym_variable_name] = ACTIONS(238), - [anon_sym_PIPE] = ACTIONS(480), - [anon_sym_RPAREN] = ACTIONS(1140), - [anon_sym_PIPE_AMP] = ACTIONS(484), - [anon_sym_AMP_AMP] = ACTIONS(486), - [anon_sym_PIPE_PIPE] = ACTIONS(506), - [anon_sym_LT] = ACTIONS(242), - [anon_sym_GT] = ACTIONS(242), - [anon_sym_GT_GT] = ACTIONS(238), - [anon_sym_AMP_GT] = ACTIONS(242), - [anon_sym_AMP_GT_GT] = ACTIONS(238), - [anon_sym_LT_AMP] = ACTIONS(238), - [anon_sym_GT_AMP] = ACTIONS(238), - [anon_sym_DQUOTE] = ACTIONS(238), - [sym_raw_string] = ACTIONS(238), - [anon_sym_DOLLAR] = ACTIONS(242), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(238), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(238), - [anon_sym_LT_LPAREN] = ACTIONS(238), - [anon_sym_GT_LPAREN] = ACTIONS(238), - [sym_word] = ACTIONS(240), - [sym_comment] = ACTIONS(52), - }, - [376] = { [sym_simple_expansion] = STATE(78), [sym_expansion] = STATE(78), [sym_command_substitution] = STATE(78), - [aux_sym_string_repeat1] = STATE(611), - [anon_sym_DQUOTE] = ACTIONS(1142), + [aux_sym_string_repeat1] = STATE(603), + [anon_sym_DQUOTE] = ACTIONS(1118), [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(132), [anon_sym_DOLLAR] = ACTIONS(134), [anon_sym_DOLLAR_LBRACE] = ACTIONS(136), @@ -13267,45 +13030,42 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(140), [sym_comment] = ACTIONS(142), }, - [377] = { - [aux_sym_concatenation_repeat1] = STATE(613), - [sym__concat] = ACTIONS(1144), - [anon_sym_SEMI_SEMI] = ACTIONS(332), - [anon_sym_DQUOTE] = ACTIONS(332), - [sym_raw_string] = ACTIONS(332), - [anon_sym_DOLLAR] = ACTIONS(332), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(332), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(332), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_LT_LPAREN] = ACTIONS(332), - [anon_sym_GT_LPAREN] = ACTIONS(332), - [sym_word] = ACTIONS(332), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(332), - [anon_sym_LF] = ACTIONS(332), - [anon_sym_AMP] = ACTIONS(332), + [359] = { + [aux_sym_concatenation_repeat1] = STATE(605), + [sym__concat] = ACTIONS(1120), + [anon_sym_RPAREN] = ACTIONS(330), + [anon_sym_DQUOTE] = ACTIONS(330), + [sym_raw_string] = ACTIONS(330), + [anon_sym_DOLLAR] = ACTIONS(328), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(330), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(330), + [anon_sym_LT_LPAREN] = ACTIONS(330), + [anon_sym_GT_LPAREN] = ACTIONS(330), + [sym_word] = ACTIONS(328), + [sym_comment] = ACTIONS(52), }, - [378] = { - [sym_special_variable_name] = STATE(616), - [anon_sym_DOLLAR] = ACTIONS(1146), - [anon_sym_POUND] = ACTIONS(1146), - [anon_sym_AT] = ACTIONS(1146), + [360] = { + [sym_special_variable_name] = STATE(608), + [anon_sym_DOLLAR] = ACTIONS(1122), + [anon_sym_POUND] = ACTIONS(1122), + [anon_sym_AT] = ACTIONS(1122), [sym_comment] = ACTIONS(142), - [sym_simple_variable_name] = ACTIONS(1148), - [anon_sym_STAR] = ACTIONS(1146), - [anon_sym_QMARK] = ACTIONS(1146), - [anon_sym_DASH] = ACTIONS(1146), - [anon_sym_BANG] = ACTIONS(1146), - [anon_sym_0] = ACTIONS(1150), - [anon_sym__] = ACTIONS(1150), + [sym_simple_variable_name] = ACTIONS(1124), + [anon_sym_STAR] = ACTIONS(1122), + [anon_sym_QMARK] = ACTIONS(1122), + [anon_sym_DASH] = ACTIONS(1122), + [anon_sym_BANG] = ACTIONS(1122), + [anon_sym_0] = ACTIONS(1126), + [anon_sym__] = ACTIONS(1126), }, - [379] = { - [sym_special_variable_name] = STATE(619), + [361] = { + [sym_special_variable_name] = STATE(611), [anon_sym_DOLLAR] = ACTIONS(156), - [anon_sym_POUND] = ACTIONS(1152), + [anon_sym_POUND] = ACTIONS(1128), [anon_sym_AT] = ACTIONS(156), [sym_comment] = ACTIONS(142), - [sym_simple_variable_name] = ACTIONS(1154), + [sym_simple_variable_name] = ACTIONS(1130), [anon_sym_STAR] = ACTIONS(156), [anon_sym_QMARK] = ACTIONS(156), [anon_sym_DASH] = ACTIONS(156), @@ -13313,19 +13073,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_0] = ACTIONS(162), [anon_sym__] = ACTIONS(162), }, - [380] = { - [sym_for_statement] = STATE(620), - [sym_while_statement] = STATE(620), - [sym_if_statement] = STATE(620), - [sym_case_statement] = STATE(620), - [sym_function_definition] = STATE(620), - [sym_subshell] = STATE(620), - [sym_pipeline] = STATE(620), - [sym_list] = STATE(620), - [sym_bracket_command] = STATE(620), - [sym_command] = STATE(620), + [362] = { + [sym_for_statement] = STATE(612), + [sym_while_statement] = STATE(612), + [sym_if_statement] = STATE(612), + [sym_case_statement] = STATE(612), + [sym_function_definition] = STATE(612), + [sym_subshell] = STATE(612), + [sym_pipeline] = STATE(612), + [sym_list] = STATE(612), + [sym_bracket_command] = STATE(612), + [sym_command] = STATE(612), [sym_command_name] = STATE(111), - [sym_environment_variable_assignment] = STATE(621), + [sym_environment_variable_assignment] = STATE(613), [sym_subscript] = STATE(113), [sym_file_redirect] = STATE(27), [sym_concatenation] = STATE(114), @@ -13363,19 +13123,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(196), [sym_comment] = ACTIONS(52), }, - [381] = { - [sym_for_statement] = STATE(622), - [sym_while_statement] = STATE(622), - [sym_if_statement] = STATE(622), - [sym_case_statement] = STATE(622), - [sym_function_definition] = STATE(622), - [sym_subshell] = STATE(622), - [sym_pipeline] = STATE(622), - [sym_list] = STATE(622), - [sym_bracket_command] = STATE(622), - [sym_command] = STATE(622), + [363] = { + [sym_for_statement] = STATE(614), + [sym_while_statement] = STATE(614), + [sym_if_statement] = STATE(614), + [sym_case_statement] = STATE(614), + [sym_function_definition] = STATE(614), + [sym_subshell] = STATE(614), + [sym_pipeline] = STATE(614), + [sym_list] = STATE(614), + [sym_bracket_command] = STATE(614), + [sym_command] = STATE(614), [sym_command_name] = STATE(117), - [sym_environment_variable_assignment] = STATE(623), + [sym_environment_variable_assignment] = STATE(615), [sym_subscript] = STATE(113), [sym_file_redirect] = STATE(27), [sym_concatenation] = STATE(114), @@ -13413,19 +13173,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(196), [sym_comment] = ACTIONS(52), }, - [382] = { - [sym_for_statement] = STATE(624), - [sym_while_statement] = STATE(624), - [sym_if_statement] = STATE(624), - [sym_case_statement] = STATE(624), - [sym_function_definition] = STATE(624), - [sym_subshell] = STATE(624), - [sym_pipeline] = STATE(624), - [sym_list] = STATE(624), - [sym_bracket_command] = STATE(624), - [sym_command] = STATE(624), + [364] = { + [sym_for_statement] = STATE(616), + [sym_while_statement] = STATE(616), + [sym_if_statement] = STATE(616), + [sym_case_statement] = STATE(616), + [sym_function_definition] = STATE(616), + [sym_subshell] = STATE(616), + [sym_pipeline] = STATE(616), + [sym_list] = STATE(616), + [sym_bracket_command] = STATE(616), + [sym_command] = STATE(616), [sym_command_name] = STATE(111), - [sym_environment_variable_assignment] = STATE(625), + [sym_environment_variable_assignment] = STATE(617), [sym_subscript] = STATE(113), [sym_file_redirect] = STATE(27), [sym_concatenation] = STATE(114), @@ -13463,7 +13223,383 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(196), [sym_comment] = ACTIONS(52), }, + [365] = { + [anon_sym_RPAREN] = ACTIONS(330), + [anon_sym_DQUOTE] = ACTIONS(330), + [sym_raw_string] = ACTIONS(330), + [anon_sym_DOLLAR] = ACTIONS(328), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(330), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(330), + [anon_sym_LT_LPAREN] = ACTIONS(330), + [anon_sym_GT_LPAREN] = ACTIONS(330), + [sym_word] = ACTIONS(328), + [sym_comment] = ACTIONS(52), + }, + [366] = { + [sym_concatenation] = STATE(620), + [sym_string] = STATE(619), + [sym_simple_expansion] = STATE(619), + [sym_expansion] = STATE(619), + [sym_command_substitution] = STATE(619), + [sym_process_substitution] = STATE(619), + [anon_sym_RPAREN] = ACTIONS(1132), + [anon_sym_DQUOTE] = ACTIONS(606), + [sym_raw_string] = ACTIONS(1134), + [anon_sym_DOLLAR] = ACTIONS(610), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(612), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(614), + [anon_sym_BQUOTE] = ACTIONS(616), + [anon_sym_LT_LPAREN] = ACTIONS(618), + [anon_sym_GT_LPAREN] = ACTIONS(618), + [sym_word] = ACTIONS(1136), + [sym_comment] = ACTIONS(52), + }, + [367] = { + [sym_file_descriptor] = ACTIONS(386), + [sym__concat] = ACTIONS(386), + [sym_variable_name] = ACTIONS(386), + [anon_sym_PIPE] = ACTIONS(388), + [anon_sym_RPAREN] = ACTIONS(388), + [anon_sym_SEMI_SEMI] = ACTIONS(388), + [anon_sym_PIPE_AMP] = ACTIONS(388), + [anon_sym_AMP_AMP] = ACTIONS(388), + [anon_sym_PIPE_PIPE] = ACTIONS(388), + [anon_sym_LT] = ACTIONS(388), + [anon_sym_GT] = ACTIONS(388), + [anon_sym_GT_GT] = ACTIONS(388), + [anon_sym_AMP_GT] = ACTIONS(388), + [anon_sym_AMP_GT_GT] = ACTIONS(388), + [anon_sym_LT_AMP] = ACTIONS(388), + [anon_sym_GT_AMP] = ACTIONS(388), + [anon_sym_DQUOTE] = ACTIONS(388), + [sym_raw_string] = ACTIONS(388), + [anon_sym_DOLLAR] = ACTIONS(388), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(388), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(388), + [anon_sym_BQUOTE] = ACTIONS(388), + [anon_sym_LT_LPAREN] = ACTIONS(388), + [anon_sym_GT_LPAREN] = ACTIONS(388), + [sym_word] = ACTIONS(388), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(388), + [anon_sym_LF] = ACTIONS(388), + [anon_sym_AMP] = ACTIONS(388), + }, + [368] = { + [sym_simple_expansion] = STATE(253), + [sym_expansion] = STATE(253), + [sym_command_substitution] = STATE(253), + [anon_sym_DQUOTE] = ACTIONS(1138), + [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(406), + [anon_sym_DOLLAR] = ACTIONS(134), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(136), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(138), + [anon_sym_BQUOTE] = ACTIONS(140), + [sym_comment] = ACTIONS(142), + }, + [369] = { + [sym_string] = STATE(622), + [sym_simple_expansion] = STATE(622), + [sym_expansion] = STATE(622), + [sym_command_substitution] = STATE(622), + [sym_process_substitution] = STATE(622), + [anon_sym_DQUOTE] = ACTIONS(274), + [sym_raw_string] = ACTIONS(1140), + [anon_sym_DOLLAR] = ACTIONS(278), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(280), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), + [anon_sym_BQUOTE] = ACTIONS(284), + [anon_sym_LT_LPAREN] = ACTIONS(286), + [anon_sym_GT_LPAREN] = ACTIONS(286), + [sym_word] = ACTIONS(1142), + [sym_comment] = ACTIONS(52), + }, + [370] = { + [sym_file_descriptor] = ACTIONS(412), + [sym__concat] = ACTIONS(1144), + [sym_variable_name] = ACTIONS(412), + [anon_sym_PIPE] = ACTIONS(416), + [anon_sym_RPAREN] = ACTIONS(416), + [anon_sym_SEMI_SEMI] = ACTIONS(416), + [anon_sym_PIPE_AMP] = ACTIONS(416), + [anon_sym_AMP_AMP] = ACTIONS(416), + [anon_sym_PIPE_PIPE] = ACTIONS(416), + [anon_sym_LT] = ACTIONS(416), + [anon_sym_GT] = ACTIONS(416), + [anon_sym_GT_GT] = ACTIONS(416), + [anon_sym_AMP_GT] = ACTIONS(416), + [anon_sym_AMP_GT_GT] = ACTIONS(416), + [anon_sym_LT_AMP] = ACTIONS(416), + [anon_sym_GT_AMP] = ACTIONS(416), + [anon_sym_DQUOTE] = ACTIONS(416), + [sym_raw_string] = ACTIONS(416), + [anon_sym_DOLLAR] = ACTIONS(416), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(416), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(416), + [anon_sym_BQUOTE] = ACTIONS(416), + [anon_sym_LT_LPAREN] = ACTIONS(416), + [anon_sym_GT_LPAREN] = ACTIONS(416), + [sym_word] = ACTIONS(416), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(416), + [anon_sym_LF] = ACTIONS(416), + [anon_sym_AMP] = ACTIONS(416), + }, + [371] = { + [sym_file_descriptor] = ACTIONS(418), + [sym__concat] = ACTIONS(418), + [sym_variable_name] = ACTIONS(418), + [anon_sym_PIPE] = ACTIONS(420), + [anon_sym_RPAREN] = ACTIONS(420), + [anon_sym_SEMI_SEMI] = ACTIONS(420), + [anon_sym_PIPE_AMP] = ACTIONS(420), + [anon_sym_AMP_AMP] = ACTIONS(420), + [anon_sym_PIPE_PIPE] = ACTIONS(420), + [anon_sym_LT] = ACTIONS(420), + [anon_sym_GT] = ACTIONS(420), + [anon_sym_GT_GT] = ACTIONS(420), + [anon_sym_AMP_GT] = ACTIONS(420), + [anon_sym_AMP_GT_GT] = ACTIONS(420), + [anon_sym_LT_AMP] = ACTIONS(420), + [anon_sym_GT_AMP] = ACTIONS(420), + [anon_sym_DQUOTE] = ACTIONS(420), + [sym_raw_string] = ACTIONS(420), + [anon_sym_DOLLAR] = ACTIONS(420), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(420), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(420), + [anon_sym_BQUOTE] = ACTIONS(420), + [anon_sym_LT_LPAREN] = ACTIONS(420), + [anon_sym_GT_LPAREN] = ACTIONS(420), + [sym_word] = ACTIONS(420), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(420), + [anon_sym_LF] = ACTIONS(420), + [anon_sym_AMP] = ACTIONS(420), + }, + [372] = { + [sym_file_descriptor] = ACTIONS(422), + [sym__concat] = ACTIONS(422), + [sym_variable_name] = ACTIONS(422), + [anon_sym_PIPE] = ACTIONS(424), + [anon_sym_RPAREN] = ACTIONS(424), + [anon_sym_SEMI_SEMI] = ACTIONS(424), + [anon_sym_PIPE_AMP] = ACTIONS(424), + [anon_sym_AMP_AMP] = ACTIONS(424), + [anon_sym_PIPE_PIPE] = ACTIONS(424), + [anon_sym_LT] = ACTIONS(424), + [anon_sym_GT] = ACTIONS(424), + [anon_sym_GT_GT] = ACTIONS(424), + [anon_sym_AMP_GT] = ACTIONS(424), + [anon_sym_AMP_GT_GT] = ACTIONS(424), + [anon_sym_LT_AMP] = ACTIONS(424), + [anon_sym_GT_AMP] = ACTIONS(424), + [anon_sym_DQUOTE] = ACTIONS(424), + [sym_raw_string] = ACTIONS(424), + [anon_sym_DOLLAR] = ACTIONS(424), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(424), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(424), + [anon_sym_BQUOTE] = ACTIONS(424), + [anon_sym_LT_LPAREN] = ACTIONS(424), + [anon_sym_GT_LPAREN] = ACTIONS(424), + [sym_word] = ACTIONS(424), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(424), + [anon_sym_LF] = ACTIONS(424), + [anon_sym_AMP] = ACTIONS(424), + }, + [373] = { + [sym_file_descriptor] = ACTIONS(426), + [sym__concat] = ACTIONS(426), + [sym_variable_name] = ACTIONS(426), + [anon_sym_PIPE] = ACTIONS(428), + [anon_sym_RPAREN] = ACTIONS(428), + [anon_sym_SEMI_SEMI] = ACTIONS(428), + [anon_sym_PIPE_AMP] = ACTIONS(428), + [anon_sym_AMP_AMP] = ACTIONS(428), + [anon_sym_PIPE_PIPE] = ACTIONS(428), + [anon_sym_LT] = ACTIONS(428), + [anon_sym_GT] = ACTIONS(428), + [anon_sym_GT_GT] = ACTIONS(428), + [anon_sym_AMP_GT] = ACTIONS(428), + [anon_sym_AMP_GT_GT] = ACTIONS(428), + [anon_sym_LT_AMP] = ACTIONS(428), + [anon_sym_GT_AMP] = ACTIONS(428), + [anon_sym_DQUOTE] = ACTIONS(428), + [sym_raw_string] = ACTIONS(428), + [anon_sym_DOLLAR] = ACTIONS(428), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(428), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(428), + [anon_sym_BQUOTE] = ACTIONS(428), + [anon_sym_LT_LPAREN] = ACTIONS(428), + [anon_sym_GT_LPAREN] = ACTIONS(428), + [sym_word] = ACTIONS(428), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(428), + [anon_sym_LF] = ACTIONS(428), + [anon_sym_AMP] = ACTIONS(428), + }, + [374] = { + [sym_special_variable_name] = STATE(625), + [anon_sym_RBRACE] = ACTIONS(418), + [anon_sym_LBRACK] = ACTIONS(418), + [anon_sym_EQ] = ACTIONS(418), + [anon_sym_DOLLAR] = ACTIONS(156), + [anon_sym_POUND] = ACTIONS(156), + [anon_sym_AT] = ACTIONS(156), + [anon_sym_COLON] = ACTIONS(430), + [anon_sym_COLON_QMARK] = ACTIONS(418), + [anon_sym_COLON_DASH] = ACTIONS(418), + [anon_sym_PERCENT] = ACTIONS(418), + [anon_sym_SLASH] = ACTIONS(418), + [sym_comment] = ACTIONS(142), + [sym_simple_variable_name] = ACTIONS(1146), + [anon_sym_STAR] = ACTIONS(156), + [anon_sym_QMARK] = ACTIONS(156), + [anon_sym_DASH] = ACTIONS(156), + [anon_sym_BANG] = ACTIONS(156), + [anon_sym_0] = ACTIONS(162), + [anon_sym__] = ACTIONS(162), + }, + [375] = { + [anon_sym_RBRACE] = ACTIONS(1148), + [anon_sym_LBRACK] = ACTIONS(1150), + [anon_sym_EQ] = ACTIONS(1152), + [anon_sym_COLON] = ACTIONS(1154), + [anon_sym_COLON_QMARK] = ACTIONS(1152), + [anon_sym_COLON_DASH] = ACTIONS(1152), + [anon_sym_PERCENT] = ACTIONS(1152), + [anon_sym_SLASH] = ACTIONS(1152), + [sym_comment] = ACTIONS(52), + }, + [376] = { + [anon_sym_RBRACE] = ACTIONS(1156), + [anon_sym_LBRACK] = ACTIONS(1158), + [anon_sym_EQ] = ACTIONS(1160), + [anon_sym_COLON] = ACTIONS(1162), + [anon_sym_COLON_QMARK] = ACTIONS(1160), + [anon_sym_COLON_DASH] = ACTIONS(1160), + [anon_sym_PERCENT] = ACTIONS(1160), + [anon_sym_SLASH] = ACTIONS(1160), + [sym_comment] = ACTIONS(52), + }, + [377] = { + [anon_sym_PIPE] = ACTIONS(480), + [anon_sym_RPAREN] = ACTIONS(1164), + [anon_sym_PIPE_AMP] = ACTIONS(484), + [anon_sym_AMP_AMP] = ACTIONS(486), + [anon_sym_PIPE_PIPE] = ACTIONS(486), + [sym_comment] = ACTIONS(52), + }, + [378] = { + [sym_file_descriptor] = ACTIONS(238), + [sym_variable_name] = ACTIONS(238), + [anon_sym_PIPE] = ACTIONS(480), + [anon_sym_RPAREN] = ACTIONS(1164), + [anon_sym_PIPE_AMP] = ACTIONS(484), + [anon_sym_AMP_AMP] = ACTIONS(486), + [anon_sym_PIPE_PIPE] = ACTIONS(506), + [anon_sym_LT] = ACTIONS(242), + [anon_sym_GT] = ACTIONS(242), + [anon_sym_GT_GT] = ACTIONS(238), + [anon_sym_AMP_GT] = ACTIONS(242), + [anon_sym_AMP_GT_GT] = ACTIONS(238), + [anon_sym_LT_AMP] = ACTIONS(238), + [anon_sym_GT_AMP] = ACTIONS(238), + [anon_sym_DQUOTE] = ACTIONS(238), + [sym_raw_string] = ACTIONS(238), + [anon_sym_DOLLAR] = ACTIONS(242), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(238), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(238), + [anon_sym_LT_LPAREN] = ACTIONS(238), + [anon_sym_GT_LPAREN] = ACTIONS(238), + [sym_word] = ACTIONS(240), + [sym_comment] = ACTIONS(52), + }, + [379] = { + [anon_sym_PIPE] = ACTIONS(510), + [anon_sym_PIPE_AMP] = ACTIONS(512), + [anon_sym_AMP_AMP] = ACTIONS(514), + [anon_sym_PIPE_PIPE] = ACTIONS(514), + [anon_sym_BQUOTE] = ACTIONS(1164), + [sym_comment] = ACTIONS(52), + }, + [380] = { + [sym_file_descriptor] = ACTIONS(238), + [sym_variable_name] = ACTIONS(238), + [anon_sym_PIPE] = ACTIONS(510), + [anon_sym_PIPE_AMP] = ACTIONS(512), + [anon_sym_AMP_AMP] = ACTIONS(514), + [anon_sym_PIPE_PIPE] = ACTIONS(516), + [anon_sym_LT] = ACTIONS(242), + [anon_sym_GT] = ACTIONS(242), + [anon_sym_GT_GT] = ACTIONS(238), + [anon_sym_AMP_GT] = ACTIONS(242), + [anon_sym_AMP_GT_GT] = ACTIONS(238), + [anon_sym_LT_AMP] = ACTIONS(238), + [anon_sym_GT_AMP] = ACTIONS(238), + [anon_sym_DQUOTE] = ACTIONS(238), + [sym_raw_string] = ACTIONS(238), + [anon_sym_DOLLAR] = ACTIONS(242), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(238), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(1164), + [anon_sym_LT_LPAREN] = ACTIONS(238), + [anon_sym_GT_LPAREN] = ACTIONS(238), + [sym_word] = ACTIONS(240), + [sym_comment] = ACTIONS(52), + }, + [381] = { + [anon_sym_PIPE] = ACTIONS(480), + [anon_sym_RPAREN] = ACTIONS(1166), + [anon_sym_PIPE_AMP] = ACTIONS(484), + [anon_sym_AMP_AMP] = ACTIONS(486), + [anon_sym_PIPE_PIPE] = ACTIONS(486), + [sym_comment] = ACTIONS(52), + }, + [382] = { + [sym_file_descriptor] = ACTIONS(238), + [sym_variable_name] = ACTIONS(238), + [anon_sym_PIPE] = ACTIONS(480), + [anon_sym_RPAREN] = ACTIONS(1166), + [anon_sym_PIPE_AMP] = ACTIONS(484), + [anon_sym_AMP_AMP] = ACTIONS(486), + [anon_sym_PIPE_PIPE] = ACTIONS(506), + [anon_sym_LT] = ACTIONS(242), + [anon_sym_GT] = ACTIONS(242), + [anon_sym_GT_GT] = ACTIONS(238), + [anon_sym_AMP_GT] = ACTIONS(242), + [anon_sym_AMP_GT_GT] = ACTIONS(238), + [anon_sym_LT_AMP] = ACTIONS(238), + [anon_sym_GT_AMP] = ACTIONS(238), + [anon_sym_DQUOTE] = ACTIONS(238), + [sym_raw_string] = ACTIONS(238), + [anon_sym_DOLLAR] = ACTIONS(242), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(238), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(238), + [anon_sym_LT_LPAREN] = ACTIONS(238), + [anon_sym_GT_LPAREN] = ACTIONS(238), + [sym_word] = ACTIONS(240), + [sym_comment] = ACTIONS(52), + }, [383] = { + [sym_simple_expansion] = STATE(78), + [sym_expansion] = STATE(78), + [sym_command_substitution] = STATE(78), + [aux_sym_string_repeat1] = STATE(635), + [anon_sym_DQUOTE] = ACTIONS(1168), + [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(132), + [anon_sym_DOLLAR] = ACTIONS(134), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(136), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(138), + [anon_sym_BQUOTE] = ACTIONS(140), + [sym_comment] = ACTIONS(142), + }, + [384] = { + [aux_sym_concatenation_repeat1] = STATE(637), + [sym__concat] = ACTIONS(1170), [anon_sym_SEMI_SEMI] = ACTIONS(332), [anon_sym_DQUOTE] = ACTIONS(332), [sym_raw_string] = ACTIONS(332), @@ -13479,41 +13615,235 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(332), [anon_sym_AMP] = ACTIONS(332), }, - [384] = { - [sym_concatenation] = STATE(628), - [sym_string] = STATE(627), - [sym_simple_expansion] = STATE(627), - [sym_expansion] = STATE(627), - [sym_command_substitution] = STATE(627), - [sym_process_substitution] = STATE(627), - [anon_sym_SEMI_SEMI] = ACTIONS(1156), - [anon_sym_DQUOTE] = ACTIONS(1158), - [sym_raw_string] = ACTIONS(1160), - [anon_sym_DOLLAR] = ACTIONS(1162), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1164), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1166), - [anon_sym_BQUOTE] = ACTIONS(1168), - [anon_sym_LT_LPAREN] = ACTIONS(1170), - [anon_sym_GT_LPAREN] = ACTIONS(1170), - [sym_word] = ACTIONS(1160), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1156), - [anon_sym_LF] = ACTIONS(1156), - [anon_sym_AMP] = ACTIONS(1156), - }, [385] = { - [anon_sym_PIPE] = ACTIONS(1172), - [anon_sym_RPAREN] = ACTIONS(1172), - [anon_sym_SEMI_SEMI] = ACTIONS(1172), - [anon_sym_PIPE_AMP] = ACTIONS(1172), - [anon_sym_AMP_AMP] = ACTIONS(1172), - [anon_sym_PIPE_PIPE] = ACTIONS(1172), + [sym_special_variable_name] = STATE(640), + [anon_sym_DOLLAR] = ACTIONS(1172), + [anon_sym_POUND] = ACTIONS(1172), + [anon_sym_AT] = ACTIONS(1172), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1172), - [anon_sym_LF] = ACTIONS(1172), - [anon_sym_AMP] = ACTIONS(1172), + [sym_simple_variable_name] = ACTIONS(1174), + [anon_sym_STAR] = ACTIONS(1172), + [anon_sym_QMARK] = ACTIONS(1172), + [anon_sym_DASH] = ACTIONS(1172), + [anon_sym_BANG] = ACTIONS(1172), + [anon_sym_0] = ACTIONS(1176), + [anon_sym__] = ACTIONS(1176), }, [386] = { + [sym_special_variable_name] = STATE(643), + [anon_sym_DOLLAR] = ACTIONS(156), + [anon_sym_POUND] = ACTIONS(1178), + [anon_sym_AT] = ACTIONS(156), + [sym_comment] = ACTIONS(142), + [sym_simple_variable_name] = ACTIONS(1180), + [anon_sym_STAR] = ACTIONS(156), + [anon_sym_QMARK] = ACTIONS(156), + [anon_sym_DASH] = ACTIONS(156), + [anon_sym_BANG] = ACTIONS(156), + [anon_sym_0] = ACTIONS(162), + [anon_sym__] = ACTIONS(162), + }, + [387] = { + [sym_for_statement] = STATE(644), + [sym_while_statement] = STATE(644), + [sym_if_statement] = STATE(644), + [sym_case_statement] = STATE(644), + [sym_function_definition] = STATE(644), + [sym_subshell] = STATE(644), + [sym_pipeline] = STATE(644), + [sym_list] = STATE(644), + [sym_bracket_command] = STATE(644), + [sym_command] = STATE(644), + [sym_command_name] = STATE(111), + [sym_environment_variable_assignment] = STATE(645), + [sym_subscript] = STATE(113), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(114), + [sym_string] = STATE(103), + [sym_simple_expansion] = STATE(103), + [sym_expansion] = STATE(103), + [sym_command_substitution] = STATE(103), + [sym_process_substitution] = STATE(103), + [aux_sym_command_repeat1] = STATE(115), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(164), + [anon_sym_for] = ACTIONS(166), + [anon_sym_while] = ACTIONS(168), + [anon_sym_if] = ACTIONS(170), + [anon_sym_case] = ACTIONS(172), + [anon_sym_function] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(176), + [anon_sym_LBRACK] = ACTIONS(178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(180), + [anon_sym_LT] = ACTIONS(32), + [anon_sym_GT] = ACTIONS(32), + [anon_sym_GT_GT] = ACTIONS(34), + [anon_sym_AMP_GT] = ACTIONS(32), + [anon_sym_AMP_GT_GT] = ACTIONS(34), + [anon_sym_LT_AMP] = ACTIONS(34), + [anon_sym_GT_AMP] = ACTIONS(34), + [anon_sym_DQUOTE] = ACTIONS(182), + [sym_raw_string] = ACTIONS(184), + [anon_sym_DOLLAR] = ACTIONS(186), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(188), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(190), + [anon_sym_BQUOTE] = ACTIONS(192), + [anon_sym_LT_LPAREN] = ACTIONS(194), + [anon_sym_GT_LPAREN] = ACTIONS(194), + [sym_word] = ACTIONS(196), + [sym_comment] = ACTIONS(52), + }, + [388] = { + [sym_for_statement] = STATE(646), + [sym_while_statement] = STATE(646), + [sym_if_statement] = STATE(646), + [sym_case_statement] = STATE(646), + [sym_function_definition] = STATE(646), + [sym_subshell] = STATE(646), + [sym_pipeline] = STATE(646), + [sym_list] = STATE(646), + [sym_bracket_command] = STATE(646), + [sym_command] = STATE(646), + [sym_command_name] = STATE(117), + [sym_environment_variable_assignment] = STATE(647), + [sym_subscript] = STATE(113), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(114), + [sym_string] = STATE(103), + [sym_simple_expansion] = STATE(103), + [sym_expansion] = STATE(103), + [sym_command_substitution] = STATE(103), + [sym_process_substitution] = STATE(103), + [aux_sym_command_repeat1] = STATE(119), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(164), + [anon_sym_for] = ACTIONS(166), + [anon_sym_while] = ACTIONS(168), + [anon_sym_if] = ACTIONS(170), + [anon_sym_case] = ACTIONS(172), + [anon_sym_function] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(176), + [anon_sym_LBRACK] = ACTIONS(178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(180), + [anon_sym_LT] = ACTIONS(32), + [anon_sym_GT] = ACTIONS(32), + [anon_sym_GT_GT] = ACTIONS(34), + [anon_sym_AMP_GT] = ACTIONS(32), + [anon_sym_AMP_GT_GT] = ACTIONS(34), + [anon_sym_LT_AMP] = ACTIONS(34), + [anon_sym_GT_AMP] = ACTIONS(34), + [anon_sym_DQUOTE] = ACTIONS(182), + [sym_raw_string] = ACTIONS(184), + [anon_sym_DOLLAR] = ACTIONS(186), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(188), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(190), + [anon_sym_BQUOTE] = ACTIONS(192), + [anon_sym_LT_LPAREN] = ACTIONS(194), + [anon_sym_GT_LPAREN] = ACTIONS(194), + [sym_word] = ACTIONS(196), + [sym_comment] = ACTIONS(52), + }, + [389] = { + [sym_for_statement] = STATE(648), + [sym_while_statement] = STATE(648), + [sym_if_statement] = STATE(648), + [sym_case_statement] = STATE(648), + [sym_function_definition] = STATE(648), + [sym_subshell] = STATE(648), + [sym_pipeline] = STATE(648), + [sym_list] = STATE(648), + [sym_bracket_command] = STATE(648), + [sym_command] = STATE(648), + [sym_command_name] = STATE(111), + [sym_environment_variable_assignment] = STATE(649), + [sym_subscript] = STATE(113), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(114), + [sym_string] = STATE(103), + [sym_simple_expansion] = STATE(103), + [sym_expansion] = STATE(103), + [sym_command_substitution] = STATE(103), + [sym_process_substitution] = STATE(103), + [aux_sym_command_repeat1] = STATE(115), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(164), + [anon_sym_for] = ACTIONS(166), + [anon_sym_while] = ACTIONS(168), + [anon_sym_if] = ACTIONS(170), + [anon_sym_case] = ACTIONS(172), + [anon_sym_function] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(176), + [anon_sym_LBRACK] = ACTIONS(178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(180), + [anon_sym_LT] = ACTIONS(32), + [anon_sym_GT] = ACTIONS(32), + [anon_sym_GT_GT] = ACTIONS(34), + [anon_sym_AMP_GT] = ACTIONS(32), + [anon_sym_AMP_GT_GT] = ACTIONS(34), + [anon_sym_LT_AMP] = ACTIONS(34), + [anon_sym_GT_AMP] = ACTIONS(34), + [anon_sym_DQUOTE] = ACTIONS(182), + [sym_raw_string] = ACTIONS(184), + [anon_sym_DOLLAR] = ACTIONS(186), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(188), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(190), + [anon_sym_BQUOTE] = ACTIONS(192), + [anon_sym_LT_LPAREN] = ACTIONS(194), + [anon_sym_GT_LPAREN] = ACTIONS(194), + [sym_word] = ACTIONS(196), + [sym_comment] = ACTIONS(52), + }, + [390] = { + [anon_sym_SEMI_SEMI] = ACTIONS(332), + [anon_sym_DQUOTE] = ACTIONS(332), + [sym_raw_string] = ACTIONS(332), + [anon_sym_DOLLAR] = ACTIONS(332), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(332), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(332), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_LT_LPAREN] = ACTIONS(332), + [anon_sym_GT_LPAREN] = ACTIONS(332), + [sym_word] = ACTIONS(332), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(332), + [anon_sym_LF] = ACTIONS(332), + [anon_sym_AMP] = ACTIONS(332), + }, + [391] = { + [sym_concatenation] = STATE(652), + [sym_string] = STATE(651), + [sym_simple_expansion] = STATE(651), + [sym_expansion] = STATE(651), + [sym_command_substitution] = STATE(651), + [sym_process_substitution] = STATE(651), + [anon_sym_SEMI_SEMI] = ACTIONS(1182), + [anon_sym_DQUOTE] = ACTIONS(1184), + [sym_raw_string] = ACTIONS(1186), + [anon_sym_DOLLAR] = ACTIONS(1188), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1190), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1192), + [anon_sym_BQUOTE] = ACTIONS(1194), + [anon_sym_LT_LPAREN] = ACTIONS(1196), + [anon_sym_GT_LPAREN] = ACTIONS(1196), + [sym_word] = ACTIONS(1186), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(1182), + [anon_sym_LF] = ACTIONS(1182), + [anon_sym_AMP] = ACTIONS(1182), + }, + [392] = { + [anon_sym_PIPE] = ACTIONS(1198), + [anon_sym_RPAREN] = ACTIONS(1198), + [anon_sym_SEMI_SEMI] = ACTIONS(1198), + [anon_sym_PIPE_AMP] = ACTIONS(1198), + [anon_sym_AMP_AMP] = ACTIONS(1198), + [anon_sym_PIPE_PIPE] = ACTIONS(1198), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(1198), + [anon_sym_LF] = ACTIONS(1198), + [anon_sym_AMP] = ACTIONS(1198), + }, + [393] = { [sym_file_descriptor] = ACTIONS(204), [sym_variable_name] = ACTIONS(204), [anon_sym_for] = ACTIONS(206), @@ -13543,22 +13873,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(208), [sym_comment] = ACTIONS(52), }, - [387] = { + [394] = { [anon_sym_PIPE] = ACTIONS(210), - [anon_sym_SEMI_SEMI] = ACTIONS(1174), + [anon_sym_SEMI_SEMI] = ACTIONS(1200), [anon_sym_PIPE_AMP] = ACTIONS(210), [anon_sym_AMP_AMP] = ACTIONS(214), [anon_sym_PIPE_PIPE] = ACTIONS(214), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1174), - [anon_sym_LF] = ACTIONS(1174), - [anon_sym_AMP] = ACTIONS(1174), + [anon_sym_SEMI] = ACTIONS(1200), + [anon_sym_LF] = ACTIONS(1200), + [anon_sym_AMP] = ACTIONS(1200), }, - [388] = { + [395] = { [sym_file_descriptor] = ACTIONS(238), [sym_variable_name] = ACTIONS(238), [anon_sym_PIPE] = ACTIONS(210), - [anon_sym_SEMI_SEMI] = ACTIONS(1174), + [anon_sym_SEMI_SEMI] = ACTIONS(1200), [anon_sym_PIPE_AMP] = ACTIONS(210), [anon_sym_AMP_AMP] = ACTIONS(214), [anon_sym_PIPE_PIPE] = ACTIONS(214), @@ -13579,24 +13909,24 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_LPAREN] = ACTIONS(240), [sym_word] = ACTIONS(240), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1174), - [anon_sym_LF] = ACTIONS(1174), - [anon_sym_AMP] = ACTIONS(1174), + [anon_sym_SEMI] = ACTIONS(1200), + [anon_sym_LF] = ACTIONS(1200), + [anon_sym_AMP] = ACTIONS(1200), }, - [389] = { - [sym__terminated_statement] = STATE(631), - [sym_for_statement] = STATE(387), - [sym_while_statement] = STATE(387), - [sym_if_statement] = STATE(387), - [sym_case_statement] = STATE(387), - [sym_function_definition] = STATE(387), - [sym_subshell] = STATE(387), - [sym_pipeline] = STATE(387), - [sym_list] = STATE(387), - [sym_bracket_command] = STATE(387), - [sym_command] = STATE(387), + [396] = { + [sym__terminated_statement] = STATE(655), + [sym_for_statement] = STATE(394), + [sym_while_statement] = STATE(394), + [sym_if_statement] = STATE(394), + [sym_case_statement] = STATE(394), + [sym_function_definition] = STATE(394), + [sym_subshell] = STATE(394), + [sym_pipeline] = STATE(394), + [sym_list] = STATE(394), + [sym_bracket_command] = STATE(394), + [sym_command] = STATE(394), [sym_command_name] = STATE(24), - [sym_environment_variable_assignment] = STATE(388), + [sym_environment_variable_assignment] = STATE(395), [sym_subscript] = STATE(26), [sym_file_redirect] = STATE(27), [sym_concatenation] = STATE(28), @@ -13610,7 +13940,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(1176), + [anon_sym_done] = ACTIONS(1202), [anon_sym_if] = ACTIONS(20), [anon_sym_case] = ACTIONS(22), [anon_sym_function] = ACTIONS(24), @@ -13635,20 +13965,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(50), [sym_comment] = ACTIONS(52), }, - [390] = { - [anon_sym_PIPE] = ACTIONS(1178), - [anon_sym_RPAREN] = ACTIONS(1178), - [anon_sym_SEMI_SEMI] = ACTIONS(1178), - [anon_sym_PIPE_AMP] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(1178), - [anon_sym_PIPE_PIPE] = ACTIONS(1178), + [397] = { + [anon_sym_PIPE] = ACTIONS(1204), + [anon_sym_RPAREN] = ACTIONS(1204), + [anon_sym_SEMI_SEMI] = ACTIONS(1204), + [anon_sym_PIPE_AMP] = ACTIONS(1204), + [anon_sym_AMP_AMP] = ACTIONS(1204), + [anon_sym_PIPE_PIPE] = ACTIONS(1204), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1178), - [anon_sym_LF] = ACTIONS(1178), - [anon_sym_AMP] = ACTIONS(1178), + [anon_sym_SEMI] = ACTIONS(1204), + [anon_sym_LF] = ACTIONS(1204), + [anon_sym_AMP] = ACTIONS(1204), }, - [391] = { - [sym__terminated_statement] = STATE(632), + [398] = { + [sym__terminated_statement] = STATE(656), [sym_for_statement] = STATE(36), [sym_while_statement] = STATE(36), [sym_if_statement] = STATE(36), @@ -13698,20 +14028,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(50), [sym_comment] = ACTIONS(52), }, - [392] = { - [sym__terminated_statement] = STATE(633), - [sym_for_statement] = STATE(634), - [sym_while_statement] = STATE(634), - [sym_if_statement] = STATE(634), - [sym_case_statement] = STATE(634), - [sym_function_definition] = STATE(634), - [sym_subshell] = STATE(634), - [sym_pipeline] = STATE(634), - [sym_list] = STATE(634), - [sym_bracket_command] = STATE(634), - [sym_command] = STATE(634), + [399] = { + [sym__terminated_statement] = STATE(657), + [sym_for_statement] = STATE(658), + [sym_while_statement] = STATE(658), + [sym_if_statement] = STATE(658), + [sym_case_statement] = STATE(658), + [sym_function_definition] = STATE(658), + [sym_subshell] = STATE(658), + [sym_pipeline] = STATE(658), + [sym_list] = STATE(658), + [sym_bracket_command] = STATE(658), + [sym_command] = STATE(658), [sym_command_name] = STATE(24), - [sym_environment_variable_assignment] = STATE(635), + [sym_environment_variable_assignment] = STATE(659), [sym_subscript] = STATE(26), [sym_file_redirect] = STATE(27), [sym_concatenation] = STATE(28), @@ -13720,14 +14050,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(14), [sym_command_substitution] = STATE(14), [sym_process_substitution] = STATE(14), - [aux_sym_program_repeat1] = STATE(636), + [aux_sym_program_repeat1] = STATE(660), [aux_sym_command_repeat1] = STATE(30), [sym_file_descriptor] = ACTIONS(10), [sym_variable_name] = ACTIONS(12), [anon_sym_for] = ACTIONS(16), [anon_sym_while] = ACTIONS(18), [anon_sym_if] = ACTIONS(20), - [anon_sym_fi] = ACTIONS(1180), + [anon_sym_fi] = ACTIONS(1206), [anon_sym_case] = ACTIONS(22), [anon_sym_function] = ACTIONS(24), [anon_sym_LPAREN] = ACTIONS(26), @@ -13751,7 +14081,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(50), [sym_comment] = ACTIONS(52), }, - [393] = { + [400] = { [sym_file_descriptor] = ACTIONS(204), [sym_variable_name] = ACTIONS(204), [anon_sym_for] = ACTIONS(206), @@ -13783,32 +14113,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(208), [sym_comment] = ACTIONS(52), }, - [394] = { + [401] = { [anon_sym_PIPE] = ACTIONS(210), - [anon_sym_SEMI_SEMI] = ACTIONS(1182), + [anon_sym_SEMI_SEMI] = ACTIONS(1208), [anon_sym_PIPE_AMP] = ACTIONS(210), [anon_sym_AMP_AMP] = ACTIONS(214), [anon_sym_PIPE_PIPE] = ACTIONS(214), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1182), - [anon_sym_LF] = ACTIONS(1182), - [anon_sym_AMP] = ACTIONS(1182), + [anon_sym_SEMI] = ACTIONS(1208), + [anon_sym_LF] = ACTIONS(1208), + [anon_sym_AMP] = ACTIONS(1208), }, - [395] = { - [anon_sym_fi] = ACTIONS(1184), - [anon_sym_elif] = ACTIONS(1184), - [anon_sym_else] = ACTIONS(1184), + [402] = { + [anon_sym_fi] = ACTIONS(1210), + [anon_sym_elif] = ACTIONS(1210), + [anon_sym_else] = ACTIONS(1210), [sym_comment] = ACTIONS(52), }, - [396] = { - [anon_sym_fi] = ACTIONS(1186), + [403] = { + [anon_sym_fi] = ACTIONS(1212), [sym_comment] = ACTIONS(52), }, - [397] = { + [404] = { [sym_file_descriptor] = ACTIONS(238), [sym_variable_name] = ACTIONS(238), [anon_sym_PIPE] = ACTIONS(210), - [anon_sym_SEMI_SEMI] = ACTIONS(1182), + [anon_sym_SEMI_SEMI] = ACTIONS(1208), [anon_sym_PIPE_AMP] = ACTIONS(210), [anon_sym_AMP_AMP] = ACTIONS(214), [anon_sym_PIPE_PIPE] = ACTIONS(214), @@ -13829,26 +14159,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_LPAREN] = ACTIONS(240), [sym_word] = ACTIONS(240), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1182), - [anon_sym_LF] = ACTIONS(1182), - [anon_sym_AMP] = ACTIONS(1182), + [anon_sym_SEMI] = ACTIONS(1208), + [anon_sym_LF] = ACTIONS(1208), + [anon_sym_AMP] = ACTIONS(1208), }, - [398] = { - [sym__terminated_statement] = STATE(639), - [sym_for_statement] = STATE(394), - [sym_while_statement] = STATE(394), - [sym_if_statement] = STATE(394), - [sym_elif_clause] = STATE(395), - [sym_else_clause] = STATE(640), - [sym_case_statement] = STATE(394), - [sym_function_definition] = STATE(394), - [sym_subshell] = STATE(394), - [sym_pipeline] = STATE(394), - [sym_list] = STATE(394), - [sym_bracket_command] = STATE(394), - [sym_command] = STATE(394), + [405] = { + [sym__terminated_statement] = STATE(663), + [sym_for_statement] = STATE(401), + [sym_while_statement] = STATE(401), + [sym_if_statement] = STATE(401), + [sym_elif_clause] = STATE(402), + [sym_else_clause] = STATE(664), + [sym_case_statement] = STATE(401), + [sym_function_definition] = STATE(401), + [sym_subshell] = STATE(401), + [sym_pipeline] = STATE(401), + [sym_list] = STATE(401), + [sym_bracket_command] = STATE(401), + [sym_command] = STATE(401), [sym_command_name] = STATE(24), - [sym_environment_variable_assignment] = STATE(397), + [sym_environment_variable_assignment] = STATE(404), [sym_subscript] = STATE(26), [sym_file_redirect] = STATE(27), [sym_concatenation] = STATE(28), @@ -13857,16 +14187,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(14), [sym_command_substitution] = STATE(14), [sym_process_substitution] = STATE(14), - [aux_sym_if_statement_repeat1] = STATE(641), + [aux_sym_if_statement_repeat1] = STATE(665), [aux_sym_command_repeat1] = STATE(30), [sym_file_descriptor] = ACTIONS(10), [sym_variable_name] = ACTIONS(12), [anon_sym_for] = ACTIONS(16), [anon_sym_while] = ACTIONS(18), [anon_sym_if] = ACTIONS(20), - [anon_sym_fi] = ACTIONS(1188), - [anon_sym_elif] = ACTIONS(644), - [anon_sym_else] = ACTIONS(646), + [anon_sym_fi] = ACTIONS(1214), + [anon_sym_elif] = ACTIONS(658), + [anon_sym_else] = ACTIONS(660), [anon_sym_case] = ACTIONS(22), [anon_sym_function] = ACTIONS(24), [anon_sym_LPAREN] = ACTIONS(26), @@ -13890,204 +14220,204 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(50), [sym_comment] = ACTIONS(52), }, - [399] = { - [sym_elif_clause] = STATE(642), - [sym_else_clause] = STATE(640), - [anon_sym_fi] = ACTIONS(1186), - [anon_sym_elif] = ACTIONS(1190), - [anon_sym_else] = ACTIONS(1192), + [406] = { + [sym_elif_clause] = STATE(666), + [sym_else_clause] = STATE(664), + [anon_sym_fi] = ACTIONS(1212), + [anon_sym_elif] = ACTIONS(1216), + [anon_sym_else] = ACTIONS(1218), [sym_comment] = ACTIONS(52), }, - [400] = { - [sym__concat] = ACTIONS(820), - [anon_sym_in] = ACTIONS(822), - [anon_sym_SEMI_SEMI] = ACTIONS(822), + [407] = { + [sym__concat] = ACTIONS(834), + [anon_sym_in] = ACTIONS(836), + [anon_sym_SEMI_SEMI] = ACTIONS(836), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(822), - [anon_sym_LF] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(822), + [anon_sym_SEMI] = ACTIONS(836), + [anon_sym_LF] = ACTIONS(836), + [anon_sym_AMP] = ACTIONS(836), }, - [401] = { - [sym__concat] = ACTIONS(828), - [anon_sym_in] = ACTIONS(830), - [anon_sym_SEMI_SEMI] = ACTIONS(830), + [408] = { + [sym__concat] = ACTIONS(842), + [anon_sym_in] = ACTIONS(844), + [anon_sym_SEMI_SEMI] = ACTIONS(844), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(830), - [anon_sym_LF] = ACTIONS(830), - [anon_sym_AMP] = ACTIONS(830), + [anon_sym_SEMI] = ACTIONS(844), + [anon_sym_LF] = ACTIONS(844), + [anon_sym_AMP] = ACTIONS(844), }, - [402] = { - [sym_case_item] = STATE(645), - [sym_concatenation] = STATE(646), - [sym_string] = STATE(644), - [sym_simple_expansion] = STATE(644), - [sym_expansion] = STATE(644), - [sym_command_substitution] = STATE(644), - [sym_process_substitution] = STATE(644), - [aux_sym_case_statement_repeat1] = STATE(647), - [anon_sym_esac] = ACTIONS(1194), + [409] = { + [sym_case_item] = STATE(669), + [sym_concatenation] = STATE(670), + [sym_string] = STATE(668), + [sym_simple_expansion] = STATE(668), + [sym_expansion] = STATE(668), + [sym_command_substitution] = STATE(668), + [sym_process_substitution] = STATE(668), + [aux_sym_case_statement_repeat1] = STATE(671), + [anon_sym_esac] = ACTIONS(1220), [anon_sym_DQUOTE] = ACTIONS(254), - [sym_raw_string] = ACTIONS(1196), + [sym_raw_string] = ACTIONS(1222), [anon_sym_DOLLAR] = ACTIONS(258), [anon_sym_DOLLAR_LBRACE] = ACTIONS(260), [anon_sym_DOLLAR_LPAREN] = ACTIONS(262), [anon_sym_BQUOTE] = ACTIONS(264), [anon_sym_LT_LPAREN] = ACTIONS(266), [anon_sym_GT_LPAREN] = ACTIONS(266), - [sym_word] = ACTIONS(1198), + [sym_word] = ACTIONS(1224), [sym_comment] = ACTIONS(52), }, - [403] = { - [anon_sym_SEMI_SEMI] = ACTIONS(1200), + [410] = { + [anon_sym_SEMI_SEMI] = ACTIONS(1226), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1200), - [anon_sym_LF] = ACTIONS(1200), - [anon_sym_AMP] = ACTIONS(1200), + [anon_sym_SEMI] = ACTIONS(1226), + [anon_sym_LF] = ACTIONS(1226), + [anon_sym_AMP] = ACTIONS(1226), }, - [404] = { - [sym_string] = STATE(649), - [sym_simple_expansion] = STATE(649), - [sym_expansion] = STATE(649), - [sym_command_substitution] = STATE(649), - [sym_process_substitution] = STATE(649), + [411] = { + [sym_string] = STATE(673), + [sym_simple_expansion] = STATE(673), + [sym_expansion] = STATE(673), + [sym_command_substitution] = STATE(673), + [sym_process_substitution] = STATE(673), [anon_sym_DQUOTE] = ACTIONS(64), - [sym_raw_string] = ACTIONS(1202), + [sym_raw_string] = ACTIONS(1228), [anon_sym_DOLLAR] = ACTIONS(68), [anon_sym_DOLLAR_LBRACE] = ACTIONS(70), [anon_sym_DOLLAR_LPAREN] = ACTIONS(72), [anon_sym_BQUOTE] = ACTIONS(74), [anon_sym_LT_LPAREN] = ACTIONS(76), [anon_sym_GT_LPAREN] = ACTIONS(76), - [sym_word] = ACTIONS(1204), - [sym_comment] = ACTIONS(52), - }, - [405] = { - [anon_sym_RBRACE] = ACTIONS(1206), - [anon_sym_LBRACK] = ACTIONS(1208), - [sym_comment] = ACTIONS(52), - }, - [406] = { - [anon_sym_RBRACE] = ACTIONS(1210), - [anon_sym_LBRACK] = ACTIONS(1212), - [sym_comment] = ACTIONS(52), - }, - [407] = { - [sym__concat] = ACTIONS(844), - [anon_sym_in] = ACTIONS(846), - [anon_sym_SEMI_SEMI] = ACTIONS(846), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(846), - [anon_sym_LF] = ACTIONS(846), - [anon_sym_AMP] = ACTIONS(846), - }, - [408] = { - [anon_sym_AT] = ACTIONS(1214), - [sym_comment] = ACTIONS(52), - }, - [409] = { - [sym_concatenation] = STATE(656), - [sym_string] = STATE(655), - [sym_simple_expansion] = STATE(655), - [sym_expansion] = STATE(655), - [sym_command_substitution] = STATE(655), - [sym_process_substitution] = STATE(655), - [anon_sym_DQUOTE] = ACTIONS(82), - [sym_raw_string] = ACTIONS(1216), - [anon_sym_DOLLAR] = ACTIONS(86), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(88), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(90), - [anon_sym_BQUOTE] = ACTIONS(92), - [anon_sym_LT_LPAREN] = ACTIONS(94), - [anon_sym_GT_LPAREN] = ACTIONS(94), - [sym_word] = ACTIONS(1218), - [sym_comment] = ACTIONS(52), - }, - [410] = { - [sym__concat] = ACTIONS(854), - [anon_sym_in] = ACTIONS(856), - [anon_sym_SEMI_SEMI] = ACTIONS(856), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(856), - [anon_sym_LF] = ACTIONS(856), - [anon_sym_AMP] = ACTIONS(856), - }, - [411] = { - [anon_sym_AT] = ACTIONS(1220), + [sym_word] = ACTIONS(1230), [sym_comment] = ACTIONS(52), }, [412] = { - [sym_concatenation] = STATE(659), - [sym_string] = STATE(658), - [sym_simple_expansion] = STATE(658), - [sym_expansion] = STATE(658), - [sym_command_substitution] = STATE(658), - [sym_process_substitution] = STATE(658), + [anon_sym_RBRACE] = ACTIONS(1232), + [anon_sym_LBRACK] = ACTIONS(1234), + [sym_comment] = ACTIONS(52), + }, + [413] = { + [anon_sym_RBRACE] = ACTIONS(1236), + [anon_sym_LBRACK] = ACTIONS(1238), + [sym_comment] = ACTIONS(52), + }, + [414] = { + [sym__concat] = ACTIONS(858), + [anon_sym_in] = ACTIONS(860), + [anon_sym_SEMI_SEMI] = ACTIONS(860), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(860), + [anon_sym_LF] = ACTIONS(860), + [anon_sym_AMP] = ACTIONS(860), + }, + [415] = { + [anon_sym_AT] = ACTIONS(1240), + [sym_comment] = ACTIONS(52), + }, + [416] = { + [sym_concatenation] = STATE(680), + [sym_string] = STATE(679), + [sym_simple_expansion] = STATE(679), + [sym_expansion] = STATE(679), + [sym_command_substitution] = STATE(679), + [sym_process_substitution] = STATE(679), [anon_sym_DQUOTE] = ACTIONS(82), - [sym_raw_string] = ACTIONS(1222), + [sym_raw_string] = ACTIONS(1242), [anon_sym_DOLLAR] = ACTIONS(86), [anon_sym_DOLLAR_LBRACE] = ACTIONS(88), [anon_sym_DOLLAR_LPAREN] = ACTIONS(90), [anon_sym_BQUOTE] = ACTIONS(92), [anon_sym_LT_LPAREN] = ACTIONS(94), [anon_sym_GT_LPAREN] = ACTIONS(94), - [sym_word] = ACTIONS(1224), + [sym_word] = ACTIONS(1244), [sym_comment] = ACTIONS(52), }, - [413] = { - [sym__concat] = ACTIONS(946), - [anon_sym_in] = ACTIONS(948), - [anon_sym_SEMI_SEMI] = ACTIONS(948), + [417] = { + [sym__concat] = ACTIONS(868), + [anon_sym_in] = ACTIONS(870), + [anon_sym_SEMI_SEMI] = ACTIONS(870), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(948), - [anon_sym_LF] = ACTIONS(948), - [anon_sym_AMP] = ACTIONS(948), + [anon_sym_SEMI] = ACTIONS(870), + [anon_sym_LF] = ACTIONS(870), + [anon_sym_AMP] = ACTIONS(870), }, - [414] = { - [sym__concat] = ACTIONS(984), - [anon_sym_in] = ACTIONS(986), - [anon_sym_SEMI_SEMI] = ACTIONS(986), + [418] = { + [anon_sym_AT] = ACTIONS(1246), + [sym_comment] = ACTIONS(52), + }, + [419] = { + [sym_concatenation] = STATE(683), + [sym_string] = STATE(682), + [sym_simple_expansion] = STATE(682), + [sym_expansion] = STATE(682), + [sym_command_substitution] = STATE(682), + [sym_process_substitution] = STATE(682), + [anon_sym_DQUOTE] = ACTIONS(82), + [sym_raw_string] = ACTIONS(1248), + [anon_sym_DOLLAR] = ACTIONS(86), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(88), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(90), + [anon_sym_BQUOTE] = ACTIONS(92), + [anon_sym_LT_LPAREN] = ACTIONS(94), + [anon_sym_GT_LPAREN] = ACTIONS(94), + [sym_word] = ACTIONS(1250), + [sym_comment] = ACTIONS(52), + }, + [420] = { + [sym__concat] = ACTIONS(960), + [anon_sym_in] = ACTIONS(962), + [anon_sym_SEMI_SEMI] = ACTIONS(962), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(986), - [anon_sym_LF] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), + [anon_sym_SEMI] = ACTIONS(962), + [anon_sym_LF] = ACTIONS(962), + [anon_sym_AMP] = ACTIONS(962), }, - [415] = { - [sym_compound_statement] = STATE(660), + [421] = { + [sym__concat] = ACTIONS(998), + [anon_sym_in] = ACTIONS(1000), + [anon_sym_SEMI_SEMI] = ACTIONS(1000), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(1000), + [anon_sym_LF] = ACTIONS(1000), + [anon_sym_AMP] = ACTIONS(1000), + }, + [422] = { + [sym_compound_statement] = STATE(684), [anon_sym_LBRACE] = ACTIONS(318), [sym_comment] = ACTIONS(52), }, - [416] = { - [anon_sym_PIPE] = ACTIONS(1226), - [anon_sym_RPAREN] = ACTIONS(1226), - [anon_sym_SEMI_SEMI] = ACTIONS(1226), - [anon_sym_PIPE_AMP] = ACTIONS(1226), - [anon_sym_AMP_AMP] = ACTIONS(1226), - [anon_sym_PIPE_PIPE] = ACTIONS(1226), + [423] = { + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_RPAREN] = ACTIONS(1252), + [anon_sym_SEMI_SEMI] = ACTIONS(1252), + [anon_sym_PIPE_AMP] = ACTIONS(1252), + [anon_sym_AMP_AMP] = ACTIONS(1252), + [anon_sym_PIPE_PIPE] = ACTIONS(1252), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1226), - [anon_sym_LF] = ACTIONS(1226), - [anon_sym_AMP] = ACTIONS(1226), + [anon_sym_SEMI] = ACTIONS(1252), + [anon_sym_LF] = ACTIONS(1252), + [anon_sym_AMP] = ACTIONS(1252), }, - [417] = { - [anon_sym_PIPE] = ACTIONS(1228), - [anon_sym_RPAREN] = ACTIONS(1228), - [anon_sym_SEMI_SEMI] = ACTIONS(1228), - [anon_sym_PIPE_AMP] = ACTIONS(1228), - [anon_sym_AMP_AMP] = ACTIONS(1228), - [anon_sym_PIPE_PIPE] = ACTIONS(1228), + [424] = { + [anon_sym_PIPE] = ACTIONS(1254), + [anon_sym_RPAREN] = ACTIONS(1254), + [anon_sym_SEMI_SEMI] = ACTIONS(1254), + [anon_sym_PIPE_AMP] = ACTIONS(1254), + [anon_sym_AMP_AMP] = ACTIONS(1254), + [anon_sym_PIPE_PIPE] = ACTIONS(1254), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1228), - [anon_sym_LF] = ACTIONS(1228), - [anon_sym_AMP] = ACTIONS(1228), + [anon_sym_SEMI] = ACTIONS(1254), + [anon_sym_LF] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), }, - [418] = { + [425] = { [sym_file_descriptor] = ACTIONS(530), [sym_variable_name] = ACTIONS(530), [anon_sym_for] = ACTIONS(532), [anon_sym_while] = ACTIONS(532), [anon_sym_if] = ACTIONS(532), [anon_sym_case] = ACTIONS(532), - [anon_sym_RPAREN] = ACTIONS(1230), + [anon_sym_RPAREN] = ACTIONS(1256), [anon_sym_function] = ACTIONS(532), [anon_sym_LPAREN] = ACTIONS(530), [anon_sym_LBRACK] = ACTIONS(532), @@ -14110,580 +14440,241 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(534), [sym_comment] = ACTIONS(52), }, - [419] = { - [sym__concat] = ACTIONS(820), - [anon_sym_RBRACE] = ACTIONS(820), - [anon_sym_RBRACK] = ACTIONS(1232), - [anon_sym_DQUOTE] = ACTIONS(820), - [sym_raw_string] = ACTIONS(820), - [anon_sym_DOLLAR] = ACTIONS(1232), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(820), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(820), - [anon_sym_BQUOTE] = ACTIONS(820), - [anon_sym_LT_LPAREN] = ACTIONS(820), - [anon_sym_GT_LPAREN] = ACTIONS(820), - [sym_word] = ACTIONS(822), - [sym_comment] = ACTIONS(52), - }, - [420] = { - [sym__concat] = ACTIONS(828), - [anon_sym_RBRACE] = ACTIONS(828), - [anon_sym_RBRACK] = ACTIONS(1234), - [anon_sym_DQUOTE] = ACTIONS(828), - [sym_raw_string] = ACTIONS(828), - [anon_sym_DOLLAR] = ACTIONS(1234), - [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_word] = ACTIONS(830), - [sym_comment] = ACTIONS(52), - }, - [421] = { - [sym_string] = STATE(662), - [sym_simple_expansion] = STATE(662), - [sym_expansion] = STATE(662), - [sym_command_substitution] = STATE(662), - [sym_process_substitution] = STATE(662), - [anon_sym_DQUOTE] = ACTIONS(82), - [sym_raw_string] = ACTIONS(1236), - [anon_sym_DOLLAR] = ACTIONS(86), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(88), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(90), - [anon_sym_BQUOTE] = ACTIONS(92), - [anon_sym_LT_LPAREN] = ACTIONS(94), - [anon_sym_GT_LPAREN] = ACTIONS(94), - [sym_word] = ACTIONS(1238), - [sym_comment] = ACTIONS(52), - }, - [422] = { - [anon_sym_RBRACE] = ACTIONS(1240), - [anon_sym_LBRACK] = ACTIONS(1242), - [sym_comment] = ACTIONS(52), - }, - [423] = { - [anon_sym_RBRACE] = ACTIONS(1244), - [anon_sym_LBRACK] = ACTIONS(1246), - [sym_comment] = ACTIONS(52), - }, - [424] = { - [sym__concat] = ACTIONS(844), - [anon_sym_RBRACE] = ACTIONS(844), - [anon_sym_RBRACK] = ACTIONS(1248), - [anon_sym_DQUOTE] = ACTIONS(844), - [sym_raw_string] = ACTIONS(844), - [anon_sym_DOLLAR] = ACTIONS(1248), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(844), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(844), - [anon_sym_GT_LPAREN] = ACTIONS(844), - [sym_word] = ACTIONS(846), - [sym_comment] = ACTIONS(52), - }, - [425] = { - [anon_sym_AT] = ACTIONS(1250), - [sym_comment] = ACTIONS(52), - }, [426] = { - [sym_concatenation] = STATE(669), - [sym_string] = STATE(668), - [sym_simple_expansion] = STATE(668), - [sym_expansion] = STATE(668), - [sym_command_substitution] = STATE(668), - [sym_process_substitution] = STATE(668), - [anon_sym_DQUOTE] = ACTIONS(82), - [sym_raw_string] = ACTIONS(1252), - [anon_sym_DOLLAR] = ACTIONS(86), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(88), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(90), - [anon_sym_BQUOTE] = ACTIONS(92), - [anon_sym_LT_LPAREN] = ACTIONS(94), - [anon_sym_GT_LPAREN] = ACTIONS(94), - [sym_word] = ACTIONS(1254), + [sym__concat] = ACTIONS(834), + [anon_sym_RBRACE] = ACTIONS(834), + [anon_sym_RBRACK] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(834), + [sym_raw_string] = ACTIONS(834), + [anon_sym_DOLLAR] = ACTIONS(1258), + [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_word] = ACTIONS(836), [sym_comment] = ACTIONS(52), }, [427] = { - [sym__concat] = ACTIONS(854), - [anon_sym_RBRACE] = ACTIONS(854), - [anon_sym_RBRACK] = ACTIONS(1256), - [anon_sym_DQUOTE] = ACTIONS(854), - [sym_raw_string] = ACTIONS(854), - [anon_sym_DOLLAR] = ACTIONS(1256), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(854), - [anon_sym_BQUOTE] = ACTIONS(854), - [anon_sym_LT_LPAREN] = ACTIONS(854), - [anon_sym_GT_LPAREN] = ACTIONS(854), - [sym_word] = ACTIONS(856), + [sym__concat] = ACTIONS(842), + [anon_sym_RBRACE] = ACTIONS(842), + [anon_sym_RBRACK] = ACTIONS(1260), + [anon_sym_DQUOTE] = ACTIONS(842), + [sym_raw_string] = ACTIONS(842), + [anon_sym_DOLLAR] = ACTIONS(1260), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(842), + [anon_sym_LT_LPAREN] = ACTIONS(842), + [anon_sym_GT_LPAREN] = ACTIONS(842), + [sym_word] = ACTIONS(844), [sym_comment] = ACTIONS(52), }, [428] = { - [anon_sym_AT] = ACTIONS(1258), - [sym_comment] = ACTIONS(52), - }, - [429] = { - [sym_concatenation] = STATE(672), - [sym_string] = STATE(671), - [sym_simple_expansion] = STATE(671), - [sym_expansion] = STATE(671), - [sym_command_substitution] = STATE(671), - [sym_process_substitution] = STATE(671), + [sym_string] = STATE(686), + [sym_simple_expansion] = STATE(686), + [sym_expansion] = STATE(686), + [sym_command_substitution] = STATE(686), + [sym_process_substitution] = STATE(686), [anon_sym_DQUOTE] = ACTIONS(82), - [sym_raw_string] = ACTIONS(1260), + [sym_raw_string] = ACTIONS(1262), [anon_sym_DOLLAR] = ACTIONS(86), [anon_sym_DOLLAR_LBRACE] = ACTIONS(88), [anon_sym_DOLLAR_LPAREN] = ACTIONS(90), [anon_sym_BQUOTE] = ACTIONS(92), [anon_sym_LT_LPAREN] = ACTIONS(94), [anon_sym_GT_LPAREN] = ACTIONS(94), - [sym_word] = ACTIONS(1262), + [sym_word] = ACTIONS(1264), + [sym_comment] = ACTIONS(52), + }, + [429] = { + [anon_sym_RBRACE] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(1268), [sym_comment] = ACTIONS(52), }, [430] = { - [sym__concat] = ACTIONS(946), - [anon_sym_RBRACE] = ACTIONS(946), - [anon_sym_RBRACK] = ACTIONS(1264), - [anon_sym_DQUOTE] = ACTIONS(946), - [sym_raw_string] = ACTIONS(946), - [anon_sym_DOLLAR] = ACTIONS(1264), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(946), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(946), - [anon_sym_BQUOTE] = ACTIONS(946), - [anon_sym_LT_LPAREN] = ACTIONS(946), - [anon_sym_GT_LPAREN] = ACTIONS(946), - [sym_word] = ACTIONS(948), + [anon_sym_RBRACE] = ACTIONS(1270), + [anon_sym_LBRACK] = ACTIONS(1272), [sym_comment] = ACTIONS(52), }, [431] = { - [sym__concat] = ACTIONS(984), - [anon_sym_RBRACE] = ACTIONS(984), - [anon_sym_RBRACK] = ACTIONS(1266), - [anon_sym_DQUOTE] = ACTIONS(984), - [sym_raw_string] = ACTIONS(984), - [anon_sym_DOLLAR] = ACTIONS(1266), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(984), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(984), - [anon_sym_BQUOTE] = ACTIONS(984), - [anon_sym_LT_LPAREN] = ACTIONS(984), - [anon_sym_GT_LPAREN] = ACTIONS(984), - [sym_word] = ACTIONS(986), + [sym__concat] = ACTIONS(858), + [anon_sym_RBRACE] = ACTIONS(858), + [anon_sym_RBRACK] = ACTIONS(1274), + [anon_sym_DQUOTE] = ACTIONS(858), + [sym_raw_string] = ACTIONS(858), + [anon_sym_DOLLAR] = ACTIONS(1274), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(858), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(858), + [anon_sym_LT_LPAREN] = ACTIONS(858), + [anon_sym_GT_LPAREN] = ACTIONS(858), + [sym_word] = ACTIONS(860), [sym_comment] = ACTIONS(52), }, [432] = { - [sym__concat] = ACTIONS(820), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1232), - [anon_sym_DQUOTE] = ACTIONS(820), - [sym_raw_string] = ACTIONS(820), - [anon_sym_DOLLAR] = ACTIONS(1232), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(820), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(820), - [anon_sym_BQUOTE] = ACTIONS(820), - [anon_sym_LT_LPAREN] = ACTIONS(820), - [anon_sym_GT_LPAREN] = ACTIONS(820), - [sym_word] = ACTIONS(822), + [anon_sym_AT] = ACTIONS(1276), [sym_comment] = ACTIONS(52), }, [433] = { - [sym__concat] = ACTIONS(828), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1234), - [anon_sym_DQUOTE] = ACTIONS(828), - [sym_raw_string] = ACTIONS(828), - [anon_sym_DOLLAR] = ACTIONS(1234), - [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_word] = ACTIONS(830), + [sym_concatenation] = STATE(693), + [sym_string] = STATE(692), + [sym_simple_expansion] = STATE(692), + [sym_expansion] = STATE(692), + [sym_command_substitution] = STATE(692), + [sym_process_substitution] = STATE(692), + [anon_sym_DQUOTE] = ACTIONS(82), + [sym_raw_string] = ACTIONS(1278), + [anon_sym_DOLLAR] = ACTIONS(86), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(88), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(90), + [anon_sym_BQUOTE] = ACTIONS(92), + [anon_sym_LT_LPAREN] = ACTIONS(94), + [anon_sym_GT_LPAREN] = ACTIONS(94), + [sym_word] = ACTIONS(1280), [sym_comment] = ACTIONS(52), }, [434] = { - [sym_string] = STATE(673), - [sym_simple_expansion] = STATE(673), - [sym_expansion] = STATE(673), - [sym_command_substitution] = STATE(673), - [sym_process_substitution] = STATE(673), + [sym__concat] = ACTIONS(868), + [anon_sym_RBRACE] = ACTIONS(868), + [anon_sym_RBRACK] = ACTIONS(1282), + [anon_sym_DQUOTE] = ACTIONS(868), + [sym_raw_string] = ACTIONS(868), + [anon_sym_DOLLAR] = ACTIONS(1282), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(868), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(868), + [anon_sym_BQUOTE] = ACTIONS(868), + [anon_sym_LT_LPAREN] = ACTIONS(868), + [anon_sym_GT_LPAREN] = ACTIONS(868), + [sym_word] = ACTIONS(870), + [sym_comment] = ACTIONS(52), + }, + [435] = { + [anon_sym_AT] = ACTIONS(1284), + [sym_comment] = ACTIONS(52), + }, + [436] = { + [sym_concatenation] = STATE(696), + [sym_string] = STATE(695), + [sym_simple_expansion] = STATE(695), + [sym_expansion] = STATE(695), + [sym_command_substitution] = STATE(695), + [sym_process_substitution] = STATE(695), + [anon_sym_DQUOTE] = ACTIONS(82), + [sym_raw_string] = ACTIONS(1286), + [anon_sym_DOLLAR] = ACTIONS(86), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(88), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(90), + [anon_sym_BQUOTE] = ACTIONS(92), + [anon_sym_LT_LPAREN] = ACTIONS(94), + [anon_sym_GT_LPAREN] = ACTIONS(94), + [sym_word] = ACTIONS(1288), + [sym_comment] = ACTIONS(52), + }, + [437] = { + [sym__concat] = ACTIONS(960), + [anon_sym_RBRACE] = ACTIONS(960), + [anon_sym_RBRACK] = ACTIONS(1290), + [anon_sym_DQUOTE] = ACTIONS(960), + [sym_raw_string] = ACTIONS(960), + [anon_sym_DOLLAR] = ACTIONS(1290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(960), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(960), + [anon_sym_BQUOTE] = ACTIONS(960), + [anon_sym_LT_LPAREN] = ACTIONS(960), + [anon_sym_GT_LPAREN] = ACTIONS(960), + [sym_word] = ACTIONS(962), + [sym_comment] = ACTIONS(52), + }, + [438] = { + [sym__concat] = ACTIONS(998), + [anon_sym_RBRACE] = ACTIONS(998), + [anon_sym_RBRACK] = ACTIONS(1292), + [anon_sym_DQUOTE] = ACTIONS(998), + [sym_raw_string] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(998), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(998), + [anon_sym_BQUOTE] = ACTIONS(998), + [anon_sym_LT_LPAREN] = ACTIONS(998), + [anon_sym_GT_LPAREN] = ACTIONS(998), + [sym_word] = ACTIONS(1000), + [sym_comment] = ACTIONS(52), + }, + [439] = { + [sym__concat] = ACTIONS(834), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(834), + [sym_raw_string] = ACTIONS(834), + [anon_sym_DOLLAR] = ACTIONS(1258), + [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_word] = ACTIONS(836), + [sym_comment] = ACTIONS(52), + }, + [440] = { + [sym__concat] = ACTIONS(842), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1260), + [anon_sym_DQUOTE] = ACTIONS(842), + [sym_raw_string] = ACTIONS(842), + [anon_sym_DOLLAR] = ACTIONS(1260), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(842), + [anon_sym_LT_LPAREN] = ACTIONS(842), + [anon_sym_GT_LPAREN] = ACTIONS(842), + [sym_word] = ACTIONS(844), + [sym_comment] = ACTIONS(52), + }, + [441] = { + [sym_string] = STATE(697), + [sym_simple_expansion] = STATE(697), + [sym_expansion] = STATE(697), + [sym_command_substitution] = STATE(697), + [sym_process_substitution] = STATE(697), [anon_sym_DQUOTE] = ACTIONS(98), - [sym_raw_string] = ACTIONS(1268), + [sym_raw_string] = ACTIONS(1294), [anon_sym_DOLLAR] = ACTIONS(102), [anon_sym_DOLLAR_LBRACE] = ACTIONS(104), [anon_sym_DOLLAR_LPAREN] = ACTIONS(106), [anon_sym_BQUOTE] = ACTIONS(108), [anon_sym_LT_LPAREN] = ACTIONS(110), [anon_sym_GT_LPAREN] = ACTIONS(110), - [sym_word] = ACTIONS(1270), - [sym_comment] = ACTIONS(52), - }, - [435] = { - [anon_sym_RBRACE] = ACTIONS(1272), - [anon_sym_LBRACK] = ACTIONS(1274), - [sym_comment] = ACTIONS(52), - }, - [436] = { - [anon_sym_RBRACE] = ACTIONS(1276), - [anon_sym_LBRACK] = ACTIONS(1278), - [sym_comment] = ACTIONS(52), - }, - [437] = { - [sym__concat] = ACTIONS(844), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1248), - [anon_sym_DQUOTE] = ACTIONS(844), - [sym_raw_string] = ACTIONS(844), - [anon_sym_DOLLAR] = ACTIONS(1248), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(844), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(844), - [anon_sym_GT_LPAREN] = ACTIONS(844), - [sym_word] = ACTIONS(846), - [sym_comment] = ACTIONS(52), - }, - [438] = { - [anon_sym_AT] = ACTIONS(1280), - [sym_comment] = ACTIONS(52), - }, - [439] = { - [sym_concatenation] = STATE(680), - [sym_string] = STATE(679), - [sym_simple_expansion] = STATE(679), - [sym_expansion] = STATE(679), - [sym_command_substitution] = STATE(679), - [sym_process_substitution] = STATE(679), - [anon_sym_DQUOTE] = ACTIONS(82), - [sym_raw_string] = ACTIONS(1282), - [anon_sym_DOLLAR] = ACTIONS(86), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(88), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(90), - [anon_sym_BQUOTE] = ACTIONS(92), - [anon_sym_LT_LPAREN] = ACTIONS(94), - [anon_sym_GT_LPAREN] = ACTIONS(94), - [sym_word] = ACTIONS(1284), - [sym_comment] = ACTIONS(52), - }, - [440] = { - [sym__concat] = ACTIONS(854), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1256), - [anon_sym_DQUOTE] = ACTIONS(854), - [sym_raw_string] = ACTIONS(854), - [anon_sym_DOLLAR] = ACTIONS(1256), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(854), - [anon_sym_BQUOTE] = ACTIONS(854), - [anon_sym_LT_LPAREN] = ACTIONS(854), - [anon_sym_GT_LPAREN] = ACTIONS(854), - [sym_word] = ACTIONS(856), - [sym_comment] = ACTIONS(52), - }, - [441] = { - [anon_sym_AT] = ACTIONS(1286), + [sym_word] = ACTIONS(1296), [sym_comment] = ACTIONS(52), }, [442] = { - [sym_concatenation] = STATE(683), - [sym_string] = STATE(682), - [sym_simple_expansion] = STATE(682), - [sym_expansion] = STATE(682), - [sym_command_substitution] = STATE(682), - [sym_process_substitution] = STATE(682), - [anon_sym_DQUOTE] = ACTIONS(82), - [sym_raw_string] = ACTIONS(1288), - [anon_sym_DOLLAR] = ACTIONS(86), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(88), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(90), - [anon_sym_BQUOTE] = ACTIONS(92), - [anon_sym_LT_LPAREN] = ACTIONS(94), - [anon_sym_GT_LPAREN] = ACTIONS(94), - [sym_word] = ACTIONS(1290), + [anon_sym_RBRACE] = ACTIONS(1298), + [anon_sym_LBRACK] = ACTIONS(1300), [sym_comment] = ACTIONS(52), }, [443] = { - [sym__concat] = ACTIONS(946), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1264), - [anon_sym_DQUOTE] = ACTIONS(946), - [sym_raw_string] = ACTIONS(946), - [anon_sym_DOLLAR] = ACTIONS(1264), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(946), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(946), - [anon_sym_BQUOTE] = ACTIONS(946), - [anon_sym_LT_LPAREN] = ACTIONS(946), - [anon_sym_GT_LPAREN] = ACTIONS(946), - [sym_word] = ACTIONS(948), + [anon_sym_RBRACE] = ACTIONS(1302), + [anon_sym_LBRACK] = ACTIONS(1304), [sym_comment] = ACTIONS(52), }, [444] = { - [sym__concat] = ACTIONS(984), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1266), - [anon_sym_DQUOTE] = ACTIONS(984), - [sym_raw_string] = ACTIONS(984), - [anon_sym_DOLLAR] = ACTIONS(1266), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(984), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(984), - [anon_sym_BQUOTE] = ACTIONS(984), - [anon_sym_LT_LPAREN] = ACTIONS(984), - [anon_sym_GT_LPAREN] = ACTIONS(984), - [sym_word] = ACTIONS(986), + [sym__concat] = ACTIONS(858), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1274), + [anon_sym_DQUOTE] = ACTIONS(858), + [sym_raw_string] = ACTIONS(858), + [anon_sym_DOLLAR] = ACTIONS(1274), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(858), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(858), + [anon_sym_LT_LPAREN] = ACTIONS(858), + [anon_sym_GT_LPAREN] = ACTIONS(858), + [sym_word] = ACTIONS(860), [sym_comment] = ACTIONS(52), }, [445] = { - [sym_file_descriptor] = ACTIONS(820), - [sym__concat] = ACTIONS(820), - [sym_variable_name] = ACTIONS(820), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_GT] = ACTIONS(1232), - [anon_sym_GT_GT] = ACTIONS(820), - [anon_sym_AMP_GT] = ACTIONS(1232), - [anon_sym_AMP_GT_GT] = ACTIONS(820), - [anon_sym_LT_AMP] = ACTIONS(820), - [anon_sym_GT_AMP] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(820), - [sym_raw_string] = ACTIONS(820), - [anon_sym_DOLLAR] = ACTIONS(1232), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(820), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(820), - [anon_sym_BQUOTE] = ACTIONS(820), - [anon_sym_LT_LPAREN] = ACTIONS(820), - [anon_sym_GT_LPAREN] = ACTIONS(820), - [sym_word] = ACTIONS(1232), + [anon_sym_AT] = ACTIONS(1306), [sym_comment] = ACTIONS(52), }, [446] = { - [sym_file_descriptor] = ACTIONS(828), - [sym__concat] = ACTIONS(828), - [sym_variable_name] = ACTIONS(828), - [anon_sym_LT] = ACTIONS(1234), - [anon_sym_GT] = ACTIONS(1234), - [anon_sym_GT_GT] = ACTIONS(828), - [anon_sym_AMP_GT] = ACTIONS(1234), - [anon_sym_AMP_GT_GT] = ACTIONS(828), - [anon_sym_LT_AMP] = ACTIONS(828), - [anon_sym_GT_AMP] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(828), - [sym_raw_string] = ACTIONS(828), - [anon_sym_DOLLAR] = ACTIONS(1234), - [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_word] = ACTIONS(1234), - [sym_comment] = ACTIONS(52), - }, - [447] = { - [sym_string] = STATE(684), - [sym_simple_expansion] = STATE(684), - [sym_expansion] = STATE(684), - [sym_command_substitution] = STATE(684), - [sym_process_substitution] = STATE(684), - [anon_sym_DQUOTE] = ACTIONS(114), - [sym_raw_string] = ACTIONS(1292), - [anon_sym_DOLLAR] = ACTIONS(118), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(120), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(122), - [anon_sym_BQUOTE] = ACTIONS(124), - [anon_sym_LT_LPAREN] = ACTIONS(126), - [anon_sym_GT_LPAREN] = ACTIONS(126), - [sym_word] = ACTIONS(1294), - [sym_comment] = ACTIONS(52), - }, - [448] = { - [anon_sym_RBRACE] = ACTIONS(1296), - [anon_sym_LBRACK] = ACTIONS(1298), - [sym_comment] = ACTIONS(52), - }, - [449] = { - [anon_sym_RBRACE] = ACTIONS(1300), - [anon_sym_LBRACK] = ACTIONS(1302), - [sym_comment] = ACTIONS(52), - }, - [450] = { - [sym_file_descriptor] = ACTIONS(844), - [sym__concat] = ACTIONS(844), - [sym_variable_name] = ACTIONS(844), - [anon_sym_LT] = ACTIONS(1248), - [anon_sym_GT] = ACTIONS(1248), - [anon_sym_GT_GT] = ACTIONS(844), - [anon_sym_AMP_GT] = ACTIONS(1248), - [anon_sym_AMP_GT_GT] = ACTIONS(844), - [anon_sym_LT_AMP] = ACTIONS(844), - [anon_sym_GT_AMP] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(844), - [sym_raw_string] = ACTIONS(844), - [anon_sym_DOLLAR] = ACTIONS(1248), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(844), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(844), - [anon_sym_GT_LPAREN] = ACTIONS(844), - [sym_word] = ACTIONS(1248), - [sym_comment] = ACTIONS(52), - }, - [451] = { - [anon_sym_AT] = ACTIONS(1304), - [sym_comment] = ACTIONS(52), - }, - [452] = { - [sym_concatenation] = STATE(691), - [sym_string] = STATE(690), - [sym_simple_expansion] = STATE(690), - [sym_expansion] = STATE(690), - [sym_command_substitution] = STATE(690), - [sym_process_substitution] = STATE(690), - [anon_sym_DQUOTE] = ACTIONS(82), - [sym_raw_string] = ACTIONS(1306), - [anon_sym_DOLLAR] = ACTIONS(86), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(88), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(90), - [anon_sym_BQUOTE] = ACTIONS(92), - [anon_sym_LT_LPAREN] = ACTIONS(94), - [anon_sym_GT_LPAREN] = ACTIONS(94), - [sym_word] = ACTIONS(1308), - [sym_comment] = ACTIONS(52), - }, - [453] = { - [sym_file_descriptor] = ACTIONS(854), - [sym__concat] = ACTIONS(854), - [sym_variable_name] = ACTIONS(854), - [anon_sym_LT] = ACTIONS(1256), - [anon_sym_GT] = ACTIONS(1256), - [anon_sym_GT_GT] = ACTIONS(854), - [anon_sym_AMP_GT] = ACTIONS(1256), - [anon_sym_AMP_GT_GT] = ACTIONS(854), - [anon_sym_LT_AMP] = ACTIONS(854), - [anon_sym_GT_AMP] = ACTIONS(854), - [anon_sym_DQUOTE] = ACTIONS(854), - [sym_raw_string] = ACTIONS(854), - [anon_sym_DOLLAR] = ACTIONS(1256), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(854), - [anon_sym_BQUOTE] = ACTIONS(854), - [anon_sym_LT_LPAREN] = ACTIONS(854), - [anon_sym_GT_LPAREN] = ACTIONS(854), - [sym_word] = ACTIONS(1256), - [sym_comment] = ACTIONS(52), - }, - [454] = { - [anon_sym_AT] = ACTIONS(1310), - [sym_comment] = ACTIONS(52), - }, - [455] = { - [sym_concatenation] = STATE(694), - [sym_string] = STATE(693), - [sym_simple_expansion] = STATE(693), - [sym_expansion] = STATE(693), - [sym_command_substitution] = STATE(693), - [sym_process_substitution] = STATE(693), - [anon_sym_DQUOTE] = ACTIONS(82), - [sym_raw_string] = ACTIONS(1312), - [anon_sym_DOLLAR] = ACTIONS(86), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(88), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(90), - [anon_sym_BQUOTE] = ACTIONS(92), - [anon_sym_LT_LPAREN] = ACTIONS(94), - [anon_sym_GT_LPAREN] = ACTIONS(94), - [sym_word] = ACTIONS(1314), - [sym_comment] = ACTIONS(52), - }, - [456] = { - [sym_file_descriptor] = ACTIONS(946), - [sym__concat] = ACTIONS(946), - [sym_variable_name] = ACTIONS(946), - [anon_sym_LT] = ACTIONS(1264), - [anon_sym_GT] = ACTIONS(1264), - [anon_sym_GT_GT] = ACTIONS(946), - [anon_sym_AMP_GT] = ACTIONS(1264), - [anon_sym_AMP_GT_GT] = ACTIONS(946), - [anon_sym_LT_AMP] = ACTIONS(946), - [anon_sym_GT_AMP] = ACTIONS(946), - [anon_sym_DQUOTE] = ACTIONS(946), - [sym_raw_string] = ACTIONS(946), - [anon_sym_DOLLAR] = ACTIONS(1264), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(946), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(946), - [anon_sym_BQUOTE] = ACTIONS(946), - [anon_sym_LT_LPAREN] = ACTIONS(946), - [anon_sym_GT_LPAREN] = ACTIONS(946), - [sym_word] = ACTIONS(1264), - [sym_comment] = ACTIONS(52), - }, - [457] = { - [sym_file_descriptor] = ACTIONS(984), - [sym__concat] = ACTIONS(984), - [sym_variable_name] = ACTIONS(984), - [anon_sym_LT] = ACTIONS(1266), - [anon_sym_GT] = ACTIONS(1266), - [anon_sym_GT_GT] = ACTIONS(984), - [anon_sym_AMP_GT] = ACTIONS(1266), - [anon_sym_AMP_GT_GT] = ACTIONS(984), - [anon_sym_LT_AMP] = ACTIONS(984), - [anon_sym_GT_AMP] = ACTIONS(984), - [anon_sym_DQUOTE] = ACTIONS(984), - [sym_raw_string] = ACTIONS(984), - [anon_sym_DOLLAR] = ACTIONS(1266), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(984), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(984), - [anon_sym_BQUOTE] = ACTIONS(984), - [anon_sym_LT_LPAREN] = ACTIONS(984), - [anon_sym_GT_LPAREN] = ACTIONS(984), - [sym_word] = ACTIONS(1266), - [sym_comment] = ACTIONS(52), - }, - [458] = { - [anon_sym_RBRACE] = ACTIONS(1316), - [anon_sym_LBRACK] = ACTIONS(1318), - [sym_comment] = ACTIONS(52), - }, - [459] = { - [anon_sym_RBRACE] = ACTIONS(1320), - [anon_sym_LBRACK] = ACTIONS(1322), - [sym_comment] = ACTIONS(52), - }, - [460] = { - [anon_sym_DQUOTE] = ACTIONS(846), - [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(1248), - [anon_sym_DOLLAR] = ACTIONS(846), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(846), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(846), - [anon_sym_BQUOTE] = ACTIONS(846), - [sym_comment] = ACTIONS(142), - }, - [461] = { - [anon_sym_AT] = ACTIONS(1324), - [sym_comment] = ACTIONS(52), - }, - [462] = { - [sym_concatenation] = STATE(701), - [sym_string] = STATE(700), - [sym_simple_expansion] = STATE(700), - [sym_expansion] = STATE(700), - [sym_command_substitution] = STATE(700), - [sym_process_substitution] = STATE(700), - [anon_sym_DQUOTE] = ACTIONS(82), - [sym_raw_string] = ACTIONS(1326), - [anon_sym_DOLLAR] = ACTIONS(86), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(88), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(90), - [anon_sym_BQUOTE] = ACTIONS(92), - [anon_sym_LT_LPAREN] = ACTIONS(94), - [anon_sym_GT_LPAREN] = ACTIONS(94), - [sym_word] = ACTIONS(1328), - [sym_comment] = ACTIONS(52), - }, - [463] = { - [anon_sym_DQUOTE] = ACTIONS(856), - [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(1256), - [anon_sym_DOLLAR] = ACTIONS(856), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(856), - [anon_sym_BQUOTE] = ACTIONS(856), - [sym_comment] = ACTIONS(142), - }, - [464] = { - [anon_sym_AT] = ACTIONS(1330), - [sym_comment] = ACTIONS(52), - }, - [465] = { [sym_concatenation] = STATE(704), [sym_string] = STATE(703), [sym_simple_expansion] = STATE(703), @@ -14691,6 +14682,185 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(703), [sym_process_substitution] = STATE(703), [anon_sym_DQUOTE] = ACTIONS(82), + [sym_raw_string] = ACTIONS(1308), + [anon_sym_DOLLAR] = ACTIONS(86), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(88), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(90), + [anon_sym_BQUOTE] = ACTIONS(92), + [anon_sym_LT_LPAREN] = ACTIONS(94), + [anon_sym_GT_LPAREN] = ACTIONS(94), + [sym_word] = ACTIONS(1310), + [sym_comment] = ACTIONS(52), + }, + [447] = { + [sym__concat] = ACTIONS(868), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1282), + [anon_sym_DQUOTE] = ACTIONS(868), + [sym_raw_string] = ACTIONS(868), + [anon_sym_DOLLAR] = ACTIONS(1282), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(868), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(868), + [anon_sym_BQUOTE] = ACTIONS(868), + [anon_sym_LT_LPAREN] = ACTIONS(868), + [anon_sym_GT_LPAREN] = ACTIONS(868), + [sym_word] = ACTIONS(870), + [sym_comment] = ACTIONS(52), + }, + [448] = { + [anon_sym_AT] = ACTIONS(1312), + [sym_comment] = ACTIONS(52), + }, + [449] = { + [sym_concatenation] = STATE(707), + [sym_string] = STATE(706), + [sym_simple_expansion] = STATE(706), + [sym_expansion] = STATE(706), + [sym_command_substitution] = STATE(706), + [sym_process_substitution] = STATE(706), + [anon_sym_DQUOTE] = ACTIONS(82), + [sym_raw_string] = ACTIONS(1314), + [anon_sym_DOLLAR] = ACTIONS(86), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(88), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(90), + [anon_sym_BQUOTE] = ACTIONS(92), + [anon_sym_LT_LPAREN] = ACTIONS(94), + [anon_sym_GT_LPAREN] = ACTIONS(94), + [sym_word] = ACTIONS(1316), + [sym_comment] = ACTIONS(52), + }, + [450] = { + [sym__concat] = ACTIONS(960), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1290), + [anon_sym_DQUOTE] = ACTIONS(960), + [sym_raw_string] = ACTIONS(960), + [anon_sym_DOLLAR] = ACTIONS(1290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(960), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(960), + [anon_sym_BQUOTE] = ACTIONS(960), + [anon_sym_LT_LPAREN] = ACTIONS(960), + [anon_sym_GT_LPAREN] = ACTIONS(960), + [sym_word] = ACTIONS(962), + [sym_comment] = ACTIONS(52), + }, + [451] = { + [sym__concat] = ACTIONS(998), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1292), + [anon_sym_DQUOTE] = ACTIONS(998), + [sym_raw_string] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(998), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(998), + [anon_sym_BQUOTE] = ACTIONS(998), + [anon_sym_LT_LPAREN] = ACTIONS(998), + [anon_sym_GT_LPAREN] = ACTIONS(998), + [sym_word] = ACTIONS(1000), + [sym_comment] = ACTIONS(52), + }, + [452] = { + [sym_file_descriptor] = ACTIONS(834), + [sym__concat] = ACTIONS(834), + [sym_variable_name] = ACTIONS(834), + [anon_sym_LT] = ACTIONS(1258), + [anon_sym_GT] = ACTIONS(1258), + [anon_sym_GT_GT] = ACTIONS(834), + [anon_sym_AMP_GT] = ACTIONS(1258), + [anon_sym_AMP_GT_GT] = ACTIONS(834), + [anon_sym_LT_AMP] = ACTIONS(834), + [anon_sym_GT_AMP] = ACTIONS(834), + [anon_sym_DQUOTE] = ACTIONS(834), + [sym_raw_string] = ACTIONS(834), + [anon_sym_DOLLAR] = ACTIONS(1258), + [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_word] = ACTIONS(1258), + [sym_comment] = ACTIONS(52), + }, + [453] = { + [sym_file_descriptor] = ACTIONS(842), + [sym__concat] = ACTIONS(842), + [sym_variable_name] = ACTIONS(842), + [anon_sym_LT] = ACTIONS(1260), + [anon_sym_GT] = ACTIONS(1260), + [anon_sym_GT_GT] = ACTIONS(842), + [anon_sym_AMP_GT] = ACTIONS(1260), + [anon_sym_AMP_GT_GT] = ACTIONS(842), + [anon_sym_LT_AMP] = ACTIONS(842), + [anon_sym_GT_AMP] = ACTIONS(842), + [anon_sym_DQUOTE] = ACTIONS(842), + [sym_raw_string] = ACTIONS(842), + [anon_sym_DOLLAR] = ACTIONS(1260), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(842), + [anon_sym_LT_LPAREN] = ACTIONS(842), + [anon_sym_GT_LPAREN] = ACTIONS(842), + [sym_word] = ACTIONS(1260), + [sym_comment] = ACTIONS(52), + }, + [454] = { + [sym_string] = STATE(708), + [sym_simple_expansion] = STATE(708), + [sym_expansion] = STATE(708), + [sym_command_substitution] = STATE(708), + [sym_process_substitution] = STATE(708), + [anon_sym_DQUOTE] = ACTIONS(114), + [sym_raw_string] = ACTIONS(1318), + [anon_sym_DOLLAR] = ACTIONS(118), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(120), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(122), + [anon_sym_BQUOTE] = ACTIONS(124), + [anon_sym_LT_LPAREN] = ACTIONS(126), + [anon_sym_GT_LPAREN] = ACTIONS(126), + [sym_word] = ACTIONS(1320), + [sym_comment] = ACTIONS(52), + }, + [455] = { + [anon_sym_RBRACE] = ACTIONS(1322), + [anon_sym_LBRACK] = ACTIONS(1324), + [sym_comment] = ACTIONS(52), + }, + [456] = { + [anon_sym_RBRACE] = ACTIONS(1326), + [anon_sym_LBRACK] = ACTIONS(1328), + [sym_comment] = ACTIONS(52), + }, + [457] = { + [sym_file_descriptor] = ACTIONS(858), + [sym__concat] = ACTIONS(858), + [sym_variable_name] = ACTIONS(858), + [anon_sym_LT] = ACTIONS(1274), + [anon_sym_GT] = ACTIONS(1274), + [anon_sym_GT_GT] = ACTIONS(858), + [anon_sym_AMP_GT] = ACTIONS(1274), + [anon_sym_AMP_GT_GT] = ACTIONS(858), + [anon_sym_LT_AMP] = ACTIONS(858), + [anon_sym_GT_AMP] = ACTIONS(858), + [anon_sym_DQUOTE] = ACTIONS(858), + [sym_raw_string] = ACTIONS(858), + [anon_sym_DOLLAR] = ACTIONS(1274), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(858), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(858), + [anon_sym_LT_LPAREN] = ACTIONS(858), + [anon_sym_GT_LPAREN] = ACTIONS(858), + [sym_word] = ACTIONS(1274), + [sym_comment] = ACTIONS(52), + }, + [458] = { + [anon_sym_AT] = ACTIONS(1330), + [sym_comment] = ACTIONS(52), + }, + [459] = { + [sym_concatenation] = STATE(715), + [sym_string] = STATE(714), + [sym_simple_expansion] = STATE(714), + [sym_expansion] = STATE(714), + [sym_command_substitution] = STATE(714), + [sym_process_substitution] = STATE(714), + [anon_sym_DQUOTE] = ACTIONS(82), [sym_raw_string] = ACTIONS(1332), [anon_sym_DOLLAR] = ACTIONS(86), [anon_sym_DOLLAR_LBRACE] = ACTIONS(88), @@ -14701,165 +14871,325 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(1334), [sym_comment] = ACTIONS(52), }, - [466] = { - [anon_sym_DQUOTE] = ACTIONS(948), - [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(1264), - [anon_sym_DOLLAR] = ACTIONS(948), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(948), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(948), - [anon_sym_BQUOTE] = ACTIONS(948), - [sym_comment] = ACTIONS(142), - }, - [467] = { - [sym_file_descriptor] = ACTIONS(1336), - [sym__concat] = ACTIONS(1336), - [anon_sym_PIPE] = ACTIONS(1338), - [anon_sym_RPAREN] = ACTIONS(1338), - [anon_sym_SEMI_SEMI] = ACTIONS(1338), - [anon_sym_PIPE_AMP] = ACTIONS(1338), - [anon_sym_AMP_AMP] = ACTIONS(1338), - [anon_sym_PIPE_PIPE] = ACTIONS(1338), - [anon_sym_LT] = ACTIONS(1338), - [anon_sym_GT] = ACTIONS(1338), - [anon_sym_GT_GT] = ACTIONS(1338), - [anon_sym_AMP_GT] = ACTIONS(1338), - [anon_sym_AMP_GT_GT] = ACTIONS(1338), - [anon_sym_LT_AMP] = ACTIONS(1338), - [anon_sym_GT_AMP] = ACTIONS(1338), - [anon_sym_LT_LT] = ACTIONS(1338), - [anon_sym_LT_LT_DASH] = ACTIONS(1338), - [anon_sym_DQUOTE] = ACTIONS(1338), - [sym_raw_string] = ACTIONS(1338), - [anon_sym_DOLLAR] = ACTIONS(1338), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1338), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1338), - [anon_sym_BQUOTE] = ACTIONS(1338), - [anon_sym_LT_LPAREN] = ACTIONS(1338), - [anon_sym_GT_LPAREN] = ACTIONS(1338), - [sym_word] = ACTIONS(1338), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1338), - [anon_sym_LF] = ACTIONS(1338), - [anon_sym_AMP] = ACTIONS(1338), - }, - [468] = { - [sym_file_descriptor] = ACTIONS(1340), - [sym__concat] = ACTIONS(1340), - [anon_sym_PIPE] = ACTIONS(1342), - [anon_sym_RPAREN] = ACTIONS(1342), - [anon_sym_SEMI_SEMI] = ACTIONS(1342), - [anon_sym_PIPE_AMP] = ACTIONS(1342), - [anon_sym_AMP_AMP] = ACTIONS(1342), - [anon_sym_PIPE_PIPE] = ACTIONS(1342), - [anon_sym_LT] = ACTIONS(1342), - [anon_sym_GT] = ACTIONS(1342), - [anon_sym_GT_GT] = ACTIONS(1342), - [anon_sym_AMP_GT] = ACTIONS(1342), - [anon_sym_AMP_GT_GT] = ACTIONS(1342), - [anon_sym_LT_AMP] = ACTIONS(1342), - [anon_sym_GT_AMP] = ACTIONS(1342), - [anon_sym_LT_LT] = ACTIONS(1342), - [anon_sym_LT_LT_DASH] = ACTIONS(1342), - [anon_sym_DQUOTE] = ACTIONS(1342), - [sym_raw_string] = ACTIONS(1342), - [anon_sym_DOLLAR] = ACTIONS(1342), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1342), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1342), - [anon_sym_BQUOTE] = ACTIONS(1342), - [anon_sym_LT_LPAREN] = ACTIONS(1342), - [anon_sym_GT_LPAREN] = ACTIONS(1342), - [sym_word] = ACTIONS(1342), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1342), - [anon_sym_LF] = ACTIONS(1342), - [anon_sym_AMP] = ACTIONS(1342), - }, - [469] = { - [anon_sym_AT] = ACTIONS(1344), + [460] = { + [sym_file_descriptor] = ACTIONS(868), + [sym__concat] = ACTIONS(868), + [sym_variable_name] = ACTIONS(868), + [anon_sym_LT] = ACTIONS(1282), + [anon_sym_GT] = ACTIONS(1282), + [anon_sym_GT_GT] = ACTIONS(868), + [anon_sym_AMP_GT] = ACTIONS(1282), + [anon_sym_AMP_GT_GT] = ACTIONS(868), + [anon_sym_LT_AMP] = ACTIONS(868), + [anon_sym_GT_AMP] = ACTIONS(868), + [anon_sym_DQUOTE] = ACTIONS(868), + [sym_raw_string] = ACTIONS(868), + [anon_sym_DOLLAR] = ACTIONS(1282), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(868), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(868), + [anon_sym_BQUOTE] = ACTIONS(868), + [anon_sym_LT_LPAREN] = ACTIONS(868), + [anon_sym_GT_LPAREN] = ACTIONS(868), + [sym_word] = ACTIONS(1282), [sym_comment] = ACTIONS(52), }, - [470] = { - [sym_file_descriptor] = ACTIONS(1346), - [sym__concat] = ACTIONS(1346), - [anon_sym_PIPE] = ACTIONS(1348), - [anon_sym_RPAREN] = ACTIONS(1348), - [anon_sym_SEMI_SEMI] = ACTIONS(1348), - [anon_sym_PIPE_AMP] = ACTIONS(1348), - [anon_sym_AMP_AMP] = ACTIONS(1348), - [anon_sym_PIPE_PIPE] = ACTIONS(1348), - [anon_sym_LT] = ACTIONS(1348), - [anon_sym_GT] = ACTIONS(1348), - [anon_sym_GT_GT] = ACTIONS(1348), - [anon_sym_AMP_GT] = ACTIONS(1348), - [anon_sym_AMP_GT_GT] = ACTIONS(1348), - [anon_sym_LT_AMP] = ACTIONS(1348), - [anon_sym_GT_AMP] = ACTIONS(1348), - [anon_sym_LT_LT] = ACTIONS(1348), - [anon_sym_LT_LT_DASH] = ACTIONS(1348), - [anon_sym_DQUOTE] = ACTIONS(1348), - [sym_raw_string] = ACTIONS(1348), - [anon_sym_DOLLAR] = ACTIONS(1348), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1348), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1348), - [anon_sym_BQUOTE] = ACTIONS(1348), - [anon_sym_LT_LPAREN] = ACTIONS(1348), - [anon_sym_GT_LPAREN] = ACTIONS(1348), - [sym_word] = ACTIONS(1348), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1348), - [anon_sym_LF] = ACTIONS(1348), - [anon_sym_AMP] = ACTIONS(1348), + [461] = { + [anon_sym_AT] = ACTIONS(1336), + [sym_comment] = ACTIONS(52), }, - [471] = { + [462] = { + [sym_concatenation] = STATE(718), + [sym_string] = STATE(717), + [sym_simple_expansion] = STATE(717), + [sym_expansion] = STATE(717), + [sym_command_substitution] = STATE(717), + [sym_process_substitution] = STATE(717), + [anon_sym_DQUOTE] = ACTIONS(82), + [sym_raw_string] = ACTIONS(1338), + [anon_sym_DOLLAR] = ACTIONS(86), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(88), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(90), + [anon_sym_BQUOTE] = ACTIONS(92), + [anon_sym_LT_LPAREN] = ACTIONS(94), + [anon_sym_GT_LPAREN] = ACTIONS(94), + [sym_word] = ACTIONS(1340), + [sym_comment] = ACTIONS(52), + }, + [463] = { + [sym_file_descriptor] = ACTIONS(960), + [sym__concat] = ACTIONS(960), + [sym_variable_name] = ACTIONS(960), + [anon_sym_LT] = ACTIONS(1290), + [anon_sym_GT] = ACTIONS(1290), + [anon_sym_GT_GT] = ACTIONS(960), + [anon_sym_AMP_GT] = ACTIONS(1290), + [anon_sym_AMP_GT_GT] = ACTIONS(960), + [anon_sym_LT_AMP] = ACTIONS(960), + [anon_sym_GT_AMP] = ACTIONS(960), + [anon_sym_DQUOTE] = ACTIONS(960), + [sym_raw_string] = ACTIONS(960), + [anon_sym_DOLLAR] = ACTIONS(1290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(960), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(960), + [anon_sym_BQUOTE] = ACTIONS(960), + [anon_sym_LT_LPAREN] = ACTIONS(960), + [anon_sym_GT_LPAREN] = ACTIONS(960), + [sym_word] = ACTIONS(1290), + [sym_comment] = ACTIONS(52), + }, + [464] = { + [sym_file_descriptor] = ACTIONS(998), + [sym__concat] = ACTIONS(998), + [sym_variable_name] = ACTIONS(998), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(998), + [anon_sym_AMP_GT] = ACTIONS(1292), + [anon_sym_AMP_GT_GT] = ACTIONS(998), + [anon_sym_LT_AMP] = ACTIONS(998), + [anon_sym_GT_AMP] = ACTIONS(998), + [anon_sym_DQUOTE] = ACTIONS(998), + [sym_raw_string] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(998), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(998), + [anon_sym_BQUOTE] = ACTIONS(998), + [anon_sym_LT_LPAREN] = ACTIONS(998), + [anon_sym_GT_LPAREN] = ACTIONS(998), + [sym_word] = ACTIONS(1292), + [sym_comment] = ACTIONS(52), + }, + [465] = { + [anon_sym_RBRACE] = ACTIONS(1342), + [anon_sym_LBRACK] = ACTIONS(1344), + [sym_comment] = ACTIONS(52), + }, + [466] = { + [anon_sym_RBRACE] = ACTIONS(1346), + [anon_sym_LBRACK] = ACTIONS(1348), + [sym_comment] = ACTIONS(52), + }, + [467] = { + [anon_sym_DQUOTE] = ACTIONS(860), + [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(1274), + [anon_sym_DOLLAR] = ACTIONS(860), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(860), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(860), + [sym_comment] = ACTIONS(142), + }, + [468] = { [anon_sym_AT] = ACTIONS(1350), [sym_comment] = ACTIONS(52), }, + [469] = { + [sym_concatenation] = STATE(725), + [sym_string] = STATE(724), + [sym_simple_expansion] = STATE(724), + [sym_expansion] = STATE(724), + [sym_command_substitution] = STATE(724), + [sym_process_substitution] = STATE(724), + [anon_sym_DQUOTE] = ACTIONS(82), + [sym_raw_string] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(86), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(88), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(90), + [anon_sym_BQUOTE] = ACTIONS(92), + [anon_sym_LT_LPAREN] = ACTIONS(94), + [anon_sym_GT_LPAREN] = ACTIONS(94), + [sym_word] = ACTIONS(1354), + [sym_comment] = ACTIONS(52), + }, + [470] = { + [anon_sym_DQUOTE] = ACTIONS(870), + [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(1282), + [anon_sym_DOLLAR] = ACTIONS(870), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(870), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(870), + [anon_sym_BQUOTE] = ACTIONS(870), + [sym_comment] = ACTIONS(142), + }, + [471] = { + [anon_sym_AT] = ACTIONS(1356), + [sym_comment] = ACTIONS(52), + }, [472] = { - [anon_sym_RBRACK] = ACTIONS(1352), + [sym_concatenation] = STATE(728), + [sym_string] = STATE(727), + [sym_simple_expansion] = STATE(727), + [sym_expansion] = STATE(727), + [sym_command_substitution] = STATE(727), + [sym_process_substitution] = STATE(727), + [anon_sym_DQUOTE] = ACTIONS(82), + [sym_raw_string] = ACTIONS(1358), + [anon_sym_DOLLAR] = ACTIONS(86), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(88), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(90), + [anon_sym_BQUOTE] = ACTIONS(92), + [anon_sym_LT_LPAREN] = ACTIONS(94), + [anon_sym_GT_LPAREN] = ACTIONS(94), + [sym_word] = ACTIONS(1360), [sym_comment] = ACTIONS(52), }, [473] = { - [aux_sym_concatenation_repeat1] = STATE(192), - [sym__concat] = ACTIONS(326), - [anon_sym_RBRACE] = ACTIONS(1354), - [sym_comment] = ACTIONS(52), + [anon_sym_DQUOTE] = ACTIONS(962), + [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(1290), + [anon_sym_DOLLAR] = ACTIONS(962), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(962), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(962), + [anon_sym_BQUOTE] = ACTIONS(962), + [sym_comment] = ACTIONS(142), }, [474] = { - [anon_sym_RBRACE] = ACTIONS(1354), - [sym_comment] = ACTIONS(52), + [sym_file_descriptor] = ACTIONS(1362), + [sym__concat] = ACTIONS(1362), + [anon_sym_PIPE] = ACTIONS(1364), + [anon_sym_RPAREN] = ACTIONS(1364), + [anon_sym_SEMI_SEMI] = ACTIONS(1364), + [anon_sym_PIPE_AMP] = ACTIONS(1364), + [anon_sym_AMP_AMP] = ACTIONS(1364), + [anon_sym_PIPE_PIPE] = ACTIONS(1364), + [anon_sym_LT] = ACTIONS(1364), + [anon_sym_GT] = ACTIONS(1364), + [anon_sym_GT_GT] = ACTIONS(1364), + [anon_sym_AMP_GT] = ACTIONS(1364), + [anon_sym_AMP_GT_GT] = ACTIONS(1364), + [anon_sym_LT_AMP] = ACTIONS(1364), + [anon_sym_GT_AMP] = ACTIONS(1364), + [anon_sym_LT_LT] = ACTIONS(1364), + [anon_sym_LT_LT_DASH] = ACTIONS(1364), + [anon_sym_DQUOTE] = ACTIONS(1364), + [sym_raw_string] = ACTIONS(1364), + [anon_sym_DOLLAR] = ACTIONS(1364), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1364), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1364), + [anon_sym_BQUOTE] = ACTIONS(1364), + [anon_sym_LT_LPAREN] = ACTIONS(1364), + [anon_sym_GT_LPAREN] = ACTIONS(1364), + [sym_word] = ACTIONS(1364), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(1364), + [anon_sym_LF] = ACTIONS(1364), + [anon_sym_AMP] = ACTIONS(1364), }, [475] = { - [anon_sym_RBRACK] = ACTIONS(1356), - [sym_comment] = ACTIONS(52), + [sym_file_descriptor] = ACTIONS(1366), + [sym__concat] = ACTIONS(1366), + [anon_sym_PIPE] = ACTIONS(1368), + [anon_sym_RPAREN] = ACTIONS(1368), + [anon_sym_SEMI_SEMI] = ACTIONS(1368), + [anon_sym_PIPE_AMP] = ACTIONS(1368), + [anon_sym_AMP_AMP] = ACTIONS(1368), + [anon_sym_PIPE_PIPE] = ACTIONS(1368), + [anon_sym_LT] = ACTIONS(1368), + [anon_sym_GT] = ACTIONS(1368), + [anon_sym_GT_GT] = ACTIONS(1368), + [anon_sym_AMP_GT] = ACTIONS(1368), + [anon_sym_AMP_GT_GT] = ACTIONS(1368), + [anon_sym_LT_AMP] = ACTIONS(1368), + [anon_sym_GT_AMP] = ACTIONS(1368), + [anon_sym_LT_LT] = ACTIONS(1368), + [anon_sym_LT_LT_DASH] = ACTIONS(1368), + [anon_sym_DQUOTE] = ACTIONS(1368), + [sym_raw_string] = ACTIONS(1368), + [anon_sym_DOLLAR] = ACTIONS(1368), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1368), + [anon_sym_BQUOTE] = ACTIONS(1368), + [anon_sym_LT_LPAREN] = ACTIONS(1368), + [anon_sym_GT_LPAREN] = ACTIONS(1368), + [sym_word] = ACTIONS(1368), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(1368), + [anon_sym_LF] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), }, [476] = { - [aux_sym_concatenation_repeat1] = STATE(192), - [sym__concat] = ACTIONS(326), - [anon_sym_RBRACE] = ACTIONS(1358), + [anon_sym_AT] = ACTIONS(1370), [sym_comment] = ACTIONS(52), }, [477] = { - [anon_sym_RBRACE] = ACTIONS(1358), - [sym_comment] = ACTIONS(52), + [sym_file_descriptor] = ACTIONS(1372), + [sym__concat] = ACTIONS(1372), + [anon_sym_PIPE] = ACTIONS(1374), + [anon_sym_RPAREN] = ACTIONS(1374), + [anon_sym_SEMI_SEMI] = ACTIONS(1374), + [anon_sym_PIPE_AMP] = ACTIONS(1374), + [anon_sym_AMP_AMP] = ACTIONS(1374), + [anon_sym_PIPE_PIPE] = ACTIONS(1374), + [anon_sym_LT] = ACTIONS(1374), + [anon_sym_GT] = ACTIONS(1374), + [anon_sym_GT_GT] = ACTIONS(1374), + [anon_sym_AMP_GT] = ACTIONS(1374), + [anon_sym_AMP_GT_GT] = ACTIONS(1374), + [anon_sym_LT_AMP] = ACTIONS(1374), + [anon_sym_GT_AMP] = ACTIONS(1374), + [anon_sym_LT_LT] = ACTIONS(1374), + [anon_sym_LT_LT_DASH] = ACTIONS(1374), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_raw_string] = ACTIONS(1374), + [anon_sym_DOLLAR] = ACTIONS(1374), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1374), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1374), + [anon_sym_BQUOTE] = ACTIONS(1374), + [anon_sym_LT_LPAREN] = ACTIONS(1374), + [anon_sym_GT_LPAREN] = ACTIONS(1374), + [sym_word] = ACTIONS(1374), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(1374), + [anon_sym_LF] = ACTIONS(1374), + [anon_sym_AMP] = ACTIONS(1374), }, [478] = { + [anon_sym_AT] = ACTIONS(1376), + [sym_comment] = ACTIONS(52), + }, + [479] = { + [anon_sym_RBRACK] = ACTIONS(1378), + [sym_comment] = ACTIONS(52), + }, + [480] = { + [aux_sym_concatenation_repeat1] = STATE(192), + [sym__concat] = ACTIONS(326), + [anon_sym_RBRACE] = ACTIONS(1380), + [sym_comment] = ACTIONS(52), + }, + [481] = { + [anon_sym_RBRACE] = ACTIONS(1380), + [sym_comment] = ACTIONS(52), + }, + [482] = { + [anon_sym_RBRACK] = ACTIONS(1382), + [sym_comment] = ACTIONS(52), + }, + [483] = { + [aux_sym_concatenation_repeat1] = STATE(192), + [sym__concat] = ACTIONS(326), + [anon_sym_RBRACE] = ACTIONS(1384), + [sym_comment] = ACTIONS(52), + }, + [484] = { + [anon_sym_RBRACE] = ACTIONS(1384), + [sym_comment] = ACTIONS(52), + }, + [485] = { [sym_file_descriptor] = ACTIONS(600), [sym_variable_name] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(1360), + [anon_sym_PIPE] = ACTIONS(1386), [anon_sym_RPAREN] = ACTIONS(600), [anon_sym_PIPE_AMP] = ACTIONS(600), [anon_sym_AMP_AMP] = ACTIONS(600), - [anon_sym_PIPE_PIPE] = ACTIONS(1360), - [anon_sym_LT] = ACTIONS(1360), - [anon_sym_GT] = ACTIONS(1360), + [anon_sym_PIPE_PIPE] = ACTIONS(1386), + [anon_sym_LT] = ACTIONS(1386), + [anon_sym_GT] = ACTIONS(1386), [anon_sym_GT_GT] = ACTIONS(600), - [anon_sym_AMP_GT] = ACTIONS(1360), + [anon_sym_AMP_GT] = ACTIONS(1386), [anon_sym_AMP_GT_GT] = ACTIONS(600), [anon_sym_LT_AMP] = ACTIONS(600), [anon_sym_GT_AMP] = ACTIONS(600), [anon_sym_DQUOTE] = ACTIONS(600), [sym_raw_string] = ACTIONS(600), - [anon_sym_DOLLAR] = ACTIONS(1360), + [anon_sym_DOLLAR] = ACTIONS(1386), [anon_sym_DOLLAR_LBRACE] = ACTIONS(600), [anon_sym_DOLLAR_LPAREN] = ACTIONS(600), [anon_sym_BQUOTE] = ACTIONS(600), @@ -14868,18 +15198,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(602), [sym_comment] = ACTIONS(52), }, - [479] = { - [aux_sym_array_repeat1] = STATE(712), - [anon_sym_RPAREN] = ACTIONS(1362), - [sym_word] = ACTIONS(606), + [486] = { + [sym_concatenation] = STATE(365), + [sym_string] = STATE(359), + [sym_simple_expansion] = STATE(359), + [sym_expansion] = STATE(359), + [sym_command_substitution] = STATE(359), + [sym_process_substitution] = STATE(359), + [aux_sym_for_statement_repeat1] = STATE(736), + [anon_sym_RPAREN] = ACTIONS(1388), + [anon_sym_DQUOTE] = ACTIONS(606), + [sym_raw_string] = ACTIONS(608), + [anon_sym_DOLLAR] = ACTIONS(610), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(612), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(614), + [anon_sym_BQUOTE] = ACTIONS(616), + [anon_sym_LT_LPAREN] = ACTIONS(618), + [anon_sym_GT_LPAREN] = ACTIONS(618), + [sym_word] = ACTIONS(620), [sym_comment] = ACTIONS(52), }, - [480] = { + [487] = { [sym_simple_expansion] = STATE(78), [sym_expansion] = STATE(78), [sym_command_substitution] = STATE(78), - [aux_sym_string_repeat1] = STATE(714), - [anon_sym_DQUOTE] = ACTIONS(1364), + [aux_sym_string_repeat1] = STATE(738), + [anon_sym_DQUOTE] = ACTIONS(1390), [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(132), [anon_sym_DOLLAR] = ACTIONS(134), [anon_sym_DOLLAR_LBRACE] = ACTIONS(136), @@ -14887,26 +15231,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(140), [sym_comment] = ACTIONS(142), }, - [481] = { - [aux_sym_concatenation_repeat1] = STATE(716), + [488] = { + [aux_sym_concatenation_repeat1] = STATE(740), [sym_file_descriptor] = ACTIONS(600), - [sym__concat] = ACTIONS(1366), + [sym__concat] = ACTIONS(1392), [sym_variable_name] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(1360), + [anon_sym_PIPE] = ACTIONS(1386), [anon_sym_RPAREN] = ACTIONS(600), [anon_sym_PIPE_AMP] = ACTIONS(600), [anon_sym_AMP_AMP] = ACTIONS(600), - [anon_sym_PIPE_PIPE] = ACTIONS(1360), - [anon_sym_LT] = ACTIONS(1360), - [anon_sym_GT] = ACTIONS(1360), + [anon_sym_PIPE_PIPE] = ACTIONS(1386), + [anon_sym_LT] = ACTIONS(1386), + [anon_sym_GT] = ACTIONS(1386), [anon_sym_GT_GT] = ACTIONS(600), - [anon_sym_AMP_GT] = ACTIONS(1360), + [anon_sym_AMP_GT] = ACTIONS(1386), [anon_sym_AMP_GT_GT] = ACTIONS(600), [anon_sym_LT_AMP] = ACTIONS(600), [anon_sym_GT_AMP] = ACTIONS(600), [anon_sym_DQUOTE] = ACTIONS(600), [sym_raw_string] = ACTIONS(600), - [anon_sym_DOLLAR] = ACTIONS(1360), + [anon_sym_DOLLAR] = ACTIONS(1386), [anon_sym_DOLLAR_LBRACE] = ACTIONS(600), [anon_sym_DOLLAR_LPAREN] = ACTIONS(600), [anon_sym_BQUOTE] = ACTIONS(600), @@ -14915,27 +15259,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(602), [sym_comment] = ACTIONS(52), }, - [482] = { - [sym_special_variable_name] = STATE(719), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(1368), - [anon_sym_AT] = ACTIONS(1368), + [489] = { + [sym_special_variable_name] = STATE(743), + [anon_sym_DOLLAR] = ACTIONS(1394), + [anon_sym_POUND] = ACTIONS(1394), + [anon_sym_AT] = ACTIONS(1394), [sym_comment] = ACTIONS(142), - [sym_simple_variable_name] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_QMARK] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_BANG] = ACTIONS(1368), - [anon_sym_0] = ACTIONS(1372), - [anon_sym__] = ACTIONS(1372), + [sym_simple_variable_name] = ACTIONS(1396), + [anon_sym_STAR] = ACTIONS(1394), + [anon_sym_QMARK] = ACTIONS(1394), + [anon_sym_DASH] = ACTIONS(1394), + [anon_sym_BANG] = ACTIONS(1394), + [anon_sym_0] = ACTIONS(1398), + [anon_sym__] = ACTIONS(1398), }, - [483] = { - [sym_special_variable_name] = STATE(722), + [490] = { + [sym_special_variable_name] = STATE(746), [anon_sym_DOLLAR] = ACTIONS(156), - [anon_sym_POUND] = ACTIONS(1374), + [anon_sym_POUND] = ACTIONS(1400), [anon_sym_AT] = ACTIONS(156), [sym_comment] = ACTIONS(142), - [sym_simple_variable_name] = ACTIONS(1376), + [sym_simple_variable_name] = ACTIONS(1402), [anon_sym_STAR] = ACTIONS(156), [anon_sym_QMARK] = ACTIONS(156), [anon_sym_DASH] = ACTIONS(156), @@ -14943,19 +15287,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_0] = ACTIONS(162), [anon_sym__] = ACTIONS(162), }, - [484] = { - [sym_for_statement] = STATE(723), - [sym_while_statement] = STATE(723), - [sym_if_statement] = STATE(723), - [sym_case_statement] = STATE(723), - [sym_function_definition] = STATE(723), - [sym_subshell] = STATE(723), - [sym_pipeline] = STATE(723), - [sym_list] = STATE(723), - [sym_bracket_command] = STATE(723), - [sym_command] = STATE(723), + [491] = { + [sym_for_statement] = STATE(747), + [sym_while_statement] = STATE(747), + [sym_if_statement] = STATE(747), + [sym_case_statement] = STATE(747), + [sym_function_definition] = STATE(747), + [sym_subshell] = STATE(747), + [sym_pipeline] = STATE(747), + [sym_list] = STATE(747), + [sym_bracket_command] = STATE(747), + [sym_command] = STATE(747), [sym_command_name] = STATE(111), - [sym_environment_variable_assignment] = STATE(724), + [sym_environment_variable_assignment] = STATE(748), [sym_subscript] = STATE(113), [sym_file_redirect] = STATE(27), [sym_concatenation] = STATE(114), @@ -14993,19 +15337,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(196), [sym_comment] = ACTIONS(52), }, - [485] = { - [sym_for_statement] = STATE(725), - [sym_while_statement] = STATE(725), - [sym_if_statement] = STATE(725), - [sym_case_statement] = STATE(725), - [sym_function_definition] = STATE(725), - [sym_subshell] = STATE(725), - [sym_pipeline] = STATE(725), - [sym_list] = STATE(725), - [sym_bracket_command] = STATE(725), - [sym_command] = STATE(725), + [492] = { + [sym_for_statement] = STATE(749), + [sym_while_statement] = STATE(749), + [sym_if_statement] = STATE(749), + [sym_case_statement] = STATE(749), + [sym_function_definition] = STATE(749), + [sym_subshell] = STATE(749), + [sym_pipeline] = STATE(749), + [sym_list] = STATE(749), + [sym_bracket_command] = STATE(749), + [sym_command] = STATE(749), [sym_command_name] = STATE(117), - [sym_environment_variable_assignment] = STATE(726), + [sym_environment_variable_assignment] = STATE(750), [sym_subscript] = STATE(113), [sym_file_redirect] = STATE(27), [sym_concatenation] = STATE(114), @@ -15043,19 +15387,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(196), [sym_comment] = ACTIONS(52), }, - [486] = { - [sym_for_statement] = STATE(727), - [sym_while_statement] = STATE(727), - [sym_if_statement] = STATE(727), - [sym_case_statement] = STATE(727), - [sym_function_definition] = STATE(727), - [sym_subshell] = STATE(727), - [sym_pipeline] = STATE(727), - [sym_list] = STATE(727), - [sym_bracket_command] = STATE(727), - [sym_command] = STATE(727), + [493] = { + [sym_for_statement] = STATE(751), + [sym_while_statement] = STATE(751), + [sym_if_statement] = STATE(751), + [sym_case_statement] = STATE(751), + [sym_function_definition] = STATE(751), + [sym_subshell] = STATE(751), + [sym_pipeline] = STATE(751), + [sym_list] = STATE(751), + [sym_bracket_command] = STATE(751), + [sym_command] = STATE(751), [sym_command_name] = STATE(111), - [sym_environment_variable_assignment] = STATE(728), + [sym_environment_variable_assignment] = STATE(752), [sym_subscript] = STATE(113), [sym_file_redirect] = STATE(27), [sym_concatenation] = STATE(114), @@ -15093,94 +15437,30 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(196), [sym_comment] = ACTIONS(52), }, - [487] = { - [sym_concatenation] = STATE(383), - [sym_string] = STATE(377), - [sym_simple_expansion] = STATE(377), - [sym_expansion] = STATE(377), - [sym_command_substitution] = STATE(377), - [sym_process_substitution] = STATE(377), - [aux_sym_for_statement_repeat1] = STATE(729), - [anon_sym_DQUOTE] = ACTIONS(622), - [sym_raw_string] = ACTIONS(624), - [anon_sym_DOLLAR] = ACTIONS(626), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(628), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(630), - [anon_sym_BQUOTE] = ACTIONS(632), - [anon_sym_LT_LPAREN] = ACTIONS(634), - [anon_sym_GT_LPAREN] = ACTIONS(634), - [sym_word] = ACTIONS(636), + [494] = { + [sym_concatenation] = STATE(390), + [sym_string] = STATE(384), + [sym_simple_expansion] = STATE(384), + [sym_expansion] = STATE(384), + [sym_command_substitution] = STATE(384), + [sym_process_substitution] = STATE(384), + [aux_sym_for_statement_repeat1] = STATE(753), + [anon_sym_DQUOTE] = ACTIONS(636), + [sym_raw_string] = ACTIONS(638), + [anon_sym_DOLLAR] = ACTIONS(640), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(642), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(644), + [anon_sym_BQUOTE] = ACTIONS(646), + [anon_sym_LT_LPAREN] = ACTIONS(648), + [anon_sym_GT_LPAREN] = ACTIONS(648), + [sym_word] = ACTIONS(650), [sym_comment] = ACTIONS(52), }, - [488] = { - [sym__terminated_statement] = STATE(386), - [sym_for_statement] = STATE(387), - [sym_while_statement] = STATE(387), - [sym_if_statement] = STATE(387), - [sym_case_statement] = STATE(387), - [sym_function_definition] = STATE(387), - [sym_subshell] = STATE(387), - [sym_pipeline] = STATE(387), - [sym_list] = STATE(387), - [sym_bracket_command] = STATE(387), - [sym_command] = STATE(387), - [sym_command_name] = STATE(24), - [sym_environment_variable_assignment] = STATE(388), - [sym_subscript] = STATE(26), - [sym_file_redirect] = STATE(27), - [sym_concatenation] = STATE(28), - [sym_string] = STATE(14), - [sym_simple_expansion] = STATE(14), - [sym_expansion] = STATE(14), - [sym_command_substitution] = STATE(14), - [sym_process_substitution] = STATE(14), - [aux_sym_program_repeat1] = STATE(731), - [aux_sym_command_repeat1] = STATE(30), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_done] = ACTIONS(1378), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_LBRACK_LBRACK] = ACTIONS(30), - [anon_sym_LT] = ACTIONS(32), - [anon_sym_GT] = ACTIONS(32), - [anon_sym_GT_GT] = ACTIONS(34), - [anon_sym_AMP_GT] = ACTIONS(32), - [anon_sym_AMP_GT_GT] = ACTIONS(34), - [anon_sym_LT_AMP] = ACTIONS(34), - [anon_sym_GT_AMP] = ACTIONS(34), - [anon_sym_DQUOTE] = ACTIONS(36), - [sym_raw_string] = ACTIONS(38), - [anon_sym_DOLLAR] = ACTIONS(40), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(42), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(44), - [anon_sym_BQUOTE] = ACTIONS(46), - [anon_sym_LT_LPAREN] = ACTIONS(48), - [anon_sym_GT_LPAREN] = ACTIONS(48), - [sym_word] = ACTIONS(50), - [sym_comment] = ACTIONS(52), - }, - [489] = { - [anon_sym_PIPE] = ACTIONS(1380), - [anon_sym_RPAREN] = ACTIONS(1382), - [anon_sym_PIPE_AMP] = ACTIONS(1382), - [anon_sym_AMP_AMP] = ACTIONS(1382), - [anon_sym_PIPE_PIPE] = ACTIONS(1382), - [anon_sym_BQUOTE] = ACTIONS(1382), - [sym_comment] = ACTIONS(52), - }, - [490] = { + [495] = { [sym__terminated_statement] = STATE(393), [sym_for_statement] = STATE(394), [sym_while_statement] = STATE(394), [sym_if_statement] = STATE(394), - [sym_elif_clause] = STATE(395), - [sym_else_clause] = STATE(733), [sym_case_statement] = STATE(394), [sym_function_definition] = STATE(394), [sym_subshell] = STATE(394), @@ -15189,7 +15469,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_bracket_command] = STATE(394), [sym_command] = STATE(394), [sym_command_name] = STATE(24), - [sym_environment_variable_assignment] = STATE(397), + [sym_environment_variable_assignment] = STATE(395), [sym_subscript] = STATE(26), [sym_file_redirect] = STATE(27), [sym_concatenation] = STATE(28), @@ -15198,17 +15478,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(14), [sym_command_substitution] = STATE(14), [sym_process_substitution] = STATE(14), - [aux_sym_program_repeat1] = STATE(734), - [aux_sym_if_statement_repeat1] = STATE(735), + [aux_sym_program_repeat1] = STATE(755), [aux_sym_command_repeat1] = STATE(30), [sym_file_descriptor] = ACTIONS(10), [sym_variable_name] = ACTIONS(12), [anon_sym_for] = ACTIONS(16), [anon_sym_while] = ACTIONS(18), + [anon_sym_done] = ACTIONS(1404), [anon_sym_if] = ACTIONS(20), - [anon_sym_fi] = ACTIONS(1384), - [anon_sym_elif] = ACTIONS(644), - [anon_sym_else] = ACTIONS(646), [anon_sym_case] = ACTIONS(22), [anon_sym_function] = ACTIONS(24), [anon_sym_LPAREN] = ACTIONS(26), @@ -15232,56 +15509,123 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(50), [sym_comment] = ACTIONS(52), }, - [491] = { - [anon_sym_SEMI_SEMI] = ACTIONS(1386), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1386), - [anon_sym_LF] = ACTIONS(1386), - [anon_sym_AMP] = ACTIONS(1386), - }, - [492] = { - [anon_sym_in] = ACTIONS(1388), - [sym_comment] = ACTIONS(52), - }, - [493] = { - [anon_sym_RPAREN] = ACTIONS(1390), - [sym_comment] = ACTIONS(52), - }, - [494] = { - [sym_file_redirect] = STATE(739), - [sym_file_descriptor] = ACTIONS(936), - [anon_sym_PIPE] = ACTIONS(1392), - [anon_sym_RPAREN] = ACTIONS(1394), - [anon_sym_PIPE_AMP] = ACTIONS(1394), - [anon_sym_AMP_AMP] = ACTIONS(1394), - [anon_sym_PIPE_PIPE] = ACTIONS(1394), - [anon_sym_LT] = ACTIONS(942), - [anon_sym_GT] = ACTIONS(942), - [anon_sym_GT_GT] = ACTIONS(944), - [anon_sym_AMP_GT] = ACTIONS(942), - [anon_sym_AMP_GT_GT] = ACTIONS(944), - [anon_sym_LT_AMP] = ACTIONS(944), - [anon_sym_GT_AMP] = ACTIONS(944), - [anon_sym_BQUOTE] = ACTIONS(1394), - [sym_comment] = ACTIONS(52), - }, - [495] = { - [anon_sym_PIPE] = ACTIONS(1396), - [anon_sym_RPAREN] = ACTIONS(1398), - [anon_sym_PIPE_AMP] = ACTIONS(1398), - [anon_sym_AMP_AMP] = ACTIONS(1398), - [anon_sym_PIPE_PIPE] = ACTIONS(1398), - [anon_sym_BQUOTE] = ACTIONS(1398), - [sym_comment] = ACTIONS(52), - }, [496] = { + [anon_sym_PIPE] = ACTIONS(1406), + [anon_sym_RPAREN] = ACTIONS(1408), + [anon_sym_PIPE_AMP] = ACTIONS(1408), + [anon_sym_AMP_AMP] = ACTIONS(1408), + [anon_sym_PIPE_PIPE] = ACTIONS(1408), + [anon_sym_BQUOTE] = ACTIONS(1408), + [sym_comment] = ACTIONS(52), + }, + [497] = { + [sym__terminated_statement] = STATE(400), + [sym_for_statement] = STATE(401), + [sym_while_statement] = STATE(401), + [sym_if_statement] = STATE(401), + [sym_elif_clause] = STATE(402), + [sym_else_clause] = STATE(757), + [sym_case_statement] = STATE(401), + [sym_function_definition] = STATE(401), + [sym_subshell] = STATE(401), + [sym_pipeline] = STATE(401), + [sym_list] = STATE(401), + [sym_bracket_command] = STATE(401), + [sym_command] = STATE(401), + [sym_command_name] = STATE(24), + [sym_environment_variable_assignment] = STATE(404), + [sym_subscript] = STATE(26), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(28), + [sym_string] = STATE(14), + [sym_simple_expansion] = STATE(14), + [sym_expansion] = STATE(14), + [sym_command_substitution] = STATE(14), + [sym_process_substitution] = STATE(14), + [aux_sym_program_repeat1] = STATE(758), + [aux_sym_if_statement_repeat1] = STATE(759), + [aux_sym_command_repeat1] = STATE(30), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(12), + [anon_sym_for] = ACTIONS(16), + [anon_sym_while] = ACTIONS(18), + [anon_sym_if] = ACTIONS(20), + [anon_sym_fi] = ACTIONS(1410), + [anon_sym_elif] = ACTIONS(658), + [anon_sym_else] = ACTIONS(660), + [anon_sym_case] = ACTIONS(22), + [anon_sym_function] = ACTIONS(24), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_LBRACK_LBRACK] = ACTIONS(30), + [anon_sym_LT] = ACTIONS(32), + [anon_sym_GT] = ACTIONS(32), + [anon_sym_GT_GT] = ACTIONS(34), + [anon_sym_AMP_GT] = ACTIONS(32), + [anon_sym_AMP_GT_GT] = ACTIONS(34), + [anon_sym_LT_AMP] = ACTIONS(34), + [anon_sym_GT_AMP] = ACTIONS(34), + [anon_sym_DQUOTE] = ACTIONS(36), + [sym_raw_string] = ACTIONS(38), + [anon_sym_DOLLAR] = ACTIONS(40), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(42), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(44), + [anon_sym_BQUOTE] = ACTIONS(46), + [anon_sym_LT_LPAREN] = ACTIONS(48), + [anon_sym_GT_LPAREN] = ACTIONS(48), + [sym_word] = ACTIONS(50), + [sym_comment] = ACTIONS(52), + }, + [498] = { + [anon_sym_SEMI_SEMI] = ACTIONS(1412), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(1412), + [anon_sym_LF] = ACTIONS(1412), + [anon_sym_AMP] = ACTIONS(1412), + }, + [499] = { + [anon_sym_in] = ACTIONS(1414), + [sym_comment] = ACTIONS(52), + }, + [500] = { + [anon_sym_RPAREN] = ACTIONS(1416), + [sym_comment] = ACTIONS(52), + }, + [501] = { + [sym_file_redirect] = STATE(763), + [sym_file_descriptor] = ACTIONS(950), + [anon_sym_PIPE] = ACTIONS(1418), + [anon_sym_RPAREN] = ACTIONS(1420), + [anon_sym_PIPE_AMP] = ACTIONS(1420), + [anon_sym_AMP_AMP] = ACTIONS(1420), + [anon_sym_PIPE_PIPE] = ACTIONS(1420), + [anon_sym_LT] = ACTIONS(956), + [anon_sym_GT] = ACTIONS(956), + [anon_sym_GT_GT] = ACTIONS(958), + [anon_sym_AMP_GT] = ACTIONS(956), + [anon_sym_AMP_GT_GT] = ACTIONS(958), + [anon_sym_LT_AMP] = ACTIONS(958), + [anon_sym_GT_AMP] = ACTIONS(958), + [anon_sym_BQUOTE] = ACTIONS(1420), + [sym_comment] = ACTIONS(52), + }, + [502] = { + [anon_sym_PIPE] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(1424), + [anon_sym_PIPE_AMP] = ACTIONS(1424), + [anon_sym_AMP_AMP] = ACTIONS(1424), + [anon_sym_PIPE_PIPE] = ACTIONS(1424), + [anon_sym_BQUOTE] = ACTIONS(1424), + [sym_comment] = ACTIONS(52), + }, + [503] = { [sym_file_descriptor] = ACTIONS(530), [sym_variable_name] = ACTIONS(530), [anon_sym_for] = ACTIONS(532), [anon_sym_while] = ACTIONS(532), [anon_sym_if] = ACTIONS(532), [anon_sym_case] = ACTIONS(532), - [anon_sym_RPAREN] = ACTIONS(1400), + [anon_sym_RPAREN] = ACTIONS(1426), [anon_sym_function] = ACTIONS(532), [anon_sym_LPAREN] = ACTIONS(530), [anon_sym_LBRACK] = ACTIONS(532), @@ -15304,24 +15648,24 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(534), [sym_comment] = ACTIONS(52), }, - [497] = { + [504] = { [anon_sym_PIPE] = ACTIONS(210), - [anon_sym_RPAREN] = ACTIONS(1402), - [anon_sym_SEMI_SEMI] = ACTIONS(1404), + [anon_sym_RPAREN] = ACTIONS(1428), + [anon_sym_SEMI_SEMI] = ACTIONS(1430), [anon_sym_PIPE_AMP] = ACTIONS(210), [anon_sym_AMP_AMP] = ACTIONS(214), [anon_sym_PIPE_PIPE] = ACTIONS(214), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1404), - [anon_sym_LF] = ACTIONS(1404), - [anon_sym_AMP] = ACTIONS(1404), + [anon_sym_SEMI] = ACTIONS(1430), + [anon_sym_LF] = ACTIONS(1430), + [anon_sym_AMP] = ACTIONS(1430), }, - [498] = { + [505] = { [sym_file_descriptor] = ACTIONS(238), [sym_variable_name] = ACTIONS(238), [anon_sym_PIPE] = ACTIONS(210), - [anon_sym_RPAREN] = ACTIONS(1402), - [anon_sym_SEMI_SEMI] = ACTIONS(1404), + [anon_sym_RPAREN] = ACTIONS(1428), + [anon_sym_SEMI_SEMI] = ACTIONS(1430), [anon_sym_PIPE_AMP] = ACTIONS(210), [anon_sym_AMP_AMP] = ACTIONS(214), [anon_sym_PIPE_PIPE] = ACTIONS(214), @@ -15342,281 +15686,281 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_LPAREN] = ACTIONS(240), [sym_word] = ACTIONS(240), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1404), - [anon_sym_LF] = ACTIONS(1404), - [anon_sym_AMP] = ACTIONS(1404), + [anon_sym_SEMI] = ACTIONS(1430), + [anon_sym_LF] = ACTIONS(1430), + [anon_sym_AMP] = ACTIONS(1430), }, - [499] = { - [anon_sym_PIPE] = ACTIONS(1406), - [anon_sym_RPAREN] = ACTIONS(1408), - [anon_sym_PIPE_AMP] = ACTIONS(1408), - [anon_sym_AMP_AMP] = ACTIONS(1408), - [anon_sym_PIPE_PIPE] = ACTIONS(1408), - [anon_sym_BQUOTE] = ACTIONS(1408), + [506] = { + [anon_sym_PIPE] = ACTIONS(1432), + [anon_sym_RPAREN] = ACTIONS(1434), + [anon_sym_PIPE_AMP] = ACTIONS(1434), + [anon_sym_AMP_AMP] = ACTIONS(1434), + [anon_sym_PIPE_PIPE] = ACTIONS(1434), + [anon_sym_BQUOTE] = ACTIONS(1434), [sym_comment] = ACTIONS(52), }, - [500] = { - [sym_file_descriptor] = ACTIONS(820), - [sym__concat] = ACTIONS(820), - [anon_sym_PIPE] = ACTIONS(1232), - [anon_sym_RPAREN] = ACTIONS(820), - [anon_sym_PIPE_AMP] = ACTIONS(820), - [anon_sym_AMP_AMP] = ACTIONS(820), - [anon_sym_PIPE_PIPE] = ACTIONS(1232), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_GT] = ACTIONS(1232), - [anon_sym_GT_GT] = ACTIONS(820), - [anon_sym_AMP_GT] = ACTIONS(1232), - [anon_sym_AMP_GT_GT] = ACTIONS(820), - [anon_sym_LT_AMP] = ACTIONS(820), - [anon_sym_GT_AMP] = ACTIONS(820), - [anon_sym_LT_LT] = ACTIONS(1232), - [anon_sym_LT_LT_DASH] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(820), - [sym_raw_string] = ACTIONS(820), - [anon_sym_DOLLAR] = ACTIONS(1232), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(820), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(820), - [anon_sym_BQUOTE] = ACTIONS(820), - [anon_sym_LT_LPAREN] = ACTIONS(820), - [anon_sym_GT_LPAREN] = ACTIONS(820), - [sym_word] = ACTIONS(822), + [507] = { + [sym_file_descriptor] = ACTIONS(834), + [sym__concat] = ACTIONS(834), + [anon_sym_PIPE] = ACTIONS(1258), + [anon_sym_RPAREN] = ACTIONS(834), + [anon_sym_PIPE_AMP] = ACTIONS(834), + [anon_sym_AMP_AMP] = ACTIONS(834), + [anon_sym_PIPE_PIPE] = ACTIONS(1258), + [anon_sym_LT] = ACTIONS(1258), + [anon_sym_GT] = ACTIONS(1258), + [anon_sym_GT_GT] = ACTIONS(834), + [anon_sym_AMP_GT] = ACTIONS(1258), + [anon_sym_AMP_GT_GT] = ACTIONS(834), + [anon_sym_LT_AMP] = ACTIONS(834), + [anon_sym_GT_AMP] = ACTIONS(834), + [anon_sym_LT_LT] = ACTIONS(1258), + [anon_sym_LT_LT_DASH] = ACTIONS(834), + [anon_sym_DQUOTE] = ACTIONS(834), + [sym_raw_string] = ACTIONS(834), + [anon_sym_DOLLAR] = ACTIONS(1258), + [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_word] = ACTIONS(836), [sym_comment] = ACTIONS(52), }, - [501] = { - [sym_file_descriptor] = ACTIONS(828), - [sym__concat] = ACTIONS(828), - [anon_sym_PIPE] = ACTIONS(1234), - [anon_sym_RPAREN] = ACTIONS(828), - [anon_sym_PIPE_AMP] = ACTIONS(828), - [anon_sym_AMP_AMP] = ACTIONS(828), - [anon_sym_PIPE_PIPE] = ACTIONS(1234), - [anon_sym_LT] = ACTIONS(1234), - [anon_sym_GT] = ACTIONS(1234), - [anon_sym_GT_GT] = ACTIONS(828), - [anon_sym_AMP_GT] = ACTIONS(1234), - [anon_sym_AMP_GT_GT] = ACTIONS(828), - [anon_sym_LT_AMP] = ACTIONS(828), - [anon_sym_GT_AMP] = ACTIONS(828), - [anon_sym_LT_LT] = ACTIONS(1234), - [anon_sym_LT_LT_DASH] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(828), - [sym_raw_string] = ACTIONS(828), - [anon_sym_DOLLAR] = ACTIONS(1234), - [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_word] = ACTIONS(830), + [508] = { + [sym_file_descriptor] = ACTIONS(842), + [sym__concat] = ACTIONS(842), + [anon_sym_PIPE] = ACTIONS(1260), + [anon_sym_RPAREN] = ACTIONS(842), + [anon_sym_PIPE_AMP] = ACTIONS(842), + [anon_sym_AMP_AMP] = ACTIONS(842), + [anon_sym_PIPE_PIPE] = ACTIONS(1260), + [anon_sym_LT] = ACTIONS(1260), + [anon_sym_GT] = ACTIONS(1260), + [anon_sym_GT_GT] = ACTIONS(842), + [anon_sym_AMP_GT] = ACTIONS(1260), + [anon_sym_AMP_GT_GT] = ACTIONS(842), + [anon_sym_LT_AMP] = ACTIONS(842), + [anon_sym_GT_AMP] = ACTIONS(842), + [anon_sym_LT_LT] = ACTIONS(1260), + [anon_sym_LT_LT_DASH] = ACTIONS(842), + [anon_sym_DQUOTE] = ACTIONS(842), + [sym_raw_string] = ACTIONS(842), + [anon_sym_DOLLAR] = ACTIONS(1260), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(842), + [anon_sym_LT_LPAREN] = ACTIONS(842), + [anon_sym_GT_LPAREN] = ACTIONS(842), + [sym_word] = ACTIONS(844), [sym_comment] = ACTIONS(52), }, - [502] = { - [sym_string] = STATE(742), - [sym_simple_expansion] = STATE(742), - [sym_expansion] = STATE(742), - [sym_command_substitution] = STATE(742), - [sym_process_substitution] = STATE(742), + [509] = { + [sym_string] = STATE(766), + [sym_simple_expansion] = STATE(766), + [sym_expansion] = STATE(766), + [sym_command_substitution] = STATE(766), + [sym_process_substitution] = STATE(766), [anon_sym_DQUOTE] = ACTIONS(182), - [sym_raw_string] = ACTIONS(1410), + [sym_raw_string] = ACTIONS(1436), [anon_sym_DOLLAR] = ACTIONS(186), [anon_sym_DOLLAR_LBRACE] = ACTIONS(188), [anon_sym_DOLLAR_LPAREN] = ACTIONS(190), [anon_sym_BQUOTE] = ACTIONS(192), [anon_sym_LT_LPAREN] = ACTIONS(194), [anon_sym_GT_LPAREN] = ACTIONS(194), - [sym_word] = ACTIONS(1412), - [sym_comment] = ACTIONS(52), - }, - [503] = { - [anon_sym_RBRACE] = ACTIONS(1414), - [anon_sym_LBRACK] = ACTIONS(1416), - [sym_comment] = ACTIONS(52), - }, - [504] = { - [anon_sym_RBRACE] = ACTIONS(1418), - [anon_sym_LBRACK] = ACTIONS(1420), - [sym_comment] = ACTIONS(52), - }, - [505] = { - [sym_file_descriptor] = ACTIONS(844), - [sym__concat] = ACTIONS(844), - [anon_sym_PIPE] = ACTIONS(1248), - [anon_sym_RPAREN] = ACTIONS(844), - [anon_sym_PIPE_AMP] = ACTIONS(844), - [anon_sym_AMP_AMP] = ACTIONS(844), - [anon_sym_PIPE_PIPE] = ACTIONS(1248), - [anon_sym_LT] = ACTIONS(1248), - [anon_sym_GT] = ACTIONS(1248), - [anon_sym_GT_GT] = ACTIONS(844), - [anon_sym_AMP_GT] = ACTIONS(1248), - [anon_sym_AMP_GT_GT] = ACTIONS(844), - [anon_sym_LT_AMP] = ACTIONS(844), - [anon_sym_GT_AMP] = ACTIONS(844), - [anon_sym_LT_LT] = ACTIONS(1248), - [anon_sym_LT_LT_DASH] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(844), - [sym_raw_string] = ACTIONS(844), - [anon_sym_DOLLAR] = ACTIONS(1248), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(844), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(844), - [anon_sym_GT_LPAREN] = ACTIONS(844), - [sym_word] = ACTIONS(846), - [sym_comment] = ACTIONS(52), - }, - [506] = { - [anon_sym_AT] = ACTIONS(1422), - [sym_comment] = ACTIONS(52), - }, - [507] = { - [sym_concatenation] = STATE(749), - [sym_string] = STATE(748), - [sym_simple_expansion] = STATE(748), - [sym_expansion] = STATE(748), - [sym_command_substitution] = STATE(748), - [sym_process_substitution] = STATE(748), - [anon_sym_DQUOTE] = ACTIONS(82), - [sym_raw_string] = ACTIONS(1424), - [anon_sym_DOLLAR] = ACTIONS(86), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(88), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(90), - [anon_sym_BQUOTE] = ACTIONS(92), - [anon_sym_LT_LPAREN] = ACTIONS(94), - [anon_sym_GT_LPAREN] = ACTIONS(94), - [sym_word] = ACTIONS(1426), - [sym_comment] = ACTIONS(52), - }, - [508] = { - [sym_file_descriptor] = ACTIONS(854), - [sym__concat] = ACTIONS(854), - [anon_sym_PIPE] = ACTIONS(1256), - [anon_sym_RPAREN] = ACTIONS(854), - [anon_sym_PIPE_AMP] = ACTIONS(854), - [anon_sym_AMP_AMP] = ACTIONS(854), - [anon_sym_PIPE_PIPE] = ACTIONS(1256), - [anon_sym_LT] = ACTIONS(1256), - [anon_sym_GT] = ACTIONS(1256), - [anon_sym_GT_GT] = ACTIONS(854), - [anon_sym_AMP_GT] = ACTIONS(1256), - [anon_sym_AMP_GT_GT] = ACTIONS(854), - [anon_sym_LT_AMP] = ACTIONS(854), - [anon_sym_GT_AMP] = ACTIONS(854), - [anon_sym_LT_LT] = ACTIONS(1256), - [anon_sym_LT_LT_DASH] = ACTIONS(854), - [anon_sym_DQUOTE] = ACTIONS(854), - [sym_raw_string] = ACTIONS(854), - [anon_sym_DOLLAR] = ACTIONS(1256), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(854), - [anon_sym_BQUOTE] = ACTIONS(854), - [anon_sym_LT_LPAREN] = ACTIONS(854), - [anon_sym_GT_LPAREN] = ACTIONS(854), - [sym_word] = ACTIONS(856), - [sym_comment] = ACTIONS(52), - }, - [509] = { - [anon_sym_AT] = ACTIONS(1428), + [sym_word] = ACTIONS(1438), [sym_comment] = ACTIONS(52), }, [510] = { - [sym_concatenation] = STATE(752), - [sym_string] = STATE(751), - [sym_simple_expansion] = STATE(751), - [sym_expansion] = STATE(751), - [sym_command_substitution] = STATE(751), - [sym_process_substitution] = STATE(751), + [anon_sym_RBRACE] = ACTIONS(1440), + [anon_sym_LBRACK] = ACTIONS(1442), + [sym_comment] = ACTIONS(52), + }, + [511] = { + [anon_sym_RBRACE] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1446), + [sym_comment] = ACTIONS(52), + }, + [512] = { + [sym_file_descriptor] = ACTIONS(858), + [sym__concat] = ACTIONS(858), + [anon_sym_PIPE] = ACTIONS(1274), + [anon_sym_RPAREN] = ACTIONS(858), + [anon_sym_PIPE_AMP] = ACTIONS(858), + [anon_sym_AMP_AMP] = ACTIONS(858), + [anon_sym_PIPE_PIPE] = ACTIONS(1274), + [anon_sym_LT] = ACTIONS(1274), + [anon_sym_GT] = ACTIONS(1274), + [anon_sym_GT_GT] = ACTIONS(858), + [anon_sym_AMP_GT] = ACTIONS(1274), + [anon_sym_AMP_GT_GT] = ACTIONS(858), + [anon_sym_LT_AMP] = ACTIONS(858), + [anon_sym_GT_AMP] = ACTIONS(858), + [anon_sym_LT_LT] = ACTIONS(1274), + [anon_sym_LT_LT_DASH] = ACTIONS(858), + [anon_sym_DQUOTE] = ACTIONS(858), + [sym_raw_string] = ACTIONS(858), + [anon_sym_DOLLAR] = ACTIONS(1274), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(858), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(858), + [anon_sym_LT_LPAREN] = ACTIONS(858), + [anon_sym_GT_LPAREN] = ACTIONS(858), + [sym_word] = ACTIONS(860), + [sym_comment] = ACTIONS(52), + }, + [513] = { + [anon_sym_AT] = ACTIONS(1448), + [sym_comment] = ACTIONS(52), + }, + [514] = { + [sym_concatenation] = STATE(773), + [sym_string] = STATE(772), + [sym_simple_expansion] = STATE(772), + [sym_expansion] = STATE(772), + [sym_command_substitution] = STATE(772), + [sym_process_substitution] = STATE(772), [anon_sym_DQUOTE] = ACTIONS(82), - [sym_raw_string] = ACTIONS(1430), + [sym_raw_string] = ACTIONS(1450), [anon_sym_DOLLAR] = ACTIONS(86), [anon_sym_DOLLAR_LBRACE] = ACTIONS(88), [anon_sym_DOLLAR_LPAREN] = ACTIONS(90), [anon_sym_BQUOTE] = ACTIONS(92), [anon_sym_LT_LPAREN] = ACTIONS(94), [anon_sym_GT_LPAREN] = ACTIONS(94), - [sym_word] = ACTIONS(1432), - [sym_comment] = ACTIONS(52), - }, - [511] = { - [sym_file_descriptor] = ACTIONS(946), - [sym__concat] = ACTIONS(946), - [anon_sym_PIPE] = ACTIONS(1264), - [anon_sym_RPAREN] = ACTIONS(946), - [anon_sym_PIPE_AMP] = ACTIONS(946), - [anon_sym_AMP_AMP] = ACTIONS(946), - [anon_sym_PIPE_PIPE] = ACTIONS(1264), - [anon_sym_LT] = ACTIONS(1264), - [anon_sym_GT] = ACTIONS(1264), - [anon_sym_GT_GT] = ACTIONS(946), - [anon_sym_AMP_GT] = ACTIONS(1264), - [anon_sym_AMP_GT_GT] = ACTIONS(946), - [anon_sym_LT_AMP] = ACTIONS(946), - [anon_sym_GT_AMP] = ACTIONS(946), - [anon_sym_LT_LT] = ACTIONS(1264), - [anon_sym_LT_LT_DASH] = ACTIONS(946), - [anon_sym_DQUOTE] = ACTIONS(946), - [sym_raw_string] = ACTIONS(946), - [anon_sym_DOLLAR] = ACTIONS(1264), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(946), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(946), - [anon_sym_BQUOTE] = ACTIONS(946), - [anon_sym_LT_LPAREN] = ACTIONS(946), - [anon_sym_GT_LPAREN] = ACTIONS(946), - [sym_word] = ACTIONS(948), - [sym_comment] = ACTIONS(52), - }, - [512] = { - [sym_file_descriptor] = ACTIONS(984), - [sym__concat] = ACTIONS(984), - [anon_sym_PIPE] = ACTIONS(1266), - [anon_sym_RPAREN] = ACTIONS(984), - [anon_sym_PIPE_AMP] = ACTIONS(984), - [anon_sym_AMP_AMP] = ACTIONS(984), - [anon_sym_PIPE_PIPE] = ACTIONS(1266), - [anon_sym_LT] = ACTIONS(1266), - [anon_sym_GT] = ACTIONS(1266), - [anon_sym_GT_GT] = ACTIONS(984), - [anon_sym_AMP_GT] = ACTIONS(1266), - [anon_sym_AMP_GT_GT] = ACTIONS(984), - [anon_sym_LT_AMP] = ACTIONS(984), - [anon_sym_GT_AMP] = ACTIONS(984), - [anon_sym_LT_LT] = ACTIONS(1266), - [anon_sym_LT_LT_DASH] = ACTIONS(984), - [anon_sym_DQUOTE] = ACTIONS(984), - [sym_raw_string] = ACTIONS(984), - [anon_sym_DOLLAR] = ACTIONS(1266), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(984), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(984), - [anon_sym_BQUOTE] = ACTIONS(984), - [anon_sym_LT_LPAREN] = ACTIONS(984), - [anon_sym_GT_LPAREN] = ACTIONS(984), - [sym_word] = ACTIONS(986), - [sym_comment] = ACTIONS(52), - }, - [513] = { - [sym_compound_statement] = STATE(753), - [anon_sym_LBRACE] = ACTIONS(478), - [sym_comment] = ACTIONS(52), - }, - [514] = { - [sym_file_descriptor] = ACTIONS(988), - [anon_sym_PIPE] = ACTIONS(1434), - [anon_sym_RPAREN] = ACTIONS(988), - [anon_sym_PIPE_AMP] = ACTIONS(988), - [anon_sym_AMP_AMP] = ACTIONS(988), - [anon_sym_PIPE_PIPE] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(1434), - [anon_sym_GT] = ACTIONS(1434), - [anon_sym_GT_GT] = ACTIONS(988), - [anon_sym_AMP_GT] = ACTIONS(1434), - [anon_sym_AMP_GT_GT] = ACTIONS(988), - [anon_sym_LT_AMP] = ACTIONS(988), - [anon_sym_GT_AMP] = ACTIONS(988), - [anon_sym_BQUOTE] = ACTIONS(988), + [sym_word] = ACTIONS(1452), [sym_comment] = ACTIONS(52), }, [515] = { + [sym_file_descriptor] = ACTIONS(868), + [sym__concat] = ACTIONS(868), + [anon_sym_PIPE] = ACTIONS(1282), + [anon_sym_RPAREN] = ACTIONS(868), + [anon_sym_PIPE_AMP] = ACTIONS(868), + [anon_sym_AMP_AMP] = ACTIONS(868), + [anon_sym_PIPE_PIPE] = ACTIONS(1282), + [anon_sym_LT] = ACTIONS(1282), + [anon_sym_GT] = ACTIONS(1282), + [anon_sym_GT_GT] = ACTIONS(868), + [anon_sym_AMP_GT] = ACTIONS(1282), + [anon_sym_AMP_GT_GT] = ACTIONS(868), + [anon_sym_LT_AMP] = ACTIONS(868), + [anon_sym_GT_AMP] = ACTIONS(868), + [anon_sym_LT_LT] = ACTIONS(1282), + [anon_sym_LT_LT_DASH] = ACTIONS(868), + [anon_sym_DQUOTE] = ACTIONS(868), + [sym_raw_string] = ACTIONS(868), + [anon_sym_DOLLAR] = ACTIONS(1282), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(868), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(868), + [anon_sym_BQUOTE] = ACTIONS(868), + [anon_sym_LT_LPAREN] = ACTIONS(868), + [anon_sym_GT_LPAREN] = ACTIONS(868), + [sym_word] = ACTIONS(870), + [sym_comment] = ACTIONS(52), + }, + [516] = { + [anon_sym_AT] = ACTIONS(1454), + [sym_comment] = ACTIONS(52), + }, + [517] = { + [sym_concatenation] = STATE(776), + [sym_string] = STATE(775), + [sym_simple_expansion] = STATE(775), + [sym_expansion] = STATE(775), + [sym_command_substitution] = STATE(775), + [sym_process_substitution] = STATE(775), + [anon_sym_DQUOTE] = ACTIONS(82), + [sym_raw_string] = ACTIONS(1456), + [anon_sym_DOLLAR] = ACTIONS(86), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(88), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(90), + [anon_sym_BQUOTE] = ACTIONS(92), + [anon_sym_LT_LPAREN] = ACTIONS(94), + [anon_sym_GT_LPAREN] = ACTIONS(94), + [sym_word] = ACTIONS(1458), + [sym_comment] = ACTIONS(52), + }, + [518] = { + [sym_file_descriptor] = ACTIONS(960), + [sym__concat] = ACTIONS(960), + [anon_sym_PIPE] = ACTIONS(1290), + [anon_sym_RPAREN] = ACTIONS(960), + [anon_sym_PIPE_AMP] = ACTIONS(960), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(1290), + [anon_sym_LT] = ACTIONS(1290), + [anon_sym_GT] = ACTIONS(1290), + [anon_sym_GT_GT] = ACTIONS(960), + [anon_sym_AMP_GT] = ACTIONS(1290), + [anon_sym_AMP_GT_GT] = ACTIONS(960), + [anon_sym_LT_AMP] = ACTIONS(960), + [anon_sym_GT_AMP] = ACTIONS(960), + [anon_sym_LT_LT] = ACTIONS(1290), + [anon_sym_LT_LT_DASH] = ACTIONS(960), + [anon_sym_DQUOTE] = ACTIONS(960), + [sym_raw_string] = ACTIONS(960), + [anon_sym_DOLLAR] = ACTIONS(1290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(960), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(960), + [anon_sym_BQUOTE] = ACTIONS(960), + [anon_sym_LT_LPAREN] = ACTIONS(960), + [anon_sym_GT_LPAREN] = ACTIONS(960), + [sym_word] = ACTIONS(962), + [sym_comment] = ACTIONS(52), + }, + [519] = { + [sym_file_descriptor] = ACTIONS(998), + [sym__concat] = ACTIONS(998), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_RPAREN] = ACTIONS(998), + [anon_sym_PIPE_AMP] = ACTIONS(998), + [anon_sym_AMP_AMP] = ACTIONS(998), + [anon_sym_PIPE_PIPE] = ACTIONS(1292), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(998), + [anon_sym_AMP_GT] = ACTIONS(1292), + [anon_sym_AMP_GT_GT] = ACTIONS(998), + [anon_sym_LT_AMP] = ACTIONS(998), + [anon_sym_GT_AMP] = ACTIONS(998), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_LT_LT_DASH] = ACTIONS(998), + [anon_sym_DQUOTE] = ACTIONS(998), + [sym_raw_string] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(998), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(998), + [anon_sym_BQUOTE] = ACTIONS(998), + [anon_sym_LT_LPAREN] = ACTIONS(998), + [anon_sym_GT_LPAREN] = ACTIONS(998), + [sym_word] = ACTIONS(1000), + [sym_comment] = ACTIONS(52), + }, + [520] = { + [sym_compound_statement] = STATE(777), + [anon_sym_LBRACE] = ACTIONS(478), + [sym_comment] = ACTIONS(52), + }, + [521] = { + [sym_file_descriptor] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1460), + [anon_sym_RPAREN] = ACTIONS(1002), + [anon_sym_PIPE_AMP] = ACTIONS(1002), + [anon_sym_AMP_AMP] = ACTIONS(1002), + [anon_sym_PIPE_PIPE] = ACTIONS(1002), + [anon_sym_LT] = ACTIONS(1460), + [anon_sym_GT] = ACTIONS(1460), + [anon_sym_GT_GT] = ACTIONS(1002), + [anon_sym_AMP_GT] = ACTIONS(1460), + [anon_sym_AMP_GT_GT] = ACTIONS(1002), + [anon_sym_LT_AMP] = ACTIONS(1002), + [anon_sym_GT_AMP] = ACTIONS(1002), + [anon_sym_BQUOTE] = ACTIONS(1002), + [sym_comment] = ACTIONS(52), + }, + [522] = { [sym__terminated_statement] = STATE(136), [sym_for_statement] = STATE(23), [sym_while_statement] = STATE(23), @@ -15647,7 +15991,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(1436), + [anon_sym_RBRACE] = ACTIONS(1462), [anon_sym_LBRACK] = ACTIONS(28), [anon_sym_LBRACK_LBRACK] = ACTIONS(30), [anon_sym_LT] = ACTIONS(32), @@ -15668,581 +16012,60 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(50), [sym_comment] = ACTIONS(52), }, - [516] = { - [anon_sym_LT] = ACTIONS(1438), - [anon_sym_GT] = ACTIONS(1438), - [anon_sym_GT_GT] = ACTIONS(1440), - [anon_sym_AMP_GT] = ACTIONS(1438), - [anon_sym_AMP_GT_GT] = ACTIONS(1440), - [anon_sym_LT_AMP] = ACTIONS(1440), - [anon_sym_GT_AMP] = ACTIONS(1440), - [sym_comment] = ACTIONS(52), - }, - [517] = { - [sym_concatenation] = STATE(763), - [sym_string] = STATE(757), - [sym_simple_expansion] = STATE(757), - [sym_expansion] = STATE(757), - [sym_command_substitution] = STATE(757), - [sym_process_substitution] = STATE(757), - [anon_sym_DQUOTE] = ACTIONS(1442), - [sym_raw_string] = ACTIONS(1444), - [anon_sym_DOLLAR] = ACTIONS(1446), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1448), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1450), - [anon_sym_BQUOTE] = ACTIONS(1452), - [anon_sym_LT_LPAREN] = ACTIONS(1454), - [anon_sym_GT_LPAREN] = ACTIONS(1454), - [sym_word] = ACTIONS(1456), - [sym_comment] = ACTIONS(52), - }, - [518] = { - [anon_sym_PIPE] = ACTIONS(1392), - [anon_sym_RPAREN] = ACTIONS(1394), - [anon_sym_PIPE_AMP] = ACTIONS(1394), - [anon_sym_AMP_AMP] = ACTIONS(1394), - [anon_sym_PIPE_PIPE] = ACTIONS(1394), - [anon_sym_BQUOTE] = ACTIONS(1394), - [sym_comment] = ACTIONS(52), - }, - [519] = { - [anon_sym_PIPE] = ACTIONS(1458), - [anon_sym_RPAREN] = ACTIONS(1460), - [anon_sym_PIPE_AMP] = ACTIONS(1460), - [anon_sym_AMP_AMP] = ACTIONS(1460), - [anon_sym_PIPE_PIPE] = ACTIONS(1460), - [anon_sym_BQUOTE] = ACTIONS(1460), - [sym_comment] = ACTIONS(52), - }, - [520] = { - [sym_file_descriptor] = ACTIONS(238), - [sym_variable_name] = ACTIONS(238), - [anon_sym_PIPE] = ACTIONS(1458), - [anon_sym_RPAREN] = ACTIONS(1460), - [anon_sym_PIPE_AMP] = ACTIONS(1460), - [anon_sym_AMP_AMP] = ACTIONS(1460), - [anon_sym_PIPE_PIPE] = ACTIONS(1458), - [anon_sym_LT] = ACTIONS(242), - [anon_sym_GT] = ACTIONS(242), - [anon_sym_GT_GT] = ACTIONS(238), - [anon_sym_AMP_GT] = ACTIONS(242), - [anon_sym_AMP_GT_GT] = ACTIONS(238), - [anon_sym_LT_AMP] = ACTIONS(238), - [anon_sym_GT_AMP] = ACTIONS(238), - [anon_sym_DQUOTE] = ACTIONS(238), - [sym_raw_string] = ACTIONS(238), - [anon_sym_DOLLAR] = ACTIONS(242), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(238), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(238), - [anon_sym_LT_LPAREN] = ACTIONS(238), - [anon_sym_GT_LPAREN] = ACTIONS(238), - [sym_word] = ACTIONS(240), - [sym_comment] = ACTIONS(52), - }, - [521] = { - [anon_sym_PIPE] = ACTIONS(480), - [anon_sym_RPAREN] = ACTIONS(1462), - [anon_sym_PIPE_AMP] = ACTIONS(484), - [anon_sym_AMP_AMP] = ACTIONS(1462), - [anon_sym_PIPE_PIPE] = ACTIONS(1462), - [sym_comment] = ACTIONS(52), - }, - [522] = { - [sym_file_descriptor] = ACTIONS(238), - [sym_variable_name] = ACTIONS(238), - [anon_sym_PIPE] = ACTIONS(480), - [anon_sym_RPAREN] = ACTIONS(1462), - [anon_sym_PIPE_AMP] = ACTIONS(484), - [anon_sym_AMP_AMP] = ACTIONS(1462), - [anon_sym_PIPE_PIPE] = ACTIONS(1464), - [anon_sym_LT] = ACTIONS(242), - [anon_sym_GT] = ACTIONS(242), - [anon_sym_GT_GT] = ACTIONS(238), - [anon_sym_AMP_GT] = ACTIONS(242), - [anon_sym_AMP_GT_GT] = ACTIONS(238), - [anon_sym_LT_AMP] = ACTIONS(238), - [anon_sym_GT_AMP] = ACTIONS(238), - [anon_sym_DQUOTE] = ACTIONS(238), - [sym_raw_string] = ACTIONS(238), - [anon_sym_DOLLAR] = ACTIONS(242), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(238), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(238), - [anon_sym_LT_LPAREN] = ACTIONS(238), - [anon_sym_GT_LPAREN] = ACTIONS(238), - [sym_word] = ACTIONS(240), - [sym_comment] = ACTIONS(52), - }, [523] = { - [sym_concatenation] = STATE(765), - [sym_string] = STATE(764), - [sym_simple_expansion] = STATE(764), - [sym_expansion] = STATE(764), - [sym_command_substitution] = STATE(764), - [sym_process_substitution] = STATE(764), - [anon_sym_DQUOTE] = ACTIONS(954), - [sym_raw_string] = ACTIONS(1466), - [anon_sym_DOLLAR] = ACTIONS(958), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(960), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(962), - [anon_sym_BQUOTE] = ACTIONS(964), - [anon_sym_LT_LPAREN] = ACTIONS(966), - [anon_sym_GT_LPAREN] = ACTIONS(966), - [sym_word] = ACTIONS(1468), + [anon_sym_LT] = ACTIONS(1464), + [anon_sym_GT] = ACTIONS(1464), + [anon_sym_GT_GT] = ACTIONS(1466), + [anon_sym_AMP_GT] = ACTIONS(1464), + [anon_sym_AMP_GT_GT] = ACTIONS(1466), + [anon_sym_LT_AMP] = ACTIONS(1466), + [anon_sym_GT_AMP] = ACTIONS(1466), [sym_comment] = ACTIONS(52), }, [524] = { - [sym_simple_expansion] = STATE(78), - [sym_expansion] = STATE(78), - [sym_command_substitution] = STATE(78), - [aux_sym_string_repeat1] = STATE(767), - [anon_sym_DQUOTE] = ACTIONS(1470), - [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(132), - [anon_sym_DOLLAR] = ACTIONS(134), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(136), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(138), - [anon_sym_BQUOTE] = ACTIONS(140), - [sym_comment] = ACTIONS(142), + [sym_concatenation] = STATE(787), + [sym_string] = STATE(781), + [sym_simple_expansion] = STATE(781), + [sym_expansion] = STATE(781), + [sym_command_substitution] = STATE(781), + [sym_process_substitution] = STATE(781), + [anon_sym_DQUOTE] = ACTIONS(1468), + [sym_raw_string] = ACTIONS(1470), + [anon_sym_DOLLAR] = ACTIONS(1472), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1474), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1476), + [anon_sym_BQUOTE] = ACTIONS(1478), + [anon_sym_LT_LPAREN] = ACTIONS(1480), + [anon_sym_GT_LPAREN] = ACTIONS(1480), + [sym_word] = ACTIONS(1482), + [sym_comment] = ACTIONS(52), }, [525] = { - [aux_sym_concatenation_repeat1] = STATE(769), - [sym_file_descriptor] = ACTIONS(370), - [sym__concat] = ACTIONS(1472), - [anon_sym_PIPE] = ACTIONS(374), - [anon_sym_RPAREN] = ACTIONS(370), - [anon_sym_PIPE_AMP] = ACTIONS(370), - [anon_sym_AMP_AMP] = ACTIONS(370), - [anon_sym_PIPE_PIPE] = ACTIONS(370), - [anon_sym_LT] = ACTIONS(374), - [anon_sym_GT] = ACTIONS(374), - [anon_sym_GT_GT] = ACTIONS(370), - [anon_sym_AMP_GT] = ACTIONS(374), - [anon_sym_AMP_GT_GT] = ACTIONS(370), - [anon_sym_LT_AMP] = ACTIONS(370), - [anon_sym_GT_AMP] = ACTIONS(370), - [anon_sym_LT_LT] = ACTIONS(374), - [anon_sym_LT_LT_DASH] = ACTIONS(370), - [anon_sym_BQUOTE] = ACTIONS(370), + [anon_sym_PIPE] = ACTIONS(1418), + [anon_sym_RPAREN] = ACTIONS(1420), + [anon_sym_PIPE_AMP] = ACTIONS(1420), + [anon_sym_AMP_AMP] = ACTIONS(1420), + [anon_sym_PIPE_PIPE] = ACTIONS(1420), + [anon_sym_BQUOTE] = ACTIONS(1420), [sym_comment] = ACTIONS(52), }, [526] = { - [sym_special_variable_name] = STATE(772), - [anon_sym_DOLLAR] = ACTIONS(1474), - [anon_sym_POUND] = ACTIONS(1474), - [anon_sym_AT] = ACTIONS(1474), - [sym_comment] = ACTIONS(142), - [sym_simple_variable_name] = ACTIONS(1476), - [anon_sym_STAR] = ACTIONS(1474), - [anon_sym_QMARK] = ACTIONS(1474), - [anon_sym_DASH] = ACTIONS(1474), - [anon_sym_BANG] = ACTIONS(1474), - [anon_sym_0] = ACTIONS(1478), - [anon_sym__] = ACTIONS(1478), + [anon_sym_PIPE] = ACTIONS(1484), + [anon_sym_RPAREN] = ACTIONS(1486), + [anon_sym_PIPE_AMP] = ACTIONS(1486), + [anon_sym_AMP_AMP] = ACTIONS(1486), + [anon_sym_PIPE_PIPE] = ACTIONS(1486), + [anon_sym_BQUOTE] = ACTIONS(1486), + [sym_comment] = ACTIONS(52), }, [527] = { - [sym_special_variable_name] = STATE(775), - [anon_sym_DOLLAR] = ACTIONS(156), - [anon_sym_POUND] = ACTIONS(1480), - [anon_sym_AT] = ACTIONS(156), - [sym_comment] = ACTIONS(142), - [sym_simple_variable_name] = ACTIONS(1482), - [anon_sym_STAR] = ACTIONS(156), - [anon_sym_QMARK] = ACTIONS(156), - [anon_sym_DASH] = ACTIONS(156), - [anon_sym_BANG] = ACTIONS(156), - [anon_sym_0] = ACTIONS(162), - [anon_sym__] = ACTIONS(162), - }, - [528] = { - [sym_for_statement] = STATE(776), - [sym_while_statement] = STATE(776), - [sym_if_statement] = STATE(776), - [sym_case_statement] = STATE(776), - [sym_function_definition] = STATE(776), - [sym_subshell] = STATE(776), - [sym_pipeline] = STATE(776), - [sym_list] = STATE(776), - [sym_bracket_command] = STATE(776), - [sym_command] = STATE(776), - [sym_command_name] = STATE(111), - [sym_environment_variable_assignment] = STATE(777), - [sym_subscript] = STATE(113), - [sym_file_redirect] = STATE(27), - [sym_concatenation] = STATE(114), - [sym_string] = STATE(103), - [sym_simple_expansion] = STATE(103), - [sym_expansion] = STATE(103), - [sym_command_substitution] = STATE(103), - [sym_process_substitution] = STATE(103), - [aux_sym_command_repeat1] = STATE(115), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(164), - [anon_sym_for] = ACTIONS(166), - [anon_sym_while] = ACTIONS(168), - [anon_sym_if] = ACTIONS(170), - [anon_sym_case] = ACTIONS(172), - [anon_sym_function] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(176), - [anon_sym_LBRACK] = ACTIONS(178), - [anon_sym_LBRACK_LBRACK] = ACTIONS(180), - [anon_sym_LT] = ACTIONS(32), - [anon_sym_GT] = ACTIONS(32), - [anon_sym_GT_GT] = ACTIONS(34), - [anon_sym_AMP_GT] = ACTIONS(32), - [anon_sym_AMP_GT_GT] = ACTIONS(34), - [anon_sym_LT_AMP] = ACTIONS(34), - [anon_sym_GT_AMP] = ACTIONS(34), - [anon_sym_DQUOTE] = ACTIONS(182), - [sym_raw_string] = ACTIONS(184), - [anon_sym_DOLLAR] = ACTIONS(186), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(188), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(190), - [anon_sym_BQUOTE] = ACTIONS(192), - [anon_sym_LT_LPAREN] = ACTIONS(194), - [anon_sym_GT_LPAREN] = ACTIONS(194), - [sym_word] = ACTIONS(196), - [sym_comment] = ACTIONS(52), - }, - [529] = { - [sym_for_statement] = STATE(778), - [sym_while_statement] = STATE(778), - [sym_if_statement] = STATE(778), - [sym_case_statement] = STATE(778), - [sym_function_definition] = STATE(778), - [sym_subshell] = STATE(778), - [sym_pipeline] = STATE(778), - [sym_list] = STATE(778), - [sym_bracket_command] = STATE(778), - [sym_command] = STATE(778), - [sym_command_name] = STATE(117), - [sym_environment_variable_assignment] = STATE(779), - [sym_subscript] = STATE(113), - [sym_file_redirect] = STATE(27), - [sym_concatenation] = STATE(114), - [sym_string] = STATE(103), - [sym_simple_expansion] = STATE(103), - [sym_expansion] = STATE(103), - [sym_command_substitution] = STATE(103), - [sym_process_substitution] = STATE(103), - [aux_sym_command_repeat1] = STATE(119), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(164), - [anon_sym_for] = ACTIONS(166), - [anon_sym_while] = ACTIONS(168), - [anon_sym_if] = ACTIONS(170), - [anon_sym_case] = ACTIONS(172), - [anon_sym_function] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(176), - [anon_sym_LBRACK] = ACTIONS(178), - [anon_sym_LBRACK_LBRACK] = ACTIONS(180), - [anon_sym_LT] = ACTIONS(32), - [anon_sym_GT] = ACTIONS(32), - [anon_sym_GT_GT] = ACTIONS(34), - [anon_sym_AMP_GT] = ACTIONS(32), - [anon_sym_AMP_GT_GT] = ACTIONS(34), - [anon_sym_LT_AMP] = ACTIONS(34), - [anon_sym_GT_AMP] = ACTIONS(34), - [anon_sym_DQUOTE] = ACTIONS(182), - [sym_raw_string] = ACTIONS(184), - [anon_sym_DOLLAR] = ACTIONS(186), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(188), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(190), - [anon_sym_BQUOTE] = ACTIONS(192), - [anon_sym_LT_LPAREN] = ACTIONS(194), - [anon_sym_GT_LPAREN] = ACTIONS(194), - [sym_word] = ACTIONS(196), - [sym_comment] = ACTIONS(52), - }, - [530] = { - [sym_for_statement] = STATE(780), - [sym_while_statement] = STATE(780), - [sym_if_statement] = STATE(780), - [sym_case_statement] = STATE(780), - [sym_function_definition] = STATE(780), - [sym_subshell] = STATE(780), - [sym_pipeline] = STATE(780), - [sym_list] = STATE(780), - [sym_bracket_command] = STATE(780), - [sym_command] = STATE(780), - [sym_command_name] = STATE(111), - [sym_environment_variable_assignment] = STATE(781), - [sym_subscript] = STATE(113), - [sym_file_redirect] = STATE(27), - [sym_concatenation] = STATE(114), - [sym_string] = STATE(103), - [sym_simple_expansion] = STATE(103), - [sym_expansion] = STATE(103), - [sym_command_substitution] = STATE(103), - [sym_process_substitution] = STATE(103), - [aux_sym_command_repeat1] = STATE(115), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(164), - [anon_sym_for] = ACTIONS(166), - [anon_sym_while] = ACTIONS(168), - [anon_sym_if] = ACTIONS(170), - [anon_sym_case] = ACTIONS(172), - [anon_sym_function] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(176), - [anon_sym_LBRACK] = ACTIONS(178), - [anon_sym_LBRACK_LBRACK] = ACTIONS(180), - [anon_sym_LT] = ACTIONS(32), - [anon_sym_GT] = ACTIONS(32), - [anon_sym_GT_GT] = ACTIONS(34), - [anon_sym_AMP_GT] = ACTIONS(32), - [anon_sym_AMP_GT_GT] = ACTIONS(34), - [anon_sym_LT_AMP] = ACTIONS(34), - [anon_sym_GT_AMP] = ACTIONS(34), - [anon_sym_DQUOTE] = ACTIONS(182), - [sym_raw_string] = ACTIONS(184), - [anon_sym_DOLLAR] = ACTIONS(186), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(188), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(190), - [anon_sym_BQUOTE] = ACTIONS(192), - [anon_sym_LT_LPAREN] = ACTIONS(194), - [anon_sym_GT_LPAREN] = ACTIONS(194), - [sym_word] = ACTIONS(196), - [sym_comment] = ACTIONS(52), - }, - [531] = { - [sym_file_descriptor] = ACTIONS(370), - [anon_sym_PIPE] = ACTIONS(374), - [anon_sym_RPAREN] = ACTIONS(370), - [anon_sym_PIPE_AMP] = ACTIONS(370), - [anon_sym_AMP_AMP] = ACTIONS(370), - [anon_sym_PIPE_PIPE] = ACTIONS(370), - [anon_sym_LT] = ACTIONS(374), - [anon_sym_GT] = ACTIONS(374), - [anon_sym_GT_GT] = ACTIONS(370), - [anon_sym_AMP_GT] = ACTIONS(374), - [anon_sym_AMP_GT_GT] = ACTIONS(370), - [anon_sym_LT_AMP] = ACTIONS(370), - [anon_sym_GT_AMP] = ACTIONS(370), - [anon_sym_LT_LT] = ACTIONS(374), - [anon_sym_LT_LT_DASH] = ACTIONS(370), - [anon_sym_BQUOTE] = ACTIONS(370), - [sym_comment] = ACTIONS(52), - }, - [532] = { - [sym_file_descriptor] = ACTIONS(1038), + [sym_file_descriptor] = ACTIONS(238), + [sym_variable_name] = ACTIONS(238), [anon_sym_PIPE] = ACTIONS(1484), - [anon_sym_RPAREN] = ACTIONS(1038), - [anon_sym_PIPE_AMP] = ACTIONS(1038), - [anon_sym_AMP_AMP] = ACTIONS(1038), - [anon_sym_PIPE_PIPE] = ACTIONS(1038), - [anon_sym_LT] = ACTIONS(1484), - [anon_sym_GT] = ACTIONS(1484), - [anon_sym_GT_GT] = ACTIONS(1038), - [anon_sym_AMP_GT] = ACTIONS(1484), - [anon_sym_AMP_GT_GT] = ACTIONS(1038), - [anon_sym_LT_AMP] = ACTIONS(1038), - [anon_sym_GT_AMP] = ACTIONS(1038), - [anon_sym_LT_LT] = ACTIONS(1484), - [anon_sym_LT_LT_DASH] = ACTIONS(1038), - [anon_sym_BQUOTE] = ACTIONS(1038), - [sym_comment] = ACTIONS(52), - }, - [533] = { - [sym_simple_expansion] = STATE(573), - [sym_expansion] = STATE(573), - [aux_sym_heredoc_repeat1] = STATE(783), - [sym__heredoc_middle] = ACTIONS(1042), - [sym__heredoc_end] = ACTIONS(1486), - [anon_sym_DOLLAR] = ACTIONS(1046), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1048), - [sym_comment] = ACTIONS(52), - }, - [534] = { - [sym_file_descriptor] = ACTIONS(1050), - [anon_sym_PIPE] = ACTIONS(1488), - [anon_sym_RPAREN] = ACTIONS(1050), - [anon_sym_PIPE_AMP] = ACTIONS(1050), - [anon_sym_AMP_AMP] = ACTIONS(1050), - [anon_sym_PIPE_PIPE] = ACTIONS(1050), - [anon_sym_LT] = ACTIONS(1488), - [anon_sym_GT] = ACTIONS(1488), - [anon_sym_GT_GT] = ACTIONS(1050), - [anon_sym_AMP_GT] = ACTIONS(1488), - [anon_sym_AMP_GT_GT] = ACTIONS(1050), - [anon_sym_LT_AMP] = ACTIONS(1050), - [anon_sym_GT_AMP] = ACTIONS(1050), - [anon_sym_LT_LT] = ACTIONS(1488), - [anon_sym_LT_LT_DASH] = ACTIONS(1050), - [anon_sym_BQUOTE] = ACTIONS(1050), - [sym_comment] = ACTIONS(52), - }, - [535] = { - [aux_sym_concatenation_repeat1] = STATE(279), - [sym_file_descriptor] = ACTIONS(736), - [sym__concat] = ACTIONS(462), - [anon_sym_PIPE] = ACTIONS(734), - [anon_sym_RPAREN] = ACTIONS(736), - [anon_sym_PIPE_AMP] = ACTIONS(736), - [anon_sym_AMP_AMP] = ACTIONS(736), - [anon_sym_PIPE_PIPE] = ACTIONS(734), - [anon_sym_LT] = ACTIONS(734), - [anon_sym_GT] = ACTIONS(734), - [anon_sym_GT_GT] = ACTIONS(736), - [anon_sym_AMP_GT] = ACTIONS(734), - [anon_sym_AMP_GT_GT] = ACTIONS(736), - [anon_sym_LT_AMP] = ACTIONS(736), - [anon_sym_GT_AMP] = ACTIONS(736), - [anon_sym_LT_LT] = ACTIONS(734), - [anon_sym_LT_LT_DASH] = ACTIONS(736), - [anon_sym_DQUOTE] = ACTIONS(736), - [sym_raw_string] = ACTIONS(736), - [anon_sym_DOLLAR] = ACTIONS(734), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(736), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(736), - [anon_sym_BQUOTE] = ACTIONS(736), - [anon_sym_LT_LPAREN] = ACTIONS(736), - [anon_sym_GT_LPAREN] = ACTIONS(736), - [sym_word] = ACTIONS(738), - [sym_comment] = ACTIONS(52), - }, - [536] = { - [sym_file_descriptor] = ACTIONS(736), - [anon_sym_PIPE] = ACTIONS(734), - [anon_sym_RPAREN] = ACTIONS(736), - [anon_sym_PIPE_AMP] = ACTIONS(736), - [anon_sym_AMP_AMP] = ACTIONS(736), - [anon_sym_PIPE_PIPE] = ACTIONS(734), - [anon_sym_LT] = ACTIONS(734), - [anon_sym_GT] = ACTIONS(734), - [anon_sym_GT_GT] = ACTIONS(736), - [anon_sym_AMP_GT] = ACTIONS(734), - [anon_sym_AMP_GT_GT] = ACTIONS(736), - [anon_sym_LT_AMP] = ACTIONS(736), - [anon_sym_GT_AMP] = ACTIONS(736), - [anon_sym_LT_LT] = ACTIONS(734), - [anon_sym_LT_LT_DASH] = ACTIONS(736), - [anon_sym_DQUOTE] = ACTIONS(736), - [sym_raw_string] = ACTIONS(736), - [anon_sym_DOLLAR] = ACTIONS(734), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(736), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(736), - [anon_sym_BQUOTE] = ACTIONS(736), - [anon_sym_LT_LPAREN] = ACTIONS(736), - [anon_sym_GT_LPAREN] = ACTIONS(736), - [sym_word] = ACTIONS(738), - [sym_comment] = ACTIONS(52), - }, - [537] = { - [sym_file_redirect] = STATE(538), - [sym_heredoc_redirect] = STATE(538), - [sym_file_descriptor] = ACTIONS(488), - [anon_sym_PIPE] = ACTIONS(1490), - [anon_sym_RPAREN] = ACTIONS(1492), - [anon_sym_PIPE_AMP] = ACTIONS(1492), - [anon_sym_AMP_AMP] = ACTIONS(1492), - [anon_sym_PIPE_PIPE] = ACTIONS(1492), - [anon_sym_LT] = ACTIONS(494), - [anon_sym_GT] = ACTIONS(494), - [anon_sym_GT_GT] = ACTIONS(496), - [anon_sym_AMP_GT] = ACTIONS(494), - [anon_sym_AMP_GT_GT] = ACTIONS(496), - [anon_sym_LT_AMP] = ACTIONS(496), - [anon_sym_GT_AMP] = ACTIONS(496), - [anon_sym_LT_LT] = ACTIONS(498), - [anon_sym_LT_LT_DASH] = ACTIONS(500), - [anon_sym_BQUOTE] = ACTIONS(1492), - [sym_comment] = ACTIONS(52), - }, - [538] = { - [sym_file_descriptor] = ACTIONS(1056), - [anon_sym_PIPE] = ACTIONS(1494), - [anon_sym_RPAREN] = ACTIONS(1056), - [anon_sym_PIPE_AMP] = ACTIONS(1056), - [anon_sym_AMP_AMP] = ACTIONS(1056), - [anon_sym_PIPE_PIPE] = ACTIONS(1056), - [anon_sym_LT] = ACTIONS(1494), - [anon_sym_GT] = ACTIONS(1494), - [anon_sym_GT_GT] = ACTIONS(1056), - [anon_sym_AMP_GT] = ACTIONS(1494), - [anon_sym_AMP_GT_GT] = ACTIONS(1056), - [anon_sym_LT_AMP] = ACTIONS(1056), - [anon_sym_GT_AMP] = ACTIONS(1056), - [anon_sym_LT_LT] = ACTIONS(1494), - [anon_sym_LT_LT_DASH] = ACTIONS(1056), - [anon_sym_BQUOTE] = ACTIONS(1056), - [sym_comment] = ACTIONS(52), - }, - [539] = { - [sym_file_redirect] = STATE(302), - [sym_heredoc_redirect] = STATE(302), - [sym_concatenation] = STATE(536), - [sym_string] = STATE(535), - [sym_simple_expansion] = STATE(535), - [sym_expansion] = STATE(535), - [sym_command_substitution] = STATE(535), - [sym_process_substitution] = STATE(535), - [aux_sym_command_repeat2] = STATE(784), - [sym_file_descriptor] = ACTIONS(488), - [anon_sym_PIPE] = ACTIONS(1490), - [anon_sym_RPAREN] = ACTIONS(1492), - [anon_sym_PIPE_AMP] = ACTIONS(1492), - [anon_sym_AMP_AMP] = ACTIONS(1492), - [anon_sym_PIPE_PIPE] = ACTIONS(1490), - [anon_sym_LT] = ACTIONS(494), - [anon_sym_GT] = ACTIONS(494), - [anon_sym_GT_GT] = ACTIONS(496), - [anon_sym_AMP_GT] = ACTIONS(494), - [anon_sym_AMP_GT_GT] = ACTIONS(496), - [anon_sym_LT_AMP] = ACTIONS(496), - [anon_sym_GT_AMP] = ACTIONS(496), - [anon_sym_LT_LT] = ACTIONS(498), - [anon_sym_LT_LT_DASH] = ACTIONS(500), - [anon_sym_DQUOTE] = ACTIONS(182), - [sym_raw_string] = ACTIONS(980), - [anon_sym_DOLLAR] = ACTIONS(186), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(188), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(190), - [anon_sym_BQUOTE] = ACTIONS(192), - [anon_sym_LT_LPAREN] = ACTIONS(194), - [anon_sym_GT_LPAREN] = ACTIONS(194), - [sym_word] = ACTIONS(982), - [sym_comment] = ACTIONS(52), - }, - [540] = { - [sym_file_descriptor] = ACTIONS(238), - [sym_variable_name] = ACTIONS(238), - [anon_sym_PIPE] = ACTIONS(1458), - [anon_sym_PIPE_AMP] = ACTIONS(1460), - [anon_sym_AMP_AMP] = ACTIONS(1460), - [anon_sym_PIPE_PIPE] = ACTIONS(1458), - [anon_sym_LT] = ACTIONS(242), - [anon_sym_GT] = ACTIONS(242), - [anon_sym_GT_GT] = ACTIONS(238), - [anon_sym_AMP_GT] = ACTIONS(242), - [anon_sym_AMP_GT_GT] = ACTIONS(238), - [anon_sym_LT_AMP] = ACTIONS(238), - [anon_sym_GT_AMP] = ACTIONS(238), - [anon_sym_DQUOTE] = ACTIONS(238), - [sym_raw_string] = ACTIONS(238), - [anon_sym_DOLLAR] = ACTIONS(242), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(238), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(1460), - [anon_sym_LT_LPAREN] = ACTIONS(238), - [anon_sym_GT_LPAREN] = ACTIONS(238), - [sym_word] = ACTIONS(240), - [sym_comment] = ACTIONS(52), - }, - [541] = { - [anon_sym_PIPE] = ACTIONS(510), - [anon_sym_PIPE_AMP] = ACTIONS(512), - [anon_sym_AMP_AMP] = ACTIONS(1462), - [anon_sym_PIPE_PIPE] = ACTIONS(1462), - [anon_sym_BQUOTE] = ACTIONS(1462), - [sym_comment] = ACTIONS(52), - }, - [542] = { - [sym_file_descriptor] = ACTIONS(238), - [sym_variable_name] = ACTIONS(238), - [anon_sym_PIPE] = ACTIONS(510), - [anon_sym_PIPE_AMP] = ACTIONS(512), - [anon_sym_AMP_AMP] = ACTIONS(1462), - [anon_sym_PIPE_PIPE] = ACTIONS(1464), + [anon_sym_RPAREN] = ACTIONS(1486), + [anon_sym_PIPE_AMP] = ACTIONS(1486), + [anon_sym_AMP_AMP] = ACTIONS(1486), + [anon_sym_PIPE_PIPE] = ACTIONS(1484), [anon_sym_LT] = ACTIONS(242), [anon_sym_GT] = ACTIONS(242), [anon_sym_GT_GT] = ACTIONS(238), @@ -16261,106 +16084,64 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(240), [sym_comment] = ACTIONS(52), }, - [543] = { - [sym_file_redirect] = STATE(302), - [sym_heredoc_redirect] = STATE(302), - [sym_concatenation] = STATE(536), - [sym_string] = STATE(535), - [sym_simple_expansion] = STATE(535), - [sym_expansion] = STATE(535), - [sym_command_substitution] = STATE(535), - [sym_process_substitution] = STATE(535), - [aux_sym_command_repeat2] = STATE(784), - [sym_file_descriptor] = ACTIONS(488), - [anon_sym_PIPE] = ACTIONS(1490), - [anon_sym_PIPE_AMP] = ACTIONS(1492), - [anon_sym_AMP_AMP] = ACTIONS(1492), + [528] = { + [anon_sym_PIPE] = ACTIONS(480), + [anon_sym_RPAREN] = ACTIONS(1488), + [anon_sym_PIPE_AMP] = ACTIONS(484), + [anon_sym_AMP_AMP] = ACTIONS(1488), + [anon_sym_PIPE_PIPE] = ACTIONS(1488), + [sym_comment] = ACTIONS(52), + }, + [529] = { + [sym_file_descriptor] = ACTIONS(238), + [sym_variable_name] = ACTIONS(238), + [anon_sym_PIPE] = ACTIONS(480), + [anon_sym_RPAREN] = ACTIONS(1488), + [anon_sym_PIPE_AMP] = ACTIONS(484), + [anon_sym_AMP_AMP] = ACTIONS(1488), [anon_sym_PIPE_PIPE] = ACTIONS(1490), - [anon_sym_LT] = ACTIONS(494), - [anon_sym_GT] = ACTIONS(494), - [anon_sym_GT_GT] = ACTIONS(496), - [anon_sym_AMP_GT] = ACTIONS(494), - [anon_sym_AMP_GT_GT] = ACTIONS(496), - [anon_sym_LT_AMP] = ACTIONS(496), - [anon_sym_GT_AMP] = ACTIONS(496), - [anon_sym_LT_LT] = ACTIONS(498), - [anon_sym_LT_LT_DASH] = ACTIONS(500), - [anon_sym_DQUOTE] = ACTIONS(182), - [sym_raw_string] = ACTIONS(980), - [anon_sym_DOLLAR] = ACTIONS(186), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(188), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(190), - [anon_sym_BQUOTE] = ACTIONS(1492), - [anon_sym_LT_LPAREN] = ACTIONS(194), - [anon_sym_GT_LPAREN] = ACTIONS(194), - [sym_word] = ACTIONS(982), + [anon_sym_LT] = ACTIONS(242), + [anon_sym_GT] = ACTIONS(242), + [anon_sym_GT_GT] = ACTIONS(238), + [anon_sym_AMP_GT] = ACTIONS(242), + [anon_sym_AMP_GT_GT] = ACTIONS(238), + [anon_sym_LT_AMP] = ACTIONS(238), + [anon_sym_GT_AMP] = ACTIONS(238), + [anon_sym_DQUOTE] = ACTIONS(238), + [sym_raw_string] = ACTIONS(238), + [anon_sym_DOLLAR] = ACTIONS(242), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(238), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(238), + [anon_sym_LT_LPAREN] = ACTIONS(238), + [anon_sym_GT_LPAREN] = ACTIONS(238), + [sym_word] = ACTIONS(240), [sym_comment] = ACTIONS(52), }, - [544] = { - [sym_file_redirect] = STATE(785), - [sym_file_descriptor] = ACTIONS(524), - [anon_sym_PIPE] = ACTIONS(1226), - [anon_sym_RPAREN] = ACTIONS(1226), - [anon_sym_SEMI_SEMI] = ACTIONS(1226), - [anon_sym_PIPE_AMP] = ACTIONS(1226), - [anon_sym_AMP_AMP] = ACTIONS(1226), - [anon_sym_PIPE_PIPE] = ACTIONS(1226), - [anon_sym_LT] = ACTIONS(528), - [anon_sym_GT] = ACTIONS(528), - [anon_sym_GT_GT] = ACTIONS(528), - [anon_sym_AMP_GT] = ACTIONS(528), - [anon_sym_AMP_GT_GT] = ACTIONS(528), - [anon_sym_LT_AMP] = ACTIONS(528), - [anon_sym_GT_AMP] = ACTIONS(528), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1226), - [anon_sym_LF] = ACTIONS(1226), - [anon_sym_AMP] = ACTIONS(1226), - }, - [545] = { - [sym_file_descriptor] = ACTIONS(1496), - [anon_sym_PIPE] = ACTIONS(1498), - [anon_sym_RPAREN] = ACTIONS(1498), - [anon_sym_SEMI_SEMI] = ACTIONS(1498), - [anon_sym_PIPE_AMP] = ACTIONS(1498), - [anon_sym_AMP_AMP] = ACTIONS(1498), - [anon_sym_PIPE_PIPE] = ACTIONS(1498), - [anon_sym_LT] = ACTIONS(1498), - [anon_sym_GT] = ACTIONS(1498), - [anon_sym_GT_GT] = ACTIONS(1498), - [anon_sym_AMP_GT] = ACTIONS(1498), - [anon_sym_AMP_GT_GT] = ACTIONS(1498), - [anon_sym_LT_AMP] = ACTIONS(1498), - [anon_sym_GT_AMP] = ACTIONS(1498), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1498), - [anon_sym_LF] = ACTIONS(1498), - [anon_sym_AMP] = ACTIONS(1498), - }, - [546] = { - [sym_concatenation] = STATE(787), - [sym_string] = STATE(786), - [sym_simple_expansion] = STATE(786), - [sym_expansion] = STATE(786), - [sym_command_substitution] = STATE(786), - [sym_process_substitution] = STATE(786), - [anon_sym_DQUOTE] = ACTIONS(998), - [sym_raw_string] = ACTIONS(1500), - [anon_sym_DOLLAR] = ACTIONS(1002), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1004), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1006), - [anon_sym_BQUOTE] = ACTIONS(1008), - [anon_sym_LT_LPAREN] = ACTIONS(1010), - [anon_sym_GT_LPAREN] = ACTIONS(1010), - [sym_word] = ACTIONS(1502), + [530] = { + [sym_concatenation] = STATE(789), + [sym_string] = STATE(788), + [sym_simple_expansion] = STATE(788), + [sym_expansion] = STATE(788), + [sym_command_substitution] = STATE(788), + [sym_process_substitution] = STATE(788), + [anon_sym_DQUOTE] = ACTIONS(968), + [sym_raw_string] = ACTIONS(1492), + [anon_sym_DOLLAR] = ACTIONS(972), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(974), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(976), + [anon_sym_BQUOTE] = ACTIONS(978), + [anon_sym_LT_LPAREN] = ACTIONS(980), + [anon_sym_GT_LPAREN] = ACTIONS(980), + [sym_word] = ACTIONS(1494), [sym_comment] = ACTIONS(52), }, - [547] = { + [531] = { [sym_simple_expansion] = STATE(78), [sym_expansion] = STATE(78), [sym_command_substitution] = STATE(78), - [aux_sym_string_repeat1] = STATE(789), - [anon_sym_DQUOTE] = ACTIONS(1504), + [aux_sym_string_repeat1] = STATE(791), + [anon_sym_DQUOTE] = ACTIONS(1496), [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(132), [anon_sym_DOLLAR] = ACTIONS(134), [anon_sym_DOLLAR_LBRACE] = ACTIONS(136), @@ -16368,41 +16149,48 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(140), [sym_comment] = ACTIONS(142), }, - [548] = { - [aux_sym_concatenation_repeat1] = STATE(791), - [sym__concat] = ACTIONS(1506), - [anon_sym_PIPE] = ACTIONS(1026), - [anon_sym_RPAREN] = ACTIONS(1026), - [anon_sym_SEMI_SEMI] = ACTIONS(1026), - [anon_sym_PIPE_AMP] = ACTIONS(1026), - [anon_sym_AMP_AMP] = ACTIONS(1026), - [anon_sym_PIPE_PIPE] = ACTIONS(1026), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1026), - [anon_sym_LF] = ACTIONS(1026), - [anon_sym_AMP] = ACTIONS(1026), + [532] = { + [aux_sym_concatenation_repeat1] = STATE(793), + [sym_file_descriptor] = ACTIONS(370), + [sym__concat] = ACTIONS(1498), + [anon_sym_PIPE] = ACTIONS(374), + [anon_sym_RPAREN] = ACTIONS(370), + [anon_sym_PIPE_AMP] = ACTIONS(370), + [anon_sym_AMP_AMP] = ACTIONS(370), + [anon_sym_PIPE_PIPE] = ACTIONS(370), + [anon_sym_LT] = ACTIONS(374), + [anon_sym_GT] = ACTIONS(374), + [anon_sym_GT_GT] = ACTIONS(370), + [anon_sym_AMP_GT] = ACTIONS(374), + [anon_sym_AMP_GT_GT] = ACTIONS(370), + [anon_sym_LT_AMP] = ACTIONS(370), + [anon_sym_GT_AMP] = ACTIONS(370), + [anon_sym_LT_LT] = ACTIONS(374), + [anon_sym_LT_LT_DASH] = ACTIONS(370), + [anon_sym_BQUOTE] = ACTIONS(370), + [sym_comment] = ACTIONS(52), }, - [549] = { - [sym_special_variable_name] = STATE(794), - [anon_sym_DOLLAR] = ACTIONS(1508), - [anon_sym_POUND] = ACTIONS(1508), - [anon_sym_AT] = ACTIONS(1508), + [533] = { + [sym_special_variable_name] = STATE(796), + [anon_sym_DOLLAR] = ACTIONS(1500), + [anon_sym_POUND] = ACTIONS(1500), + [anon_sym_AT] = ACTIONS(1500), [sym_comment] = ACTIONS(142), - [sym_simple_variable_name] = ACTIONS(1510), - [anon_sym_STAR] = ACTIONS(1508), - [anon_sym_QMARK] = ACTIONS(1508), - [anon_sym_DASH] = ACTIONS(1508), - [anon_sym_BANG] = ACTIONS(1508), - [anon_sym_0] = ACTIONS(1512), - [anon_sym__] = ACTIONS(1512), + [sym_simple_variable_name] = ACTIONS(1502), + [anon_sym_STAR] = ACTIONS(1500), + [anon_sym_QMARK] = ACTIONS(1500), + [anon_sym_DASH] = ACTIONS(1500), + [anon_sym_BANG] = ACTIONS(1500), + [anon_sym_0] = ACTIONS(1504), + [anon_sym__] = ACTIONS(1504), }, - [550] = { - [sym_special_variable_name] = STATE(797), + [534] = { + [sym_special_variable_name] = STATE(799), [anon_sym_DOLLAR] = ACTIONS(156), - [anon_sym_POUND] = ACTIONS(1514), + [anon_sym_POUND] = ACTIONS(1506), [anon_sym_AT] = ACTIONS(156), [sym_comment] = ACTIONS(142), - [sym_simple_variable_name] = ACTIONS(1516), + [sym_simple_variable_name] = ACTIONS(1508), [anon_sym_STAR] = ACTIONS(156), [anon_sym_QMARK] = ACTIONS(156), [anon_sym_DASH] = ACTIONS(156), @@ -16410,57 +16198,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_0] = ACTIONS(162), [anon_sym__] = ACTIONS(162), }, - [551] = { - [sym_for_statement] = STATE(798), - [sym_while_statement] = STATE(798), - [sym_if_statement] = STATE(798), - [sym_case_statement] = STATE(798), - [sym_function_definition] = STATE(798), - [sym_subshell] = STATE(798), - [sym_pipeline] = STATE(798), - [sym_list] = STATE(798), - [sym_bracket_command] = STATE(798), - [sym_command] = STATE(798), - [sym_command_name] = STATE(111), - [sym_environment_variable_assignment] = STATE(799), - [sym_subscript] = STATE(113), - [sym_file_redirect] = STATE(27), - [sym_concatenation] = STATE(114), - [sym_string] = STATE(103), - [sym_simple_expansion] = STATE(103), - [sym_expansion] = STATE(103), - [sym_command_substitution] = STATE(103), - [sym_process_substitution] = STATE(103), - [aux_sym_command_repeat1] = STATE(115), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(164), - [anon_sym_for] = ACTIONS(166), - [anon_sym_while] = ACTIONS(168), - [anon_sym_if] = ACTIONS(170), - [anon_sym_case] = ACTIONS(172), - [anon_sym_function] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(176), - [anon_sym_LBRACK] = ACTIONS(178), - [anon_sym_LBRACK_LBRACK] = ACTIONS(180), - [anon_sym_LT] = ACTIONS(32), - [anon_sym_GT] = ACTIONS(32), - [anon_sym_GT_GT] = ACTIONS(34), - [anon_sym_AMP_GT] = ACTIONS(32), - [anon_sym_AMP_GT_GT] = ACTIONS(34), - [anon_sym_LT_AMP] = ACTIONS(34), - [anon_sym_GT_AMP] = ACTIONS(34), - [anon_sym_DQUOTE] = ACTIONS(182), - [sym_raw_string] = ACTIONS(184), - [anon_sym_DOLLAR] = ACTIONS(186), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(188), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(190), - [anon_sym_BQUOTE] = ACTIONS(192), - [anon_sym_LT_LPAREN] = ACTIONS(194), - [anon_sym_GT_LPAREN] = ACTIONS(194), - [sym_word] = ACTIONS(196), - [sym_comment] = ACTIONS(52), - }, - [552] = { + [535] = { [sym_for_statement] = STATE(800), [sym_while_statement] = STATE(800), [sym_if_statement] = STATE(800), @@ -16471,58 +16209,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list] = STATE(800), [sym_bracket_command] = STATE(800), [sym_command] = STATE(800), - [sym_command_name] = STATE(117), - [sym_environment_variable_assignment] = STATE(801), - [sym_subscript] = STATE(113), - [sym_file_redirect] = STATE(27), - [sym_concatenation] = STATE(114), - [sym_string] = STATE(103), - [sym_simple_expansion] = STATE(103), - [sym_expansion] = STATE(103), - [sym_command_substitution] = STATE(103), - [sym_process_substitution] = STATE(103), - [aux_sym_command_repeat1] = STATE(119), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(164), - [anon_sym_for] = ACTIONS(166), - [anon_sym_while] = ACTIONS(168), - [anon_sym_if] = ACTIONS(170), - [anon_sym_case] = ACTIONS(172), - [anon_sym_function] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(176), - [anon_sym_LBRACK] = ACTIONS(178), - [anon_sym_LBRACK_LBRACK] = ACTIONS(180), - [anon_sym_LT] = ACTIONS(32), - [anon_sym_GT] = ACTIONS(32), - [anon_sym_GT_GT] = ACTIONS(34), - [anon_sym_AMP_GT] = ACTIONS(32), - [anon_sym_AMP_GT_GT] = ACTIONS(34), - [anon_sym_LT_AMP] = ACTIONS(34), - [anon_sym_GT_AMP] = ACTIONS(34), - [anon_sym_DQUOTE] = ACTIONS(182), - [sym_raw_string] = ACTIONS(184), - [anon_sym_DOLLAR] = ACTIONS(186), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(188), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(190), - [anon_sym_BQUOTE] = ACTIONS(192), - [anon_sym_LT_LPAREN] = ACTIONS(194), - [anon_sym_GT_LPAREN] = ACTIONS(194), - [sym_word] = ACTIONS(196), - [sym_comment] = ACTIONS(52), - }, - [553] = { - [sym_for_statement] = STATE(802), - [sym_while_statement] = STATE(802), - [sym_if_statement] = STATE(802), - [sym_case_statement] = STATE(802), - [sym_function_definition] = STATE(802), - [sym_subshell] = STATE(802), - [sym_pipeline] = STATE(802), - [sym_list] = STATE(802), - [sym_bracket_command] = STATE(802), - [sym_command] = STATE(802), [sym_command_name] = STATE(111), - [sym_environment_variable_assignment] = STATE(803), + [sym_environment_variable_assignment] = STATE(801), [sym_subscript] = STATE(113), [sym_file_redirect] = STATE(27), [sym_concatenation] = STATE(114), @@ -16560,65 +16248,721 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(196), [sym_comment] = ACTIONS(52), }, - [554] = { - [anon_sym_PIPE] = ACTIONS(1026), - [anon_sym_RPAREN] = ACTIONS(1026), - [anon_sym_SEMI_SEMI] = ACTIONS(1026), - [anon_sym_PIPE_AMP] = ACTIONS(1026), - [anon_sym_AMP_AMP] = ACTIONS(1026), - [anon_sym_PIPE_PIPE] = ACTIONS(1026), + [536] = { + [sym_for_statement] = STATE(802), + [sym_while_statement] = STATE(802), + [sym_if_statement] = STATE(802), + [sym_case_statement] = STATE(802), + [sym_function_definition] = STATE(802), + [sym_subshell] = STATE(802), + [sym_pipeline] = STATE(802), + [sym_list] = STATE(802), + [sym_bracket_command] = STATE(802), + [sym_command] = STATE(802), + [sym_command_name] = STATE(117), + [sym_environment_variable_assignment] = STATE(803), + [sym_subscript] = STATE(113), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(114), + [sym_string] = STATE(103), + [sym_simple_expansion] = STATE(103), + [sym_expansion] = STATE(103), + [sym_command_substitution] = STATE(103), + [sym_process_substitution] = STATE(103), + [aux_sym_command_repeat1] = STATE(119), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(164), + [anon_sym_for] = ACTIONS(166), + [anon_sym_while] = ACTIONS(168), + [anon_sym_if] = ACTIONS(170), + [anon_sym_case] = ACTIONS(172), + [anon_sym_function] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(176), + [anon_sym_LBRACK] = ACTIONS(178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(180), + [anon_sym_LT] = ACTIONS(32), + [anon_sym_GT] = ACTIONS(32), + [anon_sym_GT_GT] = ACTIONS(34), + [anon_sym_AMP_GT] = ACTIONS(32), + [anon_sym_AMP_GT_GT] = ACTIONS(34), + [anon_sym_LT_AMP] = ACTIONS(34), + [anon_sym_GT_AMP] = ACTIONS(34), + [anon_sym_DQUOTE] = ACTIONS(182), + [sym_raw_string] = ACTIONS(184), + [anon_sym_DOLLAR] = ACTIONS(186), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(188), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(190), + [anon_sym_BQUOTE] = ACTIONS(192), + [anon_sym_LT_LPAREN] = ACTIONS(194), + [anon_sym_GT_LPAREN] = ACTIONS(194), + [sym_word] = ACTIONS(196), + [sym_comment] = ACTIONS(52), + }, + [537] = { + [sym_for_statement] = STATE(804), + [sym_while_statement] = STATE(804), + [sym_if_statement] = STATE(804), + [sym_case_statement] = STATE(804), + [sym_function_definition] = STATE(804), + [sym_subshell] = STATE(804), + [sym_pipeline] = STATE(804), + [sym_list] = STATE(804), + [sym_bracket_command] = STATE(804), + [sym_command] = STATE(804), + [sym_command_name] = STATE(111), + [sym_environment_variable_assignment] = STATE(805), + [sym_subscript] = STATE(113), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(114), + [sym_string] = STATE(103), + [sym_simple_expansion] = STATE(103), + [sym_expansion] = STATE(103), + [sym_command_substitution] = STATE(103), + [sym_process_substitution] = STATE(103), + [aux_sym_command_repeat1] = STATE(115), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(164), + [anon_sym_for] = ACTIONS(166), + [anon_sym_while] = ACTIONS(168), + [anon_sym_if] = ACTIONS(170), + [anon_sym_case] = ACTIONS(172), + [anon_sym_function] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(176), + [anon_sym_LBRACK] = ACTIONS(178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(180), + [anon_sym_LT] = ACTIONS(32), + [anon_sym_GT] = ACTIONS(32), + [anon_sym_GT_GT] = ACTIONS(34), + [anon_sym_AMP_GT] = ACTIONS(32), + [anon_sym_AMP_GT_GT] = ACTIONS(34), + [anon_sym_LT_AMP] = ACTIONS(34), + [anon_sym_GT_AMP] = ACTIONS(34), + [anon_sym_DQUOTE] = ACTIONS(182), + [sym_raw_string] = ACTIONS(184), + [anon_sym_DOLLAR] = ACTIONS(186), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(188), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(190), + [anon_sym_BQUOTE] = ACTIONS(192), + [anon_sym_LT_LPAREN] = ACTIONS(194), + [anon_sym_GT_LPAREN] = ACTIONS(194), + [sym_word] = ACTIONS(196), + [sym_comment] = ACTIONS(52), + }, + [538] = { + [sym_file_descriptor] = ACTIONS(370), + [anon_sym_PIPE] = ACTIONS(374), + [anon_sym_RPAREN] = ACTIONS(370), + [anon_sym_PIPE_AMP] = ACTIONS(370), + [anon_sym_AMP_AMP] = ACTIONS(370), + [anon_sym_PIPE_PIPE] = ACTIONS(370), + [anon_sym_LT] = ACTIONS(374), + [anon_sym_GT] = ACTIONS(374), + [anon_sym_GT_GT] = ACTIONS(370), + [anon_sym_AMP_GT] = ACTIONS(374), + [anon_sym_AMP_GT_GT] = ACTIONS(370), + [anon_sym_LT_AMP] = ACTIONS(370), + [anon_sym_GT_AMP] = ACTIONS(370), + [anon_sym_LT_LT] = ACTIONS(374), + [anon_sym_LT_LT_DASH] = ACTIONS(370), + [anon_sym_BQUOTE] = ACTIONS(370), + [sym_comment] = ACTIONS(52), + }, + [539] = { + [sym_file_descriptor] = ACTIONS(1052), + [anon_sym_PIPE] = ACTIONS(1510), + [anon_sym_RPAREN] = ACTIONS(1052), + [anon_sym_PIPE_AMP] = ACTIONS(1052), + [anon_sym_AMP_AMP] = ACTIONS(1052), + [anon_sym_PIPE_PIPE] = ACTIONS(1052), + [anon_sym_LT] = ACTIONS(1510), + [anon_sym_GT] = ACTIONS(1510), + [anon_sym_GT_GT] = ACTIONS(1052), + [anon_sym_AMP_GT] = ACTIONS(1510), + [anon_sym_AMP_GT_GT] = ACTIONS(1052), + [anon_sym_LT_AMP] = ACTIONS(1052), + [anon_sym_GT_AMP] = ACTIONS(1052), + [anon_sym_LT_LT] = ACTIONS(1510), + [anon_sym_LT_LT_DASH] = ACTIONS(1052), + [anon_sym_BQUOTE] = ACTIONS(1052), + [sym_comment] = ACTIONS(52), + }, + [540] = { + [sym_simple_expansion] = STATE(580), + [sym_expansion] = STATE(580), + [aux_sym_heredoc_repeat1] = STATE(807), + [sym__heredoc_middle] = ACTIONS(1056), + [sym__heredoc_end] = ACTIONS(1512), + [anon_sym_DOLLAR] = ACTIONS(1060), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1062), + [sym_comment] = ACTIONS(52), + }, + [541] = { + [sym_file_descriptor] = ACTIONS(1064), + [anon_sym_PIPE] = ACTIONS(1514), + [anon_sym_RPAREN] = ACTIONS(1064), + [anon_sym_PIPE_AMP] = ACTIONS(1064), + [anon_sym_AMP_AMP] = ACTIONS(1064), + [anon_sym_PIPE_PIPE] = ACTIONS(1064), + [anon_sym_LT] = ACTIONS(1514), + [anon_sym_GT] = ACTIONS(1514), + [anon_sym_GT_GT] = ACTIONS(1064), + [anon_sym_AMP_GT] = ACTIONS(1514), + [anon_sym_AMP_GT_GT] = ACTIONS(1064), + [anon_sym_LT_AMP] = ACTIONS(1064), + [anon_sym_GT_AMP] = ACTIONS(1064), + [anon_sym_LT_LT] = ACTIONS(1514), + [anon_sym_LT_LT_DASH] = ACTIONS(1064), + [anon_sym_BQUOTE] = ACTIONS(1064), + [sym_comment] = ACTIONS(52), + }, + [542] = { + [aux_sym_concatenation_repeat1] = STATE(279), + [sym_file_descriptor] = ACTIONS(750), + [sym__concat] = ACTIONS(462), + [anon_sym_PIPE] = ACTIONS(748), + [anon_sym_RPAREN] = ACTIONS(750), + [anon_sym_PIPE_AMP] = ACTIONS(750), + [anon_sym_AMP_AMP] = ACTIONS(750), + [anon_sym_PIPE_PIPE] = ACTIONS(748), + [anon_sym_LT] = ACTIONS(748), + [anon_sym_GT] = ACTIONS(748), + [anon_sym_GT_GT] = ACTIONS(750), + [anon_sym_AMP_GT] = ACTIONS(748), + [anon_sym_AMP_GT_GT] = ACTIONS(750), + [anon_sym_LT_AMP] = ACTIONS(750), + [anon_sym_GT_AMP] = ACTIONS(750), + [anon_sym_LT_LT] = ACTIONS(748), + [anon_sym_LT_LT_DASH] = ACTIONS(750), + [anon_sym_DQUOTE] = ACTIONS(750), + [sym_raw_string] = ACTIONS(750), + [anon_sym_DOLLAR] = ACTIONS(748), + [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_word] = ACTIONS(752), + [sym_comment] = ACTIONS(52), + }, + [543] = { + [sym_file_descriptor] = ACTIONS(750), + [anon_sym_PIPE] = ACTIONS(748), + [anon_sym_RPAREN] = ACTIONS(750), + [anon_sym_PIPE_AMP] = ACTIONS(750), + [anon_sym_AMP_AMP] = ACTIONS(750), + [anon_sym_PIPE_PIPE] = ACTIONS(748), + [anon_sym_LT] = ACTIONS(748), + [anon_sym_GT] = ACTIONS(748), + [anon_sym_GT_GT] = ACTIONS(750), + [anon_sym_AMP_GT] = ACTIONS(748), + [anon_sym_AMP_GT_GT] = ACTIONS(750), + [anon_sym_LT_AMP] = ACTIONS(750), + [anon_sym_GT_AMP] = ACTIONS(750), + [anon_sym_LT_LT] = ACTIONS(748), + [anon_sym_LT_LT_DASH] = ACTIONS(750), + [anon_sym_DQUOTE] = ACTIONS(750), + [sym_raw_string] = ACTIONS(750), + [anon_sym_DOLLAR] = ACTIONS(748), + [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_word] = ACTIONS(752), + [sym_comment] = ACTIONS(52), + }, + [544] = { + [sym_file_redirect] = STATE(545), + [sym_heredoc_redirect] = STATE(545), + [sym_file_descriptor] = ACTIONS(488), + [anon_sym_PIPE] = ACTIONS(1516), + [anon_sym_RPAREN] = ACTIONS(1518), + [anon_sym_PIPE_AMP] = ACTIONS(1518), + [anon_sym_AMP_AMP] = ACTIONS(1518), + [anon_sym_PIPE_PIPE] = ACTIONS(1518), + [anon_sym_LT] = ACTIONS(494), + [anon_sym_GT] = ACTIONS(494), + [anon_sym_GT_GT] = ACTIONS(496), + [anon_sym_AMP_GT] = ACTIONS(494), + [anon_sym_AMP_GT_GT] = ACTIONS(496), + [anon_sym_LT_AMP] = ACTIONS(496), + [anon_sym_GT_AMP] = ACTIONS(496), + [anon_sym_LT_LT] = ACTIONS(498), + [anon_sym_LT_LT_DASH] = ACTIONS(500), + [anon_sym_BQUOTE] = ACTIONS(1518), + [sym_comment] = ACTIONS(52), + }, + [545] = { + [sym_file_descriptor] = ACTIONS(1070), + [anon_sym_PIPE] = ACTIONS(1520), + [anon_sym_RPAREN] = ACTIONS(1070), + [anon_sym_PIPE_AMP] = ACTIONS(1070), + [anon_sym_AMP_AMP] = ACTIONS(1070), + [anon_sym_PIPE_PIPE] = ACTIONS(1070), + [anon_sym_LT] = ACTIONS(1520), + [anon_sym_GT] = ACTIONS(1520), + [anon_sym_GT_GT] = ACTIONS(1070), + [anon_sym_AMP_GT] = ACTIONS(1520), + [anon_sym_AMP_GT_GT] = ACTIONS(1070), + [anon_sym_LT_AMP] = ACTIONS(1070), + [anon_sym_GT_AMP] = ACTIONS(1070), + [anon_sym_LT_LT] = ACTIONS(1520), + [anon_sym_LT_LT_DASH] = ACTIONS(1070), + [anon_sym_BQUOTE] = ACTIONS(1070), + [sym_comment] = ACTIONS(52), + }, + [546] = { + [sym_file_redirect] = STATE(302), + [sym_heredoc_redirect] = STATE(302), + [sym_concatenation] = STATE(543), + [sym_string] = STATE(542), + [sym_simple_expansion] = STATE(542), + [sym_expansion] = STATE(542), + [sym_command_substitution] = STATE(542), + [sym_process_substitution] = STATE(542), + [aux_sym_command_repeat2] = STATE(808), + [sym_file_descriptor] = ACTIONS(488), + [anon_sym_PIPE] = ACTIONS(1516), + [anon_sym_RPAREN] = ACTIONS(1518), + [anon_sym_PIPE_AMP] = ACTIONS(1518), + [anon_sym_AMP_AMP] = ACTIONS(1518), + [anon_sym_PIPE_PIPE] = ACTIONS(1516), + [anon_sym_LT] = ACTIONS(494), + [anon_sym_GT] = ACTIONS(494), + [anon_sym_GT_GT] = ACTIONS(496), + [anon_sym_AMP_GT] = ACTIONS(494), + [anon_sym_AMP_GT_GT] = ACTIONS(496), + [anon_sym_LT_AMP] = ACTIONS(496), + [anon_sym_GT_AMP] = ACTIONS(496), + [anon_sym_LT_LT] = ACTIONS(498), + [anon_sym_LT_LT_DASH] = ACTIONS(500), + [anon_sym_DQUOTE] = ACTIONS(182), + [sym_raw_string] = ACTIONS(994), + [anon_sym_DOLLAR] = ACTIONS(186), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(188), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(190), + [anon_sym_BQUOTE] = ACTIONS(192), + [anon_sym_LT_LPAREN] = ACTIONS(194), + [anon_sym_GT_LPAREN] = ACTIONS(194), + [sym_word] = ACTIONS(996), + [sym_comment] = ACTIONS(52), + }, + [547] = { + [sym_file_descriptor] = ACTIONS(238), + [sym_variable_name] = ACTIONS(238), + [anon_sym_PIPE] = ACTIONS(1484), + [anon_sym_PIPE_AMP] = ACTIONS(1486), + [anon_sym_AMP_AMP] = ACTIONS(1486), + [anon_sym_PIPE_PIPE] = ACTIONS(1484), + [anon_sym_LT] = ACTIONS(242), + [anon_sym_GT] = ACTIONS(242), + [anon_sym_GT_GT] = ACTIONS(238), + [anon_sym_AMP_GT] = ACTIONS(242), + [anon_sym_AMP_GT_GT] = ACTIONS(238), + [anon_sym_LT_AMP] = ACTIONS(238), + [anon_sym_GT_AMP] = ACTIONS(238), + [anon_sym_DQUOTE] = ACTIONS(238), + [sym_raw_string] = ACTIONS(238), + [anon_sym_DOLLAR] = ACTIONS(242), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(238), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(1486), + [anon_sym_LT_LPAREN] = ACTIONS(238), + [anon_sym_GT_LPAREN] = ACTIONS(238), + [sym_word] = ACTIONS(240), + [sym_comment] = ACTIONS(52), + }, + [548] = { + [anon_sym_PIPE] = ACTIONS(510), + [anon_sym_PIPE_AMP] = ACTIONS(512), + [anon_sym_AMP_AMP] = ACTIONS(1488), + [anon_sym_PIPE_PIPE] = ACTIONS(1488), + [anon_sym_BQUOTE] = ACTIONS(1488), + [sym_comment] = ACTIONS(52), + }, + [549] = { + [sym_file_descriptor] = ACTIONS(238), + [sym_variable_name] = ACTIONS(238), + [anon_sym_PIPE] = ACTIONS(510), + [anon_sym_PIPE_AMP] = ACTIONS(512), + [anon_sym_AMP_AMP] = ACTIONS(1488), + [anon_sym_PIPE_PIPE] = ACTIONS(1490), + [anon_sym_LT] = ACTIONS(242), + [anon_sym_GT] = ACTIONS(242), + [anon_sym_GT_GT] = ACTIONS(238), + [anon_sym_AMP_GT] = ACTIONS(242), + [anon_sym_AMP_GT_GT] = ACTIONS(238), + [anon_sym_LT_AMP] = ACTIONS(238), + [anon_sym_GT_AMP] = ACTIONS(238), + [anon_sym_DQUOTE] = ACTIONS(238), + [sym_raw_string] = ACTIONS(238), + [anon_sym_DOLLAR] = ACTIONS(242), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(238), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(238), + [anon_sym_LT_LPAREN] = ACTIONS(238), + [anon_sym_GT_LPAREN] = ACTIONS(238), + [sym_word] = ACTIONS(240), + [sym_comment] = ACTIONS(52), + }, + [550] = { + [sym_file_redirect] = STATE(302), + [sym_heredoc_redirect] = STATE(302), + [sym_concatenation] = STATE(543), + [sym_string] = STATE(542), + [sym_simple_expansion] = STATE(542), + [sym_expansion] = STATE(542), + [sym_command_substitution] = STATE(542), + [sym_process_substitution] = STATE(542), + [aux_sym_command_repeat2] = STATE(808), + [sym_file_descriptor] = ACTIONS(488), + [anon_sym_PIPE] = ACTIONS(1516), + [anon_sym_PIPE_AMP] = ACTIONS(1518), + [anon_sym_AMP_AMP] = ACTIONS(1518), + [anon_sym_PIPE_PIPE] = ACTIONS(1516), + [anon_sym_LT] = ACTIONS(494), + [anon_sym_GT] = ACTIONS(494), + [anon_sym_GT_GT] = ACTIONS(496), + [anon_sym_AMP_GT] = ACTIONS(494), + [anon_sym_AMP_GT_GT] = ACTIONS(496), + [anon_sym_LT_AMP] = ACTIONS(496), + [anon_sym_GT_AMP] = ACTIONS(496), + [anon_sym_LT_LT] = ACTIONS(498), + [anon_sym_LT_LT_DASH] = ACTIONS(500), + [anon_sym_DQUOTE] = ACTIONS(182), + [sym_raw_string] = ACTIONS(994), + [anon_sym_DOLLAR] = ACTIONS(186), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(188), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(190), + [anon_sym_BQUOTE] = ACTIONS(1518), + [anon_sym_LT_LPAREN] = ACTIONS(194), + [anon_sym_GT_LPAREN] = ACTIONS(194), + [sym_word] = ACTIONS(996), + [sym_comment] = ACTIONS(52), + }, + [551] = { + [sym_file_redirect] = STATE(809), + [sym_file_descriptor] = ACTIONS(524), + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_RPAREN] = ACTIONS(1252), + [anon_sym_SEMI_SEMI] = ACTIONS(1252), + [anon_sym_PIPE_AMP] = ACTIONS(1252), + [anon_sym_AMP_AMP] = ACTIONS(1252), + [anon_sym_PIPE_PIPE] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(528), + [anon_sym_GT] = ACTIONS(528), + [anon_sym_GT_GT] = ACTIONS(528), + [anon_sym_AMP_GT] = ACTIONS(528), + [anon_sym_AMP_GT_GT] = ACTIONS(528), + [anon_sym_LT_AMP] = ACTIONS(528), + [anon_sym_GT_AMP] = ACTIONS(528), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(1252), + [anon_sym_LF] = ACTIONS(1252), + [anon_sym_AMP] = ACTIONS(1252), + }, + [552] = { + [sym_file_descriptor] = ACTIONS(1522), + [anon_sym_PIPE] = ACTIONS(1524), + [anon_sym_RPAREN] = ACTIONS(1524), + [anon_sym_SEMI_SEMI] = ACTIONS(1524), + [anon_sym_PIPE_AMP] = ACTIONS(1524), + [anon_sym_AMP_AMP] = ACTIONS(1524), + [anon_sym_PIPE_PIPE] = ACTIONS(1524), + [anon_sym_LT] = ACTIONS(1524), + [anon_sym_GT] = ACTIONS(1524), + [anon_sym_GT_GT] = ACTIONS(1524), + [anon_sym_AMP_GT] = ACTIONS(1524), + [anon_sym_AMP_GT_GT] = ACTIONS(1524), + [anon_sym_LT_AMP] = ACTIONS(1524), + [anon_sym_GT_AMP] = ACTIONS(1524), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(1524), + [anon_sym_LF] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + }, + [553] = { + [sym_concatenation] = STATE(811), + [sym_string] = STATE(810), + [sym_simple_expansion] = STATE(810), + [sym_expansion] = STATE(810), + [sym_command_substitution] = STATE(810), + [sym_process_substitution] = STATE(810), + [anon_sym_DQUOTE] = ACTIONS(1012), + [sym_raw_string] = ACTIONS(1526), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1018), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1020), + [anon_sym_BQUOTE] = ACTIONS(1022), + [anon_sym_LT_LPAREN] = ACTIONS(1024), + [anon_sym_GT_LPAREN] = ACTIONS(1024), + [sym_word] = ACTIONS(1528), + [sym_comment] = ACTIONS(52), + }, + [554] = { + [sym_simple_expansion] = STATE(78), + [sym_expansion] = STATE(78), + [sym_command_substitution] = STATE(78), + [aux_sym_string_repeat1] = STATE(813), + [anon_sym_DQUOTE] = ACTIONS(1530), + [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(132), + [anon_sym_DOLLAR] = ACTIONS(134), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(136), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(138), + [anon_sym_BQUOTE] = ACTIONS(140), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1026), - [anon_sym_LF] = ACTIONS(1026), - [anon_sym_AMP] = ACTIONS(1026), }, [555] = { - [aux_sym_concatenation_repeat1] = STATE(560), - [sym_file_descriptor] = ACTIONS(580), - [sym__concat] = ACTIONS(1024), - [anon_sym_PIPE] = ACTIONS(1518), - [anon_sym_RPAREN] = ACTIONS(1518), - [anon_sym_SEMI_SEMI] = ACTIONS(1518), - [anon_sym_PIPE_AMP] = ACTIONS(1518), - [anon_sym_AMP_AMP] = ACTIONS(1518), - [anon_sym_PIPE_PIPE] = ACTIONS(1518), - [anon_sym_LT] = ACTIONS(1518), - [anon_sym_GT] = ACTIONS(1518), - [anon_sym_GT_GT] = ACTIONS(1518), - [anon_sym_AMP_GT] = ACTIONS(1518), - [anon_sym_AMP_GT_GT] = ACTIONS(1518), - [anon_sym_LT_AMP] = ACTIONS(1518), - [anon_sym_GT_AMP] = ACTIONS(1518), - [anon_sym_LT_LT] = ACTIONS(1518), - [anon_sym_LT_LT_DASH] = ACTIONS(1518), + [aux_sym_concatenation_repeat1] = STATE(815), + [sym__concat] = ACTIONS(1532), + [anon_sym_PIPE] = ACTIONS(1040), + [anon_sym_RPAREN] = ACTIONS(1040), + [anon_sym_SEMI_SEMI] = ACTIONS(1040), + [anon_sym_PIPE_AMP] = ACTIONS(1040), + [anon_sym_AMP_AMP] = ACTIONS(1040), + [anon_sym_PIPE_PIPE] = ACTIONS(1040), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1518), - [anon_sym_LF] = ACTIONS(1518), - [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_SEMI] = ACTIONS(1040), + [anon_sym_LF] = ACTIONS(1040), + [anon_sym_AMP] = ACTIONS(1040), }, [556] = { - [sym_file_descriptor] = ACTIONS(580), - [anon_sym_PIPE] = ACTIONS(1518), - [anon_sym_RPAREN] = ACTIONS(1518), - [anon_sym_SEMI_SEMI] = ACTIONS(1518), - [anon_sym_PIPE_AMP] = ACTIONS(1518), - [anon_sym_AMP_AMP] = ACTIONS(1518), - [anon_sym_PIPE_PIPE] = ACTIONS(1518), - [anon_sym_LT] = ACTIONS(1518), - [anon_sym_GT] = ACTIONS(1518), - [anon_sym_GT_GT] = ACTIONS(1518), - [anon_sym_AMP_GT] = ACTIONS(1518), - [anon_sym_AMP_GT_GT] = ACTIONS(1518), - [anon_sym_LT_AMP] = ACTIONS(1518), - [anon_sym_GT_AMP] = ACTIONS(1518), - [anon_sym_LT_LT] = ACTIONS(1518), - [anon_sym_LT_LT_DASH] = ACTIONS(1518), + [sym_special_variable_name] = STATE(818), + [anon_sym_DOLLAR] = ACTIONS(1534), + [anon_sym_POUND] = ACTIONS(1534), + [anon_sym_AT] = ACTIONS(1534), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1518), - [anon_sym_LF] = ACTIONS(1518), - [anon_sym_AMP] = ACTIONS(1518), + [sym_simple_variable_name] = ACTIONS(1536), + [anon_sym_STAR] = ACTIONS(1534), + [anon_sym_QMARK] = ACTIONS(1534), + [anon_sym_DASH] = ACTIONS(1534), + [anon_sym_BANG] = ACTIONS(1534), + [anon_sym_0] = ACTIONS(1538), + [anon_sym__] = ACTIONS(1538), }, [557] = { + [sym_special_variable_name] = STATE(821), + [anon_sym_DOLLAR] = ACTIONS(156), + [anon_sym_POUND] = ACTIONS(1540), + [anon_sym_AT] = ACTIONS(156), + [sym_comment] = ACTIONS(142), + [sym_simple_variable_name] = ACTIONS(1542), + [anon_sym_STAR] = ACTIONS(156), + [anon_sym_QMARK] = ACTIONS(156), + [anon_sym_DASH] = ACTIONS(156), + [anon_sym_BANG] = ACTIONS(156), + [anon_sym_0] = ACTIONS(162), + [anon_sym__] = ACTIONS(162), + }, + [558] = { + [sym_for_statement] = STATE(822), + [sym_while_statement] = STATE(822), + [sym_if_statement] = STATE(822), + [sym_case_statement] = STATE(822), + [sym_function_definition] = STATE(822), + [sym_subshell] = STATE(822), + [sym_pipeline] = STATE(822), + [sym_list] = STATE(822), + [sym_bracket_command] = STATE(822), + [sym_command] = STATE(822), + [sym_command_name] = STATE(111), + [sym_environment_variable_assignment] = STATE(823), + [sym_subscript] = STATE(113), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(114), + [sym_string] = STATE(103), + [sym_simple_expansion] = STATE(103), + [sym_expansion] = STATE(103), + [sym_command_substitution] = STATE(103), + [sym_process_substitution] = STATE(103), + [aux_sym_command_repeat1] = STATE(115), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(164), + [anon_sym_for] = ACTIONS(166), + [anon_sym_while] = ACTIONS(168), + [anon_sym_if] = ACTIONS(170), + [anon_sym_case] = ACTIONS(172), + [anon_sym_function] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(176), + [anon_sym_LBRACK] = ACTIONS(178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(180), + [anon_sym_LT] = ACTIONS(32), + [anon_sym_GT] = ACTIONS(32), + [anon_sym_GT_GT] = ACTIONS(34), + [anon_sym_AMP_GT] = ACTIONS(32), + [anon_sym_AMP_GT_GT] = ACTIONS(34), + [anon_sym_LT_AMP] = ACTIONS(34), + [anon_sym_GT_AMP] = ACTIONS(34), + [anon_sym_DQUOTE] = ACTIONS(182), + [sym_raw_string] = ACTIONS(184), + [anon_sym_DOLLAR] = ACTIONS(186), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(188), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(190), + [anon_sym_BQUOTE] = ACTIONS(192), + [anon_sym_LT_LPAREN] = ACTIONS(194), + [anon_sym_GT_LPAREN] = ACTIONS(194), + [sym_word] = ACTIONS(196), + [sym_comment] = ACTIONS(52), + }, + [559] = { + [sym_for_statement] = STATE(824), + [sym_while_statement] = STATE(824), + [sym_if_statement] = STATE(824), + [sym_case_statement] = STATE(824), + [sym_function_definition] = STATE(824), + [sym_subshell] = STATE(824), + [sym_pipeline] = STATE(824), + [sym_list] = STATE(824), + [sym_bracket_command] = STATE(824), + [sym_command] = STATE(824), + [sym_command_name] = STATE(117), + [sym_environment_variable_assignment] = STATE(825), + [sym_subscript] = STATE(113), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(114), + [sym_string] = STATE(103), + [sym_simple_expansion] = STATE(103), + [sym_expansion] = STATE(103), + [sym_command_substitution] = STATE(103), + [sym_process_substitution] = STATE(103), + [aux_sym_command_repeat1] = STATE(119), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(164), + [anon_sym_for] = ACTIONS(166), + [anon_sym_while] = ACTIONS(168), + [anon_sym_if] = ACTIONS(170), + [anon_sym_case] = ACTIONS(172), + [anon_sym_function] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(176), + [anon_sym_LBRACK] = ACTIONS(178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(180), + [anon_sym_LT] = ACTIONS(32), + [anon_sym_GT] = ACTIONS(32), + [anon_sym_GT_GT] = ACTIONS(34), + [anon_sym_AMP_GT] = ACTIONS(32), + [anon_sym_AMP_GT_GT] = ACTIONS(34), + [anon_sym_LT_AMP] = ACTIONS(34), + [anon_sym_GT_AMP] = ACTIONS(34), + [anon_sym_DQUOTE] = ACTIONS(182), + [sym_raw_string] = ACTIONS(184), + [anon_sym_DOLLAR] = ACTIONS(186), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(188), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(190), + [anon_sym_BQUOTE] = ACTIONS(192), + [anon_sym_LT_LPAREN] = ACTIONS(194), + [anon_sym_GT_LPAREN] = ACTIONS(194), + [sym_word] = ACTIONS(196), + [sym_comment] = ACTIONS(52), + }, + [560] = { + [sym_for_statement] = STATE(826), + [sym_while_statement] = STATE(826), + [sym_if_statement] = STATE(826), + [sym_case_statement] = STATE(826), + [sym_function_definition] = STATE(826), + [sym_subshell] = STATE(826), + [sym_pipeline] = STATE(826), + [sym_list] = STATE(826), + [sym_bracket_command] = STATE(826), + [sym_command] = STATE(826), + [sym_command_name] = STATE(111), + [sym_environment_variable_assignment] = STATE(827), + [sym_subscript] = STATE(113), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(114), + [sym_string] = STATE(103), + [sym_simple_expansion] = STATE(103), + [sym_expansion] = STATE(103), + [sym_command_substitution] = STATE(103), + [sym_process_substitution] = STATE(103), + [aux_sym_command_repeat1] = STATE(115), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(164), + [anon_sym_for] = ACTIONS(166), + [anon_sym_while] = ACTIONS(168), + [anon_sym_if] = ACTIONS(170), + [anon_sym_case] = ACTIONS(172), + [anon_sym_function] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(176), + [anon_sym_LBRACK] = ACTIONS(178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(180), + [anon_sym_LT] = ACTIONS(32), + [anon_sym_GT] = ACTIONS(32), + [anon_sym_GT_GT] = ACTIONS(34), + [anon_sym_AMP_GT] = ACTIONS(32), + [anon_sym_AMP_GT_GT] = ACTIONS(34), + [anon_sym_LT_AMP] = ACTIONS(34), + [anon_sym_GT_AMP] = ACTIONS(34), + [anon_sym_DQUOTE] = ACTIONS(182), + [sym_raw_string] = ACTIONS(184), + [anon_sym_DOLLAR] = ACTIONS(186), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(188), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(190), + [anon_sym_BQUOTE] = ACTIONS(192), + [anon_sym_LT_LPAREN] = ACTIONS(194), + [anon_sym_GT_LPAREN] = ACTIONS(194), + [sym_word] = ACTIONS(196), + [sym_comment] = ACTIONS(52), + }, + [561] = { + [anon_sym_PIPE] = ACTIONS(1040), + [anon_sym_RPAREN] = ACTIONS(1040), + [anon_sym_SEMI_SEMI] = ACTIONS(1040), + [anon_sym_PIPE_AMP] = ACTIONS(1040), + [anon_sym_AMP_AMP] = ACTIONS(1040), + [anon_sym_PIPE_PIPE] = ACTIONS(1040), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(1040), + [anon_sym_LF] = ACTIONS(1040), + [anon_sym_AMP] = ACTIONS(1040), + }, + [562] = { + [aux_sym_concatenation_repeat1] = STATE(567), + [sym_file_descriptor] = ACTIONS(580), + [sym__concat] = ACTIONS(1038), + [anon_sym_PIPE] = ACTIONS(1544), + [anon_sym_RPAREN] = ACTIONS(1544), + [anon_sym_SEMI_SEMI] = ACTIONS(1544), + [anon_sym_PIPE_AMP] = ACTIONS(1544), + [anon_sym_AMP_AMP] = ACTIONS(1544), + [anon_sym_PIPE_PIPE] = ACTIONS(1544), + [anon_sym_LT] = ACTIONS(1544), + [anon_sym_GT] = ACTIONS(1544), + [anon_sym_GT_GT] = ACTIONS(1544), + [anon_sym_AMP_GT] = ACTIONS(1544), + [anon_sym_AMP_GT_GT] = ACTIONS(1544), + [anon_sym_LT_AMP] = ACTIONS(1544), + [anon_sym_GT_AMP] = ACTIONS(1544), + [anon_sym_LT_LT] = ACTIONS(1544), + [anon_sym_LT_LT_DASH] = ACTIONS(1544), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(1544), + [anon_sym_LF] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(1544), + }, + [563] = { + [sym_file_descriptor] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(1544), + [anon_sym_RPAREN] = ACTIONS(1544), + [anon_sym_SEMI_SEMI] = ACTIONS(1544), + [anon_sym_PIPE_AMP] = ACTIONS(1544), + [anon_sym_AMP_AMP] = ACTIONS(1544), + [anon_sym_PIPE_PIPE] = ACTIONS(1544), + [anon_sym_LT] = ACTIONS(1544), + [anon_sym_GT] = ACTIONS(1544), + [anon_sym_GT_GT] = ACTIONS(1544), + [anon_sym_AMP_GT] = ACTIONS(1544), + [anon_sym_AMP_GT_GT] = ACTIONS(1544), + [anon_sym_LT_AMP] = ACTIONS(1544), + [anon_sym_GT_AMP] = ACTIONS(1544), + [anon_sym_LT_LT] = ACTIONS(1544), + [anon_sym_LT_LT_DASH] = ACTIONS(1544), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(1544), + [anon_sym_LF] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(1544), + }, + [564] = { [sym_file_descriptor] = ACTIONS(386), [sym__concat] = ACTIONS(386), [anon_sym_PIPE] = ACTIONS(388), @@ -16641,11 +16985,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(388), [anon_sym_AMP] = ACTIONS(388), }, - [558] = { + [565] = { [sym_simple_expansion] = STATE(253), [sym_expansion] = STATE(253), [sym_command_substitution] = STATE(253), - [anon_sym_DQUOTE] = ACTIONS(1520), + [anon_sym_DQUOTE] = ACTIONS(1546), [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(406), [anon_sym_DOLLAR] = ACTIONS(134), [anon_sym_DOLLAR_LBRACE] = ACTIONS(136), @@ -16653,26 +16997,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(140), [sym_comment] = ACTIONS(142), }, - [559] = { - [sym_string] = STATE(805), - [sym_simple_expansion] = STATE(805), - [sym_expansion] = STATE(805), - [sym_command_substitution] = STATE(805), - [sym_process_substitution] = STATE(805), + [566] = { + [sym_string] = STATE(829), + [sym_simple_expansion] = STATE(829), + [sym_expansion] = STATE(829), + [sym_command_substitution] = STATE(829), + [sym_process_substitution] = STATE(829), [anon_sym_DQUOTE] = ACTIONS(540), - [sym_raw_string] = ACTIONS(1522), + [sym_raw_string] = ACTIONS(1548), [anon_sym_DOLLAR] = ACTIONS(544), [anon_sym_DOLLAR_LBRACE] = ACTIONS(546), [anon_sym_DOLLAR_LPAREN] = ACTIONS(548), [anon_sym_BQUOTE] = ACTIONS(550), [anon_sym_LT_LPAREN] = ACTIONS(552), [anon_sym_GT_LPAREN] = ACTIONS(552), - [sym_word] = ACTIONS(1524), + [sym_word] = ACTIONS(1550), [sym_comment] = ACTIONS(52), }, - [560] = { + [567] = { [sym_file_descriptor] = ACTIONS(412), - [sym__concat] = ACTIONS(1526), + [sym__concat] = ACTIONS(1552), [anon_sym_PIPE] = ACTIONS(416), [anon_sym_RPAREN] = ACTIONS(416), [anon_sym_SEMI_SEMI] = ACTIONS(416), @@ -16693,7 +17037,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(416), [anon_sym_AMP] = ACTIONS(416), }, - [561] = { + [568] = { [sym_file_descriptor] = ACTIONS(418), [sym__concat] = ACTIONS(418), [anon_sym_PIPE] = ACTIONS(420), @@ -16716,7 +17060,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(420), [anon_sym_AMP] = ACTIONS(420), }, - [562] = { + [569] = { [sym_file_descriptor] = ACTIONS(422), [sym__concat] = ACTIONS(422), [anon_sym_PIPE] = ACTIONS(424), @@ -16739,7 +17083,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(424), [anon_sym_AMP] = ACTIONS(424), }, - [563] = { + [570] = { [sym_file_descriptor] = ACTIONS(426), [sym__concat] = ACTIONS(426), [anon_sym_PIPE] = ACTIONS(428), @@ -16762,8 +17106,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(428), [anon_sym_AMP] = ACTIONS(428), }, - [564] = { - [sym_special_variable_name] = STATE(808), + [571] = { + [sym_special_variable_name] = STATE(832), [anon_sym_RBRACE] = ACTIONS(418), [anon_sym_LBRACK] = ACTIONS(418), [anon_sym_EQ] = ACTIONS(418), @@ -16776,7 +17120,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(418), [anon_sym_SLASH] = ACTIONS(418), [sym_comment] = ACTIONS(142), - [sym_simple_variable_name] = ACTIONS(1528), + [sym_simple_variable_name] = ACTIONS(1554), [anon_sym_STAR] = ACTIONS(156), [anon_sym_QMARK] = ACTIONS(156), [anon_sym_DASH] = ACTIONS(156), @@ -16784,41 +17128,41 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_0] = ACTIONS(162), [anon_sym__] = ACTIONS(162), }, - [565] = { - [anon_sym_RBRACE] = ACTIONS(1530), - [anon_sym_LBRACK] = ACTIONS(1532), - [anon_sym_EQ] = ACTIONS(1534), - [anon_sym_COLON] = ACTIONS(1536), - [anon_sym_COLON_QMARK] = ACTIONS(1534), - [anon_sym_COLON_DASH] = ACTIONS(1534), - [anon_sym_PERCENT] = ACTIONS(1534), - [anon_sym_SLASH] = ACTIONS(1534), + [572] = { + [anon_sym_RBRACE] = ACTIONS(1556), + [anon_sym_LBRACK] = ACTIONS(1558), + [anon_sym_EQ] = ACTIONS(1560), + [anon_sym_COLON] = ACTIONS(1562), + [anon_sym_COLON_QMARK] = ACTIONS(1560), + [anon_sym_COLON_DASH] = ACTIONS(1560), + [anon_sym_PERCENT] = ACTIONS(1560), + [anon_sym_SLASH] = ACTIONS(1560), [sym_comment] = ACTIONS(52), }, - [566] = { - [anon_sym_RBRACE] = ACTIONS(1538), - [anon_sym_LBRACK] = ACTIONS(1540), - [anon_sym_EQ] = ACTIONS(1542), - [anon_sym_COLON] = ACTIONS(1544), - [anon_sym_COLON_QMARK] = ACTIONS(1542), - [anon_sym_COLON_DASH] = ACTIONS(1542), - [anon_sym_PERCENT] = ACTIONS(1542), - [anon_sym_SLASH] = ACTIONS(1542), + [573] = { + [anon_sym_RBRACE] = ACTIONS(1564), + [anon_sym_LBRACK] = ACTIONS(1566), + [anon_sym_EQ] = ACTIONS(1568), + [anon_sym_COLON] = ACTIONS(1570), + [anon_sym_COLON_QMARK] = ACTIONS(1568), + [anon_sym_COLON_DASH] = ACTIONS(1568), + [anon_sym_PERCENT] = ACTIONS(1568), + [anon_sym_SLASH] = ACTIONS(1568), [sym_comment] = ACTIONS(52), }, - [567] = { + [574] = { [anon_sym_PIPE] = ACTIONS(480), - [anon_sym_RPAREN] = ACTIONS(1546), + [anon_sym_RPAREN] = ACTIONS(1572), [anon_sym_PIPE_AMP] = ACTIONS(484), [anon_sym_AMP_AMP] = ACTIONS(486), [anon_sym_PIPE_PIPE] = ACTIONS(486), [sym_comment] = ACTIONS(52), }, - [568] = { + [575] = { [sym_file_descriptor] = ACTIONS(238), [sym_variable_name] = ACTIONS(238), [anon_sym_PIPE] = ACTIONS(480), - [anon_sym_RPAREN] = ACTIONS(1546), + [anon_sym_RPAREN] = ACTIONS(1572), [anon_sym_PIPE_AMP] = ACTIONS(484), [anon_sym_AMP_AMP] = ACTIONS(486), [anon_sym_PIPE_PIPE] = ACTIONS(506), @@ -16840,15 +17184,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(240), [sym_comment] = ACTIONS(52), }, - [569] = { + [576] = { [anon_sym_PIPE] = ACTIONS(510), [anon_sym_PIPE_AMP] = ACTIONS(512), [anon_sym_AMP_AMP] = ACTIONS(514), [anon_sym_PIPE_PIPE] = ACTIONS(514), - [anon_sym_BQUOTE] = ACTIONS(1546), + [anon_sym_BQUOTE] = ACTIONS(1572), [sym_comment] = ACTIONS(52), }, - [570] = { + [577] = { [sym_file_descriptor] = ACTIONS(238), [sym_variable_name] = ACTIONS(238), [anon_sym_PIPE] = ACTIONS(510), @@ -16867,25 +17211,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(242), [anon_sym_DOLLAR_LBRACE] = ACTIONS(238), [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(1546), + [anon_sym_BQUOTE] = ACTIONS(1572), [anon_sym_LT_LPAREN] = ACTIONS(238), [anon_sym_GT_LPAREN] = ACTIONS(238), [sym_word] = ACTIONS(240), [sym_comment] = ACTIONS(52), }, - [571] = { + [578] = { [anon_sym_PIPE] = ACTIONS(480), - [anon_sym_RPAREN] = ACTIONS(1548), + [anon_sym_RPAREN] = ACTIONS(1574), [anon_sym_PIPE_AMP] = ACTIONS(484), [anon_sym_AMP_AMP] = ACTIONS(486), [anon_sym_PIPE_PIPE] = ACTIONS(486), [sym_comment] = ACTIONS(52), }, - [572] = { + [579] = { [sym_file_descriptor] = ACTIONS(238), [sym_variable_name] = ACTIONS(238), [anon_sym_PIPE] = ACTIONS(480), - [anon_sym_RPAREN] = ACTIONS(1548), + [anon_sym_RPAREN] = ACTIONS(1574), [anon_sym_PIPE_AMP] = ACTIONS(484), [anon_sym_AMP_AMP] = ACTIONS(486), [anon_sym_PIPE_PIPE] = ACTIONS(506), @@ -16907,56 +17251,56 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(240), [sym_comment] = ACTIONS(52), }, - [573] = { - [sym__heredoc_middle] = ACTIONS(1550), - [sym__heredoc_end] = ACTIONS(1550), - [anon_sym_DOLLAR] = ACTIONS(1552), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1550), + [580] = { + [sym__heredoc_middle] = ACTIONS(1576), + [sym__heredoc_end] = ACTIONS(1576), + [anon_sym_DOLLAR] = ACTIONS(1578), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1576), [sym_comment] = ACTIONS(52), }, - [574] = { - [sym_file_descriptor] = ACTIONS(1554), - [anon_sym_PIPE] = ACTIONS(1556), - [anon_sym_RPAREN] = ACTIONS(1556), - [anon_sym_SEMI_SEMI] = ACTIONS(1556), - [anon_sym_PIPE_AMP] = ACTIONS(1556), - [anon_sym_AMP_AMP] = ACTIONS(1556), - [anon_sym_PIPE_PIPE] = ACTIONS(1556), - [anon_sym_LT] = ACTIONS(1556), - [anon_sym_GT] = ACTIONS(1556), - [anon_sym_GT_GT] = ACTIONS(1556), - [anon_sym_AMP_GT] = ACTIONS(1556), - [anon_sym_AMP_GT_GT] = ACTIONS(1556), - [anon_sym_LT_AMP] = ACTIONS(1556), - [anon_sym_GT_AMP] = ACTIONS(1556), - [anon_sym_LT_LT] = ACTIONS(1556), - [anon_sym_LT_LT_DASH] = ACTIONS(1556), + [581] = { + [sym_file_descriptor] = ACTIONS(1580), + [anon_sym_PIPE] = ACTIONS(1582), + [anon_sym_RPAREN] = ACTIONS(1582), + [anon_sym_SEMI_SEMI] = ACTIONS(1582), + [anon_sym_PIPE_AMP] = ACTIONS(1582), + [anon_sym_AMP_AMP] = ACTIONS(1582), + [anon_sym_PIPE_PIPE] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1582), + [anon_sym_GT] = ACTIONS(1582), + [anon_sym_GT_GT] = ACTIONS(1582), + [anon_sym_AMP_GT] = ACTIONS(1582), + [anon_sym_AMP_GT_GT] = ACTIONS(1582), + [anon_sym_LT_AMP] = ACTIONS(1582), + [anon_sym_GT_AMP] = ACTIONS(1582), + [anon_sym_LT_LT] = ACTIONS(1582), + [anon_sym_LT_LT_DASH] = ACTIONS(1582), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1556), - [anon_sym_LF] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(1556), + [anon_sym_SEMI] = ACTIONS(1582), + [anon_sym_LF] = ACTIONS(1582), + [anon_sym_AMP] = ACTIONS(1582), }, - [575] = { - [sym_special_variable_name] = STATE(819), - [anon_sym_DOLLAR] = ACTIONS(1558), - [anon_sym_POUND] = ACTIONS(1558), - [anon_sym_AT] = ACTIONS(1558), + [582] = { + [sym_special_variable_name] = STATE(843), + [anon_sym_DOLLAR] = ACTIONS(1584), + [anon_sym_POUND] = ACTIONS(1584), + [anon_sym_AT] = ACTIONS(1584), [sym_comment] = ACTIONS(142), - [sym_simple_variable_name] = ACTIONS(1560), - [anon_sym_STAR] = ACTIONS(1558), - [anon_sym_QMARK] = ACTIONS(1558), - [anon_sym_DASH] = ACTIONS(1558), - [anon_sym_BANG] = ACTIONS(1558), - [anon_sym_0] = ACTIONS(1562), - [anon_sym__] = ACTIONS(1562), + [sym_simple_variable_name] = ACTIONS(1586), + [anon_sym_STAR] = ACTIONS(1584), + [anon_sym_QMARK] = ACTIONS(1584), + [anon_sym_DASH] = ACTIONS(1584), + [anon_sym_BANG] = ACTIONS(1584), + [anon_sym_0] = ACTIONS(1588), + [anon_sym__] = ACTIONS(1588), }, - [576] = { - [sym_special_variable_name] = STATE(822), + [583] = { + [sym_special_variable_name] = STATE(846), [anon_sym_DOLLAR] = ACTIONS(156), - [anon_sym_POUND] = ACTIONS(1564), + [anon_sym_POUND] = ACTIONS(1590), [anon_sym_AT] = ACTIONS(156), [sym_comment] = ACTIONS(142), - [sym_simple_variable_name] = ACTIONS(1566), + [sym_simple_variable_name] = ACTIONS(1592), [anon_sym_STAR] = ACTIONS(156), [anon_sym_QMARK] = ACTIONS(156), [anon_sym_DASH] = ACTIONS(156), @@ -16964,75 +17308,89 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_0] = ACTIONS(162), [anon_sym__] = ACTIONS(162), }, - [577] = { - [sym_simple_expansion] = STATE(823), - [sym_expansion] = STATE(823), - [sym__heredoc_middle] = ACTIONS(1568), - [sym__heredoc_end] = ACTIONS(1570), - [anon_sym_DOLLAR] = ACTIONS(1046), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1048), + [584] = { + [sym_simple_expansion] = STATE(847), + [sym_expansion] = STATE(847), + [sym__heredoc_middle] = ACTIONS(1594), + [sym__heredoc_end] = ACTIONS(1596), + [anon_sym_DOLLAR] = ACTIONS(1060), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1062), [sym_comment] = ACTIONS(52), }, - [578] = { + [585] = { [sym_file_descriptor] = ACTIONS(600), [sym_variable_name] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(1360), - [anon_sym_GT] = ACTIONS(1360), + [anon_sym_LT] = ACTIONS(1386), + [anon_sym_GT] = ACTIONS(1386), [anon_sym_GT_GT] = ACTIONS(600), - [anon_sym_AMP_GT] = ACTIONS(1360), + [anon_sym_AMP_GT] = ACTIONS(1386), [anon_sym_AMP_GT_GT] = ACTIONS(600), [anon_sym_LT_AMP] = ACTIONS(600), [anon_sym_GT_AMP] = ACTIONS(600), [anon_sym_DQUOTE] = ACTIONS(600), [sym_raw_string] = ACTIONS(600), - [anon_sym_DOLLAR] = ACTIONS(1360), + [anon_sym_DOLLAR] = ACTIONS(1386), [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_word] = ACTIONS(1360), + [sym_word] = ACTIONS(1386), [sym_comment] = ACTIONS(52), }, - [579] = { - [aux_sym_array_repeat1] = STATE(826), - [anon_sym_RPAREN] = ACTIONS(1572), - [sym_word] = ACTIONS(606), + [586] = { + [sym_concatenation] = STATE(365), + [sym_string] = STATE(359), + [sym_simple_expansion] = STATE(359), + [sym_expansion] = STATE(359), + [sym_command_substitution] = STATE(359), + [sym_process_substitution] = STATE(359), + [aux_sym_for_statement_repeat1] = STATE(850), + [anon_sym_RPAREN] = ACTIONS(1598), + [anon_sym_DQUOTE] = ACTIONS(606), + [sym_raw_string] = ACTIONS(608), + [anon_sym_DOLLAR] = ACTIONS(610), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(612), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(614), + [anon_sym_BQUOTE] = ACTIONS(616), + [anon_sym_LT_LPAREN] = ACTIONS(618), + [anon_sym_GT_LPAREN] = ACTIONS(618), + [sym_word] = ACTIONS(620), [sym_comment] = ACTIONS(52), }, - [580] = { + [587] = { [aux_sym_concatenation_repeat1] = STATE(229), [sym_file_descriptor] = ACTIONS(600), [sym__concat] = ACTIONS(372), [sym_variable_name] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(1360), - [anon_sym_GT] = ACTIONS(1360), + [anon_sym_LT] = ACTIONS(1386), + [anon_sym_GT] = ACTIONS(1386), [anon_sym_GT_GT] = ACTIONS(600), - [anon_sym_AMP_GT] = ACTIONS(1360), + [anon_sym_AMP_GT] = ACTIONS(1386), [anon_sym_AMP_GT_GT] = ACTIONS(600), [anon_sym_LT_AMP] = ACTIONS(600), [anon_sym_GT_AMP] = ACTIONS(600), [anon_sym_DQUOTE] = ACTIONS(600), [sym_raw_string] = ACTIONS(600), - [anon_sym_DOLLAR] = ACTIONS(1360), + [anon_sym_DOLLAR] = ACTIONS(1386), [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_word] = ACTIONS(1360), + [sym_word] = ACTIONS(1386), [sym_comment] = ACTIONS(52), }, - [581] = { + [588] = { [sym_file_redirect] = STATE(337), [sym_heredoc_redirect] = STATE(337), [sym_file_descriptor] = ACTIONS(216), - [anon_sym_PIPE] = ACTIONS(1574), - [anon_sym_RPAREN] = ACTIONS(1574), - [anon_sym_SEMI_SEMI] = ACTIONS(1574), - [anon_sym_PIPE_AMP] = ACTIONS(1574), - [anon_sym_AMP_AMP] = ACTIONS(1574), - [anon_sym_PIPE_PIPE] = ACTIONS(1574), + [anon_sym_PIPE] = ACTIONS(1600), + [anon_sym_RPAREN] = ACTIONS(1600), + [anon_sym_SEMI_SEMI] = ACTIONS(1600), + [anon_sym_PIPE_AMP] = ACTIONS(1600), + [anon_sym_AMP_AMP] = ACTIONS(1600), + [anon_sym_PIPE_PIPE] = ACTIONS(1600), [anon_sym_LT] = ACTIONS(220), [anon_sym_GT] = ACTIONS(220), [anon_sym_GT_GT] = ACTIONS(220), @@ -17043,289 +17401,98 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(222), [anon_sym_LT_LT_DASH] = ACTIONS(222), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1574), - [anon_sym_LF] = ACTIONS(1574), - [anon_sym_AMP] = ACTIONS(1574), + [anon_sym_SEMI] = ACTIONS(1600), + [anon_sym_LF] = ACTIONS(1600), + [anon_sym_AMP] = ACTIONS(1600), }, - [582] = { - [sym__concat] = ACTIONS(820), - [anon_sym_PIPE] = ACTIONS(820), - [anon_sym_RPAREN] = ACTIONS(820), - [anon_sym_RBRACK] = ACTIONS(820), + [589] = { + [sym__concat] = ACTIONS(834), + [anon_sym_PIPE] = ACTIONS(834), + [anon_sym_RPAREN] = ACTIONS(834), + [anon_sym_RBRACK] = ACTIONS(834), [sym_comment] = ACTIONS(52), }, - [583] = { - [sym__concat] = ACTIONS(828), - [anon_sym_PIPE] = ACTIONS(828), - [anon_sym_RPAREN] = ACTIONS(828), - [anon_sym_RBRACK] = ACTIONS(828), + [590] = { + [sym__concat] = ACTIONS(842), + [anon_sym_PIPE] = ACTIONS(842), + [anon_sym_RPAREN] = ACTIONS(842), + [anon_sym_RBRACK] = ACTIONS(842), [sym_comment] = ACTIONS(52), }, - [584] = { - [sym_string] = STATE(827), - [sym_simple_expansion] = STATE(827), - [sym_expansion] = STATE(827), - [sym_command_substitution] = STATE(827), - [sym_process_substitution] = STATE(827), + [591] = { + [sym_string] = STATE(851), + [sym_simple_expansion] = STATE(851), + [sym_expansion] = STATE(851), + [sym_command_substitution] = STATE(851), + [sym_process_substitution] = STATE(851), [anon_sym_DQUOTE] = ACTIONS(254), - [sym_raw_string] = ACTIONS(1576), + [sym_raw_string] = ACTIONS(1602), [anon_sym_DOLLAR] = ACTIONS(258), [anon_sym_DOLLAR_LBRACE] = ACTIONS(260), [anon_sym_DOLLAR_LPAREN] = ACTIONS(262), [anon_sym_BQUOTE] = ACTIONS(264), [anon_sym_LT_LPAREN] = ACTIONS(266), [anon_sym_GT_LPAREN] = ACTIONS(266), - [sym_word] = ACTIONS(1578), - [sym_comment] = ACTIONS(52), - }, - [585] = { - [anon_sym_RBRACE] = ACTIONS(1580), - [anon_sym_LBRACK] = ACTIONS(1582), - [sym_comment] = ACTIONS(52), - }, - [586] = { - [anon_sym_RBRACE] = ACTIONS(1584), - [anon_sym_LBRACK] = ACTIONS(1586), - [sym_comment] = ACTIONS(52), - }, - [587] = { - [sym__concat] = ACTIONS(844), - [anon_sym_PIPE] = ACTIONS(844), - [anon_sym_RPAREN] = ACTIONS(844), - [anon_sym_RBRACK] = ACTIONS(844), - [sym_comment] = ACTIONS(52), - }, - [588] = { - [anon_sym_AT] = ACTIONS(1588), - [sym_comment] = ACTIONS(52), - }, - [589] = { - [sym_concatenation] = STATE(834), - [sym_string] = STATE(833), - [sym_simple_expansion] = STATE(833), - [sym_expansion] = STATE(833), - [sym_command_substitution] = STATE(833), - [sym_process_substitution] = STATE(833), - [anon_sym_DQUOTE] = ACTIONS(82), - [sym_raw_string] = ACTIONS(1590), - [anon_sym_DOLLAR] = ACTIONS(86), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(88), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(90), - [anon_sym_BQUOTE] = ACTIONS(92), - [anon_sym_LT_LPAREN] = ACTIONS(94), - [anon_sym_GT_LPAREN] = ACTIONS(94), - [sym_word] = ACTIONS(1592), - [sym_comment] = ACTIONS(52), - }, - [590] = { - [sym__concat] = ACTIONS(854), - [anon_sym_PIPE] = ACTIONS(854), - [anon_sym_RPAREN] = ACTIONS(854), - [anon_sym_RBRACK] = ACTIONS(854), - [sym_comment] = ACTIONS(52), - }, - [591] = { - [anon_sym_AT] = ACTIONS(1594), + [sym_word] = ACTIONS(1604), [sym_comment] = ACTIONS(52), }, [592] = { - [sym_concatenation] = STATE(837), - [sym_string] = STATE(836), - [sym_simple_expansion] = STATE(836), - [sym_expansion] = STATE(836), - [sym_command_substitution] = STATE(836), - [sym_process_substitution] = STATE(836), + [anon_sym_RBRACE] = ACTIONS(1606), + [anon_sym_LBRACK] = ACTIONS(1608), + [sym_comment] = ACTIONS(52), + }, + [593] = { + [anon_sym_RBRACE] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [sym_comment] = ACTIONS(52), + }, + [594] = { + [sym__concat] = ACTIONS(858), + [anon_sym_PIPE] = ACTIONS(858), + [anon_sym_RPAREN] = ACTIONS(858), + [anon_sym_RBRACK] = ACTIONS(858), + [sym_comment] = ACTIONS(52), + }, + [595] = { + [anon_sym_AT] = ACTIONS(1614), + [sym_comment] = ACTIONS(52), + }, + [596] = { + [sym_concatenation] = STATE(858), + [sym_string] = STATE(857), + [sym_simple_expansion] = STATE(857), + [sym_expansion] = STATE(857), + [sym_command_substitution] = STATE(857), + [sym_process_substitution] = STATE(857), [anon_sym_DQUOTE] = ACTIONS(82), - [sym_raw_string] = ACTIONS(1596), + [sym_raw_string] = ACTIONS(1616), [anon_sym_DOLLAR] = ACTIONS(86), [anon_sym_DOLLAR_LBRACE] = ACTIONS(88), [anon_sym_DOLLAR_LPAREN] = ACTIONS(90), [anon_sym_BQUOTE] = ACTIONS(92), [anon_sym_LT_LPAREN] = ACTIONS(94), [anon_sym_GT_LPAREN] = ACTIONS(94), - [sym_word] = ACTIONS(1598), - [sym_comment] = ACTIONS(52), - }, - [593] = { - [sym__concat] = ACTIONS(946), - [anon_sym_PIPE] = ACTIONS(946), - [anon_sym_RPAREN] = ACTIONS(946), - [anon_sym_RBRACK] = ACTIONS(946), - [sym_comment] = ACTIONS(52), - }, - [594] = { - [sym__concat] = ACTIONS(984), - [anon_sym_PIPE] = ACTIONS(984), - [anon_sym_RPAREN] = ACTIONS(984), - [anon_sym_RBRACK] = ACTIONS(984), - [sym_comment] = ACTIONS(52), - }, - [595] = { - [sym_file_descriptor] = ACTIONS(1600), - [sym_variable_name] = ACTIONS(1600), - [anon_sym_PIPE] = ACTIONS(1602), - [anon_sym_RPAREN] = ACTIONS(1602), - [anon_sym_SEMI_SEMI] = ACTIONS(1602), - [anon_sym_PIPE_AMP] = ACTIONS(1602), - [anon_sym_AMP_AMP] = ACTIONS(1602), - [anon_sym_PIPE_PIPE] = ACTIONS(1602), - [anon_sym_LT] = ACTIONS(1602), - [anon_sym_GT] = ACTIONS(1602), - [anon_sym_GT_GT] = ACTIONS(1602), - [anon_sym_AMP_GT] = ACTIONS(1602), - [anon_sym_AMP_GT_GT] = ACTIONS(1602), - [anon_sym_LT_AMP] = ACTIONS(1602), - [anon_sym_GT_AMP] = ACTIONS(1602), - [anon_sym_DQUOTE] = ACTIONS(1602), - [sym_raw_string] = ACTIONS(1602), - [anon_sym_DOLLAR] = ACTIONS(1602), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1602), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1602), - [anon_sym_BQUOTE] = ACTIONS(1602), - [anon_sym_LT_LPAREN] = ACTIONS(1602), - [anon_sym_GT_LPAREN] = ACTIONS(1602), - [sym_word] = ACTIONS(1602), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1602), - [anon_sym_LF] = ACTIONS(1602), - [anon_sym_AMP] = ACTIONS(1602), - }, - [596] = { - [anon_sym_RPAREN] = ACTIONS(1604), - [sym_word] = ACTIONS(1606), + [sym_word] = ACTIONS(1618), [sym_comment] = ACTIONS(52), }, [597] = { - [sym_file_descriptor] = ACTIONS(820), - [sym__concat] = ACTIONS(820), - [sym_variable_name] = ACTIONS(820), - [anon_sym_PIPE] = ACTIONS(822), - [anon_sym_RPAREN] = ACTIONS(822), - [anon_sym_SEMI_SEMI] = ACTIONS(822), - [anon_sym_PIPE_AMP] = ACTIONS(822), - [anon_sym_AMP_AMP] = ACTIONS(822), - [anon_sym_PIPE_PIPE] = ACTIONS(822), - [anon_sym_LT] = ACTIONS(822), - [anon_sym_GT] = ACTIONS(822), - [anon_sym_GT_GT] = ACTIONS(822), - [anon_sym_AMP_GT] = ACTIONS(822), - [anon_sym_AMP_GT_GT] = ACTIONS(822), - [anon_sym_LT_AMP] = ACTIONS(822), - [anon_sym_GT_AMP] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(822), - [sym_raw_string] = ACTIONS(822), - [anon_sym_DOLLAR] = ACTIONS(822), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(822), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(822), - [anon_sym_BQUOTE] = ACTIONS(822), - [anon_sym_LT_LPAREN] = ACTIONS(822), - [anon_sym_GT_LPAREN] = ACTIONS(822), - [sym_word] = ACTIONS(822), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(822), - [anon_sym_LF] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(822), + [sym__concat] = ACTIONS(868), + [anon_sym_PIPE] = ACTIONS(868), + [anon_sym_RPAREN] = ACTIONS(868), + [anon_sym_RBRACK] = ACTIONS(868), + [sym_comment] = ACTIONS(52), }, [598] = { - [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), - [anon_sym_DQUOTE] = ACTIONS(830), - [sym_raw_string] = ACTIONS(830), - [anon_sym_DOLLAR] = 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_word] = ACTIONS(830), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(830), - [anon_sym_LF] = ACTIONS(830), - [anon_sym_AMP] = ACTIONS(830), - }, - [599] = { - [sym_string] = STATE(838), - [sym_simple_expansion] = STATE(838), - [sym_expansion] = STATE(838), - [sym_command_substitution] = STATE(838), - [sym_process_substitution] = STATE(838), - [anon_sym_DQUOTE] = ACTIONS(274), - [sym_raw_string] = ACTIONS(1608), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(280), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), - [anon_sym_BQUOTE] = ACTIONS(284), - [anon_sym_LT_LPAREN] = ACTIONS(286), - [anon_sym_GT_LPAREN] = ACTIONS(286), - [sym_word] = ACTIONS(1610), - [sym_comment] = ACTIONS(52), - }, - [600] = { - [anon_sym_RBRACE] = ACTIONS(1612), - [anon_sym_LBRACK] = ACTIONS(1614), - [sym_comment] = ACTIONS(52), - }, - [601] = { - [anon_sym_RBRACE] = ACTIONS(1616), - [anon_sym_LBRACK] = ACTIONS(1618), - [sym_comment] = ACTIONS(52), - }, - [602] = { - [sym_file_descriptor] = ACTIONS(844), - [sym__concat] = ACTIONS(844), - [sym_variable_name] = ACTIONS(844), - [anon_sym_PIPE] = ACTIONS(846), - [anon_sym_RPAREN] = ACTIONS(846), - [anon_sym_SEMI_SEMI] = ACTIONS(846), - [anon_sym_PIPE_AMP] = ACTIONS(846), - [anon_sym_AMP_AMP] = ACTIONS(846), - [anon_sym_PIPE_PIPE] = ACTIONS(846), - [anon_sym_LT] = ACTIONS(846), - [anon_sym_GT] = ACTIONS(846), - [anon_sym_GT_GT] = ACTIONS(846), - [anon_sym_AMP_GT] = ACTIONS(846), - [anon_sym_AMP_GT_GT] = ACTIONS(846), - [anon_sym_LT_AMP] = ACTIONS(846), - [anon_sym_GT_AMP] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(846), - [sym_raw_string] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(846), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(846), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(846), - [anon_sym_BQUOTE] = ACTIONS(846), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), - [sym_word] = ACTIONS(846), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(846), - [anon_sym_LF] = ACTIONS(846), - [anon_sym_AMP] = ACTIONS(846), - }, - [603] = { [anon_sym_AT] = ACTIONS(1620), [sym_comment] = ACTIONS(52), }, - [604] = { - [sym_concatenation] = STATE(845), - [sym_string] = STATE(844), - [sym_simple_expansion] = STATE(844), - [sym_expansion] = STATE(844), - [sym_command_substitution] = STATE(844), - [sym_process_substitution] = STATE(844), + [599] = { + [sym_concatenation] = STATE(861), + [sym_string] = STATE(860), + [sym_simple_expansion] = STATE(860), + [sym_expansion] = STATE(860), + [sym_command_substitution] = STATE(860), + [sym_process_substitution] = STATE(860), [anon_sym_DQUOTE] = ACTIONS(82), [sym_raw_string] = ACTIONS(1622), [anon_sym_DOLLAR] = ACTIONS(86), @@ -17337,122 +17504,580 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(1624), [sym_comment] = ACTIONS(52), }, - [605] = { - [sym_file_descriptor] = ACTIONS(854), - [sym__concat] = ACTIONS(854), - [sym_variable_name] = ACTIONS(854), - [anon_sym_PIPE] = ACTIONS(856), - [anon_sym_RPAREN] = ACTIONS(856), - [anon_sym_SEMI_SEMI] = ACTIONS(856), - [anon_sym_PIPE_AMP] = ACTIONS(856), - [anon_sym_AMP_AMP] = ACTIONS(856), - [anon_sym_PIPE_PIPE] = ACTIONS(856), - [anon_sym_LT] = ACTIONS(856), - [anon_sym_GT] = ACTIONS(856), - [anon_sym_GT_GT] = ACTIONS(856), - [anon_sym_AMP_GT] = ACTIONS(856), - [anon_sym_AMP_GT_GT] = ACTIONS(856), - [anon_sym_LT_AMP] = ACTIONS(856), - [anon_sym_GT_AMP] = ACTIONS(856), - [anon_sym_DQUOTE] = ACTIONS(856), - [sym_raw_string] = ACTIONS(856), - [anon_sym_DOLLAR] = ACTIONS(856), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(856), - [anon_sym_BQUOTE] = ACTIONS(856), - [anon_sym_LT_LPAREN] = ACTIONS(856), - [anon_sym_GT_LPAREN] = ACTIONS(856), - [sym_word] = ACTIONS(856), + [600] = { + [sym__concat] = ACTIONS(960), + [anon_sym_PIPE] = ACTIONS(960), + [anon_sym_RPAREN] = ACTIONS(960), + [anon_sym_RBRACK] = ACTIONS(960), + [sym_comment] = ACTIONS(52), + }, + [601] = { + [sym__concat] = ACTIONS(998), + [anon_sym_PIPE] = ACTIONS(998), + [anon_sym_RPAREN] = ACTIONS(998), + [anon_sym_RBRACK] = ACTIONS(998), + [sym_comment] = ACTIONS(52), + }, + [602] = { + [sym__concat] = ACTIONS(386), + [anon_sym_RPAREN] = ACTIONS(386), + [anon_sym_DQUOTE] = ACTIONS(386), + [sym_raw_string] = ACTIONS(386), + [anon_sym_DOLLAR] = ACTIONS(708), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(386), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(386), + [anon_sym_BQUOTE] = ACTIONS(386), + [anon_sym_LT_LPAREN] = ACTIONS(386), + [anon_sym_GT_LPAREN] = ACTIONS(386), + [sym_word] = ACTIONS(708), + [sym_comment] = ACTIONS(52), + }, + [603] = { + [sym_simple_expansion] = STATE(253), + [sym_expansion] = STATE(253), + [sym_command_substitution] = STATE(253), + [anon_sym_DQUOTE] = ACTIONS(1626), + [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(406), + [anon_sym_DOLLAR] = ACTIONS(134), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(136), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(138), + [anon_sym_BQUOTE] = ACTIONS(140), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(856), - [anon_sym_LF] = ACTIONS(856), - [anon_sym_AMP] = ACTIONS(856), + }, + [604] = { + [sym_string] = STATE(863), + [sym_simple_expansion] = STATE(863), + [sym_expansion] = STATE(863), + [sym_command_substitution] = STATE(863), + [sym_process_substitution] = STATE(863), + [anon_sym_DQUOTE] = ACTIONS(606), + [sym_raw_string] = ACTIONS(1628), + [anon_sym_DOLLAR] = ACTIONS(610), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(612), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(614), + [anon_sym_BQUOTE] = ACTIONS(616), + [anon_sym_LT_LPAREN] = ACTIONS(618), + [anon_sym_GT_LPAREN] = ACTIONS(618), + [sym_word] = ACTIONS(1630), + [sym_comment] = ACTIONS(52), + }, + [605] = { + [sym__concat] = ACTIONS(1632), + [anon_sym_RPAREN] = ACTIONS(412), + [anon_sym_DQUOTE] = ACTIONS(412), + [sym_raw_string] = ACTIONS(412), + [anon_sym_DOLLAR] = ACTIONS(718), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(412), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(412), + [anon_sym_BQUOTE] = ACTIONS(412), + [anon_sym_LT_LPAREN] = ACTIONS(412), + [anon_sym_GT_LPAREN] = ACTIONS(412), + [sym_word] = ACTIONS(718), + [sym_comment] = ACTIONS(52), }, [606] = { - [anon_sym_AT] = ACTIONS(1626), + [sym__concat] = ACTIONS(418), + [anon_sym_RPAREN] = ACTIONS(418), + [anon_sym_DQUOTE] = ACTIONS(418), + [sym_raw_string] = ACTIONS(418), + [anon_sym_DOLLAR] = ACTIONS(430), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(418), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(418), + [anon_sym_BQUOTE] = ACTIONS(418), + [anon_sym_LT_LPAREN] = ACTIONS(418), + [anon_sym_GT_LPAREN] = ACTIONS(418), + [sym_word] = ACTIONS(430), [sym_comment] = ACTIONS(52), }, [607] = { - [sym_concatenation] = STATE(848), - [sym_string] = STATE(847), - [sym_simple_expansion] = STATE(847), - [sym_expansion] = STATE(847), - [sym_command_substitution] = STATE(847), - [sym_process_substitution] = STATE(847), + [sym__concat] = ACTIONS(422), + [anon_sym_RPAREN] = ACTIONS(422), + [anon_sym_DQUOTE] = ACTIONS(422), + [sym_raw_string] = ACTIONS(422), + [anon_sym_DOLLAR] = ACTIONS(720), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(422), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(422), + [anon_sym_BQUOTE] = ACTIONS(422), + [anon_sym_LT_LPAREN] = ACTIONS(422), + [anon_sym_GT_LPAREN] = ACTIONS(422), + [sym_word] = ACTIONS(720), + [sym_comment] = ACTIONS(52), + }, + [608] = { + [sym__concat] = ACTIONS(426), + [anon_sym_RPAREN] = ACTIONS(426), + [anon_sym_DQUOTE] = ACTIONS(426), + [sym_raw_string] = ACTIONS(426), + [anon_sym_DOLLAR] = ACTIONS(722), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(426), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(426), + [anon_sym_BQUOTE] = ACTIONS(426), + [anon_sym_LT_LPAREN] = ACTIONS(426), + [anon_sym_GT_LPAREN] = ACTIONS(426), + [sym_word] = ACTIONS(722), + [sym_comment] = ACTIONS(52), + }, + [609] = { + [sym_special_variable_name] = STATE(866), + [anon_sym_RBRACE] = ACTIONS(418), + [anon_sym_LBRACK] = ACTIONS(418), + [anon_sym_EQ] = ACTIONS(418), + [anon_sym_DOLLAR] = ACTIONS(156), + [anon_sym_POUND] = ACTIONS(156), + [anon_sym_AT] = ACTIONS(156), + [anon_sym_COLON] = ACTIONS(430), + [anon_sym_COLON_QMARK] = ACTIONS(418), + [anon_sym_COLON_DASH] = ACTIONS(418), + [anon_sym_PERCENT] = ACTIONS(418), + [anon_sym_SLASH] = ACTIONS(418), + [sym_comment] = ACTIONS(142), + [sym_simple_variable_name] = ACTIONS(1634), + [anon_sym_STAR] = ACTIONS(156), + [anon_sym_QMARK] = ACTIONS(156), + [anon_sym_DASH] = ACTIONS(156), + [anon_sym_BANG] = ACTIONS(156), + [anon_sym_0] = ACTIONS(162), + [anon_sym__] = ACTIONS(162), + }, + [610] = { + [anon_sym_RBRACE] = ACTIONS(1636), + [anon_sym_LBRACK] = ACTIONS(1638), + [anon_sym_EQ] = ACTIONS(1640), + [anon_sym_COLON] = ACTIONS(1642), + [anon_sym_COLON_QMARK] = ACTIONS(1640), + [anon_sym_COLON_DASH] = ACTIONS(1640), + [anon_sym_PERCENT] = ACTIONS(1640), + [anon_sym_SLASH] = ACTIONS(1640), + [sym_comment] = ACTIONS(52), + }, + [611] = { + [anon_sym_RBRACE] = ACTIONS(1644), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_EQ] = ACTIONS(1648), + [anon_sym_COLON] = ACTIONS(1650), + [anon_sym_COLON_QMARK] = ACTIONS(1648), + [anon_sym_COLON_DASH] = ACTIONS(1648), + [anon_sym_PERCENT] = ACTIONS(1648), + [anon_sym_SLASH] = ACTIONS(1648), + [sym_comment] = ACTIONS(52), + }, + [612] = { + [anon_sym_PIPE] = ACTIONS(480), + [anon_sym_RPAREN] = ACTIONS(1652), + [anon_sym_PIPE_AMP] = ACTIONS(484), + [anon_sym_AMP_AMP] = ACTIONS(486), + [anon_sym_PIPE_PIPE] = ACTIONS(486), + [sym_comment] = ACTIONS(52), + }, + [613] = { + [sym_file_descriptor] = ACTIONS(238), + [sym_variable_name] = ACTIONS(238), + [anon_sym_PIPE] = ACTIONS(480), + [anon_sym_RPAREN] = ACTIONS(1652), + [anon_sym_PIPE_AMP] = ACTIONS(484), + [anon_sym_AMP_AMP] = ACTIONS(486), + [anon_sym_PIPE_PIPE] = ACTIONS(506), + [anon_sym_LT] = ACTIONS(242), + [anon_sym_GT] = ACTIONS(242), + [anon_sym_GT_GT] = ACTIONS(238), + [anon_sym_AMP_GT] = ACTIONS(242), + [anon_sym_AMP_GT_GT] = ACTIONS(238), + [anon_sym_LT_AMP] = ACTIONS(238), + [anon_sym_GT_AMP] = ACTIONS(238), + [anon_sym_DQUOTE] = ACTIONS(238), + [sym_raw_string] = ACTIONS(238), + [anon_sym_DOLLAR] = ACTIONS(242), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(238), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(238), + [anon_sym_LT_LPAREN] = ACTIONS(238), + [anon_sym_GT_LPAREN] = ACTIONS(238), + [sym_word] = ACTIONS(240), + [sym_comment] = ACTIONS(52), + }, + [614] = { + [anon_sym_PIPE] = ACTIONS(510), + [anon_sym_PIPE_AMP] = ACTIONS(512), + [anon_sym_AMP_AMP] = ACTIONS(514), + [anon_sym_PIPE_PIPE] = ACTIONS(514), + [anon_sym_BQUOTE] = ACTIONS(1652), + [sym_comment] = ACTIONS(52), + }, + [615] = { + [sym_file_descriptor] = ACTIONS(238), + [sym_variable_name] = ACTIONS(238), + [anon_sym_PIPE] = ACTIONS(510), + [anon_sym_PIPE_AMP] = ACTIONS(512), + [anon_sym_AMP_AMP] = ACTIONS(514), + [anon_sym_PIPE_PIPE] = ACTIONS(516), + [anon_sym_LT] = ACTIONS(242), + [anon_sym_GT] = ACTIONS(242), + [anon_sym_GT_GT] = ACTIONS(238), + [anon_sym_AMP_GT] = ACTIONS(242), + [anon_sym_AMP_GT_GT] = ACTIONS(238), + [anon_sym_LT_AMP] = ACTIONS(238), + [anon_sym_GT_AMP] = ACTIONS(238), + [anon_sym_DQUOTE] = ACTIONS(238), + [sym_raw_string] = ACTIONS(238), + [anon_sym_DOLLAR] = ACTIONS(242), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(238), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(1652), + [anon_sym_LT_LPAREN] = ACTIONS(238), + [anon_sym_GT_LPAREN] = ACTIONS(238), + [sym_word] = ACTIONS(240), + [sym_comment] = ACTIONS(52), + }, + [616] = { + [anon_sym_PIPE] = ACTIONS(480), + [anon_sym_RPAREN] = ACTIONS(1654), + [anon_sym_PIPE_AMP] = ACTIONS(484), + [anon_sym_AMP_AMP] = ACTIONS(486), + [anon_sym_PIPE_PIPE] = ACTIONS(486), + [sym_comment] = ACTIONS(52), + }, + [617] = { + [sym_file_descriptor] = ACTIONS(238), + [sym_variable_name] = ACTIONS(238), + [anon_sym_PIPE] = ACTIONS(480), + [anon_sym_RPAREN] = ACTIONS(1654), + [anon_sym_PIPE_AMP] = ACTIONS(484), + [anon_sym_AMP_AMP] = ACTIONS(486), + [anon_sym_PIPE_PIPE] = ACTIONS(506), + [anon_sym_LT] = ACTIONS(242), + [anon_sym_GT] = ACTIONS(242), + [anon_sym_GT_GT] = ACTIONS(238), + [anon_sym_AMP_GT] = ACTIONS(242), + [anon_sym_AMP_GT_GT] = ACTIONS(238), + [anon_sym_LT_AMP] = ACTIONS(238), + [anon_sym_GT_AMP] = ACTIONS(238), + [anon_sym_DQUOTE] = ACTIONS(238), + [sym_raw_string] = ACTIONS(238), + [anon_sym_DOLLAR] = ACTIONS(242), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(238), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(238), + [anon_sym_LT_LPAREN] = ACTIONS(238), + [anon_sym_GT_LPAREN] = ACTIONS(238), + [sym_word] = ACTIONS(240), + [sym_comment] = ACTIONS(52), + }, + [618] = { + [sym_file_descriptor] = ACTIONS(1656), + [sym_variable_name] = ACTIONS(1656), + [anon_sym_PIPE] = ACTIONS(1658), + [anon_sym_RPAREN] = ACTIONS(1658), + [anon_sym_SEMI_SEMI] = ACTIONS(1658), + [anon_sym_PIPE_AMP] = ACTIONS(1658), + [anon_sym_AMP_AMP] = ACTIONS(1658), + [anon_sym_PIPE_PIPE] = ACTIONS(1658), + [anon_sym_LT] = ACTIONS(1658), + [anon_sym_GT] = ACTIONS(1658), + [anon_sym_GT_GT] = ACTIONS(1658), + [anon_sym_AMP_GT] = ACTIONS(1658), + [anon_sym_AMP_GT_GT] = ACTIONS(1658), + [anon_sym_LT_AMP] = ACTIONS(1658), + [anon_sym_GT_AMP] = ACTIONS(1658), + [anon_sym_DQUOTE] = ACTIONS(1658), + [sym_raw_string] = ACTIONS(1658), + [anon_sym_DOLLAR] = ACTIONS(1658), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1658), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1658), + [anon_sym_BQUOTE] = ACTIONS(1658), + [anon_sym_LT_LPAREN] = ACTIONS(1658), + [anon_sym_GT_LPAREN] = ACTIONS(1658), + [sym_word] = ACTIONS(1658), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(1658), + [anon_sym_LF] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + }, + [619] = { + [aux_sym_concatenation_repeat1] = STATE(605), + [sym__concat] = ACTIONS(1120), + [anon_sym_RPAREN] = ACTIONS(750), + [anon_sym_DQUOTE] = ACTIONS(750), + [sym_raw_string] = ACTIONS(750), + [anon_sym_DOLLAR] = ACTIONS(748), + [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_word] = ACTIONS(748), + [sym_comment] = ACTIONS(52), + }, + [620] = { + [anon_sym_RPAREN] = ACTIONS(750), + [anon_sym_DQUOTE] = ACTIONS(750), + [sym_raw_string] = ACTIONS(750), + [anon_sym_DOLLAR] = ACTIONS(748), + [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_word] = ACTIONS(748), + [sym_comment] = ACTIONS(52), + }, + [621] = { + [sym_file_descriptor] = ACTIONS(834), + [sym__concat] = ACTIONS(834), + [sym_variable_name] = ACTIONS(834), + [anon_sym_PIPE] = ACTIONS(836), + [anon_sym_RPAREN] = ACTIONS(836), + [anon_sym_SEMI_SEMI] = ACTIONS(836), + [anon_sym_PIPE_AMP] = ACTIONS(836), + [anon_sym_AMP_AMP] = ACTIONS(836), + [anon_sym_PIPE_PIPE] = ACTIONS(836), + [anon_sym_LT] = ACTIONS(836), + [anon_sym_GT] = ACTIONS(836), + [anon_sym_GT_GT] = ACTIONS(836), + [anon_sym_AMP_GT] = ACTIONS(836), + [anon_sym_AMP_GT_GT] = ACTIONS(836), + [anon_sym_LT_AMP] = ACTIONS(836), + [anon_sym_GT_AMP] = ACTIONS(836), + [anon_sym_DQUOTE] = ACTIONS(836), + [sym_raw_string] = ACTIONS(836), + [anon_sym_DOLLAR] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(836), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(836), + [anon_sym_BQUOTE] = ACTIONS(836), + [anon_sym_LT_LPAREN] = ACTIONS(836), + [anon_sym_GT_LPAREN] = ACTIONS(836), + [sym_word] = ACTIONS(836), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(836), + [anon_sym_LF] = ACTIONS(836), + [anon_sym_AMP] = ACTIONS(836), + }, + [622] = { + [sym_file_descriptor] = ACTIONS(842), + [sym__concat] = ACTIONS(842), + [sym_variable_name] = ACTIONS(842), + [anon_sym_PIPE] = ACTIONS(844), + [anon_sym_RPAREN] = ACTIONS(844), + [anon_sym_SEMI_SEMI] = ACTIONS(844), + [anon_sym_PIPE_AMP] = ACTIONS(844), + [anon_sym_AMP_AMP] = ACTIONS(844), + [anon_sym_PIPE_PIPE] = ACTIONS(844), + [anon_sym_LT] = ACTIONS(844), + [anon_sym_GT] = ACTIONS(844), + [anon_sym_GT_GT] = ACTIONS(844), + [anon_sym_AMP_GT] = ACTIONS(844), + [anon_sym_AMP_GT_GT] = ACTIONS(844), + [anon_sym_LT_AMP] = ACTIONS(844), + [anon_sym_GT_AMP] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(844), + [sym_raw_string] = ACTIONS(844), + [anon_sym_DOLLAR] = ACTIONS(844), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(844), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(844), + [anon_sym_GT_LPAREN] = ACTIONS(844), + [sym_word] = ACTIONS(844), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(844), + [anon_sym_LF] = ACTIONS(844), + [anon_sym_AMP] = ACTIONS(844), + }, + [623] = { + [sym_string] = STATE(875), + [sym_simple_expansion] = STATE(875), + [sym_expansion] = STATE(875), + [sym_command_substitution] = STATE(875), + [sym_process_substitution] = STATE(875), + [anon_sym_DQUOTE] = ACTIONS(274), + [sym_raw_string] = ACTIONS(1660), + [anon_sym_DOLLAR] = ACTIONS(278), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(280), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), + [anon_sym_BQUOTE] = ACTIONS(284), + [anon_sym_LT_LPAREN] = ACTIONS(286), + [anon_sym_GT_LPAREN] = ACTIONS(286), + [sym_word] = ACTIONS(1662), + [sym_comment] = ACTIONS(52), + }, + [624] = { + [anon_sym_RBRACE] = ACTIONS(1664), + [anon_sym_LBRACK] = ACTIONS(1666), + [sym_comment] = ACTIONS(52), + }, + [625] = { + [anon_sym_RBRACE] = ACTIONS(1668), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_comment] = ACTIONS(52), + }, + [626] = { + [sym_file_descriptor] = ACTIONS(858), + [sym__concat] = ACTIONS(858), + [sym_variable_name] = ACTIONS(858), + [anon_sym_PIPE] = ACTIONS(860), + [anon_sym_RPAREN] = ACTIONS(860), + [anon_sym_SEMI_SEMI] = ACTIONS(860), + [anon_sym_PIPE_AMP] = ACTIONS(860), + [anon_sym_AMP_AMP] = ACTIONS(860), + [anon_sym_PIPE_PIPE] = ACTIONS(860), + [anon_sym_LT] = ACTIONS(860), + [anon_sym_GT] = ACTIONS(860), + [anon_sym_GT_GT] = ACTIONS(860), + [anon_sym_AMP_GT] = ACTIONS(860), + [anon_sym_AMP_GT_GT] = ACTIONS(860), + [anon_sym_LT_AMP] = ACTIONS(860), + [anon_sym_GT_AMP] = ACTIONS(860), + [anon_sym_DQUOTE] = ACTIONS(860), + [sym_raw_string] = ACTIONS(860), + [anon_sym_DOLLAR] = ACTIONS(860), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(860), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(860), + [anon_sym_GT_LPAREN] = ACTIONS(860), + [sym_word] = ACTIONS(860), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(860), + [anon_sym_LF] = ACTIONS(860), + [anon_sym_AMP] = ACTIONS(860), + }, + [627] = { + [anon_sym_AT] = ACTIONS(1672), + [sym_comment] = ACTIONS(52), + }, + [628] = { + [sym_concatenation] = STATE(882), + [sym_string] = STATE(881), + [sym_simple_expansion] = STATE(881), + [sym_expansion] = STATE(881), + [sym_command_substitution] = STATE(881), + [sym_process_substitution] = STATE(881), [anon_sym_DQUOTE] = ACTIONS(82), - [sym_raw_string] = ACTIONS(1628), + [sym_raw_string] = ACTIONS(1674), [anon_sym_DOLLAR] = ACTIONS(86), [anon_sym_DOLLAR_LBRACE] = ACTIONS(88), [anon_sym_DOLLAR_LPAREN] = ACTIONS(90), [anon_sym_BQUOTE] = ACTIONS(92), [anon_sym_LT_LPAREN] = ACTIONS(94), [anon_sym_GT_LPAREN] = ACTIONS(94), - [sym_word] = ACTIONS(1630), + [sym_word] = ACTIONS(1676), [sym_comment] = ACTIONS(52), }, - [608] = { - [sym_file_descriptor] = ACTIONS(946), - [sym__concat] = ACTIONS(946), - [sym_variable_name] = ACTIONS(946), - [anon_sym_PIPE] = ACTIONS(948), - [anon_sym_RPAREN] = ACTIONS(948), - [anon_sym_SEMI_SEMI] = ACTIONS(948), - [anon_sym_PIPE_AMP] = ACTIONS(948), - [anon_sym_AMP_AMP] = ACTIONS(948), - [anon_sym_PIPE_PIPE] = ACTIONS(948), - [anon_sym_LT] = ACTIONS(948), - [anon_sym_GT] = ACTIONS(948), - [anon_sym_GT_GT] = ACTIONS(948), - [anon_sym_AMP_GT] = ACTIONS(948), - [anon_sym_AMP_GT_GT] = ACTIONS(948), - [anon_sym_LT_AMP] = ACTIONS(948), - [anon_sym_GT_AMP] = ACTIONS(948), - [anon_sym_DQUOTE] = ACTIONS(948), - [sym_raw_string] = ACTIONS(948), - [anon_sym_DOLLAR] = ACTIONS(948), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(948), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(948), - [anon_sym_BQUOTE] = ACTIONS(948), - [anon_sym_LT_LPAREN] = ACTIONS(948), - [anon_sym_GT_LPAREN] = ACTIONS(948), - [sym_word] = ACTIONS(948), + [629] = { + [sym_file_descriptor] = ACTIONS(868), + [sym__concat] = ACTIONS(868), + [sym_variable_name] = ACTIONS(868), + [anon_sym_PIPE] = ACTIONS(870), + [anon_sym_RPAREN] = ACTIONS(870), + [anon_sym_SEMI_SEMI] = ACTIONS(870), + [anon_sym_PIPE_AMP] = ACTIONS(870), + [anon_sym_AMP_AMP] = ACTIONS(870), + [anon_sym_PIPE_PIPE] = ACTIONS(870), + [anon_sym_LT] = ACTIONS(870), + [anon_sym_GT] = ACTIONS(870), + [anon_sym_GT_GT] = ACTIONS(870), + [anon_sym_AMP_GT] = ACTIONS(870), + [anon_sym_AMP_GT_GT] = ACTIONS(870), + [anon_sym_LT_AMP] = ACTIONS(870), + [anon_sym_GT_AMP] = ACTIONS(870), + [anon_sym_DQUOTE] = ACTIONS(870), + [sym_raw_string] = ACTIONS(870), + [anon_sym_DOLLAR] = ACTIONS(870), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(870), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(870), + [anon_sym_BQUOTE] = ACTIONS(870), + [anon_sym_LT_LPAREN] = ACTIONS(870), + [anon_sym_GT_LPAREN] = ACTIONS(870), + [sym_word] = ACTIONS(870), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(948), - [anon_sym_LF] = ACTIONS(948), - [anon_sym_AMP] = ACTIONS(948), + [anon_sym_SEMI] = ACTIONS(870), + [anon_sym_LF] = ACTIONS(870), + [anon_sym_AMP] = ACTIONS(870), }, - [609] = { - [sym_file_descriptor] = ACTIONS(984), - [sym__concat] = ACTIONS(984), - [sym_variable_name] = ACTIONS(984), - [anon_sym_PIPE] = ACTIONS(986), - [anon_sym_RPAREN] = ACTIONS(986), - [anon_sym_SEMI_SEMI] = ACTIONS(986), - [anon_sym_PIPE_AMP] = ACTIONS(986), - [anon_sym_AMP_AMP] = ACTIONS(986), - [anon_sym_PIPE_PIPE] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(986), - [anon_sym_GT] = ACTIONS(986), - [anon_sym_GT_GT] = ACTIONS(986), - [anon_sym_AMP_GT] = ACTIONS(986), - [anon_sym_AMP_GT_GT] = ACTIONS(986), - [anon_sym_LT_AMP] = ACTIONS(986), - [anon_sym_GT_AMP] = ACTIONS(986), - [anon_sym_DQUOTE] = ACTIONS(986), - [sym_raw_string] = ACTIONS(986), - [anon_sym_DOLLAR] = ACTIONS(986), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(986), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(986), - [anon_sym_BQUOTE] = ACTIONS(986), - [anon_sym_LT_LPAREN] = ACTIONS(986), - [anon_sym_GT_LPAREN] = ACTIONS(986), - [sym_word] = ACTIONS(986), + [630] = { + [anon_sym_AT] = ACTIONS(1678), + [sym_comment] = ACTIONS(52), + }, + [631] = { + [sym_concatenation] = STATE(885), + [sym_string] = STATE(884), + [sym_simple_expansion] = STATE(884), + [sym_expansion] = STATE(884), + [sym_command_substitution] = STATE(884), + [sym_process_substitution] = STATE(884), + [anon_sym_DQUOTE] = ACTIONS(82), + [sym_raw_string] = ACTIONS(1680), + [anon_sym_DOLLAR] = ACTIONS(86), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(88), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(90), + [anon_sym_BQUOTE] = ACTIONS(92), + [anon_sym_LT_LPAREN] = ACTIONS(94), + [anon_sym_GT_LPAREN] = ACTIONS(94), + [sym_word] = ACTIONS(1682), + [sym_comment] = ACTIONS(52), + }, + [632] = { + [sym_file_descriptor] = ACTIONS(960), + [sym__concat] = ACTIONS(960), + [sym_variable_name] = ACTIONS(960), + [anon_sym_PIPE] = ACTIONS(962), + [anon_sym_RPAREN] = ACTIONS(962), + [anon_sym_SEMI_SEMI] = ACTIONS(962), + [anon_sym_PIPE_AMP] = ACTIONS(962), + [anon_sym_AMP_AMP] = ACTIONS(962), + [anon_sym_PIPE_PIPE] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(962), + [anon_sym_GT] = ACTIONS(962), + [anon_sym_GT_GT] = ACTIONS(962), + [anon_sym_AMP_GT] = ACTIONS(962), + [anon_sym_AMP_GT_GT] = ACTIONS(962), + [anon_sym_LT_AMP] = ACTIONS(962), + [anon_sym_GT_AMP] = ACTIONS(962), + [anon_sym_DQUOTE] = ACTIONS(962), + [sym_raw_string] = ACTIONS(962), + [anon_sym_DOLLAR] = ACTIONS(962), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(962), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(962), + [anon_sym_BQUOTE] = ACTIONS(962), + [anon_sym_LT_LPAREN] = ACTIONS(962), + [anon_sym_GT_LPAREN] = ACTIONS(962), + [sym_word] = ACTIONS(962), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(986), - [anon_sym_LF] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), + [anon_sym_SEMI] = ACTIONS(962), + [anon_sym_LF] = ACTIONS(962), + [anon_sym_AMP] = ACTIONS(962), }, - [610] = { + [633] = { + [sym_file_descriptor] = ACTIONS(998), + [sym__concat] = ACTIONS(998), + [sym_variable_name] = ACTIONS(998), + [anon_sym_PIPE] = ACTIONS(1000), + [anon_sym_RPAREN] = ACTIONS(1000), + [anon_sym_SEMI_SEMI] = ACTIONS(1000), + [anon_sym_PIPE_AMP] = ACTIONS(1000), + [anon_sym_AMP_AMP] = ACTIONS(1000), + [anon_sym_PIPE_PIPE] = ACTIONS(1000), + [anon_sym_LT] = ACTIONS(1000), + [anon_sym_GT] = ACTIONS(1000), + [anon_sym_GT_GT] = ACTIONS(1000), + [anon_sym_AMP_GT] = ACTIONS(1000), + [anon_sym_AMP_GT_GT] = ACTIONS(1000), + [anon_sym_LT_AMP] = ACTIONS(1000), + [anon_sym_GT_AMP] = ACTIONS(1000), + [anon_sym_DQUOTE] = ACTIONS(1000), + [sym_raw_string] = ACTIONS(1000), + [anon_sym_DOLLAR] = ACTIONS(1000), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1000), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1000), + [anon_sym_BQUOTE] = ACTIONS(1000), + [anon_sym_LT_LPAREN] = ACTIONS(1000), + [anon_sym_GT_LPAREN] = ACTIONS(1000), + [sym_word] = ACTIONS(1000), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(1000), + [anon_sym_LF] = ACTIONS(1000), + [anon_sym_AMP] = ACTIONS(1000), + }, + [634] = { [sym__concat] = ACTIONS(386), [anon_sym_SEMI_SEMI] = ACTIONS(388), [anon_sym_DQUOTE] = ACTIONS(388), @@ -17469,11 +18094,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(388), [anon_sym_AMP] = ACTIONS(388), }, - [611] = { + [635] = { [sym_simple_expansion] = STATE(253), [sym_expansion] = STATE(253), [sym_command_substitution] = STATE(253), - [anon_sym_DQUOTE] = ACTIONS(1632), + [anon_sym_DQUOTE] = ACTIONS(1684), [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(406), [anon_sym_DOLLAR] = ACTIONS(134), [anon_sym_DOLLAR_LBRACE] = ACTIONS(136), @@ -17481,25 +18106,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(140), [sym_comment] = ACTIONS(142), }, - [612] = { - [sym_string] = STATE(850), - [sym_simple_expansion] = STATE(850), - [sym_expansion] = STATE(850), - [sym_command_substitution] = STATE(850), - [sym_process_substitution] = STATE(850), - [anon_sym_DQUOTE] = ACTIONS(622), - [sym_raw_string] = ACTIONS(1634), - [anon_sym_DOLLAR] = ACTIONS(626), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(628), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(630), - [anon_sym_BQUOTE] = ACTIONS(632), - [anon_sym_LT_LPAREN] = ACTIONS(634), - [anon_sym_GT_LPAREN] = ACTIONS(634), - [sym_word] = ACTIONS(1636), + [636] = { + [sym_string] = STATE(887), + [sym_simple_expansion] = STATE(887), + [sym_expansion] = STATE(887), + [sym_command_substitution] = STATE(887), + [sym_process_substitution] = STATE(887), + [anon_sym_DQUOTE] = ACTIONS(636), + [sym_raw_string] = ACTIONS(1686), + [anon_sym_DOLLAR] = ACTIONS(640), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(642), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(644), + [anon_sym_BQUOTE] = ACTIONS(646), + [anon_sym_LT_LPAREN] = ACTIONS(648), + [anon_sym_GT_LPAREN] = ACTIONS(648), + [sym_word] = ACTIONS(1688), [sym_comment] = ACTIONS(52), }, - [613] = { - [sym__concat] = ACTIONS(1638), + [637] = { + [sym__concat] = ACTIONS(1690), [anon_sym_SEMI_SEMI] = ACTIONS(416), [anon_sym_DQUOTE] = ACTIONS(416), [sym_raw_string] = ACTIONS(416), @@ -17515,7 +18140,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(416), [anon_sym_AMP] = ACTIONS(416), }, - [614] = { + [638] = { [sym__concat] = ACTIONS(418), [anon_sym_SEMI_SEMI] = ACTIONS(420), [anon_sym_DQUOTE] = ACTIONS(420), @@ -17532,7 +18157,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(420), [anon_sym_AMP] = ACTIONS(420), }, - [615] = { + [639] = { [sym__concat] = ACTIONS(422), [anon_sym_SEMI_SEMI] = ACTIONS(424), [anon_sym_DQUOTE] = ACTIONS(424), @@ -17549,7 +18174,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(424), [anon_sym_AMP] = ACTIONS(424), }, - [616] = { + [640] = { [sym__concat] = ACTIONS(426), [anon_sym_SEMI_SEMI] = ACTIONS(428), [anon_sym_DQUOTE] = ACTIONS(428), @@ -17566,8 +18191,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(428), [anon_sym_AMP] = ACTIONS(428), }, - [617] = { - [sym_special_variable_name] = STATE(853), + [641] = { + [sym_special_variable_name] = STATE(890), [anon_sym_RBRACE] = ACTIONS(418), [anon_sym_LBRACK] = ACTIONS(418), [anon_sym_EQ] = ACTIONS(418), @@ -17580,7 +18205,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(418), [anon_sym_SLASH] = ACTIONS(418), [sym_comment] = ACTIONS(142), - [sym_simple_variable_name] = ACTIONS(1640), + [sym_simple_variable_name] = ACTIONS(1692), [anon_sym_STAR] = ACTIONS(156), [anon_sym_QMARK] = ACTIONS(156), [anon_sym_DASH] = ACTIONS(156), @@ -17588,41 +18213,41 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_0] = ACTIONS(162), [anon_sym__] = ACTIONS(162), }, - [618] = { - [anon_sym_RBRACE] = ACTIONS(1642), - [anon_sym_LBRACK] = ACTIONS(1644), - [anon_sym_EQ] = ACTIONS(1646), - [anon_sym_COLON] = ACTIONS(1648), - [anon_sym_COLON_QMARK] = ACTIONS(1646), - [anon_sym_COLON_DASH] = ACTIONS(1646), - [anon_sym_PERCENT] = ACTIONS(1646), - [anon_sym_SLASH] = ACTIONS(1646), + [642] = { + [anon_sym_RBRACE] = ACTIONS(1694), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_EQ] = ACTIONS(1698), + [anon_sym_COLON] = ACTIONS(1700), + [anon_sym_COLON_QMARK] = ACTIONS(1698), + [anon_sym_COLON_DASH] = ACTIONS(1698), + [anon_sym_PERCENT] = ACTIONS(1698), + [anon_sym_SLASH] = ACTIONS(1698), [sym_comment] = ACTIONS(52), }, - [619] = { - [anon_sym_RBRACE] = ACTIONS(1650), - [anon_sym_LBRACK] = ACTIONS(1652), - [anon_sym_EQ] = ACTIONS(1654), - [anon_sym_COLON] = ACTIONS(1656), - [anon_sym_COLON_QMARK] = ACTIONS(1654), - [anon_sym_COLON_DASH] = ACTIONS(1654), - [anon_sym_PERCENT] = ACTIONS(1654), - [anon_sym_SLASH] = ACTIONS(1654), + [643] = { + [anon_sym_RBRACE] = ACTIONS(1702), + [anon_sym_LBRACK] = ACTIONS(1704), + [anon_sym_EQ] = ACTIONS(1706), + [anon_sym_COLON] = ACTIONS(1708), + [anon_sym_COLON_QMARK] = ACTIONS(1706), + [anon_sym_COLON_DASH] = ACTIONS(1706), + [anon_sym_PERCENT] = ACTIONS(1706), + [anon_sym_SLASH] = ACTIONS(1706), [sym_comment] = ACTIONS(52), }, - [620] = { + [644] = { [anon_sym_PIPE] = ACTIONS(480), - [anon_sym_RPAREN] = ACTIONS(1658), + [anon_sym_RPAREN] = ACTIONS(1710), [anon_sym_PIPE_AMP] = ACTIONS(484), [anon_sym_AMP_AMP] = ACTIONS(486), [anon_sym_PIPE_PIPE] = ACTIONS(486), [sym_comment] = ACTIONS(52), }, - [621] = { + [645] = { [sym_file_descriptor] = ACTIONS(238), [sym_variable_name] = ACTIONS(238), [anon_sym_PIPE] = ACTIONS(480), - [anon_sym_RPAREN] = ACTIONS(1658), + [anon_sym_RPAREN] = ACTIONS(1710), [anon_sym_PIPE_AMP] = ACTIONS(484), [anon_sym_AMP_AMP] = ACTIONS(486), [anon_sym_PIPE_PIPE] = ACTIONS(506), @@ -17644,15 +18269,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(240), [sym_comment] = ACTIONS(52), }, - [622] = { + [646] = { [anon_sym_PIPE] = ACTIONS(510), [anon_sym_PIPE_AMP] = ACTIONS(512), [anon_sym_AMP_AMP] = ACTIONS(514), [anon_sym_PIPE_PIPE] = ACTIONS(514), - [anon_sym_BQUOTE] = ACTIONS(1658), + [anon_sym_BQUOTE] = ACTIONS(1710), [sym_comment] = ACTIONS(52), }, - [623] = { + [647] = { [sym_file_descriptor] = ACTIONS(238), [sym_variable_name] = ACTIONS(238), [anon_sym_PIPE] = ACTIONS(510), @@ -17671,25 +18296,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(242), [anon_sym_DOLLAR_LBRACE] = ACTIONS(238), [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(1658), + [anon_sym_BQUOTE] = ACTIONS(1710), [anon_sym_LT_LPAREN] = ACTIONS(238), [anon_sym_GT_LPAREN] = ACTIONS(238), [sym_word] = ACTIONS(240), [sym_comment] = ACTIONS(52), }, - [624] = { + [648] = { [anon_sym_PIPE] = ACTIONS(480), - [anon_sym_RPAREN] = ACTIONS(1660), + [anon_sym_RPAREN] = ACTIONS(1712), [anon_sym_PIPE_AMP] = ACTIONS(484), [anon_sym_AMP_AMP] = ACTIONS(486), [anon_sym_PIPE_PIPE] = ACTIONS(486), [sym_comment] = ACTIONS(52), }, - [625] = { + [649] = { [sym_file_descriptor] = ACTIONS(238), [sym_variable_name] = ACTIONS(238), [anon_sym_PIPE] = ACTIONS(480), - [anon_sym_RPAREN] = ACTIONS(1660), + [anon_sym_RPAREN] = ACTIONS(1712), [anon_sym_PIPE_AMP] = ACTIONS(484), [anon_sym_AMP_AMP] = ACTIONS(486), [anon_sym_PIPE_PIPE] = ACTIONS(506), @@ -17711,46 +18336,46 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(240), [sym_comment] = ACTIONS(52), }, - [626] = { - [sym_do_group] = STATE(862), + [650] = { + [sym_do_group] = STATE(899), [anon_sym_do] = ACTIONS(292), [sym_comment] = ACTIONS(52), }, - [627] = { - [aux_sym_concatenation_repeat1] = STATE(613), - [sym__concat] = ACTIONS(1144), - [anon_sym_SEMI_SEMI] = ACTIONS(738), - [anon_sym_DQUOTE] = ACTIONS(738), - [sym_raw_string] = ACTIONS(738), - [anon_sym_DOLLAR] = 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_word] = ACTIONS(738), + [651] = { + [aux_sym_concatenation_repeat1] = STATE(637), + [sym__concat] = ACTIONS(1170), + [anon_sym_SEMI_SEMI] = ACTIONS(752), + [anon_sym_DQUOTE] = ACTIONS(752), + [sym_raw_string] = ACTIONS(752), + [anon_sym_DOLLAR] = ACTIONS(752), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(752), + [anon_sym_BQUOTE] = ACTIONS(752), + [anon_sym_LT_LPAREN] = ACTIONS(752), + [anon_sym_GT_LPAREN] = ACTIONS(752), + [sym_word] = ACTIONS(752), [sym_comment] = ACTIONS(142), - [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), }, - [628] = { - [anon_sym_SEMI_SEMI] = ACTIONS(738), - [anon_sym_DQUOTE] = ACTIONS(738), - [sym_raw_string] = ACTIONS(738), - [anon_sym_DOLLAR] = 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_word] = ACTIONS(738), + [652] = { + [anon_sym_SEMI_SEMI] = ACTIONS(752), + [anon_sym_DQUOTE] = ACTIONS(752), + [sym_raw_string] = ACTIONS(752), + [anon_sym_DOLLAR] = ACTIONS(752), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(752), + [anon_sym_BQUOTE] = ACTIONS(752), + [anon_sym_LT_LPAREN] = ACTIONS(752), + [anon_sym_GT_LPAREN] = ACTIONS(752), + [sym_word] = ACTIONS(752), [sym_comment] = ACTIONS(142), - [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), }, - [629] = { + [653] = { [sym_file_descriptor] = ACTIONS(530), [sym_variable_name] = ACTIONS(530), [anon_sym_for] = ACTIONS(532), @@ -17780,19 +18405,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(534), [sym_comment] = ACTIONS(52), }, - [630] = { - [anon_sym_PIPE] = ACTIONS(1662), - [anon_sym_RPAREN] = ACTIONS(1662), - [anon_sym_SEMI_SEMI] = ACTIONS(1662), - [anon_sym_PIPE_AMP] = ACTIONS(1662), - [anon_sym_AMP_AMP] = ACTIONS(1662), - [anon_sym_PIPE_PIPE] = ACTIONS(1662), + [654] = { + [anon_sym_PIPE] = ACTIONS(1714), + [anon_sym_RPAREN] = ACTIONS(1714), + [anon_sym_SEMI_SEMI] = ACTIONS(1714), + [anon_sym_PIPE_AMP] = ACTIONS(1714), + [anon_sym_AMP_AMP] = ACTIONS(1714), + [anon_sym_PIPE_PIPE] = ACTIONS(1714), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1662), - [anon_sym_LF] = ACTIONS(1662), - [anon_sym_AMP] = ACTIONS(1662), + [anon_sym_SEMI] = ACTIONS(1714), + [anon_sym_LF] = ACTIONS(1714), + [anon_sym_AMP] = ACTIONS(1714), }, - [631] = { + [655] = { [sym_file_descriptor] = ACTIONS(568), [sym_variable_name] = ACTIONS(568), [anon_sym_for] = ACTIONS(570), @@ -17822,11 +18447,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(572), [sym_comment] = ACTIONS(52), }, - [632] = { - [anon_sym_then] = ACTIONS(1664), + [656] = { + [anon_sym_then] = ACTIONS(1716), [sym_comment] = ACTIONS(52), }, - [633] = { + [657] = { [sym_file_descriptor] = ACTIONS(204), [sym_variable_name] = ACTIONS(204), [anon_sym_for] = ACTIONS(206), @@ -17856,22 +18481,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(208), [sym_comment] = ACTIONS(52), }, - [634] = { + [658] = { [anon_sym_PIPE] = ACTIONS(210), - [anon_sym_SEMI_SEMI] = ACTIONS(1666), + [anon_sym_SEMI_SEMI] = ACTIONS(1718), [anon_sym_PIPE_AMP] = ACTIONS(210), [anon_sym_AMP_AMP] = ACTIONS(214), [anon_sym_PIPE_PIPE] = ACTIONS(214), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1666), - [anon_sym_LF] = ACTIONS(1666), - [anon_sym_AMP] = ACTIONS(1666), + [anon_sym_SEMI] = ACTIONS(1718), + [anon_sym_LF] = ACTIONS(1718), + [anon_sym_AMP] = ACTIONS(1718), }, - [635] = { + [659] = { [sym_file_descriptor] = ACTIONS(238), [sym_variable_name] = ACTIONS(238), [anon_sym_PIPE] = ACTIONS(210), - [anon_sym_SEMI_SEMI] = ACTIONS(1666), + [anon_sym_SEMI_SEMI] = ACTIONS(1718), [anon_sym_PIPE_AMP] = ACTIONS(210), [anon_sym_AMP_AMP] = ACTIONS(214), [anon_sym_PIPE_PIPE] = ACTIONS(214), @@ -17892,24 +18517,24 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_LPAREN] = ACTIONS(240), [sym_word] = ACTIONS(240), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1666), - [anon_sym_LF] = ACTIONS(1666), - [anon_sym_AMP] = ACTIONS(1666), + [anon_sym_SEMI] = ACTIONS(1718), + [anon_sym_LF] = ACTIONS(1718), + [anon_sym_AMP] = ACTIONS(1718), }, - [636] = { - [sym__terminated_statement] = STATE(865), - [sym_for_statement] = STATE(634), - [sym_while_statement] = STATE(634), - [sym_if_statement] = STATE(634), - [sym_case_statement] = STATE(634), - [sym_function_definition] = STATE(634), - [sym_subshell] = STATE(634), - [sym_pipeline] = STATE(634), - [sym_list] = STATE(634), - [sym_bracket_command] = STATE(634), - [sym_command] = STATE(634), + [660] = { + [sym__terminated_statement] = STATE(902), + [sym_for_statement] = STATE(658), + [sym_while_statement] = STATE(658), + [sym_if_statement] = STATE(658), + [sym_case_statement] = STATE(658), + [sym_function_definition] = STATE(658), + [sym_subshell] = STATE(658), + [sym_pipeline] = STATE(658), + [sym_list] = STATE(658), + [sym_bracket_command] = STATE(658), + [sym_command] = STATE(658), [sym_command_name] = STATE(24), - [sym_environment_variable_assignment] = STATE(635), + [sym_environment_variable_assignment] = STATE(659), [sym_subscript] = STATE(26), [sym_file_redirect] = STATE(27), [sym_concatenation] = STATE(28), @@ -17924,7 +18549,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(1668), + [anon_sym_fi] = ACTIONS(1720), [anon_sym_case] = ACTIONS(22), [anon_sym_function] = ACTIONS(24), [anon_sym_LPAREN] = ACTIONS(26), @@ -17948,7 +18573,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(50), [sym_comment] = ACTIONS(52), }, - [637] = { + [661] = { [sym_file_descriptor] = ACTIONS(530), [sym_variable_name] = ACTIONS(530), [anon_sym_for] = ACTIONS(532), @@ -17980,19 +18605,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(534), [sym_comment] = ACTIONS(52), }, - [638] = { - [anon_sym_PIPE] = ACTIONS(1670), - [anon_sym_RPAREN] = ACTIONS(1670), - [anon_sym_SEMI_SEMI] = ACTIONS(1670), - [anon_sym_PIPE_AMP] = ACTIONS(1670), - [anon_sym_AMP_AMP] = ACTIONS(1670), - [anon_sym_PIPE_PIPE] = ACTIONS(1670), + [662] = { + [anon_sym_PIPE] = ACTIONS(1722), + [anon_sym_RPAREN] = ACTIONS(1722), + [anon_sym_SEMI_SEMI] = ACTIONS(1722), + [anon_sym_PIPE_AMP] = ACTIONS(1722), + [anon_sym_AMP_AMP] = ACTIONS(1722), + [anon_sym_PIPE_PIPE] = ACTIONS(1722), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1670), - [anon_sym_LF] = ACTIONS(1670), - [anon_sym_AMP] = ACTIONS(1670), + [anon_sym_SEMI] = ACTIONS(1722), + [anon_sym_LF] = ACTIONS(1722), + [anon_sym_AMP] = ACTIONS(1722), }, - [639] = { + [663] = { [sym_file_descriptor] = ACTIONS(568), [sym_variable_name] = ACTIONS(568), [anon_sym_for] = ACTIONS(570), @@ -18024,176 +18649,176 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(572), [sym_comment] = ACTIONS(52), }, - [640] = { - [anon_sym_fi] = ACTIONS(1672), + [664] = { + [anon_sym_fi] = ACTIONS(1724), [sym_comment] = ACTIONS(52), }, - [641] = { - [sym_elif_clause] = STATE(642), - [sym_else_clause] = STATE(867), - [anon_sym_fi] = ACTIONS(1672), - [anon_sym_elif] = ACTIONS(1190), - [anon_sym_else] = ACTIONS(1192), + [665] = { + [sym_elif_clause] = STATE(666), + [sym_else_clause] = STATE(904), + [anon_sym_fi] = ACTIONS(1724), + [anon_sym_elif] = ACTIONS(1216), + [anon_sym_else] = ACTIONS(1218), [sym_comment] = ACTIONS(52), }, - [642] = { - [anon_sym_fi] = ACTIONS(1674), - [anon_sym_elif] = ACTIONS(1674), - [anon_sym_else] = ACTIONS(1674), + [666] = { + [anon_sym_fi] = ACTIONS(1726), + [anon_sym_elif] = ACTIONS(1726), + [anon_sym_else] = ACTIONS(1726), [sym_comment] = ACTIONS(52), }, - [643] = { - [anon_sym_PIPE] = ACTIONS(1676), - [anon_sym_RPAREN] = ACTIONS(1676), - [anon_sym_SEMI_SEMI] = ACTIONS(1676), - [anon_sym_PIPE_AMP] = ACTIONS(1676), - [anon_sym_AMP_AMP] = ACTIONS(1676), - [anon_sym_PIPE_PIPE] = ACTIONS(1676), + [667] = { + [anon_sym_PIPE] = ACTIONS(1728), + [anon_sym_RPAREN] = ACTIONS(1728), + [anon_sym_SEMI_SEMI] = ACTIONS(1728), + [anon_sym_PIPE_AMP] = ACTIONS(1728), + [anon_sym_AMP_AMP] = ACTIONS(1728), + [anon_sym_PIPE_PIPE] = ACTIONS(1728), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1676), - [anon_sym_LF] = ACTIONS(1676), - [anon_sym_AMP] = ACTIONS(1676), + [anon_sym_SEMI] = ACTIONS(1728), + [anon_sym_LF] = ACTIONS(1728), + [anon_sym_AMP] = ACTIONS(1728), }, - [644] = { - [aux_sym_case_item_repeat1] = STATE(870), + [668] = { + [aux_sym_case_item_repeat1] = STATE(907), [aux_sym_concatenation_repeat1] = STATE(344), [sym__concat] = ACTIONS(586), - [anon_sym_PIPE] = ACTIONS(1678), - [anon_sym_RPAREN] = ACTIONS(1680), + [anon_sym_PIPE] = ACTIONS(1730), + [anon_sym_RPAREN] = ACTIONS(1732), [sym_comment] = ACTIONS(52), }, - [645] = { - [anon_sym_esac] = ACTIONS(1682), - [anon_sym_DQUOTE] = ACTIONS(1684), - [sym_raw_string] = ACTIONS(1684), - [anon_sym_DOLLAR] = ACTIONS(1682), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1684), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1684), - [anon_sym_BQUOTE] = ACTIONS(1684), - [anon_sym_LT_LPAREN] = ACTIONS(1684), - [anon_sym_GT_LPAREN] = ACTIONS(1684), - [sym_word] = ACTIONS(1686), + [669] = { + [anon_sym_esac] = ACTIONS(1734), + [anon_sym_DQUOTE] = ACTIONS(1736), + [sym_raw_string] = ACTIONS(1736), + [anon_sym_DOLLAR] = ACTIONS(1734), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1736), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1736), + [anon_sym_BQUOTE] = ACTIONS(1736), + [anon_sym_LT_LPAREN] = ACTIONS(1736), + [anon_sym_GT_LPAREN] = ACTIONS(1736), + [sym_word] = ACTIONS(1738), [sym_comment] = ACTIONS(52), }, - [646] = { - [aux_sym_case_item_repeat1] = STATE(870), - [anon_sym_PIPE] = ACTIONS(1678), - [anon_sym_RPAREN] = ACTIONS(1680), + [670] = { + [aux_sym_case_item_repeat1] = STATE(907), + [anon_sym_PIPE] = ACTIONS(1730), + [anon_sym_RPAREN] = ACTIONS(1732), [sym_comment] = ACTIONS(52), }, - [647] = { - [sym_case_item] = STATE(872), - [sym_concatenation] = STATE(646), - [sym_string] = STATE(644), - [sym_simple_expansion] = STATE(644), - [sym_expansion] = STATE(644), - [sym_command_substitution] = STATE(644), - [sym_process_substitution] = STATE(644), - [anon_sym_esac] = ACTIONS(1688), + [671] = { + [sym_case_item] = STATE(909), + [sym_concatenation] = STATE(670), + [sym_string] = STATE(668), + [sym_simple_expansion] = STATE(668), + [sym_expansion] = STATE(668), + [sym_command_substitution] = STATE(668), + [sym_process_substitution] = STATE(668), + [anon_sym_esac] = ACTIONS(1740), [anon_sym_DQUOTE] = ACTIONS(254), - [sym_raw_string] = ACTIONS(1196), + [sym_raw_string] = ACTIONS(1222), [anon_sym_DOLLAR] = ACTIONS(258), [anon_sym_DOLLAR_LBRACE] = ACTIONS(260), [anon_sym_DOLLAR_LPAREN] = ACTIONS(262), [anon_sym_BQUOTE] = ACTIONS(264), [anon_sym_LT_LPAREN] = ACTIONS(266), [anon_sym_GT_LPAREN] = ACTIONS(266), - [sym_word] = ACTIONS(1198), + [sym_word] = ACTIONS(1224), [sym_comment] = ACTIONS(52), }, - [648] = { - [sym_case_item] = STATE(645), - [sym_concatenation] = STATE(646), - [sym_string] = STATE(644), - [sym_simple_expansion] = STATE(644), - [sym_expansion] = STATE(644), - [sym_command_substitution] = STATE(644), - [sym_process_substitution] = STATE(644), - [aux_sym_case_statement_repeat1] = STATE(873), - [anon_sym_esac] = ACTIONS(1688), + [672] = { + [sym_case_item] = STATE(669), + [sym_concatenation] = STATE(670), + [sym_string] = STATE(668), + [sym_simple_expansion] = STATE(668), + [sym_expansion] = STATE(668), + [sym_command_substitution] = STATE(668), + [sym_process_substitution] = STATE(668), + [aux_sym_case_statement_repeat1] = STATE(910), + [anon_sym_esac] = ACTIONS(1740), [anon_sym_DQUOTE] = ACTIONS(254), - [sym_raw_string] = ACTIONS(1196), + [sym_raw_string] = ACTIONS(1222), [anon_sym_DOLLAR] = ACTIONS(258), [anon_sym_DOLLAR_LBRACE] = ACTIONS(260), [anon_sym_DOLLAR_LPAREN] = ACTIONS(262), [anon_sym_BQUOTE] = ACTIONS(264), [anon_sym_LT_LPAREN] = ACTIONS(266), [anon_sym_GT_LPAREN] = ACTIONS(266), - [sym_word] = ACTIONS(1198), + [sym_word] = ACTIONS(1224), [sym_comment] = ACTIONS(52), }, - [649] = { - [sym__concat] = ACTIONS(1336), - [anon_sym_in] = ACTIONS(1338), - [anon_sym_SEMI_SEMI] = ACTIONS(1338), + [673] = { + [sym__concat] = ACTIONS(1362), + [anon_sym_in] = ACTIONS(1364), + [anon_sym_SEMI_SEMI] = ACTIONS(1364), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1338), - [anon_sym_LF] = ACTIONS(1338), - [anon_sym_AMP] = ACTIONS(1338), + [anon_sym_SEMI] = ACTIONS(1364), + [anon_sym_LF] = ACTIONS(1364), + [anon_sym_AMP] = ACTIONS(1364), }, - [650] = { - [sym__concat] = ACTIONS(1340), - [anon_sym_in] = ACTIONS(1342), - [anon_sym_SEMI_SEMI] = ACTIONS(1342), + [674] = { + [sym__concat] = ACTIONS(1366), + [anon_sym_in] = ACTIONS(1368), + [anon_sym_SEMI_SEMI] = ACTIONS(1368), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1342), - [anon_sym_LF] = ACTIONS(1342), - [anon_sym_AMP] = ACTIONS(1342), + [anon_sym_SEMI] = ACTIONS(1368), + [anon_sym_LF] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), }, - [651] = { - [anon_sym_AT] = ACTIONS(1690), + [675] = { + [anon_sym_AT] = ACTIONS(1742), [sym_comment] = ACTIONS(52), }, - [652] = { - [sym__concat] = ACTIONS(1346), - [anon_sym_in] = ACTIONS(1348), - [anon_sym_SEMI_SEMI] = ACTIONS(1348), + [676] = { + [sym__concat] = ACTIONS(1372), + [anon_sym_in] = ACTIONS(1374), + [anon_sym_SEMI_SEMI] = ACTIONS(1374), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1348), - [anon_sym_LF] = ACTIONS(1348), - [anon_sym_AMP] = ACTIONS(1348), + [anon_sym_SEMI] = ACTIONS(1374), + [anon_sym_LF] = ACTIONS(1374), + [anon_sym_AMP] = ACTIONS(1374), }, - [653] = { - [anon_sym_AT] = ACTIONS(1692), + [677] = { + [anon_sym_AT] = ACTIONS(1744), [sym_comment] = ACTIONS(52), }, - [654] = { - [anon_sym_RBRACK] = ACTIONS(1694), + [678] = { + [anon_sym_RBRACK] = ACTIONS(1746), [sym_comment] = ACTIONS(52), }, - [655] = { + [679] = { [aux_sym_concatenation_repeat1] = STATE(192), [sym__concat] = ACTIONS(326), - [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1748), [sym_comment] = ACTIONS(52), }, - [656] = { - [anon_sym_RBRACE] = ACTIONS(1696), + [680] = { + [anon_sym_RBRACE] = ACTIONS(1748), [sym_comment] = ACTIONS(52), }, - [657] = { - [anon_sym_RBRACK] = ACTIONS(1698), + [681] = { + [anon_sym_RBRACK] = ACTIONS(1750), [sym_comment] = ACTIONS(52), }, - [658] = { + [682] = { [aux_sym_concatenation_repeat1] = STATE(192), [sym__concat] = ACTIONS(326), - [anon_sym_RBRACE] = ACTIONS(1700), + [anon_sym_RBRACE] = ACTIONS(1752), [sym_comment] = ACTIONS(52), }, - [659] = { - [anon_sym_RBRACE] = ACTIONS(1700), + [683] = { + [anon_sym_RBRACE] = ACTIONS(1752), [sym_comment] = ACTIONS(52), }, - [660] = { - [sym_file_redirect] = STATE(880), + [684] = { + [sym_file_redirect] = STATE(917), [sym_file_descriptor] = ACTIONS(524), - [anon_sym_PIPE] = ACTIONS(1702), - [anon_sym_RPAREN] = ACTIONS(1702), - [anon_sym_SEMI_SEMI] = ACTIONS(1702), - [anon_sym_PIPE_AMP] = ACTIONS(1702), - [anon_sym_AMP_AMP] = ACTIONS(1702), - [anon_sym_PIPE_PIPE] = ACTIONS(1702), + [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), [anon_sym_LT] = ACTIONS(528), [anon_sym_GT] = ACTIONS(528), [anon_sym_GT_GT] = ACTIONS(528), @@ -18202,467 +18827,481 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(528), [anon_sym_GT_AMP] = ACTIONS(528), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1702), - [anon_sym_LF] = ACTIONS(1702), - [anon_sym_AMP] = ACTIONS(1702), - }, - [661] = { - [anon_sym_PIPE] = ACTIONS(1704), - [anon_sym_RPAREN] = ACTIONS(1704), - [anon_sym_SEMI_SEMI] = ACTIONS(1704), - [anon_sym_PIPE_AMP] = ACTIONS(1704), - [anon_sym_AMP_AMP] = ACTIONS(1704), - [anon_sym_PIPE_PIPE] = ACTIONS(1704), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1704), - [anon_sym_LF] = ACTIONS(1704), - [anon_sym_AMP] = ACTIONS(1704), - }, - [662] = { - [sym__concat] = ACTIONS(1336), - [anon_sym_RBRACE] = ACTIONS(1336), - [anon_sym_RBRACK] = ACTIONS(1706), - [anon_sym_DQUOTE] = ACTIONS(1336), - [sym_raw_string] = ACTIONS(1336), - [anon_sym_DOLLAR] = ACTIONS(1706), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1336), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1336), - [anon_sym_BQUOTE] = ACTIONS(1336), - [anon_sym_LT_LPAREN] = ACTIONS(1336), - [anon_sym_GT_LPAREN] = ACTIONS(1336), - [sym_word] = ACTIONS(1338), - [sym_comment] = ACTIONS(52), - }, - [663] = { - [sym__concat] = ACTIONS(1340), - [anon_sym_RBRACE] = ACTIONS(1340), - [anon_sym_RBRACK] = ACTIONS(1708), - [anon_sym_DQUOTE] = ACTIONS(1340), - [sym_raw_string] = ACTIONS(1340), - [anon_sym_DOLLAR] = ACTIONS(1708), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1340), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1340), - [anon_sym_BQUOTE] = ACTIONS(1340), - [anon_sym_LT_LPAREN] = ACTIONS(1340), - [anon_sym_GT_LPAREN] = ACTIONS(1340), - [sym_word] = ACTIONS(1342), - [sym_comment] = ACTIONS(52), - }, - [664] = { - [anon_sym_AT] = ACTIONS(1710), - [sym_comment] = ACTIONS(52), - }, - [665] = { - [sym__concat] = ACTIONS(1346), - [anon_sym_RBRACE] = ACTIONS(1346), - [anon_sym_RBRACK] = ACTIONS(1712), - [anon_sym_DQUOTE] = ACTIONS(1346), - [sym_raw_string] = ACTIONS(1346), - [anon_sym_DOLLAR] = ACTIONS(1712), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1346), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1346), - [anon_sym_BQUOTE] = ACTIONS(1346), - [anon_sym_LT_LPAREN] = ACTIONS(1346), - [anon_sym_GT_LPAREN] = ACTIONS(1346), - [sym_word] = ACTIONS(1348), - [sym_comment] = ACTIONS(52), - }, - [666] = { - [anon_sym_AT] = ACTIONS(1714), - [sym_comment] = ACTIONS(52), - }, - [667] = { - [anon_sym_RBRACK] = ACTIONS(1716), - [sym_comment] = ACTIONS(52), - }, - [668] = { - [aux_sym_concatenation_repeat1] = STATE(192), - [sym__concat] = ACTIONS(326), - [anon_sym_RBRACE] = ACTIONS(1718), - [sym_comment] = ACTIONS(52), - }, - [669] = { - [anon_sym_RBRACE] = ACTIONS(1718), - [sym_comment] = ACTIONS(52), - }, - [670] = { - [anon_sym_RBRACK] = ACTIONS(1720), - [sym_comment] = ACTIONS(52), - }, - [671] = { - [aux_sym_concatenation_repeat1] = STATE(192), - [sym__concat] = ACTIONS(326), - [anon_sym_RBRACE] = ACTIONS(1722), - [sym_comment] = ACTIONS(52), - }, - [672] = { - [anon_sym_RBRACE] = ACTIONS(1722), - [sym_comment] = ACTIONS(52), - }, - [673] = { - [sym__concat] = ACTIONS(1336), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1706), - [anon_sym_DQUOTE] = ACTIONS(1336), - [sym_raw_string] = ACTIONS(1336), - [anon_sym_DOLLAR] = ACTIONS(1706), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1336), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1336), - [anon_sym_BQUOTE] = ACTIONS(1336), - [anon_sym_LT_LPAREN] = ACTIONS(1336), - [anon_sym_GT_LPAREN] = ACTIONS(1336), - [sym_word] = ACTIONS(1338), - [sym_comment] = ACTIONS(52), - }, - [674] = { - [sym__concat] = ACTIONS(1340), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1708), - [anon_sym_DQUOTE] = ACTIONS(1340), - [sym_raw_string] = ACTIONS(1340), - [anon_sym_DOLLAR] = ACTIONS(1708), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1340), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1340), - [anon_sym_BQUOTE] = ACTIONS(1340), - [anon_sym_LT_LPAREN] = ACTIONS(1340), - [anon_sym_GT_LPAREN] = ACTIONS(1340), - [sym_word] = ACTIONS(1342), - [sym_comment] = ACTIONS(52), - }, - [675] = { - [anon_sym_AT] = ACTIONS(1724), - [sym_comment] = ACTIONS(52), - }, - [676] = { - [sym__concat] = ACTIONS(1346), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1712), - [anon_sym_DQUOTE] = ACTIONS(1346), - [sym_raw_string] = ACTIONS(1346), - [anon_sym_DOLLAR] = ACTIONS(1712), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1346), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1346), - [anon_sym_BQUOTE] = ACTIONS(1346), - [anon_sym_LT_LPAREN] = ACTIONS(1346), - [anon_sym_GT_LPAREN] = ACTIONS(1346), - [sym_word] = ACTIONS(1348), - [sym_comment] = ACTIONS(52), - }, - [677] = { - [anon_sym_AT] = ACTIONS(1726), - [sym_comment] = ACTIONS(52), - }, - [678] = { - [anon_sym_RBRACK] = ACTIONS(1728), - [sym_comment] = ACTIONS(52), - }, - [679] = { - [aux_sym_concatenation_repeat1] = STATE(192), - [sym__concat] = ACTIONS(326), - [anon_sym_RBRACE] = ACTIONS(1730), - [sym_comment] = ACTIONS(52), - }, - [680] = { - [anon_sym_RBRACE] = ACTIONS(1730), - [sym_comment] = ACTIONS(52), - }, - [681] = { - [anon_sym_RBRACK] = ACTIONS(1732), - [sym_comment] = ACTIONS(52), - }, - [682] = { - [aux_sym_concatenation_repeat1] = STATE(192), - [sym__concat] = ACTIONS(326), - [anon_sym_RBRACE] = ACTIONS(1734), - [sym_comment] = ACTIONS(52), - }, - [683] = { - [anon_sym_RBRACE] = ACTIONS(1734), - [sym_comment] = ACTIONS(52), - }, - [684] = { - [sym_file_descriptor] = ACTIONS(1336), - [sym__concat] = ACTIONS(1336), - [sym_variable_name] = ACTIONS(1336), - [anon_sym_LT] = ACTIONS(1706), - [anon_sym_GT] = ACTIONS(1706), - [anon_sym_GT_GT] = ACTIONS(1336), - [anon_sym_AMP_GT] = ACTIONS(1706), - [anon_sym_AMP_GT_GT] = ACTIONS(1336), - [anon_sym_LT_AMP] = ACTIONS(1336), - [anon_sym_GT_AMP] = ACTIONS(1336), - [anon_sym_DQUOTE] = ACTIONS(1336), - [sym_raw_string] = ACTIONS(1336), - [anon_sym_DOLLAR] = ACTIONS(1706), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1336), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1336), - [anon_sym_BQUOTE] = ACTIONS(1336), - [anon_sym_LT_LPAREN] = ACTIONS(1336), - [anon_sym_GT_LPAREN] = ACTIONS(1336), - [sym_word] = ACTIONS(1706), - [sym_comment] = ACTIONS(52), + [anon_sym_SEMI] = ACTIONS(1754), + [anon_sym_LF] = ACTIONS(1754), + [anon_sym_AMP] = ACTIONS(1754), }, [685] = { - [sym_file_descriptor] = ACTIONS(1340), - [sym__concat] = ACTIONS(1340), - [sym_variable_name] = ACTIONS(1340), - [anon_sym_LT] = ACTIONS(1708), - [anon_sym_GT] = ACTIONS(1708), - [anon_sym_GT_GT] = ACTIONS(1340), - [anon_sym_AMP_GT] = ACTIONS(1708), - [anon_sym_AMP_GT_GT] = ACTIONS(1340), - [anon_sym_LT_AMP] = ACTIONS(1340), - [anon_sym_GT_AMP] = ACTIONS(1340), - [anon_sym_DQUOTE] = ACTIONS(1340), - [sym_raw_string] = ACTIONS(1340), - [anon_sym_DOLLAR] = ACTIONS(1708), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1340), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1340), - [anon_sym_BQUOTE] = ACTIONS(1340), - [anon_sym_LT_LPAREN] = ACTIONS(1340), - [anon_sym_GT_LPAREN] = ACTIONS(1340), - [sym_word] = ACTIONS(1708), - [sym_comment] = ACTIONS(52), + [anon_sym_PIPE] = ACTIONS(1756), + [anon_sym_RPAREN] = ACTIONS(1756), + [anon_sym_SEMI_SEMI] = ACTIONS(1756), + [anon_sym_PIPE_AMP] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(1756), + [anon_sym_LF] = ACTIONS(1756), + [anon_sym_AMP] = ACTIONS(1756), }, [686] = { - [anon_sym_AT] = ACTIONS(1736), + [sym__concat] = ACTIONS(1362), + [anon_sym_RBRACE] = ACTIONS(1362), + [anon_sym_RBRACK] = ACTIONS(1758), + [anon_sym_DQUOTE] = ACTIONS(1362), + [sym_raw_string] = ACTIONS(1362), + [anon_sym_DOLLAR] = ACTIONS(1758), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1362), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1362), + [anon_sym_BQUOTE] = ACTIONS(1362), + [anon_sym_LT_LPAREN] = ACTIONS(1362), + [anon_sym_GT_LPAREN] = ACTIONS(1362), + [sym_word] = ACTIONS(1364), [sym_comment] = ACTIONS(52), }, [687] = { - [sym_file_descriptor] = ACTIONS(1346), - [sym__concat] = ACTIONS(1346), - [sym_variable_name] = ACTIONS(1346), - [anon_sym_LT] = ACTIONS(1712), - [anon_sym_GT] = ACTIONS(1712), - [anon_sym_GT_GT] = ACTIONS(1346), - [anon_sym_AMP_GT] = ACTIONS(1712), - [anon_sym_AMP_GT_GT] = ACTIONS(1346), - [anon_sym_LT_AMP] = ACTIONS(1346), - [anon_sym_GT_AMP] = ACTIONS(1346), - [anon_sym_DQUOTE] = ACTIONS(1346), - [sym_raw_string] = ACTIONS(1346), - [anon_sym_DOLLAR] = ACTIONS(1712), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1346), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1346), - [anon_sym_BQUOTE] = ACTIONS(1346), - [anon_sym_LT_LPAREN] = ACTIONS(1346), - [anon_sym_GT_LPAREN] = ACTIONS(1346), - [sym_word] = ACTIONS(1712), + [sym__concat] = ACTIONS(1366), + [anon_sym_RBRACE] = ACTIONS(1366), + [anon_sym_RBRACK] = ACTIONS(1760), + [anon_sym_DQUOTE] = ACTIONS(1366), + [sym_raw_string] = ACTIONS(1366), + [anon_sym_DOLLAR] = ACTIONS(1760), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1366), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1366), + [anon_sym_BQUOTE] = ACTIONS(1366), + [anon_sym_LT_LPAREN] = ACTIONS(1366), + [anon_sym_GT_LPAREN] = ACTIONS(1366), + [sym_word] = ACTIONS(1368), [sym_comment] = ACTIONS(52), }, [688] = { - [anon_sym_AT] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(1762), [sym_comment] = ACTIONS(52), }, [689] = { - [anon_sym_RBRACK] = ACTIONS(1740), + [sym__concat] = ACTIONS(1372), + [anon_sym_RBRACE] = ACTIONS(1372), + [anon_sym_RBRACK] = ACTIONS(1764), + [anon_sym_DQUOTE] = ACTIONS(1372), + [sym_raw_string] = ACTIONS(1372), + [anon_sym_DOLLAR] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1372), + [anon_sym_BQUOTE] = ACTIONS(1372), + [anon_sym_LT_LPAREN] = ACTIONS(1372), + [anon_sym_GT_LPAREN] = ACTIONS(1372), + [sym_word] = ACTIONS(1374), [sym_comment] = ACTIONS(52), }, [690] = { - [aux_sym_concatenation_repeat1] = STATE(192), - [sym__concat] = ACTIONS(326), - [anon_sym_RBRACE] = ACTIONS(1742), + [anon_sym_AT] = ACTIONS(1766), [sym_comment] = ACTIONS(52), }, [691] = { - [anon_sym_RBRACE] = ACTIONS(1742), + [anon_sym_RBRACK] = ACTIONS(1768), [sym_comment] = ACTIONS(52), }, [692] = { - [anon_sym_RBRACK] = ACTIONS(1744), + [aux_sym_concatenation_repeat1] = STATE(192), + [sym__concat] = ACTIONS(326), + [anon_sym_RBRACE] = ACTIONS(1770), [sym_comment] = ACTIONS(52), }, [693] = { - [aux_sym_concatenation_repeat1] = STATE(192), - [sym__concat] = ACTIONS(326), - [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1770), [sym_comment] = ACTIONS(52), }, [694] = { - [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_RBRACK] = ACTIONS(1772), [sym_comment] = ACTIONS(52), }, [695] = { - [anon_sym_DQUOTE] = ACTIONS(1342), - [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(1708), - [anon_sym_DOLLAR] = ACTIONS(1342), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1342), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1342), - [anon_sym_BQUOTE] = ACTIONS(1342), - [sym_comment] = ACTIONS(142), + [aux_sym_concatenation_repeat1] = STATE(192), + [sym__concat] = ACTIONS(326), + [anon_sym_RBRACE] = ACTIONS(1774), + [sym_comment] = ACTIONS(52), }, [696] = { - [anon_sym_AT] = ACTIONS(1748), + [anon_sym_RBRACE] = ACTIONS(1774), [sym_comment] = ACTIONS(52), }, [697] = { - [anon_sym_DQUOTE] = ACTIONS(1348), - [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(1712), - [anon_sym_DOLLAR] = ACTIONS(1348), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1348), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1348), - [anon_sym_BQUOTE] = ACTIONS(1348), - [sym_comment] = ACTIONS(142), + [sym__concat] = ACTIONS(1362), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1758), + [anon_sym_DQUOTE] = ACTIONS(1362), + [sym_raw_string] = ACTIONS(1362), + [anon_sym_DOLLAR] = ACTIONS(1758), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1362), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1362), + [anon_sym_BQUOTE] = ACTIONS(1362), + [anon_sym_LT_LPAREN] = ACTIONS(1362), + [anon_sym_GT_LPAREN] = ACTIONS(1362), + [sym_word] = ACTIONS(1364), + [sym_comment] = ACTIONS(52), }, [698] = { - [anon_sym_AT] = ACTIONS(1750), + [sym__concat] = ACTIONS(1366), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1760), + [anon_sym_DQUOTE] = ACTIONS(1366), + [sym_raw_string] = ACTIONS(1366), + [anon_sym_DOLLAR] = ACTIONS(1760), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1366), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1366), + [anon_sym_BQUOTE] = ACTIONS(1366), + [anon_sym_LT_LPAREN] = ACTIONS(1366), + [anon_sym_GT_LPAREN] = ACTIONS(1366), + [sym_word] = ACTIONS(1368), [sym_comment] = ACTIONS(52), }, [699] = { - [anon_sym_RBRACK] = ACTIONS(1752), + [anon_sym_AT] = ACTIONS(1776), [sym_comment] = ACTIONS(52), }, [700] = { - [aux_sym_concatenation_repeat1] = STATE(192), - [sym__concat] = ACTIONS(326), - [anon_sym_RBRACE] = ACTIONS(1754), + [sym__concat] = ACTIONS(1372), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1764), + [anon_sym_DQUOTE] = ACTIONS(1372), + [sym_raw_string] = ACTIONS(1372), + [anon_sym_DOLLAR] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1372), + [anon_sym_BQUOTE] = ACTIONS(1372), + [anon_sym_LT_LPAREN] = ACTIONS(1372), + [anon_sym_GT_LPAREN] = ACTIONS(1372), + [sym_word] = ACTIONS(1374), [sym_comment] = ACTIONS(52), }, [701] = { - [anon_sym_RBRACE] = ACTIONS(1754), + [anon_sym_AT] = ACTIONS(1778), [sym_comment] = ACTIONS(52), }, [702] = { - [anon_sym_RBRACK] = ACTIONS(1756), + [anon_sym_RBRACK] = ACTIONS(1780), [sym_comment] = ACTIONS(52), }, [703] = { [aux_sym_concatenation_repeat1] = STATE(192), [sym__concat] = ACTIONS(326), - [anon_sym_RBRACE] = ACTIONS(1758), + [anon_sym_RBRACE] = ACTIONS(1782), [sym_comment] = ACTIONS(52), }, [704] = { - [anon_sym_RBRACE] = ACTIONS(1758), + [anon_sym_RBRACE] = ACTIONS(1782), [sym_comment] = ACTIONS(52), }, [705] = { - [anon_sym_RBRACK] = ACTIONS(1760), + [anon_sym_RBRACK] = ACTIONS(1784), [sym_comment] = ACTIONS(52), }, [706] = { - [anon_sym_RBRACK] = ACTIONS(1762), + [aux_sym_concatenation_repeat1] = STATE(192), + [sym__concat] = ACTIONS(326), + [anon_sym_RBRACE] = ACTIONS(1786), [sym_comment] = ACTIONS(52), }, [707] = { - [anon_sym_RBRACE] = ACTIONS(1764), + [anon_sym_RBRACE] = ACTIONS(1786), [sym_comment] = ACTIONS(52), }, [708] = { - [sym_file_descriptor] = ACTIONS(1766), - [sym__concat] = ACTIONS(1766), - [anon_sym_PIPE] = ACTIONS(1768), - [anon_sym_RPAREN] = ACTIONS(1768), - [anon_sym_SEMI_SEMI] = ACTIONS(1768), - [anon_sym_PIPE_AMP] = ACTIONS(1768), - [anon_sym_AMP_AMP] = ACTIONS(1768), - [anon_sym_PIPE_PIPE] = ACTIONS(1768), - [anon_sym_LT] = ACTIONS(1768), - [anon_sym_GT] = ACTIONS(1768), - [anon_sym_GT_GT] = ACTIONS(1768), - [anon_sym_AMP_GT] = ACTIONS(1768), - [anon_sym_AMP_GT_GT] = ACTIONS(1768), - [anon_sym_LT_AMP] = ACTIONS(1768), - [anon_sym_GT_AMP] = ACTIONS(1768), - [anon_sym_LT_LT] = ACTIONS(1768), - [anon_sym_LT_LT_DASH] = ACTIONS(1768), - [anon_sym_DQUOTE] = ACTIONS(1768), - [sym_raw_string] = ACTIONS(1768), - [anon_sym_DOLLAR] = ACTIONS(1768), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1768), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1768), - [anon_sym_BQUOTE] = ACTIONS(1768), - [anon_sym_LT_LPAREN] = ACTIONS(1768), - [anon_sym_GT_LPAREN] = ACTIONS(1768), - [sym_word] = ACTIONS(1768), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1768), - [anon_sym_LF] = ACTIONS(1768), - [anon_sym_AMP] = ACTIONS(1768), + [sym_file_descriptor] = ACTIONS(1362), + [sym__concat] = ACTIONS(1362), + [sym_variable_name] = ACTIONS(1362), + [anon_sym_LT] = ACTIONS(1758), + [anon_sym_GT] = ACTIONS(1758), + [anon_sym_GT_GT] = ACTIONS(1362), + [anon_sym_AMP_GT] = ACTIONS(1758), + [anon_sym_AMP_GT_GT] = ACTIONS(1362), + [anon_sym_LT_AMP] = ACTIONS(1362), + [anon_sym_GT_AMP] = ACTIONS(1362), + [anon_sym_DQUOTE] = ACTIONS(1362), + [sym_raw_string] = ACTIONS(1362), + [anon_sym_DOLLAR] = ACTIONS(1758), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1362), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1362), + [anon_sym_BQUOTE] = ACTIONS(1362), + [anon_sym_LT_LPAREN] = ACTIONS(1362), + [anon_sym_GT_LPAREN] = ACTIONS(1362), + [sym_word] = ACTIONS(1758), + [sym_comment] = ACTIONS(52), }, [709] = { - [anon_sym_RBRACE] = ACTIONS(1770), + [sym_file_descriptor] = ACTIONS(1366), + [sym__concat] = ACTIONS(1366), + [sym_variable_name] = ACTIONS(1366), + [anon_sym_LT] = ACTIONS(1760), + [anon_sym_GT] = ACTIONS(1760), + [anon_sym_GT_GT] = ACTIONS(1366), + [anon_sym_AMP_GT] = ACTIONS(1760), + [anon_sym_AMP_GT_GT] = ACTIONS(1366), + [anon_sym_LT_AMP] = ACTIONS(1366), + [anon_sym_GT_AMP] = ACTIONS(1366), + [anon_sym_DQUOTE] = ACTIONS(1366), + [sym_raw_string] = ACTIONS(1366), + [anon_sym_DOLLAR] = ACTIONS(1760), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1366), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1366), + [anon_sym_BQUOTE] = ACTIONS(1366), + [anon_sym_LT_LPAREN] = ACTIONS(1366), + [anon_sym_GT_LPAREN] = ACTIONS(1366), + [sym_word] = ACTIONS(1760), [sym_comment] = ACTIONS(52), }, [710] = { - [sym_file_descriptor] = ACTIONS(1772), - [sym__concat] = ACTIONS(1772), - [anon_sym_PIPE] = ACTIONS(1774), - [anon_sym_RPAREN] = ACTIONS(1774), - [anon_sym_SEMI_SEMI] = ACTIONS(1774), - [anon_sym_PIPE_AMP] = ACTIONS(1774), - [anon_sym_AMP_AMP] = ACTIONS(1774), - [anon_sym_PIPE_PIPE] = ACTIONS(1774), - [anon_sym_LT] = ACTIONS(1774), - [anon_sym_GT] = ACTIONS(1774), - [anon_sym_GT_GT] = ACTIONS(1774), - [anon_sym_AMP_GT] = ACTIONS(1774), - [anon_sym_AMP_GT_GT] = ACTIONS(1774), - [anon_sym_LT_AMP] = ACTIONS(1774), - [anon_sym_GT_AMP] = ACTIONS(1774), - [anon_sym_LT_LT] = ACTIONS(1774), - [anon_sym_LT_LT_DASH] = ACTIONS(1774), - [anon_sym_DQUOTE] = ACTIONS(1774), - [sym_raw_string] = ACTIONS(1774), - [anon_sym_DOLLAR] = ACTIONS(1774), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1774), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1774), - [anon_sym_BQUOTE] = ACTIONS(1774), - [anon_sym_LT_LPAREN] = ACTIONS(1774), - [anon_sym_GT_LPAREN] = ACTIONS(1774), - [sym_word] = ACTIONS(1774), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1774), - [anon_sym_LF] = ACTIONS(1774), - [anon_sym_AMP] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(1788), + [sym_comment] = ACTIONS(52), }, [711] = { - [sym_file_descriptor] = ACTIONS(1100), - [sym_variable_name] = ACTIONS(1100), - [anon_sym_PIPE] = ACTIONS(1776), - [anon_sym_RPAREN] = ACTIONS(1100), - [anon_sym_PIPE_AMP] = ACTIONS(1100), - [anon_sym_AMP_AMP] = ACTIONS(1100), - [anon_sym_PIPE_PIPE] = ACTIONS(1776), - [anon_sym_LT] = ACTIONS(1776), - [anon_sym_GT] = ACTIONS(1776), - [anon_sym_GT_GT] = ACTIONS(1100), - [anon_sym_AMP_GT] = ACTIONS(1776), - [anon_sym_AMP_GT_GT] = ACTIONS(1100), - [anon_sym_LT_AMP] = ACTIONS(1100), - [anon_sym_GT_AMP] = ACTIONS(1100), - [anon_sym_DQUOTE] = ACTIONS(1100), - [sym_raw_string] = ACTIONS(1100), - [anon_sym_DOLLAR] = ACTIONS(1776), - [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_word] = ACTIONS(1102), + [sym_file_descriptor] = ACTIONS(1372), + [sym__concat] = ACTIONS(1372), + [sym_variable_name] = ACTIONS(1372), + [anon_sym_LT] = ACTIONS(1764), + [anon_sym_GT] = ACTIONS(1764), + [anon_sym_GT_GT] = ACTIONS(1372), + [anon_sym_AMP_GT] = ACTIONS(1764), + [anon_sym_AMP_GT_GT] = ACTIONS(1372), + [anon_sym_LT_AMP] = ACTIONS(1372), + [anon_sym_GT_AMP] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1372), + [sym_raw_string] = ACTIONS(1372), + [anon_sym_DOLLAR] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1372), + [anon_sym_BQUOTE] = ACTIONS(1372), + [anon_sym_LT_LPAREN] = ACTIONS(1372), + [anon_sym_GT_LPAREN] = ACTIONS(1372), + [sym_word] = ACTIONS(1764), [sym_comment] = ACTIONS(52), }, [712] = { - [anon_sym_RPAREN] = ACTIONS(1778), - [sym_word] = ACTIONS(1110), + [anon_sym_AT] = ACTIONS(1790), [sym_comment] = ACTIONS(52), }, [713] = { + [anon_sym_RBRACK] = ACTIONS(1792), + [sym_comment] = ACTIONS(52), + }, + [714] = { + [aux_sym_concatenation_repeat1] = STATE(192), + [sym__concat] = ACTIONS(326), + [anon_sym_RBRACE] = ACTIONS(1794), + [sym_comment] = ACTIONS(52), + }, + [715] = { + [anon_sym_RBRACE] = ACTIONS(1794), + [sym_comment] = ACTIONS(52), + }, + [716] = { + [anon_sym_RBRACK] = ACTIONS(1796), + [sym_comment] = ACTIONS(52), + }, + [717] = { + [aux_sym_concatenation_repeat1] = STATE(192), + [sym__concat] = ACTIONS(326), + [anon_sym_RBRACE] = ACTIONS(1798), + [sym_comment] = ACTIONS(52), + }, + [718] = { + [anon_sym_RBRACE] = ACTIONS(1798), + [sym_comment] = ACTIONS(52), + }, + [719] = { + [anon_sym_DQUOTE] = ACTIONS(1368), + [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(1760), + [anon_sym_DOLLAR] = ACTIONS(1368), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1368), + [anon_sym_BQUOTE] = ACTIONS(1368), + [sym_comment] = ACTIONS(142), + }, + [720] = { + [anon_sym_AT] = ACTIONS(1800), + [sym_comment] = ACTIONS(52), + }, + [721] = { + [anon_sym_DQUOTE] = ACTIONS(1374), + [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(1764), + [anon_sym_DOLLAR] = ACTIONS(1374), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1374), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1374), + [anon_sym_BQUOTE] = ACTIONS(1374), + [sym_comment] = ACTIONS(142), + }, + [722] = { + [anon_sym_AT] = ACTIONS(1802), + [sym_comment] = ACTIONS(52), + }, + [723] = { + [anon_sym_RBRACK] = ACTIONS(1804), + [sym_comment] = ACTIONS(52), + }, + [724] = { + [aux_sym_concatenation_repeat1] = STATE(192), + [sym__concat] = ACTIONS(326), + [anon_sym_RBRACE] = ACTIONS(1806), + [sym_comment] = ACTIONS(52), + }, + [725] = { + [anon_sym_RBRACE] = ACTIONS(1806), + [sym_comment] = ACTIONS(52), + }, + [726] = { + [anon_sym_RBRACK] = ACTIONS(1808), + [sym_comment] = ACTIONS(52), + }, + [727] = { + [aux_sym_concatenation_repeat1] = STATE(192), + [sym__concat] = ACTIONS(326), + [anon_sym_RBRACE] = ACTIONS(1810), + [sym_comment] = ACTIONS(52), + }, + [728] = { + [anon_sym_RBRACE] = ACTIONS(1810), + [sym_comment] = ACTIONS(52), + }, + [729] = { + [anon_sym_RBRACK] = ACTIONS(1812), + [sym_comment] = ACTIONS(52), + }, + [730] = { + [anon_sym_RBRACK] = ACTIONS(1814), + [sym_comment] = ACTIONS(52), + }, + [731] = { + [anon_sym_RBRACE] = ACTIONS(1816), + [sym_comment] = ACTIONS(52), + }, + [732] = { + [sym_file_descriptor] = ACTIONS(1818), + [sym__concat] = ACTIONS(1818), + [anon_sym_PIPE] = ACTIONS(1820), + [anon_sym_RPAREN] = ACTIONS(1820), + [anon_sym_SEMI_SEMI] = ACTIONS(1820), + [anon_sym_PIPE_AMP] = ACTIONS(1820), + [anon_sym_AMP_AMP] = ACTIONS(1820), + [anon_sym_PIPE_PIPE] = ACTIONS(1820), + [anon_sym_LT] = ACTIONS(1820), + [anon_sym_GT] = ACTIONS(1820), + [anon_sym_GT_GT] = ACTIONS(1820), + [anon_sym_AMP_GT] = ACTIONS(1820), + [anon_sym_AMP_GT_GT] = ACTIONS(1820), + [anon_sym_LT_AMP] = ACTIONS(1820), + [anon_sym_GT_AMP] = ACTIONS(1820), + [anon_sym_LT_LT] = ACTIONS(1820), + [anon_sym_LT_LT_DASH] = ACTIONS(1820), + [anon_sym_DQUOTE] = ACTIONS(1820), + [sym_raw_string] = ACTIONS(1820), + [anon_sym_DOLLAR] = ACTIONS(1820), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1820), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1820), + [anon_sym_BQUOTE] = ACTIONS(1820), + [anon_sym_LT_LPAREN] = ACTIONS(1820), + [anon_sym_GT_LPAREN] = ACTIONS(1820), + [sym_word] = ACTIONS(1820), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(1820), + [anon_sym_LF] = ACTIONS(1820), + [anon_sym_AMP] = ACTIONS(1820), + }, + [733] = { + [anon_sym_RBRACE] = ACTIONS(1822), + [sym_comment] = ACTIONS(52), + }, + [734] = { + [sym_file_descriptor] = ACTIONS(1824), + [sym__concat] = ACTIONS(1824), + [anon_sym_PIPE] = ACTIONS(1826), + [anon_sym_RPAREN] = ACTIONS(1826), + [anon_sym_SEMI_SEMI] = ACTIONS(1826), + [anon_sym_PIPE_AMP] = ACTIONS(1826), + [anon_sym_AMP_AMP] = ACTIONS(1826), + [anon_sym_PIPE_PIPE] = ACTIONS(1826), + [anon_sym_LT] = ACTIONS(1826), + [anon_sym_GT] = ACTIONS(1826), + [anon_sym_GT_GT] = ACTIONS(1826), + [anon_sym_AMP_GT] = ACTIONS(1826), + [anon_sym_AMP_GT_GT] = ACTIONS(1826), + [anon_sym_LT_AMP] = ACTIONS(1826), + [anon_sym_GT_AMP] = ACTIONS(1826), + [anon_sym_LT_LT] = ACTIONS(1826), + [anon_sym_LT_LT_DASH] = ACTIONS(1826), + [anon_sym_DQUOTE] = ACTIONS(1826), + [sym_raw_string] = ACTIONS(1826), + [anon_sym_DOLLAR] = ACTIONS(1826), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1826), + [anon_sym_BQUOTE] = ACTIONS(1826), + [anon_sym_LT_LPAREN] = ACTIONS(1826), + [anon_sym_GT_LPAREN] = ACTIONS(1826), + [sym_word] = ACTIONS(1826), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(1826), + [anon_sym_LF] = ACTIONS(1826), + [anon_sym_AMP] = ACTIONS(1826), + }, + [735] = { + [sym_file_descriptor] = ACTIONS(1114), + [sym_variable_name] = ACTIONS(1114), + [anon_sym_PIPE] = ACTIONS(1828), + [anon_sym_RPAREN] = ACTIONS(1114), + [anon_sym_PIPE_AMP] = ACTIONS(1114), + [anon_sym_AMP_AMP] = ACTIONS(1114), + [anon_sym_PIPE_PIPE] = ACTIONS(1828), + [anon_sym_LT] = ACTIONS(1828), + [anon_sym_GT] = ACTIONS(1828), + [anon_sym_GT_GT] = ACTIONS(1114), + [anon_sym_AMP_GT] = ACTIONS(1828), + [anon_sym_AMP_GT_GT] = ACTIONS(1114), + [anon_sym_LT_AMP] = ACTIONS(1114), + [anon_sym_GT_AMP] = ACTIONS(1114), + [anon_sym_DQUOTE] = ACTIONS(1114), + [sym_raw_string] = ACTIONS(1114), + [anon_sym_DOLLAR] = ACTIONS(1828), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1114), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1114), + [anon_sym_BQUOTE] = ACTIONS(1114), + [anon_sym_LT_LPAREN] = ACTIONS(1114), + [anon_sym_GT_LPAREN] = ACTIONS(1114), + [sym_word] = ACTIONS(1116), + [sym_comment] = ACTIONS(52), + }, + [736] = { + [sym_concatenation] = STATE(620), + [sym_string] = STATE(619), + [sym_simple_expansion] = STATE(619), + [sym_expansion] = STATE(619), + [sym_command_substitution] = STATE(619), + [sym_process_substitution] = STATE(619), + [anon_sym_RPAREN] = ACTIONS(1830), + [anon_sym_DQUOTE] = ACTIONS(606), + [sym_raw_string] = ACTIONS(1134), + [anon_sym_DOLLAR] = ACTIONS(610), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(612), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(614), + [anon_sym_BQUOTE] = ACTIONS(616), + [anon_sym_LT_LPAREN] = ACTIONS(618), + [anon_sym_GT_LPAREN] = ACTIONS(618), + [sym_word] = ACTIONS(1136), + [sym_comment] = ACTIONS(52), + }, + [737] = { [sym_file_descriptor] = ACTIONS(386), [sym__concat] = ACTIONS(386), [sym_variable_name] = ACTIONS(386), - [anon_sym_PIPE] = ACTIONS(694), + [anon_sym_PIPE] = ACTIONS(708), [anon_sym_RPAREN] = ACTIONS(386), [anon_sym_PIPE_AMP] = ACTIONS(386), [anon_sym_AMP_AMP] = ACTIONS(386), - [anon_sym_PIPE_PIPE] = ACTIONS(694), - [anon_sym_LT] = ACTIONS(694), - [anon_sym_GT] = ACTIONS(694), + [anon_sym_PIPE_PIPE] = ACTIONS(708), + [anon_sym_LT] = ACTIONS(708), + [anon_sym_GT] = ACTIONS(708), [anon_sym_GT_GT] = ACTIONS(386), - [anon_sym_AMP_GT] = ACTIONS(694), + [anon_sym_AMP_GT] = ACTIONS(708), [anon_sym_AMP_GT_GT] = ACTIONS(386), [anon_sym_LT_AMP] = ACTIONS(386), [anon_sym_GT_AMP] = ACTIONS(386), [anon_sym_DQUOTE] = ACTIONS(386), [sym_raw_string] = ACTIONS(386), - [anon_sym_DOLLAR] = ACTIONS(694), + [anon_sym_DOLLAR] = ACTIONS(708), [anon_sym_DOLLAR_LBRACE] = ACTIONS(386), [anon_sym_DOLLAR_LPAREN] = ACTIONS(386), [anon_sym_BQUOTE] = ACTIONS(386), @@ -18671,11 +19310,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(388), [sym_comment] = ACTIONS(52), }, - [714] = { + [738] = { [sym_simple_expansion] = STATE(253), [sym_expansion] = STATE(253), [sym_command_substitution] = STATE(253), - [anon_sym_DQUOTE] = ACTIONS(1780), + [anon_sym_DQUOTE] = ACTIONS(1832), [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(406), [anon_sym_DOLLAR] = ACTIONS(134), [anon_sym_DOLLAR_LBRACE] = ACTIONS(136), @@ -18683,42 +19322,42 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(140), [sym_comment] = ACTIONS(142), }, - [715] = { - [sym_string] = STATE(911), - [sym_simple_expansion] = STATE(911), - [sym_expansion] = STATE(911), - [sym_command_substitution] = STATE(911), - [sym_process_substitution] = STATE(911), - [anon_sym_DQUOTE] = ACTIONS(868), - [sym_raw_string] = ACTIONS(1782), - [anon_sym_DOLLAR] = ACTIONS(872), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(874), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(876), - [anon_sym_BQUOTE] = ACTIONS(878), - [anon_sym_LT_LPAREN] = ACTIONS(880), - [anon_sym_GT_LPAREN] = ACTIONS(880), - [sym_word] = ACTIONS(1784), + [739] = { + [sym_string] = STATE(948), + [sym_simple_expansion] = STATE(948), + [sym_expansion] = STATE(948), + [sym_command_substitution] = STATE(948), + [sym_process_substitution] = STATE(948), + [anon_sym_DQUOTE] = ACTIONS(882), + [sym_raw_string] = ACTIONS(1834), + [anon_sym_DOLLAR] = ACTIONS(886), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(888), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(890), + [anon_sym_BQUOTE] = ACTIONS(892), + [anon_sym_LT_LPAREN] = ACTIONS(894), + [anon_sym_GT_LPAREN] = ACTIONS(894), + [sym_word] = ACTIONS(1836), [sym_comment] = ACTIONS(52), }, - [716] = { + [740] = { [sym_file_descriptor] = ACTIONS(412), - [sym__concat] = ACTIONS(1786), + [sym__concat] = ACTIONS(1838), [sym_variable_name] = ACTIONS(412), - [anon_sym_PIPE] = ACTIONS(704), + [anon_sym_PIPE] = ACTIONS(718), [anon_sym_RPAREN] = ACTIONS(412), [anon_sym_PIPE_AMP] = ACTIONS(412), [anon_sym_AMP_AMP] = ACTIONS(412), - [anon_sym_PIPE_PIPE] = ACTIONS(704), - [anon_sym_LT] = ACTIONS(704), - [anon_sym_GT] = ACTIONS(704), + [anon_sym_PIPE_PIPE] = ACTIONS(718), + [anon_sym_LT] = ACTIONS(718), + [anon_sym_GT] = ACTIONS(718), [anon_sym_GT_GT] = ACTIONS(412), - [anon_sym_AMP_GT] = ACTIONS(704), + [anon_sym_AMP_GT] = ACTIONS(718), [anon_sym_AMP_GT_GT] = ACTIONS(412), [anon_sym_LT_AMP] = ACTIONS(412), [anon_sym_GT_AMP] = ACTIONS(412), [anon_sym_DQUOTE] = ACTIONS(412), [sym_raw_string] = ACTIONS(412), - [anon_sym_DOLLAR] = ACTIONS(704), + [anon_sym_DOLLAR] = ACTIONS(718), [anon_sym_DOLLAR_LBRACE] = ACTIONS(412), [anon_sym_DOLLAR_LPAREN] = ACTIONS(412), [anon_sym_BQUOTE] = ACTIONS(412), @@ -18727,7 +19366,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(416), [sym_comment] = ACTIONS(52), }, - [717] = { + [741] = { [sym_file_descriptor] = ACTIONS(418), [sym__concat] = ACTIONS(418), [sym_variable_name] = ACTIONS(418), @@ -18754,25 +19393,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(420), [sym_comment] = ACTIONS(52), }, - [718] = { + [742] = { [sym_file_descriptor] = ACTIONS(422), [sym__concat] = ACTIONS(422), [sym_variable_name] = ACTIONS(422), - [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_PIPE] = ACTIONS(720), [anon_sym_RPAREN] = ACTIONS(422), [anon_sym_PIPE_AMP] = ACTIONS(422), [anon_sym_AMP_AMP] = ACTIONS(422), - [anon_sym_PIPE_PIPE] = ACTIONS(706), - [anon_sym_LT] = ACTIONS(706), - [anon_sym_GT] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(720), + [anon_sym_LT] = ACTIONS(720), + [anon_sym_GT] = ACTIONS(720), [anon_sym_GT_GT] = ACTIONS(422), - [anon_sym_AMP_GT] = ACTIONS(706), + [anon_sym_AMP_GT] = ACTIONS(720), [anon_sym_AMP_GT_GT] = ACTIONS(422), [anon_sym_LT_AMP] = ACTIONS(422), [anon_sym_GT_AMP] = ACTIONS(422), [anon_sym_DQUOTE] = ACTIONS(422), [sym_raw_string] = ACTIONS(422), - [anon_sym_DOLLAR] = ACTIONS(706), + [anon_sym_DOLLAR] = ACTIONS(720), [anon_sym_DOLLAR_LBRACE] = ACTIONS(422), [anon_sym_DOLLAR_LPAREN] = ACTIONS(422), [anon_sym_BQUOTE] = ACTIONS(422), @@ -18781,25 +19420,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(424), [sym_comment] = ACTIONS(52), }, - [719] = { + [743] = { [sym_file_descriptor] = ACTIONS(426), [sym__concat] = ACTIONS(426), [sym_variable_name] = ACTIONS(426), - [anon_sym_PIPE] = ACTIONS(708), + [anon_sym_PIPE] = ACTIONS(722), [anon_sym_RPAREN] = ACTIONS(426), [anon_sym_PIPE_AMP] = ACTIONS(426), [anon_sym_AMP_AMP] = ACTIONS(426), - [anon_sym_PIPE_PIPE] = ACTIONS(708), - [anon_sym_LT] = ACTIONS(708), - [anon_sym_GT] = ACTIONS(708), + [anon_sym_PIPE_PIPE] = ACTIONS(722), + [anon_sym_LT] = ACTIONS(722), + [anon_sym_GT] = ACTIONS(722), [anon_sym_GT_GT] = ACTIONS(426), - [anon_sym_AMP_GT] = ACTIONS(708), + [anon_sym_AMP_GT] = ACTIONS(722), [anon_sym_AMP_GT_GT] = ACTIONS(426), [anon_sym_LT_AMP] = ACTIONS(426), [anon_sym_GT_AMP] = ACTIONS(426), [anon_sym_DQUOTE] = ACTIONS(426), [sym_raw_string] = ACTIONS(426), - [anon_sym_DOLLAR] = ACTIONS(708), + [anon_sym_DOLLAR] = ACTIONS(722), [anon_sym_DOLLAR_LBRACE] = ACTIONS(426), [anon_sym_DOLLAR_LPAREN] = ACTIONS(426), [anon_sym_BQUOTE] = ACTIONS(426), @@ -18808,8 +19447,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(428), [sym_comment] = ACTIONS(52), }, - [720] = { - [sym_special_variable_name] = STATE(914), + [744] = { + [sym_special_variable_name] = STATE(951), [anon_sym_RBRACE] = ACTIONS(418), [anon_sym_LBRACK] = ACTIONS(418), [anon_sym_EQ] = ACTIONS(418), @@ -18822,7 +19461,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(418), [anon_sym_SLASH] = ACTIONS(418), [sym_comment] = ACTIONS(142), - [sym_simple_variable_name] = ACTIONS(1788), + [sym_simple_variable_name] = ACTIONS(1840), [anon_sym_STAR] = ACTIONS(156), [anon_sym_QMARK] = ACTIONS(156), [anon_sym_DASH] = ACTIONS(156), @@ -18830,41 +19469,41 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_0] = ACTIONS(162), [anon_sym__] = ACTIONS(162), }, - [721] = { - [anon_sym_RBRACE] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_EQ] = ACTIONS(1794), - [anon_sym_COLON] = ACTIONS(1796), - [anon_sym_COLON_QMARK] = ACTIONS(1794), - [anon_sym_COLON_DASH] = ACTIONS(1794), - [anon_sym_PERCENT] = ACTIONS(1794), - [anon_sym_SLASH] = ACTIONS(1794), + [745] = { + [anon_sym_RBRACE] = ACTIONS(1842), + [anon_sym_LBRACK] = ACTIONS(1844), + [anon_sym_EQ] = ACTIONS(1846), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_COLON_QMARK] = ACTIONS(1846), + [anon_sym_COLON_DASH] = ACTIONS(1846), + [anon_sym_PERCENT] = ACTIONS(1846), + [anon_sym_SLASH] = ACTIONS(1846), [sym_comment] = ACTIONS(52), }, - [722] = { - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LBRACK] = ACTIONS(1800), - [anon_sym_EQ] = ACTIONS(1802), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1802), - [anon_sym_COLON_DASH] = ACTIONS(1802), - [anon_sym_PERCENT] = ACTIONS(1802), - [anon_sym_SLASH] = ACTIONS(1802), + [746] = { + [anon_sym_RBRACE] = ACTIONS(1850), + [anon_sym_LBRACK] = ACTIONS(1852), + [anon_sym_EQ] = ACTIONS(1854), + [anon_sym_COLON] = ACTIONS(1856), + [anon_sym_COLON_QMARK] = ACTIONS(1854), + [anon_sym_COLON_DASH] = ACTIONS(1854), + [anon_sym_PERCENT] = ACTIONS(1854), + [anon_sym_SLASH] = ACTIONS(1854), [sym_comment] = ACTIONS(52), }, - [723] = { + [747] = { [anon_sym_PIPE] = ACTIONS(480), - [anon_sym_RPAREN] = ACTIONS(1806), + [anon_sym_RPAREN] = ACTIONS(1858), [anon_sym_PIPE_AMP] = ACTIONS(484), [anon_sym_AMP_AMP] = ACTIONS(486), [anon_sym_PIPE_PIPE] = ACTIONS(486), [sym_comment] = ACTIONS(52), }, - [724] = { + [748] = { [sym_file_descriptor] = ACTIONS(238), [sym_variable_name] = ACTIONS(238), [anon_sym_PIPE] = ACTIONS(480), - [anon_sym_RPAREN] = ACTIONS(1806), + [anon_sym_RPAREN] = ACTIONS(1858), [anon_sym_PIPE_AMP] = ACTIONS(484), [anon_sym_AMP_AMP] = ACTIONS(486), [anon_sym_PIPE_PIPE] = ACTIONS(506), @@ -18886,15 +19525,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(240), [sym_comment] = ACTIONS(52), }, - [725] = { + [749] = { [anon_sym_PIPE] = ACTIONS(510), [anon_sym_PIPE_AMP] = ACTIONS(512), [anon_sym_AMP_AMP] = ACTIONS(514), [anon_sym_PIPE_PIPE] = ACTIONS(514), - [anon_sym_BQUOTE] = ACTIONS(1806), + [anon_sym_BQUOTE] = ACTIONS(1858), [sym_comment] = ACTIONS(52), }, - [726] = { + [750] = { [sym_file_descriptor] = ACTIONS(238), [sym_variable_name] = ACTIONS(238), [anon_sym_PIPE] = ACTIONS(510), @@ -18913,25 +19552,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(242), [anon_sym_DOLLAR_LBRACE] = ACTIONS(238), [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(1806), + [anon_sym_BQUOTE] = ACTIONS(1858), [anon_sym_LT_LPAREN] = ACTIONS(238), [anon_sym_GT_LPAREN] = ACTIONS(238), [sym_word] = ACTIONS(240), [sym_comment] = ACTIONS(52), }, - [727] = { + [751] = { [anon_sym_PIPE] = ACTIONS(480), - [anon_sym_RPAREN] = ACTIONS(1808), + [anon_sym_RPAREN] = ACTIONS(1860), [anon_sym_PIPE_AMP] = ACTIONS(484), [anon_sym_AMP_AMP] = ACTIONS(486), [anon_sym_PIPE_PIPE] = ACTIONS(486), [sym_comment] = ACTIONS(52), }, - [728] = { + [752] = { [sym_file_descriptor] = ACTIONS(238), [sym_variable_name] = ACTIONS(238), [anon_sym_PIPE] = ACTIONS(480), - [anon_sym_RPAREN] = ACTIONS(1808), + [anon_sym_RPAREN] = ACTIONS(1860), [anon_sym_PIPE_AMP] = ACTIONS(484), [anon_sym_AMP_AMP] = ACTIONS(486), [anon_sym_PIPE_PIPE] = ACTIONS(506), @@ -18953,109 +19592,42 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(240), [sym_comment] = ACTIONS(52), }, - [729] = { - [sym_concatenation] = STATE(628), - [sym_string] = STATE(627), - [sym_simple_expansion] = STATE(627), - [sym_expansion] = STATE(627), - [sym_command_substitution] = STATE(627), - [sym_process_substitution] = STATE(627), - [anon_sym_SEMI_SEMI] = ACTIONS(1810), - [anon_sym_DQUOTE] = ACTIONS(1158), - [sym_raw_string] = ACTIONS(1160), - [anon_sym_DOLLAR] = ACTIONS(1162), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1164), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1166), - [anon_sym_BQUOTE] = ACTIONS(1168), - [anon_sym_LT_LPAREN] = ACTIONS(1170), - [anon_sym_GT_LPAREN] = ACTIONS(1170), - [sym_word] = ACTIONS(1160), + [753] = { + [sym_concatenation] = STATE(652), + [sym_string] = STATE(651), + [sym_simple_expansion] = STATE(651), + [sym_expansion] = STATE(651), + [sym_command_substitution] = STATE(651), + [sym_process_substitution] = STATE(651), + [anon_sym_SEMI_SEMI] = ACTIONS(1862), + [anon_sym_DQUOTE] = ACTIONS(1184), + [sym_raw_string] = ACTIONS(1186), + [anon_sym_DOLLAR] = ACTIONS(1188), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1190), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1192), + [anon_sym_BQUOTE] = ACTIONS(1194), + [anon_sym_LT_LPAREN] = ACTIONS(1196), + [anon_sym_GT_LPAREN] = ACTIONS(1196), + [sym_word] = ACTIONS(1186), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1810), - [anon_sym_LF] = ACTIONS(1810), - [anon_sym_AMP] = ACTIONS(1810), + [anon_sym_SEMI] = ACTIONS(1862), + [anon_sym_LF] = ACTIONS(1862), + [anon_sym_AMP] = ACTIONS(1862), }, - [730] = { - [anon_sym_PIPE] = ACTIONS(1812), - [anon_sym_RPAREN] = ACTIONS(1814), - [anon_sym_PIPE_AMP] = ACTIONS(1814), - [anon_sym_AMP_AMP] = ACTIONS(1814), - [anon_sym_PIPE_PIPE] = ACTIONS(1814), - [anon_sym_BQUOTE] = ACTIONS(1814), + [754] = { + [anon_sym_PIPE] = ACTIONS(1864), + [anon_sym_RPAREN] = ACTIONS(1866), + [anon_sym_PIPE_AMP] = ACTIONS(1866), + [anon_sym_AMP_AMP] = ACTIONS(1866), + [anon_sym_PIPE_PIPE] = ACTIONS(1866), + [anon_sym_BQUOTE] = ACTIONS(1866), [sym_comment] = ACTIONS(52), }, - [731] = { - [sym__terminated_statement] = STATE(631), - [sym_for_statement] = STATE(387), - [sym_while_statement] = STATE(387), - [sym_if_statement] = STATE(387), - [sym_case_statement] = STATE(387), - [sym_function_definition] = STATE(387), - [sym_subshell] = STATE(387), - [sym_pipeline] = STATE(387), - [sym_list] = STATE(387), - [sym_bracket_command] = STATE(387), - [sym_command] = STATE(387), - [sym_command_name] = STATE(24), - [sym_environment_variable_assignment] = STATE(388), - [sym_subscript] = STATE(26), - [sym_file_redirect] = STATE(27), - [sym_concatenation] = STATE(28), - [sym_string] = STATE(14), - [sym_simple_expansion] = STATE(14), - [sym_expansion] = STATE(14), - [sym_command_substitution] = STATE(14), - [sym_process_substitution] = STATE(14), - [aux_sym_command_repeat1] = STATE(30), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_done] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_LBRACK_LBRACK] = ACTIONS(30), - [anon_sym_LT] = ACTIONS(32), - [anon_sym_GT] = ACTIONS(32), - [anon_sym_GT_GT] = ACTIONS(34), - [anon_sym_AMP_GT] = ACTIONS(32), - [anon_sym_AMP_GT_GT] = ACTIONS(34), - [anon_sym_LT_AMP] = ACTIONS(34), - [anon_sym_GT_AMP] = ACTIONS(34), - [anon_sym_DQUOTE] = ACTIONS(36), - [sym_raw_string] = ACTIONS(38), - [anon_sym_DOLLAR] = ACTIONS(40), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(42), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(44), - [anon_sym_BQUOTE] = ACTIONS(46), - [anon_sym_LT_LPAREN] = ACTIONS(48), - [anon_sym_GT_LPAREN] = ACTIONS(48), - [sym_word] = ACTIONS(50), - [sym_comment] = ACTIONS(52), - }, - [732] = { - [anon_sym_PIPE] = ACTIONS(1818), - [anon_sym_RPAREN] = ACTIONS(1820), - [anon_sym_PIPE_AMP] = ACTIONS(1820), - [anon_sym_AMP_AMP] = ACTIONS(1820), - [anon_sym_PIPE_PIPE] = ACTIONS(1820), - [anon_sym_BQUOTE] = ACTIONS(1820), - [sym_comment] = ACTIONS(52), - }, - [733] = { - [anon_sym_fi] = ACTIONS(1822), - [sym_comment] = ACTIONS(52), - }, - [734] = { - [sym__terminated_statement] = STATE(639), + [755] = { + [sym__terminated_statement] = STATE(655), [sym_for_statement] = STATE(394), [sym_while_statement] = STATE(394), [sym_if_statement] = STATE(394), - [sym_elif_clause] = STATE(395), - [sym_else_clause] = STATE(926), [sym_case_statement] = STATE(394), [sym_function_definition] = STATE(394), [sym_subshell] = STATE(394), @@ -19064,7 +19636,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_bracket_command] = STATE(394), [sym_command] = STATE(394), [sym_command_name] = STATE(24), - [sym_environment_variable_assignment] = STATE(397), + [sym_environment_variable_assignment] = STATE(395), [sym_subscript] = STATE(26), [sym_file_redirect] = STATE(27), [sym_concatenation] = STATE(28), @@ -19073,16 +19645,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(14), [sym_command_substitution] = STATE(14), [sym_process_substitution] = STATE(14), - [aux_sym_if_statement_repeat1] = STATE(927), [aux_sym_command_repeat1] = STATE(30), [sym_file_descriptor] = ACTIONS(10), [sym_variable_name] = ACTIONS(12), [anon_sym_for] = ACTIONS(16), [anon_sym_while] = ACTIONS(18), + [anon_sym_done] = ACTIONS(1868), [anon_sym_if] = ACTIONS(20), - [anon_sym_fi] = ACTIONS(1824), - [anon_sym_elif] = ACTIONS(644), - [anon_sym_else] = ACTIONS(646), [anon_sym_case] = ACTIONS(22), [anon_sym_function] = ACTIONS(24), [anon_sym_LPAREN] = ACTIONS(26), @@ -19106,73 +19675,143 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(50), [sym_comment] = ACTIONS(52), }, - [735] = { - [sym_elif_clause] = STATE(642), - [sym_else_clause] = STATE(926), - [anon_sym_fi] = ACTIONS(1822), - [anon_sym_elif] = ACTIONS(1190), - [anon_sym_else] = ACTIONS(1192), + [756] = { + [anon_sym_PIPE] = ACTIONS(1870), + [anon_sym_RPAREN] = ACTIONS(1872), + [anon_sym_PIPE_AMP] = ACTIONS(1872), + [anon_sym_AMP_AMP] = ACTIONS(1872), + [anon_sym_PIPE_PIPE] = ACTIONS(1872), + [anon_sym_BQUOTE] = ACTIONS(1872), [sym_comment] = ACTIONS(52), }, - [736] = { - [sym_case_item] = STATE(645), - [sym_concatenation] = STATE(646), - [sym_string] = STATE(644), - [sym_simple_expansion] = STATE(644), - [sym_expansion] = STATE(644), - [sym_command_substitution] = STATE(644), - [sym_process_substitution] = STATE(644), - [aux_sym_case_statement_repeat1] = STATE(929), - [anon_sym_esac] = ACTIONS(1826), + [757] = { + [anon_sym_fi] = ACTIONS(1874), + [sym_comment] = ACTIONS(52), + }, + [758] = { + [sym__terminated_statement] = STATE(663), + [sym_for_statement] = STATE(401), + [sym_while_statement] = STATE(401), + [sym_if_statement] = STATE(401), + [sym_elif_clause] = STATE(402), + [sym_else_clause] = STATE(963), + [sym_case_statement] = STATE(401), + [sym_function_definition] = STATE(401), + [sym_subshell] = STATE(401), + [sym_pipeline] = STATE(401), + [sym_list] = STATE(401), + [sym_bracket_command] = STATE(401), + [sym_command] = STATE(401), + [sym_command_name] = STATE(24), + [sym_environment_variable_assignment] = STATE(404), + [sym_subscript] = STATE(26), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(28), + [sym_string] = STATE(14), + [sym_simple_expansion] = STATE(14), + [sym_expansion] = STATE(14), + [sym_command_substitution] = STATE(14), + [sym_process_substitution] = STATE(14), + [aux_sym_if_statement_repeat1] = STATE(964), + [aux_sym_command_repeat1] = STATE(30), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(12), + [anon_sym_for] = ACTIONS(16), + [anon_sym_while] = ACTIONS(18), + [anon_sym_if] = ACTIONS(20), + [anon_sym_fi] = ACTIONS(1876), + [anon_sym_elif] = ACTIONS(658), + [anon_sym_else] = ACTIONS(660), + [anon_sym_case] = ACTIONS(22), + [anon_sym_function] = ACTIONS(24), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_LBRACK_LBRACK] = ACTIONS(30), + [anon_sym_LT] = ACTIONS(32), + [anon_sym_GT] = ACTIONS(32), + [anon_sym_GT_GT] = ACTIONS(34), + [anon_sym_AMP_GT] = ACTIONS(32), + [anon_sym_AMP_GT_GT] = ACTIONS(34), + [anon_sym_LT_AMP] = ACTIONS(34), + [anon_sym_GT_AMP] = ACTIONS(34), + [anon_sym_DQUOTE] = ACTIONS(36), + [sym_raw_string] = ACTIONS(38), + [anon_sym_DOLLAR] = ACTIONS(40), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(42), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(44), + [anon_sym_BQUOTE] = ACTIONS(46), + [anon_sym_LT_LPAREN] = ACTIONS(48), + [anon_sym_GT_LPAREN] = ACTIONS(48), + [sym_word] = ACTIONS(50), + [sym_comment] = ACTIONS(52), + }, + [759] = { + [sym_elif_clause] = STATE(666), + [sym_else_clause] = STATE(963), + [anon_sym_fi] = ACTIONS(1874), + [anon_sym_elif] = ACTIONS(1216), + [anon_sym_else] = ACTIONS(1218), + [sym_comment] = ACTIONS(52), + }, + [760] = { + [sym_case_item] = STATE(669), + [sym_concatenation] = STATE(670), + [sym_string] = STATE(668), + [sym_simple_expansion] = STATE(668), + [sym_expansion] = STATE(668), + [sym_command_substitution] = STATE(668), + [sym_process_substitution] = STATE(668), + [aux_sym_case_statement_repeat1] = STATE(966), + [anon_sym_esac] = ACTIONS(1878), [anon_sym_DQUOTE] = ACTIONS(254), - [sym_raw_string] = ACTIONS(1196), + [sym_raw_string] = ACTIONS(1222), [anon_sym_DOLLAR] = ACTIONS(258), [anon_sym_DOLLAR_LBRACE] = ACTIONS(260), [anon_sym_DOLLAR_LPAREN] = ACTIONS(262), [anon_sym_BQUOTE] = ACTIONS(264), [anon_sym_LT_LPAREN] = ACTIONS(266), [anon_sym_GT_LPAREN] = ACTIONS(266), - [sym_word] = ACTIONS(1198), + [sym_word] = ACTIONS(1224), [sym_comment] = ACTIONS(52), }, - [737] = { - [anon_sym_SEMI_SEMI] = ACTIONS(1828), + [761] = { + [anon_sym_SEMI_SEMI] = ACTIONS(1880), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1828), - [anon_sym_LF] = ACTIONS(1828), - [anon_sym_AMP] = ACTIONS(1828), + [anon_sym_SEMI] = ACTIONS(1880), + [anon_sym_LF] = ACTIONS(1880), + [anon_sym_AMP] = ACTIONS(1880), }, - [738] = { - [sym_compound_statement] = STATE(931), + [762] = { + [sym_compound_statement] = STATE(968), [anon_sym_LBRACE] = ACTIONS(478), [sym_comment] = ACTIONS(52), }, - [739] = { - [anon_sym_PIPE] = ACTIONS(1830), - [anon_sym_RPAREN] = ACTIONS(1832), - [anon_sym_PIPE_AMP] = ACTIONS(1832), - [anon_sym_AMP_AMP] = ACTIONS(1832), - [anon_sym_PIPE_PIPE] = ACTIONS(1832), - [anon_sym_BQUOTE] = ACTIONS(1832), + [763] = { + [anon_sym_PIPE] = ACTIONS(1882), + [anon_sym_RPAREN] = ACTIONS(1884), + [anon_sym_PIPE_AMP] = ACTIONS(1884), + [anon_sym_AMP_AMP] = ACTIONS(1884), + [anon_sym_PIPE_PIPE] = ACTIONS(1884), + [anon_sym_BQUOTE] = ACTIONS(1884), [sym_comment] = ACTIONS(52), }, - [740] = { - [anon_sym_PIPE] = ACTIONS(1834), - [anon_sym_RPAREN] = ACTIONS(1836), - [anon_sym_PIPE_AMP] = ACTIONS(1836), - [anon_sym_AMP_AMP] = ACTIONS(1836), - [anon_sym_PIPE_PIPE] = ACTIONS(1836), - [anon_sym_BQUOTE] = ACTIONS(1836), + [764] = { + [anon_sym_PIPE] = ACTIONS(1886), + [anon_sym_RPAREN] = ACTIONS(1888), + [anon_sym_PIPE_AMP] = ACTIONS(1888), + [anon_sym_AMP_AMP] = ACTIONS(1888), + [anon_sym_PIPE_PIPE] = ACTIONS(1888), + [anon_sym_BQUOTE] = ACTIONS(1888), [sym_comment] = ACTIONS(52), }, - [741] = { + [765] = { [sym_file_descriptor] = ACTIONS(530), [sym_variable_name] = ACTIONS(530), [anon_sym_for] = ACTIONS(532), [anon_sym_while] = ACTIONS(532), [anon_sym_if] = ACTIONS(532), [anon_sym_case] = ACTIONS(532), - [anon_sym_RPAREN] = ACTIONS(1838), + [anon_sym_RPAREN] = ACTIONS(1890), [anon_sym_function] = ACTIONS(532), [anon_sym_LPAREN] = ACTIONS(530), [anon_sym_LBRACK] = ACTIONS(532), @@ -19195,185 +19834,185 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(534), [sym_comment] = ACTIONS(52), }, - [742] = { - [sym_file_descriptor] = ACTIONS(1336), - [sym__concat] = ACTIONS(1336), - [anon_sym_PIPE] = ACTIONS(1706), - [anon_sym_RPAREN] = ACTIONS(1336), - [anon_sym_PIPE_AMP] = ACTIONS(1336), - [anon_sym_AMP_AMP] = ACTIONS(1336), - [anon_sym_PIPE_PIPE] = ACTIONS(1706), - [anon_sym_LT] = ACTIONS(1706), - [anon_sym_GT] = ACTIONS(1706), - [anon_sym_GT_GT] = ACTIONS(1336), - [anon_sym_AMP_GT] = ACTIONS(1706), - [anon_sym_AMP_GT_GT] = ACTIONS(1336), - [anon_sym_LT_AMP] = ACTIONS(1336), - [anon_sym_GT_AMP] = ACTIONS(1336), - [anon_sym_LT_LT] = ACTIONS(1706), - [anon_sym_LT_LT_DASH] = ACTIONS(1336), - [anon_sym_DQUOTE] = ACTIONS(1336), - [sym_raw_string] = ACTIONS(1336), - [anon_sym_DOLLAR] = ACTIONS(1706), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1336), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1336), - [anon_sym_BQUOTE] = ACTIONS(1336), - [anon_sym_LT_LPAREN] = ACTIONS(1336), - [anon_sym_GT_LPAREN] = ACTIONS(1336), - [sym_word] = ACTIONS(1338), + [766] = { + [sym_file_descriptor] = ACTIONS(1362), + [sym__concat] = ACTIONS(1362), + [anon_sym_PIPE] = ACTIONS(1758), + [anon_sym_RPAREN] = ACTIONS(1362), + [anon_sym_PIPE_AMP] = ACTIONS(1362), + [anon_sym_AMP_AMP] = ACTIONS(1362), + [anon_sym_PIPE_PIPE] = ACTIONS(1758), + [anon_sym_LT] = ACTIONS(1758), + [anon_sym_GT] = ACTIONS(1758), + [anon_sym_GT_GT] = ACTIONS(1362), + [anon_sym_AMP_GT] = ACTIONS(1758), + [anon_sym_AMP_GT_GT] = ACTIONS(1362), + [anon_sym_LT_AMP] = ACTIONS(1362), + [anon_sym_GT_AMP] = ACTIONS(1362), + [anon_sym_LT_LT] = ACTIONS(1758), + [anon_sym_LT_LT_DASH] = ACTIONS(1362), + [anon_sym_DQUOTE] = ACTIONS(1362), + [sym_raw_string] = ACTIONS(1362), + [anon_sym_DOLLAR] = ACTIONS(1758), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1362), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1362), + [anon_sym_BQUOTE] = ACTIONS(1362), + [anon_sym_LT_LPAREN] = ACTIONS(1362), + [anon_sym_GT_LPAREN] = ACTIONS(1362), + [sym_word] = ACTIONS(1364), [sym_comment] = ACTIONS(52), }, - [743] = { - [sym_file_descriptor] = ACTIONS(1340), - [sym__concat] = ACTIONS(1340), - [anon_sym_PIPE] = ACTIONS(1708), - [anon_sym_RPAREN] = ACTIONS(1340), - [anon_sym_PIPE_AMP] = ACTIONS(1340), - [anon_sym_AMP_AMP] = ACTIONS(1340), - [anon_sym_PIPE_PIPE] = ACTIONS(1708), - [anon_sym_LT] = ACTIONS(1708), - [anon_sym_GT] = ACTIONS(1708), - [anon_sym_GT_GT] = ACTIONS(1340), - [anon_sym_AMP_GT] = ACTIONS(1708), - [anon_sym_AMP_GT_GT] = ACTIONS(1340), - [anon_sym_LT_AMP] = ACTIONS(1340), - [anon_sym_GT_AMP] = ACTIONS(1340), - [anon_sym_LT_LT] = ACTIONS(1708), - [anon_sym_LT_LT_DASH] = ACTIONS(1340), - [anon_sym_DQUOTE] = ACTIONS(1340), - [sym_raw_string] = ACTIONS(1340), - [anon_sym_DOLLAR] = ACTIONS(1708), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1340), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1340), - [anon_sym_BQUOTE] = ACTIONS(1340), - [anon_sym_LT_LPAREN] = ACTIONS(1340), - [anon_sym_GT_LPAREN] = ACTIONS(1340), - [sym_word] = ACTIONS(1342), + [767] = { + [sym_file_descriptor] = ACTIONS(1366), + [sym__concat] = ACTIONS(1366), + [anon_sym_PIPE] = ACTIONS(1760), + [anon_sym_RPAREN] = ACTIONS(1366), + [anon_sym_PIPE_AMP] = ACTIONS(1366), + [anon_sym_AMP_AMP] = ACTIONS(1366), + [anon_sym_PIPE_PIPE] = ACTIONS(1760), + [anon_sym_LT] = ACTIONS(1760), + [anon_sym_GT] = ACTIONS(1760), + [anon_sym_GT_GT] = ACTIONS(1366), + [anon_sym_AMP_GT] = ACTIONS(1760), + [anon_sym_AMP_GT_GT] = ACTIONS(1366), + [anon_sym_LT_AMP] = ACTIONS(1366), + [anon_sym_GT_AMP] = ACTIONS(1366), + [anon_sym_LT_LT] = ACTIONS(1760), + [anon_sym_LT_LT_DASH] = ACTIONS(1366), + [anon_sym_DQUOTE] = ACTIONS(1366), + [sym_raw_string] = ACTIONS(1366), + [anon_sym_DOLLAR] = ACTIONS(1760), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1366), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1366), + [anon_sym_BQUOTE] = ACTIONS(1366), + [anon_sym_LT_LPAREN] = ACTIONS(1366), + [anon_sym_GT_LPAREN] = ACTIONS(1366), + [sym_word] = ACTIONS(1368), [sym_comment] = ACTIONS(52), }, - [744] = { - [anon_sym_AT] = ACTIONS(1840), + [768] = { + [anon_sym_AT] = ACTIONS(1892), [sym_comment] = ACTIONS(52), }, - [745] = { - [sym_file_descriptor] = ACTIONS(1346), - [sym__concat] = ACTIONS(1346), - [anon_sym_PIPE] = ACTIONS(1712), - [anon_sym_RPAREN] = ACTIONS(1346), - [anon_sym_PIPE_AMP] = ACTIONS(1346), - [anon_sym_AMP_AMP] = ACTIONS(1346), - [anon_sym_PIPE_PIPE] = ACTIONS(1712), - [anon_sym_LT] = ACTIONS(1712), - [anon_sym_GT] = ACTIONS(1712), - [anon_sym_GT_GT] = ACTIONS(1346), - [anon_sym_AMP_GT] = ACTIONS(1712), - [anon_sym_AMP_GT_GT] = ACTIONS(1346), - [anon_sym_LT_AMP] = ACTIONS(1346), - [anon_sym_GT_AMP] = ACTIONS(1346), - [anon_sym_LT_LT] = ACTIONS(1712), - [anon_sym_LT_LT_DASH] = ACTIONS(1346), - [anon_sym_DQUOTE] = ACTIONS(1346), - [sym_raw_string] = ACTIONS(1346), - [anon_sym_DOLLAR] = ACTIONS(1712), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1346), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1346), - [anon_sym_BQUOTE] = ACTIONS(1346), - [anon_sym_LT_LPAREN] = ACTIONS(1346), - [anon_sym_GT_LPAREN] = ACTIONS(1346), - [sym_word] = ACTIONS(1348), + [769] = { + [sym_file_descriptor] = ACTIONS(1372), + [sym__concat] = ACTIONS(1372), + [anon_sym_PIPE] = ACTIONS(1764), + [anon_sym_RPAREN] = ACTIONS(1372), + [anon_sym_PIPE_AMP] = ACTIONS(1372), + [anon_sym_AMP_AMP] = ACTIONS(1372), + [anon_sym_PIPE_PIPE] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(1764), + [anon_sym_GT] = ACTIONS(1764), + [anon_sym_GT_GT] = ACTIONS(1372), + [anon_sym_AMP_GT] = ACTIONS(1764), + [anon_sym_AMP_GT_GT] = ACTIONS(1372), + [anon_sym_LT_AMP] = ACTIONS(1372), + [anon_sym_GT_AMP] = ACTIONS(1372), + [anon_sym_LT_LT] = ACTIONS(1764), + [anon_sym_LT_LT_DASH] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1372), + [sym_raw_string] = ACTIONS(1372), + [anon_sym_DOLLAR] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1372), + [anon_sym_BQUOTE] = ACTIONS(1372), + [anon_sym_LT_LPAREN] = ACTIONS(1372), + [anon_sym_GT_LPAREN] = ACTIONS(1372), + [sym_word] = ACTIONS(1374), [sym_comment] = ACTIONS(52), }, - [746] = { - [anon_sym_AT] = ACTIONS(1842), + [770] = { + [anon_sym_AT] = ACTIONS(1894), [sym_comment] = ACTIONS(52), }, - [747] = { - [anon_sym_RBRACK] = ACTIONS(1844), + [771] = { + [anon_sym_RBRACK] = ACTIONS(1896), [sym_comment] = ACTIONS(52), }, - [748] = { + [772] = { [aux_sym_concatenation_repeat1] = STATE(192), [sym__concat] = ACTIONS(326), - [anon_sym_RBRACE] = ACTIONS(1846), + [anon_sym_RBRACE] = ACTIONS(1898), [sym_comment] = ACTIONS(52), }, - [749] = { - [anon_sym_RBRACE] = ACTIONS(1846), + [773] = { + [anon_sym_RBRACE] = ACTIONS(1898), [sym_comment] = ACTIONS(52), }, - [750] = { - [anon_sym_RBRACK] = ACTIONS(1848), + [774] = { + [anon_sym_RBRACK] = ACTIONS(1900), [sym_comment] = ACTIONS(52), }, - [751] = { + [775] = { [aux_sym_concatenation_repeat1] = STATE(192), [sym__concat] = ACTIONS(326), - [anon_sym_RBRACE] = ACTIONS(1850), + [anon_sym_RBRACE] = ACTIONS(1902), [sym_comment] = ACTIONS(52), }, - [752] = { - [anon_sym_RBRACE] = ACTIONS(1850), + [776] = { + [anon_sym_RBRACE] = ACTIONS(1902), [sym_comment] = ACTIONS(52), }, - [753] = { - [sym_file_redirect] = STATE(939), - [sym_file_descriptor] = ACTIONS(936), - [anon_sym_PIPE] = ACTIONS(1830), - [anon_sym_RPAREN] = ACTIONS(1832), - [anon_sym_PIPE_AMP] = ACTIONS(1832), - [anon_sym_AMP_AMP] = ACTIONS(1832), - [anon_sym_PIPE_PIPE] = ACTIONS(1832), - [anon_sym_LT] = ACTIONS(942), - [anon_sym_GT] = ACTIONS(942), - [anon_sym_GT_GT] = ACTIONS(944), - [anon_sym_AMP_GT] = ACTIONS(942), - [anon_sym_AMP_GT_GT] = ACTIONS(944), - [anon_sym_LT_AMP] = ACTIONS(944), - [anon_sym_GT_AMP] = ACTIONS(944), - [anon_sym_BQUOTE] = ACTIONS(1832), + [777] = { + [sym_file_redirect] = STATE(976), + [sym_file_descriptor] = ACTIONS(950), + [anon_sym_PIPE] = ACTIONS(1882), + [anon_sym_RPAREN] = ACTIONS(1884), + [anon_sym_PIPE_AMP] = ACTIONS(1884), + [anon_sym_AMP_AMP] = ACTIONS(1884), + [anon_sym_PIPE_PIPE] = ACTIONS(1884), + [anon_sym_LT] = ACTIONS(956), + [anon_sym_GT] = ACTIONS(956), + [anon_sym_GT_GT] = ACTIONS(958), + [anon_sym_AMP_GT] = ACTIONS(956), + [anon_sym_AMP_GT_GT] = ACTIONS(958), + [anon_sym_LT_AMP] = ACTIONS(958), + [anon_sym_GT_AMP] = ACTIONS(958), + [anon_sym_BQUOTE] = ACTIONS(1884), [sym_comment] = ACTIONS(52), }, - [754] = { - [sym_file_descriptor] = ACTIONS(1496), - [anon_sym_PIPE] = ACTIONS(1852), - [anon_sym_RPAREN] = ACTIONS(1496), - [anon_sym_PIPE_AMP] = ACTIONS(1496), - [anon_sym_AMP_AMP] = ACTIONS(1496), - [anon_sym_PIPE_PIPE] = ACTIONS(1496), - [anon_sym_LT] = ACTIONS(1852), - [anon_sym_GT] = ACTIONS(1852), - [anon_sym_GT_GT] = ACTIONS(1496), - [anon_sym_AMP_GT] = ACTIONS(1852), - [anon_sym_AMP_GT_GT] = ACTIONS(1496), - [anon_sym_LT_AMP] = ACTIONS(1496), - [anon_sym_GT_AMP] = ACTIONS(1496), - [anon_sym_BQUOTE] = ACTIONS(1496), + [778] = { + [sym_file_descriptor] = ACTIONS(1522), + [anon_sym_PIPE] = ACTIONS(1904), + [anon_sym_RPAREN] = ACTIONS(1522), + [anon_sym_PIPE_AMP] = ACTIONS(1522), + [anon_sym_AMP_AMP] = ACTIONS(1522), + [anon_sym_PIPE_PIPE] = ACTIONS(1522), + [anon_sym_LT] = ACTIONS(1904), + [anon_sym_GT] = ACTIONS(1904), + [anon_sym_GT_GT] = ACTIONS(1522), + [anon_sym_AMP_GT] = ACTIONS(1904), + [anon_sym_AMP_GT_GT] = ACTIONS(1522), + [anon_sym_LT_AMP] = ACTIONS(1522), + [anon_sym_GT_AMP] = ACTIONS(1522), + [anon_sym_BQUOTE] = ACTIONS(1522), [sym_comment] = ACTIONS(52), }, - [755] = { - [sym_concatenation] = STATE(941), - [sym_string] = STATE(940), - [sym_simple_expansion] = STATE(940), - [sym_expansion] = STATE(940), - [sym_command_substitution] = STATE(940), - [sym_process_substitution] = STATE(940), - [anon_sym_DQUOTE] = ACTIONS(1442), - [sym_raw_string] = ACTIONS(1854), - [anon_sym_DOLLAR] = ACTIONS(1446), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1448), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1450), - [anon_sym_BQUOTE] = ACTIONS(1452), - [anon_sym_LT_LPAREN] = ACTIONS(1454), - [anon_sym_GT_LPAREN] = ACTIONS(1454), - [sym_word] = ACTIONS(1856), + [779] = { + [sym_concatenation] = STATE(978), + [sym_string] = STATE(977), + [sym_simple_expansion] = STATE(977), + [sym_expansion] = STATE(977), + [sym_command_substitution] = STATE(977), + [sym_process_substitution] = STATE(977), + [anon_sym_DQUOTE] = ACTIONS(1468), + [sym_raw_string] = ACTIONS(1906), + [anon_sym_DOLLAR] = ACTIONS(1472), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1474), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1476), + [anon_sym_BQUOTE] = ACTIONS(1478), + [anon_sym_LT_LPAREN] = ACTIONS(1480), + [anon_sym_GT_LPAREN] = ACTIONS(1480), + [sym_word] = ACTIONS(1908), [sym_comment] = ACTIONS(52), }, - [756] = { + [780] = { [sym_simple_expansion] = STATE(78), [sym_expansion] = STATE(78), [sym_command_substitution] = STATE(78), - [aux_sym_string_repeat1] = STATE(943), - [anon_sym_DQUOTE] = ACTIONS(1858), + [aux_sym_string_repeat1] = STATE(980), + [anon_sym_DQUOTE] = ACTIONS(1910), [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(132), [anon_sym_DOLLAR] = ACTIONS(134), [anon_sym_DOLLAR_LBRACE] = ACTIONS(136), @@ -19381,9 +20020,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(140), [sym_comment] = ACTIONS(142), }, - [757] = { - [aux_sym_concatenation_repeat1] = STATE(945), - [sym__concat] = ACTIONS(1860), + [781] = { + [aux_sym_concatenation_repeat1] = STATE(982), + [sym__concat] = ACTIONS(1912), [anon_sym_PIPE] = ACTIONS(374), [anon_sym_RPAREN] = ACTIONS(370), [anon_sym_PIPE_AMP] = ACTIONS(370), @@ -19392,27 +20031,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(370), [sym_comment] = ACTIONS(52), }, - [758] = { - [sym_special_variable_name] = STATE(948), - [anon_sym_DOLLAR] = ACTIONS(1862), - [anon_sym_POUND] = ACTIONS(1862), - [anon_sym_AT] = ACTIONS(1862), + [782] = { + [sym_special_variable_name] = STATE(985), + [anon_sym_DOLLAR] = ACTIONS(1914), + [anon_sym_POUND] = ACTIONS(1914), + [anon_sym_AT] = ACTIONS(1914), [sym_comment] = ACTIONS(142), - [sym_simple_variable_name] = ACTIONS(1864), - [anon_sym_STAR] = ACTIONS(1862), - [anon_sym_QMARK] = ACTIONS(1862), - [anon_sym_DASH] = ACTIONS(1862), - [anon_sym_BANG] = ACTIONS(1862), - [anon_sym_0] = ACTIONS(1866), - [anon_sym__] = ACTIONS(1866), + [sym_simple_variable_name] = ACTIONS(1916), + [anon_sym_STAR] = ACTIONS(1914), + [anon_sym_QMARK] = ACTIONS(1914), + [anon_sym_DASH] = ACTIONS(1914), + [anon_sym_BANG] = ACTIONS(1914), + [anon_sym_0] = ACTIONS(1918), + [anon_sym__] = ACTIONS(1918), }, - [759] = { - [sym_special_variable_name] = STATE(951), + [783] = { + [sym_special_variable_name] = STATE(988), [anon_sym_DOLLAR] = ACTIONS(156), - [anon_sym_POUND] = ACTIONS(1868), + [anon_sym_POUND] = ACTIONS(1920), [anon_sym_AT] = ACTIONS(156), [sym_comment] = ACTIONS(142), - [sym_simple_variable_name] = ACTIONS(1870), + [sym_simple_variable_name] = ACTIONS(1922), [anon_sym_STAR] = ACTIONS(156), [anon_sym_QMARK] = ACTIONS(156), [anon_sym_DASH] = ACTIONS(156), @@ -19420,19 +20059,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_0] = ACTIONS(162), [anon_sym__] = ACTIONS(162), }, - [760] = { - [sym_for_statement] = STATE(952), - [sym_while_statement] = STATE(952), - [sym_if_statement] = STATE(952), - [sym_case_statement] = STATE(952), - [sym_function_definition] = STATE(952), - [sym_subshell] = STATE(952), - [sym_pipeline] = STATE(952), - [sym_list] = STATE(952), - [sym_bracket_command] = STATE(952), - [sym_command] = STATE(952), + [784] = { + [sym_for_statement] = STATE(989), + [sym_while_statement] = STATE(989), + [sym_if_statement] = STATE(989), + [sym_case_statement] = STATE(989), + [sym_function_definition] = STATE(989), + [sym_subshell] = STATE(989), + [sym_pipeline] = STATE(989), + [sym_list] = STATE(989), + [sym_bracket_command] = STATE(989), + [sym_command] = STATE(989), [sym_command_name] = STATE(111), - [sym_environment_variable_assignment] = STATE(953), + [sym_environment_variable_assignment] = STATE(990), [sym_subscript] = STATE(113), [sym_file_redirect] = STATE(27), [sym_concatenation] = STATE(114), @@ -19470,19 +20109,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(196), [sym_comment] = ACTIONS(52), }, - [761] = { - [sym_for_statement] = STATE(954), - [sym_while_statement] = STATE(954), - [sym_if_statement] = STATE(954), - [sym_case_statement] = STATE(954), - [sym_function_definition] = STATE(954), - [sym_subshell] = STATE(954), - [sym_pipeline] = STATE(954), - [sym_list] = STATE(954), - [sym_bracket_command] = STATE(954), - [sym_command] = STATE(954), + [785] = { + [sym_for_statement] = STATE(991), + [sym_while_statement] = STATE(991), + [sym_if_statement] = STATE(991), + [sym_case_statement] = STATE(991), + [sym_function_definition] = STATE(991), + [sym_subshell] = STATE(991), + [sym_pipeline] = STATE(991), + [sym_list] = STATE(991), + [sym_bracket_command] = STATE(991), + [sym_command] = STATE(991), [sym_command_name] = STATE(117), - [sym_environment_variable_assignment] = STATE(955), + [sym_environment_variable_assignment] = STATE(992), [sym_subscript] = STATE(113), [sym_file_redirect] = STATE(27), [sym_concatenation] = STATE(114), @@ -19520,19 +20159,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(196), [sym_comment] = ACTIONS(52), }, - [762] = { - [sym_for_statement] = STATE(956), - [sym_while_statement] = STATE(956), - [sym_if_statement] = STATE(956), - [sym_case_statement] = STATE(956), - [sym_function_definition] = STATE(956), - [sym_subshell] = STATE(956), - [sym_pipeline] = STATE(956), - [sym_list] = STATE(956), - [sym_bracket_command] = STATE(956), - [sym_command] = STATE(956), + [786] = { + [sym_for_statement] = STATE(993), + [sym_while_statement] = STATE(993), + [sym_if_statement] = STATE(993), + [sym_case_statement] = STATE(993), + [sym_function_definition] = STATE(993), + [sym_subshell] = STATE(993), + [sym_pipeline] = STATE(993), + [sym_list] = STATE(993), + [sym_bracket_command] = STATE(993), + [sym_command] = STATE(993), [sym_command_name] = STATE(111), - [sym_environment_variable_assignment] = STATE(957), + [sym_environment_variable_assignment] = STATE(994), [sym_subscript] = STATE(113), [sym_file_redirect] = STATE(27), [sym_concatenation] = STATE(114), @@ -19570,7 +20209,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(196), [sym_comment] = ACTIONS(52), }, - [763] = { + [787] = { [anon_sym_PIPE] = ACTIONS(374), [anon_sym_RPAREN] = ACTIONS(370), [anon_sym_PIPE_AMP] = ACTIONS(370), @@ -19579,10 +20218,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(370), [sym_comment] = ACTIONS(52), }, - [764] = { - [aux_sym_concatenation_repeat1] = STATE(769), + [788] = { + [aux_sym_concatenation_repeat1] = STATE(793), [sym_file_descriptor] = ACTIONS(580), - [sym__concat] = ACTIONS(1472), + [sym__concat] = ACTIONS(1498), [anon_sym_PIPE] = ACTIONS(582), [anon_sym_RPAREN] = ACTIONS(580), [anon_sym_PIPE_AMP] = ACTIONS(580), @@ -19600,7 +20239,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(580), [sym_comment] = ACTIONS(52), }, - [765] = { + [789] = { [sym_file_descriptor] = ACTIONS(580), [anon_sym_PIPE] = ACTIONS(582), [anon_sym_RPAREN] = ACTIONS(580), @@ -19619,31 +20258,31 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(580), [sym_comment] = ACTIONS(52), }, - [766] = { + [790] = { [sym_file_descriptor] = ACTIONS(386), [sym__concat] = ACTIONS(386), - [anon_sym_PIPE] = ACTIONS(694), + [anon_sym_PIPE] = ACTIONS(708), [anon_sym_RPAREN] = ACTIONS(386), [anon_sym_PIPE_AMP] = ACTIONS(386), [anon_sym_AMP_AMP] = ACTIONS(386), [anon_sym_PIPE_PIPE] = ACTIONS(386), - [anon_sym_LT] = ACTIONS(694), - [anon_sym_GT] = ACTIONS(694), + [anon_sym_LT] = ACTIONS(708), + [anon_sym_GT] = ACTIONS(708), [anon_sym_GT_GT] = ACTIONS(386), - [anon_sym_AMP_GT] = ACTIONS(694), + [anon_sym_AMP_GT] = ACTIONS(708), [anon_sym_AMP_GT_GT] = ACTIONS(386), [anon_sym_LT_AMP] = ACTIONS(386), [anon_sym_GT_AMP] = ACTIONS(386), - [anon_sym_LT_LT] = ACTIONS(694), + [anon_sym_LT_LT] = ACTIONS(708), [anon_sym_LT_LT_DASH] = ACTIONS(386), [anon_sym_BQUOTE] = ACTIONS(386), [sym_comment] = ACTIONS(52), }, - [767] = { + [791] = { [sym_simple_expansion] = STATE(253), [sym_expansion] = STATE(253), [sym_command_substitution] = STATE(253), - [anon_sym_DQUOTE] = ACTIONS(1872), + [anon_sym_DQUOTE] = ACTIONS(1924), [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(406), [anon_sym_DOLLAR] = ACTIONS(134), [anon_sym_DOLLAR_LBRACE] = ACTIONS(136), @@ -19651,44 +20290,44 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(140), [sym_comment] = ACTIONS(142), }, - [768] = { - [sym_string] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [anon_sym_DQUOTE] = ACTIONS(954), - [sym_raw_string] = ACTIONS(1874), - [anon_sym_DOLLAR] = ACTIONS(958), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(960), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(962), - [anon_sym_BQUOTE] = ACTIONS(964), - [anon_sym_LT_LPAREN] = ACTIONS(966), - [anon_sym_GT_LPAREN] = ACTIONS(966), - [sym_word] = ACTIONS(1876), + [792] = { + [sym_string] = STATE(996), + [sym_simple_expansion] = STATE(996), + [sym_expansion] = STATE(996), + [sym_command_substitution] = STATE(996), + [sym_process_substitution] = STATE(996), + [anon_sym_DQUOTE] = ACTIONS(968), + [sym_raw_string] = ACTIONS(1926), + [anon_sym_DOLLAR] = ACTIONS(972), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(974), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(976), + [anon_sym_BQUOTE] = ACTIONS(978), + [anon_sym_LT_LPAREN] = ACTIONS(980), + [anon_sym_GT_LPAREN] = ACTIONS(980), + [sym_word] = ACTIONS(1928), [sym_comment] = ACTIONS(52), }, - [769] = { + [793] = { [sym_file_descriptor] = ACTIONS(412), - [sym__concat] = ACTIONS(1878), - [anon_sym_PIPE] = ACTIONS(704), + [sym__concat] = ACTIONS(1930), + [anon_sym_PIPE] = ACTIONS(718), [anon_sym_RPAREN] = ACTIONS(412), [anon_sym_PIPE_AMP] = ACTIONS(412), [anon_sym_AMP_AMP] = ACTIONS(412), [anon_sym_PIPE_PIPE] = ACTIONS(412), - [anon_sym_LT] = ACTIONS(704), - [anon_sym_GT] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(718), + [anon_sym_GT] = ACTIONS(718), [anon_sym_GT_GT] = ACTIONS(412), - [anon_sym_AMP_GT] = ACTIONS(704), + [anon_sym_AMP_GT] = ACTIONS(718), [anon_sym_AMP_GT_GT] = ACTIONS(412), [anon_sym_LT_AMP] = ACTIONS(412), [anon_sym_GT_AMP] = ACTIONS(412), - [anon_sym_LT_LT] = ACTIONS(704), + [anon_sym_LT_LT] = ACTIONS(718), [anon_sym_LT_LT_DASH] = ACTIONS(412), [anon_sym_BQUOTE] = ACTIONS(412), [sym_comment] = ACTIONS(52), }, - [770] = { + [794] = { [sym_file_descriptor] = ACTIONS(418), [sym__concat] = ACTIONS(418), [anon_sym_PIPE] = ACTIONS(430), @@ -19708,48 +20347,48 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(418), [sym_comment] = ACTIONS(52), }, - [771] = { + [795] = { [sym_file_descriptor] = ACTIONS(422), [sym__concat] = ACTIONS(422), - [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_PIPE] = ACTIONS(720), [anon_sym_RPAREN] = ACTIONS(422), [anon_sym_PIPE_AMP] = ACTIONS(422), [anon_sym_AMP_AMP] = ACTIONS(422), [anon_sym_PIPE_PIPE] = ACTIONS(422), - [anon_sym_LT] = ACTIONS(706), - [anon_sym_GT] = ACTIONS(706), + [anon_sym_LT] = ACTIONS(720), + [anon_sym_GT] = ACTIONS(720), [anon_sym_GT_GT] = ACTIONS(422), - [anon_sym_AMP_GT] = ACTIONS(706), + [anon_sym_AMP_GT] = ACTIONS(720), [anon_sym_AMP_GT_GT] = ACTIONS(422), [anon_sym_LT_AMP] = ACTIONS(422), [anon_sym_GT_AMP] = ACTIONS(422), - [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(720), [anon_sym_LT_LT_DASH] = ACTIONS(422), [anon_sym_BQUOTE] = ACTIONS(422), [sym_comment] = ACTIONS(52), }, - [772] = { + [796] = { [sym_file_descriptor] = ACTIONS(426), [sym__concat] = ACTIONS(426), - [anon_sym_PIPE] = ACTIONS(708), + [anon_sym_PIPE] = ACTIONS(722), [anon_sym_RPAREN] = ACTIONS(426), [anon_sym_PIPE_AMP] = ACTIONS(426), [anon_sym_AMP_AMP] = ACTIONS(426), [anon_sym_PIPE_PIPE] = ACTIONS(426), - [anon_sym_LT] = ACTIONS(708), - [anon_sym_GT] = ACTIONS(708), + [anon_sym_LT] = ACTIONS(722), + [anon_sym_GT] = ACTIONS(722), [anon_sym_GT_GT] = ACTIONS(426), - [anon_sym_AMP_GT] = ACTIONS(708), + [anon_sym_AMP_GT] = ACTIONS(722), [anon_sym_AMP_GT_GT] = ACTIONS(426), [anon_sym_LT_AMP] = ACTIONS(426), [anon_sym_GT_AMP] = ACTIONS(426), - [anon_sym_LT_LT] = ACTIONS(708), + [anon_sym_LT_LT] = ACTIONS(722), [anon_sym_LT_LT_DASH] = ACTIONS(426), [anon_sym_BQUOTE] = ACTIONS(426), [sym_comment] = ACTIONS(52), }, - [773] = { - [sym_special_variable_name] = STATE(962), + [797] = { + [sym_special_variable_name] = STATE(999), [anon_sym_RBRACE] = ACTIONS(418), [anon_sym_LBRACK] = ACTIONS(418), [anon_sym_EQ] = ACTIONS(418), @@ -19762,7 +20401,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(418), [anon_sym_SLASH] = ACTIONS(418), [sym_comment] = ACTIONS(142), - [sym_simple_variable_name] = ACTIONS(1880), + [sym_simple_variable_name] = ACTIONS(1932), [anon_sym_STAR] = ACTIONS(156), [anon_sym_QMARK] = ACTIONS(156), [anon_sym_DASH] = ACTIONS(156), @@ -19770,41 +20409,41 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_0] = ACTIONS(162), [anon_sym__] = ACTIONS(162), }, - [774] = { - [anon_sym_RBRACE] = ACTIONS(1882), - [anon_sym_LBRACK] = ACTIONS(1884), - [anon_sym_EQ] = ACTIONS(1886), - [anon_sym_COLON] = ACTIONS(1888), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_SLASH] = ACTIONS(1886), + [798] = { + [anon_sym_RBRACE] = ACTIONS(1934), + [anon_sym_LBRACK] = ACTIONS(1936), + [anon_sym_EQ] = ACTIONS(1938), + [anon_sym_COLON] = ACTIONS(1940), + [anon_sym_COLON_QMARK] = ACTIONS(1938), + [anon_sym_COLON_DASH] = ACTIONS(1938), + [anon_sym_PERCENT] = ACTIONS(1938), + [anon_sym_SLASH] = ACTIONS(1938), [sym_comment] = ACTIONS(52), }, - [775] = { - [anon_sym_RBRACE] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_EQ] = ACTIONS(1894), - [anon_sym_COLON] = ACTIONS(1896), - [anon_sym_COLON_QMARK] = ACTIONS(1894), - [anon_sym_COLON_DASH] = ACTIONS(1894), - [anon_sym_PERCENT] = ACTIONS(1894), - [anon_sym_SLASH] = ACTIONS(1894), + [799] = { + [anon_sym_RBRACE] = ACTIONS(1942), + [anon_sym_LBRACK] = ACTIONS(1944), + [anon_sym_EQ] = ACTIONS(1946), + [anon_sym_COLON] = ACTIONS(1948), + [anon_sym_COLON_QMARK] = ACTIONS(1946), + [anon_sym_COLON_DASH] = ACTIONS(1946), + [anon_sym_PERCENT] = ACTIONS(1946), + [anon_sym_SLASH] = ACTIONS(1946), [sym_comment] = ACTIONS(52), }, - [776] = { + [800] = { [anon_sym_PIPE] = ACTIONS(480), - [anon_sym_RPAREN] = ACTIONS(1898), + [anon_sym_RPAREN] = ACTIONS(1950), [anon_sym_PIPE_AMP] = ACTIONS(484), [anon_sym_AMP_AMP] = ACTIONS(486), [anon_sym_PIPE_PIPE] = ACTIONS(486), [sym_comment] = ACTIONS(52), }, - [777] = { + [801] = { [sym_file_descriptor] = ACTIONS(238), [sym_variable_name] = ACTIONS(238), [anon_sym_PIPE] = ACTIONS(480), - [anon_sym_RPAREN] = ACTIONS(1898), + [anon_sym_RPAREN] = ACTIONS(1950), [anon_sym_PIPE_AMP] = ACTIONS(484), [anon_sym_AMP_AMP] = ACTIONS(486), [anon_sym_PIPE_PIPE] = ACTIONS(506), @@ -19826,15 +20465,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(240), [sym_comment] = ACTIONS(52), }, - [778] = { + [802] = { [anon_sym_PIPE] = ACTIONS(510), [anon_sym_PIPE_AMP] = ACTIONS(512), [anon_sym_AMP_AMP] = ACTIONS(514), [anon_sym_PIPE_PIPE] = ACTIONS(514), - [anon_sym_BQUOTE] = ACTIONS(1898), + [anon_sym_BQUOTE] = ACTIONS(1950), [sym_comment] = ACTIONS(52), }, - [779] = { + [803] = { [sym_file_descriptor] = ACTIONS(238), [sym_variable_name] = ACTIONS(238), [anon_sym_PIPE] = ACTIONS(510), @@ -19853,25 +20492,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(242), [anon_sym_DOLLAR_LBRACE] = ACTIONS(238), [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(1898), + [anon_sym_BQUOTE] = ACTIONS(1950), [anon_sym_LT_LPAREN] = ACTIONS(238), [anon_sym_GT_LPAREN] = ACTIONS(238), [sym_word] = ACTIONS(240), [sym_comment] = ACTIONS(52), }, - [780] = { + [804] = { [anon_sym_PIPE] = ACTIONS(480), - [anon_sym_RPAREN] = ACTIONS(1900), + [anon_sym_RPAREN] = ACTIONS(1952), [anon_sym_PIPE_AMP] = ACTIONS(484), [anon_sym_AMP_AMP] = ACTIONS(486), [anon_sym_PIPE_PIPE] = ACTIONS(486), [sym_comment] = ACTIONS(52), }, - [781] = { + [805] = { [sym_file_descriptor] = ACTIONS(238), [sym_variable_name] = ACTIONS(238), [anon_sym_PIPE] = ACTIONS(480), - [anon_sym_RPAREN] = ACTIONS(1900), + [anon_sym_RPAREN] = ACTIONS(1952), [anon_sym_PIPE_AMP] = ACTIONS(484), [anon_sym_AMP_AMP] = ACTIONS(486), [anon_sym_PIPE_PIPE] = ACTIONS(506), @@ -19893,43 +20532,43 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(240), [sym_comment] = ACTIONS(52), }, - [782] = { - [sym_file_descriptor] = ACTIONS(1554), - [anon_sym_PIPE] = ACTIONS(1902), - [anon_sym_RPAREN] = ACTIONS(1554), - [anon_sym_PIPE_AMP] = ACTIONS(1554), - [anon_sym_AMP_AMP] = ACTIONS(1554), - [anon_sym_PIPE_PIPE] = ACTIONS(1554), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_GT] = ACTIONS(1902), - [anon_sym_GT_GT] = ACTIONS(1554), - [anon_sym_AMP_GT] = ACTIONS(1902), - [anon_sym_AMP_GT_GT] = ACTIONS(1554), - [anon_sym_LT_AMP] = ACTIONS(1554), - [anon_sym_GT_AMP] = ACTIONS(1554), - [anon_sym_LT_LT] = ACTIONS(1902), - [anon_sym_LT_LT_DASH] = ACTIONS(1554), - [anon_sym_BQUOTE] = ACTIONS(1554), + [806] = { + [sym_file_descriptor] = ACTIONS(1580), + [anon_sym_PIPE] = ACTIONS(1954), + [anon_sym_RPAREN] = ACTIONS(1580), + [anon_sym_PIPE_AMP] = ACTIONS(1580), + [anon_sym_AMP_AMP] = ACTIONS(1580), + [anon_sym_PIPE_PIPE] = ACTIONS(1580), + [anon_sym_LT] = ACTIONS(1954), + [anon_sym_GT] = ACTIONS(1954), + [anon_sym_GT_GT] = ACTIONS(1580), + [anon_sym_AMP_GT] = ACTIONS(1954), + [anon_sym_AMP_GT_GT] = ACTIONS(1580), + [anon_sym_LT_AMP] = ACTIONS(1580), + [anon_sym_GT_AMP] = ACTIONS(1580), + [anon_sym_LT_LT] = ACTIONS(1954), + [anon_sym_LT_LT_DASH] = ACTIONS(1580), + [anon_sym_BQUOTE] = ACTIONS(1580), [sym_comment] = ACTIONS(52), }, - [783] = { - [sym_simple_expansion] = STATE(823), - [sym_expansion] = STATE(823), - [sym__heredoc_middle] = ACTIONS(1568), - [sym__heredoc_end] = ACTIONS(1904), - [anon_sym_DOLLAR] = ACTIONS(1046), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1048), + [807] = { + [sym_simple_expansion] = STATE(847), + [sym_expansion] = STATE(847), + [sym__heredoc_middle] = ACTIONS(1594), + [sym__heredoc_end] = ACTIONS(1956), + [anon_sym_DOLLAR] = ACTIONS(1060), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1062), [sym_comment] = ACTIONS(52), }, - [784] = { - [sym_file_redirect] = STATE(538), - [sym_heredoc_redirect] = STATE(538), + [808] = { + [sym_file_redirect] = STATE(545), + [sym_heredoc_redirect] = STATE(545), [sym_file_descriptor] = ACTIONS(488), - [anon_sym_PIPE] = ACTIONS(1906), - [anon_sym_RPAREN] = ACTIONS(1908), - [anon_sym_PIPE_AMP] = ACTIONS(1908), - [anon_sym_AMP_AMP] = ACTIONS(1908), - [anon_sym_PIPE_PIPE] = ACTIONS(1908), + [anon_sym_PIPE] = ACTIONS(1958), + [anon_sym_RPAREN] = ACTIONS(1960), + [anon_sym_PIPE_AMP] = ACTIONS(1960), + [anon_sym_AMP_AMP] = ACTIONS(1960), + [anon_sym_PIPE_PIPE] = ACTIONS(1960), [anon_sym_LT] = ACTIONS(494), [anon_sym_GT] = ACTIONS(494), [anon_sym_GT_GT] = ACTIONS(496), @@ -19939,48 +20578,48 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_AMP] = ACTIONS(496), [anon_sym_LT_LT] = ACTIONS(498), [anon_sym_LT_LT_DASH] = ACTIONS(500), - [anon_sym_BQUOTE] = ACTIONS(1908), + [anon_sym_BQUOTE] = ACTIONS(1960), [sym_comment] = ACTIONS(52), }, - [785] = { - [anon_sym_PIPE] = ACTIONS(1702), - [anon_sym_RPAREN] = ACTIONS(1702), - [anon_sym_SEMI_SEMI] = ACTIONS(1702), - [anon_sym_PIPE_AMP] = ACTIONS(1702), - [anon_sym_AMP_AMP] = ACTIONS(1702), - [anon_sym_PIPE_PIPE] = ACTIONS(1702), + [809] = { + [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_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1702), - [anon_sym_LF] = ACTIONS(1702), - [anon_sym_AMP] = ACTIONS(1702), + [anon_sym_SEMI] = ACTIONS(1754), + [anon_sym_LF] = ACTIONS(1754), + [anon_sym_AMP] = ACTIONS(1754), }, - [786] = { - [aux_sym_concatenation_repeat1] = STATE(791), - [sym__concat] = ACTIONS(1506), - [anon_sym_PIPE] = ACTIONS(1518), - [anon_sym_RPAREN] = ACTIONS(1518), - [anon_sym_SEMI_SEMI] = ACTIONS(1518), - [anon_sym_PIPE_AMP] = ACTIONS(1518), - [anon_sym_AMP_AMP] = ACTIONS(1518), - [anon_sym_PIPE_PIPE] = ACTIONS(1518), + [810] = { + [aux_sym_concatenation_repeat1] = STATE(815), + [sym__concat] = ACTIONS(1532), + [anon_sym_PIPE] = ACTIONS(1544), + [anon_sym_RPAREN] = ACTIONS(1544), + [anon_sym_SEMI_SEMI] = ACTIONS(1544), + [anon_sym_PIPE_AMP] = ACTIONS(1544), + [anon_sym_AMP_AMP] = ACTIONS(1544), + [anon_sym_PIPE_PIPE] = ACTIONS(1544), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1518), - [anon_sym_LF] = ACTIONS(1518), - [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_SEMI] = ACTIONS(1544), + [anon_sym_LF] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(1544), }, - [787] = { - [anon_sym_PIPE] = ACTIONS(1518), - [anon_sym_RPAREN] = ACTIONS(1518), - [anon_sym_SEMI_SEMI] = ACTIONS(1518), - [anon_sym_PIPE_AMP] = ACTIONS(1518), - [anon_sym_AMP_AMP] = ACTIONS(1518), - [anon_sym_PIPE_PIPE] = ACTIONS(1518), + [811] = { + [anon_sym_PIPE] = ACTIONS(1544), + [anon_sym_RPAREN] = ACTIONS(1544), + [anon_sym_SEMI_SEMI] = ACTIONS(1544), + [anon_sym_PIPE_AMP] = ACTIONS(1544), + [anon_sym_AMP_AMP] = ACTIONS(1544), + [anon_sym_PIPE_PIPE] = ACTIONS(1544), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1518), - [anon_sym_LF] = ACTIONS(1518), - [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_SEMI] = ACTIONS(1544), + [anon_sym_LF] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(1544), }, - [788] = { + [812] = { [sym__concat] = ACTIONS(386), [anon_sym_PIPE] = ACTIONS(388), [anon_sym_RPAREN] = ACTIONS(388), @@ -19993,11 +20632,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(388), [anon_sym_AMP] = ACTIONS(388), }, - [789] = { + [813] = { [sym_simple_expansion] = STATE(253), [sym_expansion] = STATE(253), [sym_command_substitution] = STATE(253), - [anon_sym_DQUOTE] = ACTIONS(1910), + [anon_sym_DQUOTE] = ACTIONS(1962), [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(406), [anon_sym_DOLLAR] = ACTIONS(134), [anon_sym_DOLLAR_LBRACE] = ACTIONS(136), @@ -20005,25 +20644,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(140), [sym_comment] = ACTIONS(142), }, - [790] = { - [sym_string] = STATE(973), - [sym_simple_expansion] = STATE(973), - [sym_expansion] = STATE(973), - [sym_command_substitution] = STATE(973), - [sym_process_substitution] = STATE(973), - [anon_sym_DQUOTE] = ACTIONS(998), - [sym_raw_string] = ACTIONS(1912), - [anon_sym_DOLLAR] = ACTIONS(1002), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1004), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1006), - [anon_sym_BQUOTE] = ACTIONS(1008), - [anon_sym_LT_LPAREN] = ACTIONS(1010), - [anon_sym_GT_LPAREN] = ACTIONS(1010), - [sym_word] = ACTIONS(1914), + [814] = { + [sym_string] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [anon_sym_DQUOTE] = ACTIONS(1012), + [sym_raw_string] = ACTIONS(1964), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1018), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1020), + [anon_sym_BQUOTE] = ACTIONS(1022), + [anon_sym_LT_LPAREN] = ACTIONS(1024), + [anon_sym_GT_LPAREN] = ACTIONS(1024), + [sym_word] = ACTIONS(1966), [sym_comment] = ACTIONS(52), }, - [791] = { - [sym__concat] = ACTIONS(1916), + [815] = { + [sym__concat] = ACTIONS(1968), [anon_sym_PIPE] = ACTIONS(416), [anon_sym_RPAREN] = ACTIONS(416), [anon_sym_SEMI_SEMI] = ACTIONS(416), @@ -20035,7 +20674,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(416), [anon_sym_AMP] = ACTIONS(416), }, - [792] = { + [816] = { [sym__concat] = ACTIONS(418), [anon_sym_PIPE] = ACTIONS(420), [anon_sym_RPAREN] = ACTIONS(420), @@ -20048,7 +20687,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(420), [anon_sym_AMP] = ACTIONS(420), }, - [793] = { + [817] = { [sym__concat] = ACTIONS(422), [anon_sym_PIPE] = ACTIONS(424), [anon_sym_RPAREN] = ACTIONS(424), @@ -20061,7 +20700,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(424), [anon_sym_AMP] = ACTIONS(424), }, - [794] = { + [818] = { [sym__concat] = ACTIONS(426), [anon_sym_PIPE] = ACTIONS(428), [anon_sym_RPAREN] = ACTIONS(428), @@ -20074,8 +20713,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(428), [anon_sym_AMP] = ACTIONS(428), }, - [795] = { - [sym_special_variable_name] = STATE(976), + [819] = { + [sym_special_variable_name] = STATE(1013), [anon_sym_RBRACE] = ACTIONS(418), [anon_sym_LBRACK] = ACTIONS(418), [anon_sym_EQ] = ACTIONS(418), @@ -20088,7 +20727,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(418), [anon_sym_SLASH] = ACTIONS(418), [sym_comment] = ACTIONS(142), - [sym_simple_variable_name] = ACTIONS(1918), + [sym_simple_variable_name] = ACTIONS(1970), [anon_sym_STAR] = ACTIONS(156), [anon_sym_QMARK] = ACTIONS(156), [anon_sym_DASH] = ACTIONS(156), @@ -20096,41 +20735,41 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_0] = ACTIONS(162), [anon_sym__] = ACTIONS(162), }, - [796] = { - [anon_sym_RBRACE] = ACTIONS(1920), - [anon_sym_LBRACK] = ACTIONS(1922), - [anon_sym_EQ] = ACTIONS(1924), - [anon_sym_COLON] = ACTIONS(1926), - [anon_sym_COLON_QMARK] = ACTIONS(1924), - [anon_sym_COLON_DASH] = ACTIONS(1924), - [anon_sym_PERCENT] = ACTIONS(1924), - [anon_sym_SLASH] = ACTIONS(1924), + [820] = { + [anon_sym_RBRACE] = ACTIONS(1972), + [anon_sym_LBRACK] = ACTIONS(1974), + [anon_sym_EQ] = ACTIONS(1976), + [anon_sym_COLON] = ACTIONS(1978), + [anon_sym_COLON_QMARK] = ACTIONS(1976), + [anon_sym_COLON_DASH] = ACTIONS(1976), + [anon_sym_PERCENT] = ACTIONS(1976), + [anon_sym_SLASH] = ACTIONS(1976), [sym_comment] = ACTIONS(52), }, - [797] = { - [anon_sym_RBRACE] = ACTIONS(1928), - [anon_sym_LBRACK] = ACTIONS(1930), - [anon_sym_EQ] = ACTIONS(1932), - [anon_sym_COLON] = ACTIONS(1934), - [anon_sym_COLON_QMARK] = ACTIONS(1932), - [anon_sym_COLON_DASH] = ACTIONS(1932), - [anon_sym_PERCENT] = ACTIONS(1932), - [anon_sym_SLASH] = ACTIONS(1932), + [821] = { + [anon_sym_RBRACE] = ACTIONS(1980), + [anon_sym_LBRACK] = ACTIONS(1982), + [anon_sym_EQ] = ACTIONS(1984), + [anon_sym_COLON] = ACTIONS(1986), + [anon_sym_COLON_QMARK] = ACTIONS(1984), + [anon_sym_COLON_DASH] = ACTIONS(1984), + [anon_sym_PERCENT] = ACTIONS(1984), + [anon_sym_SLASH] = ACTIONS(1984), [sym_comment] = ACTIONS(52), }, - [798] = { + [822] = { [anon_sym_PIPE] = ACTIONS(480), - [anon_sym_RPAREN] = ACTIONS(1936), + [anon_sym_RPAREN] = ACTIONS(1988), [anon_sym_PIPE_AMP] = ACTIONS(484), [anon_sym_AMP_AMP] = ACTIONS(486), [anon_sym_PIPE_PIPE] = ACTIONS(486), [sym_comment] = ACTIONS(52), }, - [799] = { + [823] = { [sym_file_descriptor] = ACTIONS(238), [sym_variable_name] = ACTIONS(238), [anon_sym_PIPE] = ACTIONS(480), - [anon_sym_RPAREN] = ACTIONS(1936), + [anon_sym_RPAREN] = ACTIONS(1988), [anon_sym_PIPE_AMP] = ACTIONS(484), [anon_sym_AMP_AMP] = ACTIONS(486), [anon_sym_PIPE_PIPE] = ACTIONS(506), @@ -20152,15 +20791,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(240), [sym_comment] = ACTIONS(52), }, - [800] = { + [824] = { [anon_sym_PIPE] = ACTIONS(510), [anon_sym_PIPE_AMP] = ACTIONS(512), [anon_sym_AMP_AMP] = ACTIONS(514), [anon_sym_PIPE_PIPE] = ACTIONS(514), - [anon_sym_BQUOTE] = ACTIONS(1936), + [anon_sym_BQUOTE] = ACTIONS(1988), [sym_comment] = ACTIONS(52), }, - [801] = { + [825] = { [sym_file_descriptor] = ACTIONS(238), [sym_variable_name] = ACTIONS(238), [anon_sym_PIPE] = ACTIONS(510), @@ -20179,25 +20818,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(242), [anon_sym_DOLLAR_LBRACE] = ACTIONS(238), [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(1936), + [anon_sym_BQUOTE] = ACTIONS(1988), [anon_sym_LT_LPAREN] = ACTIONS(238), [anon_sym_GT_LPAREN] = ACTIONS(238), [sym_word] = ACTIONS(240), [sym_comment] = ACTIONS(52), }, - [802] = { + [826] = { [anon_sym_PIPE] = ACTIONS(480), - [anon_sym_RPAREN] = ACTIONS(1938), + [anon_sym_RPAREN] = ACTIONS(1990), [anon_sym_PIPE_AMP] = ACTIONS(484), [anon_sym_AMP_AMP] = ACTIONS(486), [anon_sym_PIPE_PIPE] = ACTIONS(486), [sym_comment] = ACTIONS(52), }, - [803] = { + [827] = { [sym_file_descriptor] = ACTIONS(238), [sym_variable_name] = ACTIONS(238), [anon_sym_PIPE] = ACTIONS(480), - [anon_sym_RPAREN] = ACTIONS(1938), + [anon_sym_RPAREN] = ACTIONS(1990), [anon_sym_PIPE_AMP] = ACTIONS(484), [anon_sym_AMP_AMP] = ACTIONS(486), [anon_sym_PIPE_PIPE] = ACTIONS(506), @@ -20219,238 +20858,238 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(240), [sym_comment] = ACTIONS(52), }, - [804] = { - [sym_file_descriptor] = ACTIONS(820), - [sym__concat] = ACTIONS(820), - [anon_sym_PIPE] = ACTIONS(822), - [anon_sym_RPAREN] = ACTIONS(822), - [anon_sym_SEMI_SEMI] = ACTIONS(822), - [anon_sym_PIPE_AMP] = ACTIONS(822), - [anon_sym_AMP_AMP] = ACTIONS(822), - [anon_sym_PIPE_PIPE] = ACTIONS(822), - [anon_sym_LT] = ACTIONS(822), - [anon_sym_GT] = ACTIONS(822), - [anon_sym_GT_GT] = ACTIONS(822), - [anon_sym_AMP_GT] = ACTIONS(822), - [anon_sym_AMP_GT_GT] = ACTIONS(822), - [anon_sym_LT_AMP] = ACTIONS(822), - [anon_sym_GT_AMP] = ACTIONS(822), - [anon_sym_LT_LT] = ACTIONS(822), - [anon_sym_LT_LT_DASH] = ACTIONS(822), + [828] = { + [sym_file_descriptor] = ACTIONS(834), + [sym__concat] = ACTIONS(834), + [anon_sym_PIPE] = ACTIONS(836), + [anon_sym_RPAREN] = ACTIONS(836), + [anon_sym_SEMI_SEMI] = ACTIONS(836), + [anon_sym_PIPE_AMP] = ACTIONS(836), + [anon_sym_AMP_AMP] = ACTIONS(836), + [anon_sym_PIPE_PIPE] = ACTIONS(836), + [anon_sym_LT] = ACTIONS(836), + [anon_sym_GT] = ACTIONS(836), + [anon_sym_GT_GT] = ACTIONS(836), + [anon_sym_AMP_GT] = ACTIONS(836), + [anon_sym_AMP_GT_GT] = ACTIONS(836), + [anon_sym_LT_AMP] = ACTIONS(836), + [anon_sym_GT_AMP] = ACTIONS(836), + [anon_sym_LT_LT] = ACTIONS(836), + [anon_sym_LT_LT_DASH] = ACTIONS(836), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(822), - [anon_sym_LF] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(822), + [anon_sym_SEMI] = ACTIONS(836), + [anon_sym_LF] = ACTIONS(836), + [anon_sym_AMP] = ACTIONS(836), }, - [805] = { - [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), + [829] = { + [sym_file_descriptor] = ACTIONS(842), + [sym__concat] = ACTIONS(842), + [anon_sym_PIPE] = ACTIONS(844), + [anon_sym_RPAREN] = ACTIONS(844), + [anon_sym_SEMI_SEMI] = ACTIONS(844), + [anon_sym_PIPE_AMP] = ACTIONS(844), + [anon_sym_AMP_AMP] = ACTIONS(844), + [anon_sym_PIPE_PIPE] = ACTIONS(844), + [anon_sym_LT] = ACTIONS(844), + [anon_sym_GT] = ACTIONS(844), + [anon_sym_GT_GT] = ACTIONS(844), + [anon_sym_AMP_GT] = ACTIONS(844), + [anon_sym_AMP_GT_GT] = ACTIONS(844), + [anon_sym_LT_AMP] = ACTIONS(844), + [anon_sym_GT_AMP] = ACTIONS(844), + [anon_sym_LT_LT] = ACTIONS(844), + [anon_sym_LT_LT_DASH] = ACTIONS(844), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(830), - [anon_sym_LF] = ACTIONS(830), - [anon_sym_AMP] = ACTIONS(830), + [anon_sym_SEMI] = ACTIONS(844), + [anon_sym_LF] = ACTIONS(844), + [anon_sym_AMP] = ACTIONS(844), }, - [806] = { - [sym_string] = STATE(985), - [sym_simple_expansion] = STATE(985), - [sym_expansion] = STATE(985), - [sym_command_substitution] = STATE(985), - [sym_process_substitution] = STATE(985), + [830] = { + [sym_string] = STATE(1022), + [sym_simple_expansion] = STATE(1022), + [sym_expansion] = STATE(1022), + [sym_command_substitution] = STATE(1022), + [sym_process_substitution] = STATE(1022), [anon_sym_DQUOTE] = ACTIONS(540), - [sym_raw_string] = ACTIONS(1940), + [sym_raw_string] = ACTIONS(1992), [anon_sym_DOLLAR] = ACTIONS(544), [anon_sym_DOLLAR_LBRACE] = ACTIONS(546), [anon_sym_DOLLAR_LPAREN] = ACTIONS(548), [anon_sym_BQUOTE] = ACTIONS(550), [anon_sym_LT_LPAREN] = ACTIONS(552), [anon_sym_GT_LPAREN] = ACTIONS(552), - [sym_word] = ACTIONS(1942), + [sym_word] = ACTIONS(1994), [sym_comment] = ACTIONS(52), }, - [807] = { - [anon_sym_RBRACE] = ACTIONS(1944), - [anon_sym_LBRACK] = ACTIONS(1946), + [831] = { + [anon_sym_RBRACE] = ACTIONS(1996), + [anon_sym_LBRACK] = ACTIONS(1998), [sym_comment] = ACTIONS(52), }, - [808] = { - [anon_sym_RBRACE] = ACTIONS(1948), - [anon_sym_LBRACK] = ACTIONS(1950), + [832] = { + [anon_sym_RBRACE] = ACTIONS(2000), + [anon_sym_LBRACK] = ACTIONS(2002), [sym_comment] = ACTIONS(52), }, - [809] = { - [sym_file_descriptor] = ACTIONS(844), - [sym__concat] = ACTIONS(844), - [anon_sym_PIPE] = ACTIONS(846), - [anon_sym_RPAREN] = ACTIONS(846), - [anon_sym_SEMI_SEMI] = ACTIONS(846), - [anon_sym_PIPE_AMP] = ACTIONS(846), - [anon_sym_AMP_AMP] = ACTIONS(846), - [anon_sym_PIPE_PIPE] = ACTIONS(846), - [anon_sym_LT] = ACTIONS(846), - [anon_sym_GT] = ACTIONS(846), - [anon_sym_GT_GT] = ACTIONS(846), - [anon_sym_AMP_GT] = ACTIONS(846), - [anon_sym_AMP_GT_GT] = ACTIONS(846), - [anon_sym_LT_AMP] = ACTIONS(846), - [anon_sym_GT_AMP] = ACTIONS(846), - [anon_sym_LT_LT] = ACTIONS(846), - [anon_sym_LT_LT_DASH] = ACTIONS(846), + [833] = { + [sym_file_descriptor] = ACTIONS(858), + [sym__concat] = ACTIONS(858), + [anon_sym_PIPE] = ACTIONS(860), + [anon_sym_RPAREN] = ACTIONS(860), + [anon_sym_SEMI_SEMI] = ACTIONS(860), + [anon_sym_PIPE_AMP] = ACTIONS(860), + [anon_sym_AMP_AMP] = ACTIONS(860), + [anon_sym_PIPE_PIPE] = ACTIONS(860), + [anon_sym_LT] = ACTIONS(860), + [anon_sym_GT] = ACTIONS(860), + [anon_sym_GT_GT] = ACTIONS(860), + [anon_sym_AMP_GT] = ACTIONS(860), + [anon_sym_AMP_GT_GT] = ACTIONS(860), + [anon_sym_LT_AMP] = ACTIONS(860), + [anon_sym_GT_AMP] = ACTIONS(860), + [anon_sym_LT_LT] = ACTIONS(860), + [anon_sym_LT_LT_DASH] = ACTIONS(860), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(846), - [anon_sym_LF] = ACTIONS(846), - [anon_sym_AMP] = ACTIONS(846), + [anon_sym_SEMI] = ACTIONS(860), + [anon_sym_LF] = ACTIONS(860), + [anon_sym_AMP] = ACTIONS(860), }, - [810] = { - [anon_sym_AT] = ACTIONS(1952), + [834] = { + [anon_sym_AT] = ACTIONS(2004), [sym_comment] = ACTIONS(52), }, - [811] = { - [sym_concatenation] = STATE(992), - [sym_string] = STATE(991), - [sym_simple_expansion] = STATE(991), - [sym_expansion] = STATE(991), - [sym_command_substitution] = STATE(991), - [sym_process_substitution] = STATE(991), + [835] = { + [sym_concatenation] = STATE(1029), + [sym_string] = STATE(1028), + [sym_simple_expansion] = STATE(1028), + [sym_expansion] = STATE(1028), + [sym_command_substitution] = STATE(1028), + [sym_process_substitution] = STATE(1028), [anon_sym_DQUOTE] = ACTIONS(82), - [sym_raw_string] = ACTIONS(1954), + [sym_raw_string] = ACTIONS(2006), [anon_sym_DOLLAR] = ACTIONS(86), [anon_sym_DOLLAR_LBRACE] = ACTIONS(88), [anon_sym_DOLLAR_LPAREN] = ACTIONS(90), [anon_sym_BQUOTE] = ACTIONS(92), [anon_sym_LT_LPAREN] = ACTIONS(94), [anon_sym_GT_LPAREN] = ACTIONS(94), - [sym_word] = ACTIONS(1956), + [sym_word] = ACTIONS(2008), [sym_comment] = ACTIONS(52), }, - [812] = { - [sym_file_descriptor] = ACTIONS(854), - [sym__concat] = ACTIONS(854), - [anon_sym_PIPE] = ACTIONS(856), - [anon_sym_RPAREN] = ACTIONS(856), - [anon_sym_SEMI_SEMI] = ACTIONS(856), - [anon_sym_PIPE_AMP] = ACTIONS(856), - [anon_sym_AMP_AMP] = ACTIONS(856), - [anon_sym_PIPE_PIPE] = ACTIONS(856), - [anon_sym_LT] = ACTIONS(856), - [anon_sym_GT] = ACTIONS(856), - [anon_sym_GT_GT] = ACTIONS(856), - [anon_sym_AMP_GT] = ACTIONS(856), - [anon_sym_AMP_GT_GT] = ACTIONS(856), - [anon_sym_LT_AMP] = ACTIONS(856), - [anon_sym_GT_AMP] = ACTIONS(856), - [anon_sym_LT_LT] = ACTIONS(856), - [anon_sym_LT_LT_DASH] = ACTIONS(856), + [836] = { + [sym_file_descriptor] = ACTIONS(868), + [sym__concat] = ACTIONS(868), + [anon_sym_PIPE] = ACTIONS(870), + [anon_sym_RPAREN] = ACTIONS(870), + [anon_sym_SEMI_SEMI] = ACTIONS(870), + [anon_sym_PIPE_AMP] = ACTIONS(870), + [anon_sym_AMP_AMP] = ACTIONS(870), + [anon_sym_PIPE_PIPE] = ACTIONS(870), + [anon_sym_LT] = ACTIONS(870), + [anon_sym_GT] = ACTIONS(870), + [anon_sym_GT_GT] = ACTIONS(870), + [anon_sym_AMP_GT] = ACTIONS(870), + [anon_sym_AMP_GT_GT] = ACTIONS(870), + [anon_sym_LT_AMP] = ACTIONS(870), + [anon_sym_GT_AMP] = ACTIONS(870), + [anon_sym_LT_LT] = ACTIONS(870), + [anon_sym_LT_LT_DASH] = ACTIONS(870), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(856), - [anon_sym_LF] = ACTIONS(856), - [anon_sym_AMP] = ACTIONS(856), + [anon_sym_SEMI] = ACTIONS(870), + [anon_sym_LF] = ACTIONS(870), + [anon_sym_AMP] = ACTIONS(870), }, - [813] = { - [anon_sym_AT] = ACTIONS(1958), + [837] = { + [anon_sym_AT] = ACTIONS(2010), [sym_comment] = ACTIONS(52), }, - [814] = { - [sym_concatenation] = STATE(995), - [sym_string] = STATE(994), - [sym_simple_expansion] = STATE(994), - [sym_expansion] = STATE(994), - [sym_command_substitution] = STATE(994), - [sym_process_substitution] = STATE(994), + [838] = { + [sym_concatenation] = STATE(1032), + [sym_string] = STATE(1031), + [sym_simple_expansion] = STATE(1031), + [sym_expansion] = STATE(1031), + [sym_command_substitution] = STATE(1031), + [sym_process_substitution] = STATE(1031), [anon_sym_DQUOTE] = ACTIONS(82), - [sym_raw_string] = ACTIONS(1960), + [sym_raw_string] = ACTIONS(2012), [anon_sym_DOLLAR] = ACTIONS(86), [anon_sym_DOLLAR_LBRACE] = ACTIONS(88), [anon_sym_DOLLAR_LPAREN] = ACTIONS(90), [anon_sym_BQUOTE] = ACTIONS(92), [anon_sym_LT_LPAREN] = ACTIONS(94), [anon_sym_GT_LPAREN] = ACTIONS(94), - [sym_word] = ACTIONS(1962), + [sym_word] = ACTIONS(2014), [sym_comment] = ACTIONS(52), }, - [815] = { - [sym_file_descriptor] = ACTIONS(946), - [sym__concat] = ACTIONS(946), - [anon_sym_PIPE] = ACTIONS(948), - [anon_sym_RPAREN] = ACTIONS(948), - [anon_sym_SEMI_SEMI] = ACTIONS(948), - [anon_sym_PIPE_AMP] = ACTIONS(948), - [anon_sym_AMP_AMP] = ACTIONS(948), - [anon_sym_PIPE_PIPE] = ACTIONS(948), - [anon_sym_LT] = ACTIONS(948), - [anon_sym_GT] = ACTIONS(948), - [anon_sym_GT_GT] = ACTIONS(948), - [anon_sym_AMP_GT] = ACTIONS(948), - [anon_sym_AMP_GT_GT] = ACTIONS(948), - [anon_sym_LT_AMP] = ACTIONS(948), - [anon_sym_GT_AMP] = ACTIONS(948), - [anon_sym_LT_LT] = ACTIONS(948), - [anon_sym_LT_LT_DASH] = ACTIONS(948), + [839] = { + [sym_file_descriptor] = ACTIONS(960), + [sym__concat] = ACTIONS(960), + [anon_sym_PIPE] = ACTIONS(962), + [anon_sym_RPAREN] = ACTIONS(962), + [anon_sym_SEMI_SEMI] = ACTIONS(962), + [anon_sym_PIPE_AMP] = ACTIONS(962), + [anon_sym_AMP_AMP] = ACTIONS(962), + [anon_sym_PIPE_PIPE] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(962), + [anon_sym_GT] = ACTIONS(962), + [anon_sym_GT_GT] = ACTIONS(962), + [anon_sym_AMP_GT] = ACTIONS(962), + [anon_sym_AMP_GT_GT] = ACTIONS(962), + [anon_sym_LT_AMP] = ACTIONS(962), + [anon_sym_GT_AMP] = ACTIONS(962), + [anon_sym_LT_LT] = ACTIONS(962), + [anon_sym_LT_LT_DASH] = ACTIONS(962), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(948), - [anon_sym_LF] = ACTIONS(948), - [anon_sym_AMP] = ACTIONS(948), + [anon_sym_SEMI] = ACTIONS(962), + [anon_sym_LF] = ACTIONS(962), + [anon_sym_AMP] = ACTIONS(962), }, - [816] = { - [sym_file_descriptor] = ACTIONS(984), - [sym__concat] = ACTIONS(984), - [anon_sym_PIPE] = ACTIONS(986), - [anon_sym_RPAREN] = ACTIONS(986), - [anon_sym_SEMI_SEMI] = ACTIONS(986), - [anon_sym_PIPE_AMP] = ACTIONS(986), - [anon_sym_AMP_AMP] = ACTIONS(986), - [anon_sym_PIPE_PIPE] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(986), - [anon_sym_GT] = ACTIONS(986), - [anon_sym_GT_GT] = ACTIONS(986), - [anon_sym_AMP_GT] = ACTIONS(986), - [anon_sym_AMP_GT_GT] = ACTIONS(986), - [anon_sym_LT_AMP] = ACTIONS(986), - [anon_sym_GT_AMP] = ACTIONS(986), - [anon_sym_LT_LT] = ACTIONS(986), - [anon_sym_LT_LT_DASH] = ACTIONS(986), + [840] = { + [sym_file_descriptor] = ACTIONS(998), + [sym__concat] = ACTIONS(998), + [anon_sym_PIPE] = ACTIONS(1000), + [anon_sym_RPAREN] = ACTIONS(1000), + [anon_sym_SEMI_SEMI] = ACTIONS(1000), + [anon_sym_PIPE_AMP] = ACTIONS(1000), + [anon_sym_AMP_AMP] = ACTIONS(1000), + [anon_sym_PIPE_PIPE] = ACTIONS(1000), + [anon_sym_LT] = ACTIONS(1000), + [anon_sym_GT] = ACTIONS(1000), + [anon_sym_GT_GT] = ACTIONS(1000), + [anon_sym_AMP_GT] = ACTIONS(1000), + [anon_sym_AMP_GT_GT] = ACTIONS(1000), + [anon_sym_LT_AMP] = ACTIONS(1000), + [anon_sym_GT_AMP] = ACTIONS(1000), + [anon_sym_LT_LT] = ACTIONS(1000), + [anon_sym_LT_LT_DASH] = ACTIONS(1000), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(986), - [anon_sym_LF] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), + [anon_sym_SEMI] = ACTIONS(1000), + [anon_sym_LF] = ACTIONS(1000), + [anon_sym_AMP] = ACTIONS(1000), }, - [817] = { + [841] = { [sym__heredoc_middle] = ACTIONS(418), [sym__heredoc_end] = ACTIONS(418), [anon_sym_DOLLAR] = ACTIONS(430), [anon_sym_DOLLAR_LBRACE] = ACTIONS(418), [sym_comment] = ACTIONS(52), }, - [818] = { + [842] = { [sym__heredoc_middle] = ACTIONS(422), [sym__heredoc_end] = ACTIONS(422), - [anon_sym_DOLLAR] = ACTIONS(706), + [anon_sym_DOLLAR] = ACTIONS(720), [anon_sym_DOLLAR_LBRACE] = ACTIONS(422), [sym_comment] = ACTIONS(52), }, - [819] = { + [843] = { [sym__heredoc_middle] = ACTIONS(426), [sym__heredoc_end] = ACTIONS(426), - [anon_sym_DOLLAR] = ACTIONS(708), + [anon_sym_DOLLAR] = ACTIONS(722), [anon_sym_DOLLAR_LBRACE] = ACTIONS(426), [sym_comment] = ACTIONS(52), }, - [820] = { - [sym_special_variable_name] = STATE(997), + [844] = { + [sym_special_variable_name] = STATE(1034), [anon_sym_RBRACE] = ACTIONS(418), [anon_sym_LBRACK] = ACTIONS(418), [anon_sym_EQ] = ACTIONS(418), @@ -20463,7 +21102,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(418), [anon_sym_SLASH] = ACTIONS(418), [sym_comment] = ACTIONS(142), - [sym_simple_variable_name] = ACTIONS(1964), + [sym_simple_variable_name] = ACTIONS(2016), [anon_sym_STAR] = ACTIONS(156), [anon_sym_QMARK] = ACTIONS(156), [anon_sym_DASH] = ACTIONS(156), @@ -20471,468 +21110,637 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_0] = ACTIONS(162), [anon_sym__] = ACTIONS(162), }, - [821] = { - [anon_sym_RBRACE] = ACTIONS(1966), - [anon_sym_LBRACK] = ACTIONS(1968), - [anon_sym_EQ] = ACTIONS(1970), - [anon_sym_COLON] = ACTIONS(1972), - [anon_sym_COLON_QMARK] = ACTIONS(1970), - [anon_sym_COLON_DASH] = ACTIONS(1970), - [anon_sym_PERCENT] = ACTIONS(1970), - [anon_sym_SLASH] = ACTIONS(1970), - [sym_comment] = ACTIONS(52), - }, - [822] = { - [anon_sym_RBRACE] = ACTIONS(1974), - [anon_sym_LBRACK] = ACTIONS(1976), - [anon_sym_EQ] = ACTIONS(1978), - [anon_sym_COLON] = ACTIONS(1980), - [anon_sym_COLON_QMARK] = ACTIONS(1978), - [anon_sym_COLON_DASH] = ACTIONS(1978), - [anon_sym_PERCENT] = ACTIONS(1978), - [anon_sym_SLASH] = ACTIONS(1978), - [sym_comment] = ACTIONS(52), - }, - [823] = { - [sym__heredoc_middle] = ACTIONS(1982), - [sym__heredoc_end] = ACTIONS(1982), - [anon_sym_DOLLAR] = ACTIONS(1984), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1982), - [sym_comment] = ACTIONS(52), - }, - [824] = { - [sym_file_descriptor] = ACTIONS(1986), - [anon_sym_PIPE] = ACTIONS(1988), - [anon_sym_RPAREN] = ACTIONS(1988), - [anon_sym_SEMI_SEMI] = ACTIONS(1988), - [anon_sym_PIPE_AMP] = ACTIONS(1988), - [anon_sym_AMP_AMP] = ACTIONS(1988), - [anon_sym_PIPE_PIPE] = ACTIONS(1988), - [anon_sym_LT] = ACTIONS(1988), - [anon_sym_GT] = ACTIONS(1988), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1988), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [anon_sym_LT_LT] = ACTIONS(1988), - [anon_sym_LT_LT_DASH] = ACTIONS(1988), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1988), - [anon_sym_LF] = ACTIONS(1988), - [anon_sym_AMP] = ACTIONS(1988), - }, - [825] = { - [sym_file_descriptor] = ACTIONS(1100), - [sym_variable_name] = ACTIONS(1100), - [anon_sym_LT] = ACTIONS(1776), - [anon_sym_GT] = ACTIONS(1776), - [anon_sym_GT_GT] = ACTIONS(1100), - [anon_sym_AMP_GT] = ACTIONS(1776), - [anon_sym_AMP_GT_GT] = ACTIONS(1100), - [anon_sym_LT_AMP] = ACTIONS(1100), - [anon_sym_GT_AMP] = ACTIONS(1100), - [anon_sym_DQUOTE] = ACTIONS(1100), - [sym_raw_string] = ACTIONS(1100), - [anon_sym_DOLLAR] = ACTIONS(1776), - [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_word] = ACTIONS(1776), - [sym_comment] = ACTIONS(52), - }, - [826] = { - [anon_sym_RPAREN] = ACTIONS(1990), - [sym_word] = ACTIONS(1110), - [sym_comment] = ACTIONS(52), - }, - [827] = { - [sym__concat] = ACTIONS(1336), - [anon_sym_PIPE] = ACTIONS(1336), - [anon_sym_RPAREN] = ACTIONS(1336), - [anon_sym_RBRACK] = ACTIONS(1336), - [sym_comment] = ACTIONS(52), - }, - [828] = { - [sym__concat] = ACTIONS(1340), - [anon_sym_PIPE] = ACTIONS(1340), - [anon_sym_RPAREN] = ACTIONS(1340), - [anon_sym_RBRACK] = ACTIONS(1340), - [sym_comment] = ACTIONS(52), - }, - [829] = { - [anon_sym_AT] = ACTIONS(1992), - [sym_comment] = ACTIONS(52), - }, - [830] = { - [sym__concat] = ACTIONS(1346), - [anon_sym_PIPE] = ACTIONS(1346), - [anon_sym_RPAREN] = ACTIONS(1346), - [anon_sym_RBRACK] = ACTIONS(1346), - [sym_comment] = ACTIONS(52), - }, - [831] = { - [anon_sym_AT] = ACTIONS(1994), - [sym_comment] = ACTIONS(52), - }, - [832] = { - [anon_sym_RBRACK] = ACTIONS(1996), - [sym_comment] = ACTIONS(52), - }, - [833] = { - [aux_sym_concatenation_repeat1] = STATE(192), - [sym__concat] = ACTIONS(326), - [anon_sym_RBRACE] = ACTIONS(1998), - [sym_comment] = ACTIONS(52), - }, - [834] = { - [anon_sym_RBRACE] = ACTIONS(1998), - [sym_comment] = ACTIONS(52), - }, - [835] = { - [anon_sym_RBRACK] = ACTIONS(2000), - [sym_comment] = ACTIONS(52), - }, - [836] = { - [aux_sym_concatenation_repeat1] = STATE(192), - [sym__concat] = ACTIONS(326), - [anon_sym_RBRACE] = ACTIONS(2002), - [sym_comment] = ACTIONS(52), - }, - [837] = { - [anon_sym_RBRACE] = ACTIONS(2002), - [sym_comment] = ACTIONS(52), - }, - [838] = { - [sym_file_descriptor] = ACTIONS(1336), - [sym__concat] = ACTIONS(1336), - [sym_variable_name] = ACTIONS(1336), - [anon_sym_PIPE] = ACTIONS(1338), - [anon_sym_RPAREN] = ACTIONS(1338), - [anon_sym_SEMI_SEMI] = ACTIONS(1338), - [anon_sym_PIPE_AMP] = ACTIONS(1338), - [anon_sym_AMP_AMP] = ACTIONS(1338), - [anon_sym_PIPE_PIPE] = ACTIONS(1338), - [anon_sym_LT] = ACTIONS(1338), - [anon_sym_GT] = ACTIONS(1338), - [anon_sym_GT_GT] = ACTIONS(1338), - [anon_sym_AMP_GT] = ACTIONS(1338), - [anon_sym_AMP_GT_GT] = ACTIONS(1338), - [anon_sym_LT_AMP] = ACTIONS(1338), - [anon_sym_GT_AMP] = ACTIONS(1338), - [anon_sym_DQUOTE] = ACTIONS(1338), - [sym_raw_string] = ACTIONS(1338), - [anon_sym_DOLLAR] = ACTIONS(1338), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1338), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1338), - [anon_sym_BQUOTE] = ACTIONS(1338), - [anon_sym_LT_LPAREN] = ACTIONS(1338), - [anon_sym_GT_LPAREN] = ACTIONS(1338), - [sym_word] = ACTIONS(1338), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1338), - [anon_sym_LF] = ACTIONS(1338), - [anon_sym_AMP] = ACTIONS(1338), - }, - [839] = { - [sym_file_descriptor] = ACTIONS(1340), - [sym__concat] = ACTIONS(1340), - [sym_variable_name] = ACTIONS(1340), - [anon_sym_PIPE] = ACTIONS(1342), - [anon_sym_RPAREN] = ACTIONS(1342), - [anon_sym_SEMI_SEMI] = ACTIONS(1342), - [anon_sym_PIPE_AMP] = ACTIONS(1342), - [anon_sym_AMP_AMP] = ACTIONS(1342), - [anon_sym_PIPE_PIPE] = ACTIONS(1342), - [anon_sym_LT] = ACTIONS(1342), - [anon_sym_GT] = ACTIONS(1342), - [anon_sym_GT_GT] = ACTIONS(1342), - [anon_sym_AMP_GT] = ACTIONS(1342), - [anon_sym_AMP_GT_GT] = ACTIONS(1342), - [anon_sym_LT_AMP] = ACTIONS(1342), - [anon_sym_GT_AMP] = ACTIONS(1342), - [anon_sym_DQUOTE] = ACTIONS(1342), - [sym_raw_string] = ACTIONS(1342), - [anon_sym_DOLLAR] = ACTIONS(1342), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1342), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1342), - [anon_sym_BQUOTE] = ACTIONS(1342), - [anon_sym_LT_LPAREN] = ACTIONS(1342), - [anon_sym_GT_LPAREN] = ACTIONS(1342), - [sym_word] = ACTIONS(1342), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1342), - [anon_sym_LF] = ACTIONS(1342), - [anon_sym_AMP] = ACTIONS(1342), - }, - [840] = { - [anon_sym_AT] = ACTIONS(2004), - [sym_comment] = ACTIONS(52), - }, - [841] = { - [sym_file_descriptor] = ACTIONS(1346), - [sym__concat] = ACTIONS(1346), - [sym_variable_name] = ACTIONS(1346), - [anon_sym_PIPE] = ACTIONS(1348), - [anon_sym_RPAREN] = ACTIONS(1348), - [anon_sym_SEMI_SEMI] = ACTIONS(1348), - [anon_sym_PIPE_AMP] = ACTIONS(1348), - [anon_sym_AMP_AMP] = ACTIONS(1348), - [anon_sym_PIPE_PIPE] = ACTIONS(1348), - [anon_sym_LT] = ACTIONS(1348), - [anon_sym_GT] = ACTIONS(1348), - [anon_sym_GT_GT] = ACTIONS(1348), - [anon_sym_AMP_GT] = ACTIONS(1348), - [anon_sym_AMP_GT_GT] = ACTIONS(1348), - [anon_sym_LT_AMP] = ACTIONS(1348), - [anon_sym_GT_AMP] = ACTIONS(1348), - [anon_sym_DQUOTE] = ACTIONS(1348), - [sym_raw_string] = ACTIONS(1348), - [anon_sym_DOLLAR] = ACTIONS(1348), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1348), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1348), - [anon_sym_BQUOTE] = ACTIONS(1348), - [anon_sym_LT_LPAREN] = ACTIONS(1348), - [anon_sym_GT_LPAREN] = ACTIONS(1348), - [sym_word] = ACTIONS(1348), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1348), - [anon_sym_LF] = ACTIONS(1348), - [anon_sym_AMP] = ACTIONS(1348), - }, - [842] = { - [anon_sym_AT] = ACTIONS(2006), - [sym_comment] = ACTIONS(52), - }, - [843] = { - [anon_sym_RBRACK] = ACTIONS(2008), - [sym_comment] = ACTIONS(52), - }, - [844] = { - [aux_sym_concatenation_repeat1] = STATE(192), - [sym__concat] = ACTIONS(326), - [anon_sym_RBRACE] = ACTIONS(2010), - [sym_comment] = ACTIONS(52), - }, [845] = { - [anon_sym_RBRACE] = ACTIONS(2010), + [anon_sym_RBRACE] = ACTIONS(2018), + [anon_sym_LBRACK] = ACTIONS(2020), + [anon_sym_EQ] = ACTIONS(2022), + [anon_sym_COLON] = ACTIONS(2024), + [anon_sym_COLON_QMARK] = ACTIONS(2022), + [anon_sym_COLON_DASH] = ACTIONS(2022), + [anon_sym_PERCENT] = ACTIONS(2022), + [anon_sym_SLASH] = ACTIONS(2022), [sym_comment] = ACTIONS(52), }, [846] = { - [anon_sym_RBRACK] = ACTIONS(2012), + [anon_sym_RBRACE] = ACTIONS(2026), + [anon_sym_LBRACK] = ACTIONS(2028), + [anon_sym_EQ] = ACTIONS(2030), + [anon_sym_COLON] = ACTIONS(2032), + [anon_sym_COLON_QMARK] = ACTIONS(2030), + [anon_sym_COLON_DASH] = ACTIONS(2030), + [anon_sym_PERCENT] = ACTIONS(2030), + [anon_sym_SLASH] = ACTIONS(2030), [sym_comment] = ACTIONS(52), }, [847] = { - [aux_sym_concatenation_repeat1] = STATE(192), - [sym__concat] = ACTIONS(326), - [anon_sym_RBRACE] = ACTIONS(2014), + [sym__heredoc_middle] = ACTIONS(2034), + [sym__heredoc_end] = ACTIONS(2034), + [anon_sym_DOLLAR] = ACTIONS(2036), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2034), [sym_comment] = ACTIONS(52), }, [848] = { - [anon_sym_RBRACE] = ACTIONS(2014), - [sym_comment] = ACTIONS(52), - }, - [849] = { - [sym__concat] = ACTIONS(820), - [anon_sym_SEMI_SEMI] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(822), - [sym_raw_string] = ACTIONS(822), - [anon_sym_DOLLAR] = ACTIONS(822), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(822), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(822), - [anon_sym_BQUOTE] = ACTIONS(822), - [anon_sym_LT_LPAREN] = ACTIONS(822), - [anon_sym_GT_LPAREN] = ACTIONS(822), - [sym_word] = ACTIONS(822), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(822), - [anon_sym_LF] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(822), - }, - [850] = { - [sym__concat] = ACTIONS(828), - [anon_sym_SEMI_SEMI] = ACTIONS(830), - [anon_sym_DQUOTE] = ACTIONS(830), - [sym_raw_string] = ACTIONS(830), - [anon_sym_DOLLAR] = 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_word] = ACTIONS(830), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(830), - [anon_sym_LF] = ACTIONS(830), - [anon_sym_AMP] = ACTIONS(830), - }, - [851] = { - [sym_string] = STATE(1017), - [sym_simple_expansion] = STATE(1017), - [sym_expansion] = STATE(1017), - [sym_command_substitution] = STATE(1017), - [sym_process_substitution] = STATE(1017), - [anon_sym_DQUOTE] = ACTIONS(622), - [sym_raw_string] = ACTIONS(2016), - [anon_sym_DOLLAR] = ACTIONS(626), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(628), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(630), - [anon_sym_BQUOTE] = ACTIONS(632), - [anon_sym_LT_LPAREN] = ACTIONS(634), - [anon_sym_GT_LPAREN] = ACTIONS(634), - [sym_word] = ACTIONS(2018), - [sym_comment] = ACTIONS(52), - }, - [852] = { - [anon_sym_RBRACE] = ACTIONS(2020), - [anon_sym_LBRACK] = ACTIONS(2022), - [sym_comment] = ACTIONS(52), - }, - [853] = { - [anon_sym_RBRACE] = ACTIONS(2024), - [anon_sym_LBRACK] = ACTIONS(2026), - [sym_comment] = ACTIONS(52), - }, - [854] = { - [sym__concat] = ACTIONS(844), - [anon_sym_SEMI_SEMI] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(846), - [sym_raw_string] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(846), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(846), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(846), - [anon_sym_BQUOTE] = ACTIONS(846), - [anon_sym_LT_LPAREN] = ACTIONS(846), - [anon_sym_GT_LPAREN] = ACTIONS(846), - [sym_word] = ACTIONS(846), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(846), - [anon_sym_LF] = ACTIONS(846), - [anon_sym_AMP] = ACTIONS(846), - }, - [855] = { - [anon_sym_AT] = ACTIONS(2028), - [sym_comment] = ACTIONS(52), - }, - [856] = { - [sym_concatenation] = STATE(1024), - [sym_string] = STATE(1023), - [sym_simple_expansion] = STATE(1023), - [sym_expansion] = STATE(1023), - [sym_command_substitution] = STATE(1023), - [sym_process_substitution] = STATE(1023), - [anon_sym_DQUOTE] = ACTIONS(82), - [sym_raw_string] = ACTIONS(2030), - [anon_sym_DOLLAR] = ACTIONS(86), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(88), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(90), - [anon_sym_BQUOTE] = ACTIONS(92), - [anon_sym_LT_LPAREN] = ACTIONS(94), - [anon_sym_GT_LPAREN] = ACTIONS(94), - [sym_word] = ACTIONS(2032), - [sym_comment] = ACTIONS(52), - }, - [857] = { - [sym__concat] = ACTIONS(854), - [anon_sym_SEMI_SEMI] = ACTIONS(856), - [anon_sym_DQUOTE] = ACTIONS(856), - [sym_raw_string] = ACTIONS(856), - [anon_sym_DOLLAR] = ACTIONS(856), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(856), - [anon_sym_BQUOTE] = ACTIONS(856), - [anon_sym_LT_LPAREN] = ACTIONS(856), - [anon_sym_GT_LPAREN] = ACTIONS(856), - [sym_word] = ACTIONS(856), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(856), - [anon_sym_LF] = ACTIONS(856), - [anon_sym_AMP] = ACTIONS(856), - }, - [858] = { - [anon_sym_AT] = ACTIONS(2034), - [sym_comment] = ACTIONS(52), - }, - [859] = { - [sym_concatenation] = STATE(1027), - [sym_string] = STATE(1026), - [sym_simple_expansion] = STATE(1026), - [sym_expansion] = STATE(1026), - [sym_command_substitution] = STATE(1026), - [sym_process_substitution] = STATE(1026), - [anon_sym_DQUOTE] = ACTIONS(82), - [sym_raw_string] = ACTIONS(2036), - [anon_sym_DOLLAR] = ACTIONS(86), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(88), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(90), - [anon_sym_BQUOTE] = ACTIONS(92), - [anon_sym_LT_LPAREN] = ACTIONS(94), - [anon_sym_GT_LPAREN] = ACTIONS(94), - [sym_word] = ACTIONS(2038), - [sym_comment] = ACTIONS(52), - }, - [860] = { - [sym__concat] = ACTIONS(946), - [anon_sym_SEMI_SEMI] = ACTIONS(948), - [anon_sym_DQUOTE] = ACTIONS(948), - [sym_raw_string] = ACTIONS(948), - [anon_sym_DOLLAR] = ACTIONS(948), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(948), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(948), - [anon_sym_BQUOTE] = ACTIONS(948), - [anon_sym_LT_LPAREN] = ACTIONS(948), - [anon_sym_GT_LPAREN] = ACTIONS(948), - [sym_word] = ACTIONS(948), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(948), - [anon_sym_LF] = ACTIONS(948), - [anon_sym_AMP] = ACTIONS(948), - }, - [861] = { - [sym__concat] = ACTIONS(984), - [anon_sym_SEMI_SEMI] = ACTIONS(986), - [anon_sym_DQUOTE] = ACTIONS(986), - [sym_raw_string] = ACTIONS(986), - [anon_sym_DOLLAR] = ACTIONS(986), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(986), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(986), - [anon_sym_BQUOTE] = ACTIONS(986), - [anon_sym_LT_LPAREN] = ACTIONS(986), - [anon_sym_GT_LPAREN] = ACTIONS(986), - [sym_word] = ACTIONS(986), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(986), - [anon_sym_LF] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - }, - [862] = { + [sym_file_descriptor] = ACTIONS(2038), [anon_sym_PIPE] = ACTIONS(2040), [anon_sym_RPAREN] = ACTIONS(2040), [anon_sym_SEMI_SEMI] = ACTIONS(2040), [anon_sym_PIPE_AMP] = ACTIONS(2040), [anon_sym_AMP_AMP] = ACTIONS(2040), [anon_sym_PIPE_PIPE] = ACTIONS(2040), + [anon_sym_LT] = ACTIONS(2040), + [anon_sym_GT] = ACTIONS(2040), + [anon_sym_GT_GT] = ACTIONS(2040), + [anon_sym_AMP_GT] = ACTIONS(2040), + [anon_sym_AMP_GT_GT] = ACTIONS(2040), + [anon_sym_LT_AMP] = ACTIONS(2040), + [anon_sym_GT_AMP] = ACTIONS(2040), + [anon_sym_LT_LT] = ACTIONS(2040), + [anon_sym_LT_LT_DASH] = ACTIONS(2040), [sym_comment] = ACTIONS(142), [anon_sym_SEMI] = ACTIONS(2040), [anon_sym_LF] = ACTIONS(2040), [anon_sym_AMP] = ACTIONS(2040), }, + [849] = { + [sym_file_descriptor] = ACTIONS(1114), + [sym_variable_name] = ACTIONS(1114), + [anon_sym_LT] = ACTIONS(1828), + [anon_sym_GT] = ACTIONS(1828), + [anon_sym_GT_GT] = ACTIONS(1114), + [anon_sym_AMP_GT] = ACTIONS(1828), + [anon_sym_AMP_GT_GT] = ACTIONS(1114), + [anon_sym_LT_AMP] = ACTIONS(1114), + [anon_sym_GT_AMP] = ACTIONS(1114), + [anon_sym_DQUOTE] = ACTIONS(1114), + [sym_raw_string] = ACTIONS(1114), + [anon_sym_DOLLAR] = ACTIONS(1828), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1114), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1114), + [anon_sym_BQUOTE] = ACTIONS(1114), + [anon_sym_LT_LPAREN] = ACTIONS(1114), + [anon_sym_GT_LPAREN] = ACTIONS(1114), + [sym_word] = ACTIONS(1828), + [sym_comment] = ACTIONS(52), + }, + [850] = { + [sym_concatenation] = STATE(620), + [sym_string] = STATE(619), + [sym_simple_expansion] = STATE(619), + [sym_expansion] = STATE(619), + [sym_command_substitution] = STATE(619), + [sym_process_substitution] = STATE(619), + [anon_sym_RPAREN] = ACTIONS(2042), + [anon_sym_DQUOTE] = ACTIONS(606), + [sym_raw_string] = ACTIONS(1134), + [anon_sym_DOLLAR] = ACTIONS(610), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(612), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(614), + [anon_sym_BQUOTE] = ACTIONS(616), + [anon_sym_LT_LPAREN] = ACTIONS(618), + [anon_sym_GT_LPAREN] = ACTIONS(618), + [sym_word] = ACTIONS(1136), + [sym_comment] = ACTIONS(52), + }, + [851] = { + [sym__concat] = ACTIONS(1362), + [anon_sym_PIPE] = ACTIONS(1362), + [anon_sym_RPAREN] = ACTIONS(1362), + [anon_sym_RBRACK] = ACTIONS(1362), + [sym_comment] = ACTIONS(52), + }, + [852] = { + [sym__concat] = ACTIONS(1366), + [anon_sym_PIPE] = ACTIONS(1366), + [anon_sym_RPAREN] = ACTIONS(1366), + [anon_sym_RBRACK] = ACTIONS(1366), + [sym_comment] = ACTIONS(52), + }, + [853] = { + [anon_sym_AT] = ACTIONS(2044), + [sym_comment] = ACTIONS(52), + }, + [854] = { + [sym__concat] = ACTIONS(1372), + [anon_sym_PIPE] = ACTIONS(1372), + [anon_sym_RPAREN] = ACTIONS(1372), + [anon_sym_RBRACK] = ACTIONS(1372), + [sym_comment] = ACTIONS(52), + }, + [855] = { + [anon_sym_AT] = ACTIONS(2046), + [sym_comment] = ACTIONS(52), + }, + [856] = { + [anon_sym_RBRACK] = ACTIONS(2048), + [sym_comment] = ACTIONS(52), + }, + [857] = { + [aux_sym_concatenation_repeat1] = STATE(192), + [sym__concat] = ACTIONS(326), + [anon_sym_RBRACE] = ACTIONS(2050), + [sym_comment] = ACTIONS(52), + }, + [858] = { + [anon_sym_RBRACE] = ACTIONS(2050), + [sym_comment] = ACTIONS(52), + }, + [859] = { + [anon_sym_RBRACK] = ACTIONS(2052), + [sym_comment] = ACTIONS(52), + }, + [860] = { + [aux_sym_concatenation_repeat1] = STATE(192), + [sym__concat] = ACTIONS(326), + [anon_sym_RBRACE] = ACTIONS(2054), + [sym_comment] = ACTIONS(52), + }, + [861] = { + [anon_sym_RBRACE] = ACTIONS(2054), + [sym_comment] = ACTIONS(52), + }, + [862] = { + [sym__concat] = ACTIONS(834), + [anon_sym_RPAREN] = ACTIONS(834), + [anon_sym_DQUOTE] = ACTIONS(834), + [sym_raw_string] = ACTIONS(834), + [anon_sym_DOLLAR] = ACTIONS(1258), + [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_word] = ACTIONS(1258), + [sym_comment] = ACTIONS(52), + }, [863] = { - [sym__terminated_statement] = STATE(393), - [sym_for_statement] = STATE(394), - [sym_while_statement] = STATE(394), - [sym_if_statement] = STATE(394), - [sym_case_statement] = STATE(394), - [sym_function_definition] = STATE(394), - [sym_subshell] = STATE(394), - [sym_pipeline] = STATE(394), - [sym_list] = STATE(394), - [sym_bracket_command] = STATE(394), - [sym_command] = STATE(394), + [sym__concat] = ACTIONS(842), + [anon_sym_RPAREN] = ACTIONS(842), + [anon_sym_DQUOTE] = ACTIONS(842), + [sym_raw_string] = ACTIONS(842), + [anon_sym_DOLLAR] = ACTIONS(1260), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(842), + [anon_sym_LT_LPAREN] = ACTIONS(842), + [anon_sym_GT_LPAREN] = ACTIONS(842), + [sym_word] = ACTIONS(1260), + [sym_comment] = ACTIONS(52), + }, + [864] = { + [sym_string] = STATE(1048), + [sym_simple_expansion] = STATE(1048), + [sym_expansion] = STATE(1048), + [sym_command_substitution] = STATE(1048), + [sym_process_substitution] = STATE(1048), + [anon_sym_DQUOTE] = ACTIONS(606), + [sym_raw_string] = ACTIONS(2056), + [anon_sym_DOLLAR] = ACTIONS(610), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(612), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(614), + [anon_sym_BQUOTE] = ACTIONS(616), + [anon_sym_LT_LPAREN] = ACTIONS(618), + [anon_sym_GT_LPAREN] = ACTIONS(618), + [sym_word] = ACTIONS(2058), + [sym_comment] = ACTIONS(52), + }, + [865] = { + [anon_sym_RBRACE] = ACTIONS(2060), + [anon_sym_LBRACK] = ACTIONS(2062), + [sym_comment] = ACTIONS(52), + }, + [866] = { + [anon_sym_RBRACE] = ACTIONS(2064), + [anon_sym_LBRACK] = ACTIONS(2066), + [sym_comment] = ACTIONS(52), + }, + [867] = { + [sym__concat] = ACTIONS(858), + [anon_sym_RPAREN] = ACTIONS(858), + [anon_sym_DQUOTE] = ACTIONS(858), + [sym_raw_string] = ACTIONS(858), + [anon_sym_DOLLAR] = ACTIONS(1274), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(858), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(858), + [anon_sym_LT_LPAREN] = ACTIONS(858), + [anon_sym_GT_LPAREN] = ACTIONS(858), + [sym_word] = ACTIONS(1274), + [sym_comment] = ACTIONS(52), + }, + [868] = { + [anon_sym_AT] = ACTIONS(2068), + [sym_comment] = ACTIONS(52), + }, + [869] = { + [sym_concatenation] = STATE(1055), + [sym_string] = STATE(1054), + [sym_simple_expansion] = STATE(1054), + [sym_expansion] = STATE(1054), + [sym_command_substitution] = STATE(1054), + [sym_process_substitution] = STATE(1054), + [anon_sym_DQUOTE] = ACTIONS(82), + [sym_raw_string] = ACTIONS(2070), + [anon_sym_DOLLAR] = ACTIONS(86), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(88), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(90), + [anon_sym_BQUOTE] = ACTIONS(92), + [anon_sym_LT_LPAREN] = ACTIONS(94), + [anon_sym_GT_LPAREN] = ACTIONS(94), + [sym_word] = ACTIONS(2072), + [sym_comment] = ACTIONS(52), + }, + [870] = { + [sym__concat] = ACTIONS(868), + [anon_sym_RPAREN] = ACTIONS(868), + [anon_sym_DQUOTE] = ACTIONS(868), + [sym_raw_string] = ACTIONS(868), + [anon_sym_DOLLAR] = ACTIONS(1282), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(868), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(868), + [anon_sym_BQUOTE] = ACTIONS(868), + [anon_sym_LT_LPAREN] = ACTIONS(868), + [anon_sym_GT_LPAREN] = ACTIONS(868), + [sym_word] = ACTIONS(1282), + [sym_comment] = ACTIONS(52), + }, + [871] = { + [anon_sym_AT] = ACTIONS(2074), + [sym_comment] = ACTIONS(52), + }, + [872] = { + [sym_concatenation] = STATE(1058), + [sym_string] = STATE(1057), + [sym_simple_expansion] = STATE(1057), + [sym_expansion] = STATE(1057), + [sym_command_substitution] = STATE(1057), + [sym_process_substitution] = STATE(1057), + [anon_sym_DQUOTE] = ACTIONS(82), + [sym_raw_string] = ACTIONS(2076), + [anon_sym_DOLLAR] = ACTIONS(86), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(88), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(90), + [anon_sym_BQUOTE] = ACTIONS(92), + [anon_sym_LT_LPAREN] = ACTIONS(94), + [anon_sym_GT_LPAREN] = ACTIONS(94), + [sym_word] = ACTIONS(2078), + [sym_comment] = ACTIONS(52), + }, + [873] = { + [sym__concat] = ACTIONS(960), + [anon_sym_RPAREN] = ACTIONS(960), + [anon_sym_DQUOTE] = ACTIONS(960), + [sym_raw_string] = ACTIONS(960), + [anon_sym_DOLLAR] = ACTIONS(1290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(960), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(960), + [anon_sym_BQUOTE] = ACTIONS(960), + [anon_sym_LT_LPAREN] = ACTIONS(960), + [anon_sym_GT_LPAREN] = ACTIONS(960), + [sym_word] = ACTIONS(1290), + [sym_comment] = ACTIONS(52), + }, + [874] = { + [sym__concat] = ACTIONS(998), + [anon_sym_RPAREN] = ACTIONS(998), + [anon_sym_DQUOTE] = ACTIONS(998), + [sym_raw_string] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(998), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(998), + [anon_sym_BQUOTE] = ACTIONS(998), + [anon_sym_LT_LPAREN] = ACTIONS(998), + [anon_sym_GT_LPAREN] = ACTIONS(998), + [sym_word] = ACTIONS(1292), + [sym_comment] = ACTIONS(52), + }, + [875] = { + [sym_file_descriptor] = ACTIONS(1362), + [sym__concat] = ACTIONS(1362), + [sym_variable_name] = ACTIONS(1362), + [anon_sym_PIPE] = ACTIONS(1364), + [anon_sym_RPAREN] = ACTIONS(1364), + [anon_sym_SEMI_SEMI] = ACTIONS(1364), + [anon_sym_PIPE_AMP] = ACTIONS(1364), + [anon_sym_AMP_AMP] = ACTIONS(1364), + [anon_sym_PIPE_PIPE] = ACTIONS(1364), + [anon_sym_LT] = ACTIONS(1364), + [anon_sym_GT] = ACTIONS(1364), + [anon_sym_GT_GT] = ACTIONS(1364), + [anon_sym_AMP_GT] = ACTIONS(1364), + [anon_sym_AMP_GT_GT] = ACTIONS(1364), + [anon_sym_LT_AMP] = ACTIONS(1364), + [anon_sym_GT_AMP] = ACTIONS(1364), + [anon_sym_DQUOTE] = ACTIONS(1364), + [sym_raw_string] = ACTIONS(1364), + [anon_sym_DOLLAR] = ACTIONS(1364), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1364), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1364), + [anon_sym_BQUOTE] = ACTIONS(1364), + [anon_sym_LT_LPAREN] = ACTIONS(1364), + [anon_sym_GT_LPAREN] = ACTIONS(1364), + [sym_word] = ACTIONS(1364), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(1364), + [anon_sym_LF] = ACTIONS(1364), + [anon_sym_AMP] = ACTIONS(1364), + }, + [876] = { + [sym_file_descriptor] = ACTIONS(1366), + [sym__concat] = ACTIONS(1366), + [sym_variable_name] = ACTIONS(1366), + [anon_sym_PIPE] = ACTIONS(1368), + [anon_sym_RPAREN] = ACTIONS(1368), + [anon_sym_SEMI_SEMI] = ACTIONS(1368), + [anon_sym_PIPE_AMP] = ACTIONS(1368), + [anon_sym_AMP_AMP] = ACTIONS(1368), + [anon_sym_PIPE_PIPE] = ACTIONS(1368), + [anon_sym_LT] = ACTIONS(1368), + [anon_sym_GT] = ACTIONS(1368), + [anon_sym_GT_GT] = ACTIONS(1368), + [anon_sym_AMP_GT] = ACTIONS(1368), + [anon_sym_AMP_GT_GT] = ACTIONS(1368), + [anon_sym_LT_AMP] = ACTIONS(1368), + [anon_sym_GT_AMP] = ACTIONS(1368), + [anon_sym_DQUOTE] = ACTIONS(1368), + [sym_raw_string] = ACTIONS(1368), + [anon_sym_DOLLAR] = ACTIONS(1368), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1368), + [anon_sym_BQUOTE] = ACTIONS(1368), + [anon_sym_LT_LPAREN] = ACTIONS(1368), + [anon_sym_GT_LPAREN] = ACTIONS(1368), + [sym_word] = ACTIONS(1368), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(1368), + [anon_sym_LF] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + }, + [877] = { + [anon_sym_AT] = ACTIONS(2080), + [sym_comment] = ACTIONS(52), + }, + [878] = { + [sym_file_descriptor] = ACTIONS(1372), + [sym__concat] = ACTIONS(1372), + [sym_variable_name] = ACTIONS(1372), + [anon_sym_PIPE] = ACTIONS(1374), + [anon_sym_RPAREN] = ACTIONS(1374), + [anon_sym_SEMI_SEMI] = ACTIONS(1374), + [anon_sym_PIPE_AMP] = ACTIONS(1374), + [anon_sym_AMP_AMP] = ACTIONS(1374), + [anon_sym_PIPE_PIPE] = ACTIONS(1374), + [anon_sym_LT] = ACTIONS(1374), + [anon_sym_GT] = ACTIONS(1374), + [anon_sym_GT_GT] = ACTIONS(1374), + [anon_sym_AMP_GT] = ACTIONS(1374), + [anon_sym_AMP_GT_GT] = ACTIONS(1374), + [anon_sym_LT_AMP] = ACTIONS(1374), + [anon_sym_GT_AMP] = ACTIONS(1374), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_raw_string] = ACTIONS(1374), + [anon_sym_DOLLAR] = ACTIONS(1374), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1374), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1374), + [anon_sym_BQUOTE] = ACTIONS(1374), + [anon_sym_LT_LPAREN] = ACTIONS(1374), + [anon_sym_GT_LPAREN] = ACTIONS(1374), + [sym_word] = ACTIONS(1374), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(1374), + [anon_sym_LF] = ACTIONS(1374), + [anon_sym_AMP] = ACTIONS(1374), + }, + [879] = { + [anon_sym_AT] = ACTIONS(2082), + [sym_comment] = ACTIONS(52), + }, + [880] = { + [anon_sym_RBRACK] = ACTIONS(2084), + [sym_comment] = ACTIONS(52), + }, + [881] = { + [aux_sym_concatenation_repeat1] = STATE(192), + [sym__concat] = ACTIONS(326), + [anon_sym_RBRACE] = ACTIONS(2086), + [sym_comment] = ACTIONS(52), + }, + [882] = { + [anon_sym_RBRACE] = ACTIONS(2086), + [sym_comment] = ACTIONS(52), + }, + [883] = { + [anon_sym_RBRACK] = ACTIONS(2088), + [sym_comment] = ACTIONS(52), + }, + [884] = { + [aux_sym_concatenation_repeat1] = STATE(192), + [sym__concat] = ACTIONS(326), + [anon_sym_RBRACE] = ACTIONS(2090), + [sym_comment] = ACTIONS(52), + }, + [885] = { + [anon_sym_RBRACE] = ACTIONS(2090), + [sym_comment] = ACTIONS(52), + }, + [886] = { + [sym__concat] = ACTIONS(834), + [anon_sym_SEMI_SEMI] = ACTIONS(836), + [anon_sym_DQUOTE] = ACTIONS(836), + [sym_raw_string] = ACTIONS(836), + [anon_sym_DOLLAR] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(836), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(836), + [anon_sym_BQUOTE] = ACTIONS(836), + [anon_sym_LT_LPAREN] = ACTIONS(836), + [anon_sym_GT_LPAREN] = ACTIONS(836), + [sym_word] = ACTIONS(836), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(836), + [anon_sym_LF] = ACTIONS(836), + [anon_sym_AMP] = ACTIONS(836), + }, + [887] = { + [sym__concat] = ACTIONS(842), + [anon_sym_SEMI_SEMI] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(844), + [sym_raw_string] = ACTIONS(844), + [anon_sym_DOLLAR] = ACTIONS(844), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(844), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(844), + [anon_sym_GT_LPAREN] = ACTIONS(844), + [sym_word] = ACTIONS(844), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(844), + [anon_sym_LF] = ACTIONS(844), + [anon_sym_AMP] = ACTIONS(844), + }, + [888] = { + [sym_string] = STATE(1065), + [sym_simple_expansion] = STATE(1065), + [sym_expansion] = STATE(1065), + [sym_command_substitution] = STATE(1065), + [sym_process_substitution] = STATE(1065), + [anon_sym_DQUOTE] = ACTIONS(636), + [sym_raw_string] = ACTIONS(2092), + [anon_sym_DOLLAR] = ACTIONS(640), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(642), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(644), + [anon_sym_BQUOTE] = ACTIONS(646), + [anon_sym_LT_LPAREN] = ACTIONS(648), + [anon_sym_GT_LPAREN] = ACTIONS(648), + [sym_word] = ACTIONS(2094), + [sym_comment] = ACTIONS(52), + }, + [889] = { + [anon_sym_RBRACE] = ACTIONS(2096), + [anon_sym_LBRACK] = ACTIONS(2098), + [sym_comment] = ACTIONS(52), + }, + [890] = { + [anon_sym_RBRACE] = ACTIONS(2100), + [anon_sym_LBRACK] = ACTIONS(2102), + [sym_comment] = ACTIONS(52), + }, + [891] = { + [sym__concat] = ACTIONS(858), + [anon_sym_SEMI_SEMI] = ACTIONS(860), + [anon_sym_DQUOTE] = ACTIONS(860), + [sym_raw_string] = ACTIONS(860), + [anon_sym_DOLLAR] = ACTIONS(860), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(860), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(860), + [anon_sym_LT_LPAREN] = ACTIONS(860), + [anon_sym_GT_LPAREN] = ACTIONS(860), + [sym_word] = ACTIONS(860), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(860), + [anon_sym_LF] = ACTIONS(860), + [anon_sym_AMP] = ACTIONS(860), + }, + [892] = { + [anon_sym_AT] = ACTIONS(2104), + [sym_comment] = ACTIONS(52), + }, + [893] = { + [sym_concatenation] = STATE(1072), + [sym_string] = STATE(1071), + [sym_simple_expansion] = STATE(1071), + [sym_expansion] = STATE(1071), + [sym_command_substitution] = STATE(1071), + [sym_process_substitution] = STATE(1071), + [anon_sym_DQUOTE] = ACTIONS(82), + [sym_raw_string] = ACTIONS(2106), + [anon_sym_DOLLAR] = ACTIONS(86), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(88), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(90), + [anon_sym_BQUOTE] = ACTIONS(92), + [anon_sym_LT_LPAREN] = ACTIONS(94), + [anon_sym_GT_LPAREN] = ACTIONS(94), + [sym_word] = ACTIONS(2108), + [sym_comment] = ACTIONS(52), + }, + [894] = { + [sym__concat] = ACTIONS(868), + [anon_sym_SEMI_SEMI] = ACTIONS(870), + [anon_sym_DQUOTE] = ACTIONS(870), + [sym_raw_string] = ACTIONS(870), + [anon_sym_DOLLAR] = ACTIONS(870), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(870), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(870), + [anon_sym_BQUOTE] = ACTIONS(870), + [anon_sym_LT_LPAREN] = ACTIONS(870), + [anon_sym_GT_LPAREN] = ACTIONS(870), + [sym_word] = ACTIONS(870), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(870), + [anon_sym_LF] = ACTIONS(870), + [anon_sym_AMP] = ACTIONS(870), + }, + [895] = { + [anon_sym_AT] = ACTIONS(2110), + [sym_comment] = ACTIONS(52), + }, + [896] = { + [sym_concatenation] = STATE(1075), + [sym_string] = STATE(1074), + [sym_simple_expansion] = STATE(1074), + [sym_expansion] = STATE(1074), + [sym_command_substitution] = STATE(1074), + [sym_process_substitution] = STATE(1074), + [anon_sym_DQUOTE] = ACTIONS(82), + [sym_raw_string] = ACTIONS(2112), + [anon_sym_DOLLAR] = ACTIONS(86), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(88), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(90), + [anon_sym_BQUOTE] = ACTIONS(92), + [anon_sym_LT_LPAREN] = ACTIONS(94), + [anon_sym_GT_LPAREN] = ACTIONS(94), + [sym_word] = ACTIONS(2114), + [sym_comment] = ACTIONS(52), + }, + [897] = { + [sym__concat] = ACTIONS(960), + [anon_sym_SEMI_SEMI] = ACTIONS(962), + [anon_sym_DQUOTE] = ACTIONS(962), + [sym_raw_string] = ACTIONS(962), + [anon_sym_DOLLAR] = ACTIONS(962), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(962), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(962), + [anon_sym_BQUOTE] = ACTIONS(962), + [anon_sym_LT_LPAREN] = ACTIONS(962), + [anon_sym_GT_LPAREN] = ACTIONS(962), + [sym_word] = ACTIONS(962), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(962), + [anon_sym_LF] = ACTIONS(962), + [anon_sym_AMP] = ACTIONS(962), + }, + [898] = { + [sym__concat] = ACTIONS(998), + [anon_sym_SEMI_SEMI] = ACTIONS(1000), + [anon_sym_DQUOTE] = ACTIONS(1000), + [sym_raw_string] = ACTIONS(1000), + [anon_sym_DOLLAR] = ACTIONS(1000), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1000), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1000), + [anon_sym_BQUOTE] = ACTIONS(1000), + [anon_sym_LT_LPAREN] = ACTIONS(1000), + [anon_sym_GT_LPAREN] = ACTIONS(1000), + [sym_word] = ACTIONS(1000), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(1000), + [anon_sym_LF] = ACTIONS(1000), + [anon_sym_AMP] = ACTIONS(1000), + }, + [899] = { + [anon_sym_PIPE] = ACTIONS(2116), + [anon_sym_RPAREN] = ACTIONS(2116), + [anon_sym_SEMI_SEMI] = ACTIONS(2116), + [anon_sym_PIPE_AMP] = ACTIONS(2116), + [anon_sym_AMP_AMP] = ACTIONS(2116), + [anon_sym_PIPE_PIPE] = ACTIONS(2116), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(2116), + [anon_sym_LF] = ACTIONS(2116), + [anon_sym_AMP] = ACTIONS(2116), + }, + [900] = { + [sym__terminated_statement] = STATE(400), + [sym_for_statement] = STATE(401), + [sym_while_statement] = STATE(401), + [sym_if_statement] = STATE(401), + [sym_case_statement] = STATE(401), + [sym_function_definition] = STATE(401), + [sym_subshell] = STATE(401), + [sym_pipeline] = STATE(401), + [sym_list] = STATE(401), + [sym_bracket_command] = STATE(401), + [sym_command] = STATE(401), [sym_command_name] = STATE(24), - [sym_environment_variable_assignment] = STATE(397), + [sym_environment_variable_assignment] = STATE(404), [sym_subscript] = STATE(26), [sym_file_redirect] = STATE(27), [sym_concatenation] = STATE(28), @@ -20941,16 +21749,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(14), [sym_command_substitution] = STATE(14), [sym_process_substitution] = STATE(14), - [aux_sym_program_repeat1] = STATE(1028), + [aux_sym_program_repeat1] = STATE(1076), [aux_sym_command_repeat1] = STATE(30), [sym_file_descriptor] = ACTIONS(10), [sym_variable_name] = ACTIONS(12), [anon_sym_for] = ACTIONS(16), [anon_sym_while] = ACTIONS(18), [anon_sym_if] = ACTIONS(20), - [anon_sym_fi] = ACTIONS(2042), - [anon_sym_elif] = ACTIONS(2042), - [anon_sym_else] = ACTIONS(2042), + [anon_sym_fi] = ACTIONS(2118), + [anon_sym_elif] = ACTIONS(2118), + [anon_sym_else] = ACTIONS(2118), [anon_sym_case] = ACTIONS(22), [anon_sym_function] = ACTIONS(24), [anon_sym_LPAREN] = ACTIONS(26), @@ -20974,7 +21782,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(50), [sym_comment] = ACTIONS(52), }, - [864] = { + [901] = { [sym_file_descriptor] = ACTIONS(530), [sym_variable_name] = ACTIONS(530), [anon_sym_for] = ACTIONS(532), @@ -21004,7 +21812,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(534), [sym_comment] = ACTIONS(52), }, - [865] = { + [902] = { [sym_file_descriptor] = ACTIONS(568), [sym_variable_name] = ACTIONS(568), [anon_sym_for] = ACTIONS(570), @@ -21034,41 +21842,41 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(572), [sym_comment] = ACTIONS(52), }, - [866] = { - [anon_sym_PIPE] = ACTIONS(2044), - [anon_sym_RPAREN] = ACTIONS(2044), - [anon_sym_SEMI_SEMI] = ACTIONS(2044), - [anon_sym_PIPE_AMP] = ACTIONS(2044), - [anon_sym_AMP_AMP] = ACTIONS(2044), - [anon_sym_PIPE_PIPE] = ACTIONS(2044), + [903] = { + [anon_sym_PIPE] = ACTIONS(2120), + [anon_sym_RPAREN] = ACTIONS(2120), + [anon_sym_SEMI_SEMI] = ACTIONS(2120), + [anon_sym_PIPE_AMP] = ACTIONS(2120), + [anon_sym_AMP_AMP] = ACTIONS(2120), + [anon_sym_PIPE_PIPE] = ACTIONS(2120), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(2044), - [anon_sym_LF] = ACTIONS(2044), - [anon_sym_AMP] = ACTIONS(2044), + [anon_sym_SEMI] = ACTIONS(2120), + [anon_sym_LF] = ACTIONS(2120), + [anon_sym_AMP] = ACTIONS(2120), }, - [867] = { - [anon_sym_fi] = ACTIONS(2046), + [904] = { + [anon_sym_fi] = ACTIONS(2122), [sym_comment] = ACTIONS(52), }, - [868] = { - [sym_concatenation] = STATE(1031), - [sym_string] = STATE(1030), - [sym_simple_expansion] = STATE(1030), - [sym_expansion] = STATE(1030), - [sym_command_substitution] = STATE(1030), - [sym_process_substitution] = STATE(1030), + [905] = { + [sym_concatenation] = STATE(1079), + [sym_string] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), [anon_sym_DQUOTE] = ACTIONS(254), - [sym_raw_string] = ACTIONS(2048), + [sym_raw_string] = ACTIONS(2124), [anon_sym_DOLLAR] = ACTIONS(258), [anon_sym_DOLLAR_LBRACE] = ACTIONS(260), [anon_sym_DOLLAR_LPAREN] = ACTIONS(262), [anon_sym_BQUOTE] = ACTIONS(264), [anon_sym_LT_LPAREN] = ACTIONS(266), [anon_sym_GT_LPAREN] = ACTIONS(266), - [sym_word] = ACTIONS(2050), + [sym_word] = ACTIONS(2126), [sym_comment] = ACTIONS(52), }, - [869] = { + [906] = { [sym__terminated_statement] = STATE(22), [sym_for_statement] = STATE(23), [sym_while_statement] = STATE(23), @@ -21090,7 +21898,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(14), [sym_command_substitution] = STATE(14), [sym_process_substitution] = STATE(14), - [aux_sym_program_repeat1] = STATE(1033), + [aux_sym_program_repeat1] = STATE(1081), [aux_sym_command_repeat1] = STATE(30), [sym_file_descriptor] = ACTIONS(10), [sym_variable_name] = ACTIONS(12), @@ -21098,7 +21906,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(2052), + [anon_sym_SEMI_SEMI] = ACTIONS(2128), [anon_sym_function] = ACTIONS(24), [anon_sym_LPAREN] = ACTIONS(26), [anon_sym_LBRACK] = ACTIONS(28), @@ -21121,813 +21929,813 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(50), [sym_comment] = ACTIONS(52), }, - [870] = { - [anon_sym_PIPE] = ACTIONS(2054), - [anon_sym_RPAREN] = ACTIONS(2056), - [sym_comment] = ACTIONS(52), - }, - [871] = { - [anon_sym_PIPE] = ACTIONS(2058), - [anon_sym_RPAREN] = ACTIONS(2058), - [anon_sym_SEMI_SEMI] = ACTIONS(2058), - [anon_sym_PIPE_AMP] = ACTIONS(2058), - [anon_sym_AMP_AMP] = ACTIONS(2058), - [anon_sym_PIPE_PIPE] = ACTIONS(2058), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(2058), - [anon_sym_LF] = ACTIONS(2058), - [anon_sym_AMP] = ACTIONS(2058), - }, - [872] = { - [anon_sym_esac] = ACTIONS(2060), - [anon_sym_DQUOTE] = ACTIONS(2062), - [sym_raw_string] = ACTIONS(2062), - [anon_sym_DOLLAR] = ACTIONS(2060), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2062), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2062), - [anon_sym_BQUOTE] = ACTIONS(2062), - [anon_sym_LT_LPAREN] = ACTIONS(2062), - [anon_sym_GT_LPAREN] = ACTIONS(2062), - [sym_word] = ACTIONS(2064), - [sym_comment] = ACTIONS(52), - }, - [873] = { - [sym_case_item] = STATE(872), - [sym_concatenation] = STATE(646), - [sym_string] = STATE(644), - [sym_simple_expansion] = STATE(644), - [sym_expansion] = STATE(644), - [sym_command_substitution] = STATE(644), - [sym_process_substitution] = STATE(644), - [anon_sym_esac] = ACTIONS(2066), - [anon_sym_DQUOTE] = ACTIONS(254), - [sym_raw_string] = ACTIONS(1196), - [anon_sym_DOLLAR] = ACTIONS(258), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(260), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_LT_LPAREN] = ACTIONS(266), - [anon_sym_GT_LPAREN] = ACTIONS(266), - [sym_word] = ACTIONS(1198), - [sym_comment] = ACTIONS(52), - }, - [874] = { - [anon_sym_RBRACK] = ACTIONS(2068), - [sym_comment] = ACTIONS(52), - }, - [875] = { - [anon_sym_RBRACK] = ACTIONS(2070), - [sym_comment] = ACTIONS(52), - }, - [876] = { - [anon_sym_RBRACE] = ACTIONS(2072), - [sym_comment] = ACTIONS(52), - }, - [877] = { - [sym__concat] = ACTIONS(1766), - [anon_sym_in] = ACTIONS(1768), - [anon_sym_SEMI_SEMI] = ACTIONS(1768), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1768), - [anon_sym_LF] = ACTIONS(1768), - [anon_sym_AMP] = ACTIONS(1768), - }, - [878] = { - [anon_sym_RBRACE] = ACTIONS(2074), - [sym_comment] = ACTIONS(52), - }, - [879] = { - [sym__concat] = ACTIONS(1772), - [anon_sym_in] = ACTIONS(1774), - [anon_sym_SEMI_SEMI] = ACTIONS(1774), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1774), - [anon_sym_LF] = ACTIONS(1774), - [anon_sym_AMP] = ACTIONS(1774), - }, - [880] = { - [anon_sym_PIPE] = ACTIONS(2076), - [anon_sym_RPAREN] = ACTIONS(2076), - [anon_sym_SEMI_SEMI] = ACTIONS(2076), - [anon_sym_PIPE_AMP] = ACTIONS(2076), - [anon_sym_AMP_AMP] = ACTIONS(2076), - [anon_sym_PIPE_PIPE] = ACTIONS(2076), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(2076), - [anon_sym_LF] = ACTIONS(2076), - [anon_sym_AMP] = ACTIONS(2076), - }, - [881] = { - [anon_sym_RBRACK] = ACTIONS(2078), - [sym_comment] = ACTIONS(52), - }, - [882] = { - [anon_sym_RBRACK] = ACTIONS(2080), - [sym_comment] = ACTIONS(52), - }, - [883] = { - [anon_sym_RBRACE] = ACTIONS(2082), - [sym_comment] = ACTIONS(52), - }, - [884] = { - [sym__concat] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_RBRACK] = ACTIONS(2084), - [anon_sym_DQUOTE] = ACTIONS(1766), - [sym_raw_string] = ACTIONS(1766), - [anon_sym_DOLLAR] = ACTIONS(2084), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1766), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1766), - [anon_sym_BQUOTE] = ACTIONS(1766), - [anon_sym_LT_LPAREN] = ACTIONS(1766), - [anon_sym_GT_LPAREN] = ACTIONS(1766), - [sym_word] = ACTIONS(1768), - [sym_comment] = ACTIONS(52), - }, - [885] = { - [anon_sym_RBRACE] = ACTIONS(2086), - [sym_comment] = ACTIONS(52), - }, - [886] = { - [sym__concat] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_RBRACK] = ACTIONS(2088), - [anon_sym_DQUOTE] = ACTIONS(1772), - [sym_raw_string] = ACTIONS(1772), - [anon_sym_DOLLAR] = ACTIONS(2088), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1772), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1772), - [anon_sym_BQUOTE] = ACTIONS(1772), - [anon_sym_LT_LPAREN] = ACTIONS(1772), - [anon_sym_GT_LPAREN] = ACTIONS(1772), - [sym_word] = ACTIONS(1774), - [sym_comment] = ACTIONS(52), - }, - [887] = { - [anon_sym_RBRACK] = ACTIONS(2090), - [sym_comment] = ACTIONS(52), - }, - [888] = { - [anon_sym_RBRACK] = ACTIONS(2092), - [sym_comment] = ACTIONS(52), - }, - [889] = { - [anon_sym_RBRACE] = ACTIONS(2094), - [sym_comment] = ACTIONS(52), - }, - [890] = { - [sym__concat] = ACTIONS(1766), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2084), - [anon_sym_DQUOTE] = ACTIONS(1766), - [sym_raw_string] = ACTIONS(1766), - [anon_sym_DOLLAR] = ACTIONS(2084), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1766), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1766), - [anon_sym_BQUOTE] = ACTIONS(1766), - [anon_sym_LT_LPAREN] = ACTIONS(1766), - [anon_sym_GT_LPAREN] = ACTIONS(1766), - [sym_word] = ACTIONS(1768), - [sym_comment] = ACTIONS(52), - }, - [891] = { - [anon_sym_RBRACE] = ACTIONS(2096), - [sym_comment] = ACTIONS(52), - }, - [892] = { - [sym__concat] = ACTIONS(1772), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2088), - [anon_sym_DQUOTE] = ACTIONS(1772), - [sym_raw_string] = ACTIONS(1772), - [anon_sym_DOLLAR] = ACTIONS(2088), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1772), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1772), - [anon_sym_BQUOTE] = ACTIONS(1772), - [anon_sym_LT_LPAREN] = ACTIONS(1772), - [anon_sym_GT_LPAREN] = ACTIONS(1772), - [sym_word] = ACTIONS(1774), - [sym_comment] = ACTIONS(52), - }, - [893] = { - [anon_sym_RBRACK] = ACTIONS(2098), - [sym_comment] = ACTIONS(52), - }, - [894] = { - [anon_sym_RBRACK] = ACTIONS(2100), - [sym_comment] = ACTIONS(52), - }, - [895] = { - [anon_sym_RBRACE] = ACTIONS(2102), - [sym_comment] = ACTIONS(52), - }, - [896] = { - [sym_file_descriptor] = ACTIONS(1766), - [sym__concat] = ACTIONS(1766), - [sym_variable_name] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(2084), - [anon_sym_GT] = ACTIONS(2084), - [anon_sym_GT_GT] = ACTIONS(1766), - [anon_sym_AMP_GT] = ACTIONS(2084), - [anon_sym_AMP_GT_GT] = ACTIONS(1766), - [anon_sym_LT_AMP] = ACTIONS(1766), - [anon_sym_GT_AMP] = ACTIONS(1766), - [anon_sym_DQUOTE] = ACTIONS(1766), - [sym_raw_string] = ACTIONS(1766), - [anon_sym_DOLLAR] = ACTIONS(2084), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1766), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1766), - [anon_sym_BQUOTE] = ACTIONS(1766), - [anon_sym_LT_LPAREN] = ACTIONS(1766), - [anon_sym_GT_LPAREN] = ACTIONS(1766), - [sym_word] = ACTIONS(2084), - [sym_comment] = ACTIONS(52), - }, - [897] = { - [anon_sym_RBRACE] = ACTIONS(2104), - [sym_comment] = ACTIONS(52), - }, - [898] = { - [sym_file_descriptor] = ACTIONS(1772), - [sym__concat] = ACTIONS(1772), - [sym_variable_name] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(2088), - [anon_sym_GT] = ACTIONS(2088), - [anon_sym_GT_GT] = ACTIONS(1772), - [anon_sym_AMP_GT] = ACTIONS(2088), - [anon_sym_AMP_GT_GT] = ACTIONS(1772), - [anon_sym_LT_AMP] = ACTIONS(1772), - [anon_sym_GT_AMP] = ACTIONS(1772), - [anon_sym_DQUOTE] = ACTIONS(1772), - [sym_raw_string] = ACTIONS(1772), - [anon_sym_DOLLAR] = ACTIONS(2088), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1772), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1772), - [anon_sym_BQUOTE] = ACTIONS(1772), - [anon_sym_LT_LPAREN] = ACTIONS(1772), - [anon_sym_GT_LPAREN] = ACTIONS(1772), - [sym_word] = ACTIONS(2088), - [sym_comment] = ACTIONS(52), - }, - [899] = { - [anon_sym_RBRACK] = ACTIONS(2106), - [sym_comment] = ACTIONS(52), - }, - [900] = { - [anon_sym_RBRACK] = ACTIONS(2108), - [sym_comment] = ACTIONS(52), - }, - [901] = { - [anon_sym_RBRACE] = ACTIONS(2110), - [sym_comment] = ACTIONS(52), - }, - [902] = { - [anon_sym_DQUOTE] = ACTIONS(1768), - [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(2084), - [anon_sym_DOLLAR] = ACTIONS(1768), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1768), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1768), - [anon_sym_BQUOTE] = ACTIONS(1768), - [sym_comment] = ACTIONS(142), - }, - [903] = { - [anon_sym_RBRACE] = ACTIONS(2112), - [sym_comment] = ACTIONS(52), - }, - [904] = { - [anon_sym_DQUOTE] = ACTIONS(1774), - [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(2088), - [anon_sym_DOLLAR] = ACTIONS(1774), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1774), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1774), - [anon_sym_BQUOTE] = ACTIONS(1774), - [sym_comment] = ACTIONS(142), - }, - [905] = { - [anon_sym_RBRACE] = ACTIONS(2114), - [sym_comment] = ACTIONS(52), - }, - [906] = { - [anon_sym_RBRACE] = ACTIONS(2116), - [sym_comment] = ACTIONS(52), - }, [907] = { - [sym_file_descriptor] = ACTIONS(2118), - [sym__concat] = ACTIONS(2118), - [anon_sym_PIPE] = ACTIONS(2120), - [anon_sym_RPAREN] = ACTIONS(2120), - [anon_sym_SEMI_SEMI] = ACTIONS(2120), - [anon_sym_PIPE_AMP] = ACTIONS(2120), - [anon_sym_AMP_AMP] = ACTIONS(2120), - [anon_sym_PIPE_PIPE] = ACTIONS(2120), - [anon_sym_LT] = ACTIONS(2120), - [anon_sym_GT] = ACTIONS(2120), - [anon_sym_GT_GT] = ACTIONS(2120), - [anon_sym_AMP_GT] = ACTIONS(2120), - [anon_sym_AMP_GT_GT] = ACTIONS(2120), - [anon_sym_LT_AMP] = ACTIONS(2120), - [anon_sym_GT_AMP] = ACTIONS(2120), - [anon_sym_LT_LT] = ACTIONS(2120), - [anon_sym_LT_LT_DASH] = ACTIONS(2120), - [anon_sym_DQUOTE] = ACTIONS(2120), - [sym_raw_string] = ACTIONS(2120), - [anon_sym_DOLLAR] = ACTIONS(2120), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2120), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2120), - [anon_sym_BQUOTE] = ACTIONS(2120), - [anon_sym_LT_LPAREN] = ACTIONS(2120), - [anon_sym_GT_LPAREN] = ACTIONS(2120), - [sym_word] = ACTIONS(2120), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(2120), - [anon_sym_LF] = ACTIONS(2120), - [anon_sym_AMP] = ACTIONS(2120), + [anon_sym_PIPE] = ACTIONS(2130), + [anon_sym_RPAREN] = ACTIONS(2132), + [sym_comment] = ACTIONS(52), }, [908] = { - [sym_file_descriptor] = ACTIONS(2122), - [sym__concat] = ACTIONS(2122), - [anon_sym_PIPE] = ACTIONS(2124), - [anon_sym_RPAREN] = ACTIONS(2124), - [anon_sym_SEMI_SEMI] = ACTIONS(2124), - [anon_sym_PIPE_AMP] = ACTIONS(2124), - [anon_sym_AMP_AMP] = ACTIONS(2124), - [anon_sym_PIPE_PIPE] = ACTIONS(2124), - [anon_sym_LT] = ACTIONS(2124), - [anon_sym_GT] = ACTIONS(2124), - [anon_sym_GT_GT] = ACTIONS(2124), - [anon_sym_AMP_GT] = ACTIONS(2124), - [anon_sym_AMP_GT_GT] = ACTIONS(2124), - [anon_sym_LT_AMP] = ACTIONS(2124), - [anon_sym_GT_AMP] = ACTIONS(2124), - [anon_sym_LT_LT] = ACTIONS(2124), - [anon_sym_LT_LT_DASH] = ACTIONS(2124), - [anon_sym_DQUOTE] = ACTIONS(2124), - [sym_raw_string] = ACTIONS(2124), - [anon_sym_DOLLAR] = ACTIONS(2124), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2124), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2124), - [anon_sym_BQUOTE] = ACTIONS(2124), - [anon_sym_LT_LPAREN] = ACTIONS(2124), - [anon_sym_GT_LPAREN] = ACTIONS(2124), - [sym_word] = ACTIONS(2124), + [anon_sym_PIPE] = ACTIONS(2134), + [anon_sym_RPAREN] = ACTIONS(2134), + [anon_sym_SEMI_SEMI] = ACTIONS(2134), + [anon_sym_PIPE_AMP] = ACTIONS(2134), + [anon_sym_AMP_AMP] = ACTIONS(2134), + [anon_sym_PIPE_PIPE] = ACTIONS(2134), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(2124), - [anon_sym_LF] = ACTIONS(2124), - [anon_sym_AMP] = ACTIONS(2124), + [anon_sym_SEMI] = ACTIONS(2134), + [anon_sym_LF] = ACTIONS(2134), + [anon_sym_AMP] = ACTIONS(2134), }, [909] = { - [sym_file_descriptor] = ACTIONS(1600), - [sym_variable_name] = ACTIONS(1600), - [anon_sym_PIPE] = ACTIONS(2126), - [anon_sym_RPAREN] = ACTIONS(1600), - [anon_sym_PIPE_AMP] = ACTIONS(1600), - [anon_sym_AMP_AMP] = ACTIONS(1600), - [anon_sym_PIPE_PIPE] = ACTIONS(2126), - [anon_sym_LT] = ACTIONS(2126), - [anon_sym_GT] = ACTIONS(2126), - [anon_sym_GT_GT] = ACTIONS(1600), - [anon_sym_AMP_GT] = ACTIONS(2126), - [anon_sym_AMP_GT_GT] = ACTIONS(1600), - [anon_sym_LT_AMP] = ACTIONS(1600), - [anon_sym_GT_AMP] = ACTIONS(1600), - [anon_sym_DQUOTE] = ACTIONS(1600), - [sym_raw_string] = ACTIONS(1600), - [anon_sym_DOLLAR] = ACTIONS(2126), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1600), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1600), - [anon_sym_BQUOTE] = ACTIONS(1600), - [anon_sym_LT_LPAREN] = ACTIONS(1600), - [anon_sym_GT_LPAREN] = ACTIONS(1600), - [sym_word] = ACTIONS(1602), + [anon_sym_esac] = ACTIONS(2136), + [anon_sym_DQUOTE] = ACTIONS(2138), + [sym_raw_string] = ACTIONS(2138), + [anon_sym_DOLLAR] = ACTIONS(2136), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2138), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2138), + [anon_sym_BQUOTE] = ACTIONS(2138), + [anon_sym_LT_LPAREN] = ACTIONS(2138), + [anon_sym_GT_LPAREN] = ACTIONS(2138), + [sym_word] = ACTIONS(2140), [sym_comment] = ACTIONS(52), }, [910] = { - [sym_file_descriptor] = ACTIONS(820), - [sym__concat] = ACTIONS(820), - [sym_variable_name] = ACTIONS(820), - [anon_sym_PIPE] = ACTIONS(1232), - [anon_sym_RPAREN] = ACTIONS(820), - [anon_sym_PIPE_AMP] = ACTIONS(820), - [anon_sym_AMP_AMP] = ACTIONS(820), - [anon_sym_PIPE_PIPE] = ACTIONS(1232), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_GT] = ACTIONS(1232), - [anon_sym_GT_GT] = ACTIONS(820), - [anon_sym_AMP_GT] = ACTIONS(1232), - [anon_sym_AMP_GT_GT] = ACTIONS(820), - [anon_sym_LT_AMP] = ACTIONS(820), - [anon_sym_GT_AMP] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(820), - [sym_raw_string] = ACTIONS(820), - [anon_sym_DOLLAR] = ACTIONS(1232), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(820), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(820), - [anon_sym_BQUOTE] = ACTIONS(820), - [anon_sym_LT_LPAREN] = ACTIONS(820), - [anon_sym_GT_LPAREN] = ACTIONS(820), - [sym_word] = ACTIONS(822), + [sym_case_item] = STATE(909), + [sym_concatenation] = STATE(670), + [sym_string] = STATE(668), + [sym_simple_expansion] = STATE(668), + [sym_expansion] = STATE(668), + [sym_command_substitution] = STATE(668), + [sym_process_substitution] = STATE(668), + [anon_sym_esac] = ACTIONS(2142), + [anon_sym_DQUOTE] = ACTIONS(254), + [sym_raw_string] = ACTIONS(1222), + [anon_sym_DOLLAR] = ACTIONS(258), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(260), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(262), + [anon_sym_BQUOTE] = ACTIONS(264), + [anon_sym_LT_LPAREN] = ACTIONS(266), + [anon_sym_GT_LPAREN] = ACTIONS(266), + [sym_word] = ACTIONS(1224), [sym_comment] = ACTIONS(52), }, [911] = { - [sym_file_descriptor] = ACTIONS(828), - [sym__concat] = ACTIONS(828), - [sym_variable_name] = ACTIONS(828), - [anon_sym_PIPE] = ACTIONS(1234), - [anon_sym_RPAREN] = ACTIONS(828), - [anon_sym_PIPE_AMP] = ACTIONS(828), - [anon_sym_AMP_AMP] = ACTIONS(828), - [anon_sym_PIPE_PIPE] = ACTIONS(1234), - [anon_sym_LT] = ACTIONS(1234), - [anon_sym_GT] = ACTIONS(1234), - [anon_sym_GT_GT] = ACTIONS(828), - [anon_sym_AMP_GT] = ACTIONS(1234), - [anon_sym_AMP_GT_GT] = ACTIONS(828), - [anon_sym_LT_AMP] = ACTIONS(828), - [anon_sym_GT_AMP] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(828), - [sym_raw_string] = ACTIONS(828), - [anon_sym_DOLLAR] = ACTIONS(1234), - [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_word] = ACTIONS(830), + [anon_sym_RBRACK] = ACTIONS(2144), [sym_comment] = ACTIONS(52), }, [912] = { - [sym_string] = STATE(1059), - [sym_simple_expansion] = STATE(1059), - [sym_expansion] = STATE(1059), - [sym_command_substitution] = STATE(1059), - [sym_process_substitution] = STATE(1059), - [anon_sym_DQUOTE] = ACTIONS(868), - [sym_raw_string] = ACTIONS(2128), - [anon_sym_DOLLAR] = ACTIONS(872), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(874), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(876), - [anon_sym_BQUOTE] = ACTIONS(878), - [anon_sym_LT_LPAREN] = ACTIONS(880), - [anon_sym_GT_LPAREN] = ACTIONS(880), - [sym_word] = ACTIONS(2130), + [anon_sym_RBRACK] = ACTIONS(2146), [sym_comment] = ACTIONS(52), }, [913] = { - [anon_sym_RBRACE] = ACTIONS(2132), - [anon_sym_LBRACK] = ACTIONS(2134), + [anon_sym_RBRACE] = ACTIONS(2148), [sym_comment] = ACTIONS(52), }, [914] = { - [anon_sym_RBRACE] = ACTIONS(2136), - [anon_sym_LBRACK] = ACTIONS(2138), - [sym_comment] = ACTIONS(52), + [sym__concat] = ACTIONS(1818), + [anon_sym_in] = ACTIONS(1820), + [anon_sym_SEMI_SEMI] = ACTIONS(1820), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(1820), + [anon_sym_LF] = ACTIONS(1820), + [anon_sym_AMP] = ACTIONS(1820), }, [915] = { - [sym_file_descriptor] = ACTIONS(844), - [sym__concat] = ACTIONS(844), - [sym_variable_name] = ACTIONS(844), - [anon_sym_PIPE] = ACTIONS(1248), - [anon_sym_RPAREN] = ACTIONS(844), - [anon_sym_PIPE_AMP] = ACTIONS(844), - [anon_sym_AMP_AMP] = ACTIONS(844), - [anon_sym_PIPE_PIPE] = ACTIONS(1248), - [anon_sym_LT] = ACTIONS(1248), - [anon_sym_GT] = ACTIONS(1248), - [anon_sym_GT_GT] = ACTIONS(844), - [anon_sym_AMP_GT] = ACTIONS(1248), - [anon_sym_AMP_GT_GT] = ACTIONS(844), - [anon_sym_LT_AMP] = ACTIONS(844), - [anon_sym_GT_AMP] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(844), - [sym_raw_string] = ACTIONS(844), - [anon_sym_DOLLAR] = ACTIONS(1248), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(844), - [anon_sym_BQUOTE] = ACTIONS(844), - [anon_sym_LT_LPAREN] = ACTIONS(844), - [anon_sym_GT_LPAREN] = ACTIONS(844), - [sym_word] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(2150), [sym_comment] = ACTIONS(52), }, [916] = { - [anon_sym_AT] = ACTIONS(2140), - [sym_comment] = ACTIONS(52), + [sym__concat] = ACTIONS(1824), + [anon_sym_in] = ACTIONS(1826), + [anon_sym_SEMI_SEMI] = ACTIONS(1826), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(1826), + [anon_sym_LF] = ACTIONS(1826), + [anon_sym_AMP] = ACTIONS(1826), }, [917] = { - [sym_concatenation] = STATE(1066), - [sym_string] = STATE(1065), - [sym_simple_expansion] = STATE(1065), - [sym_expansion] = STATE(1065), - [sym_command_substitution] = STATE(1065), - [sym_process_substitution] = STATE(1065), - [anon_sym_DQUOTE] = ACTIONS(82), - [sym_raw_string] = ACTIONS(2142), - [anon_sym_DOLLAR] = ACTIONS(86), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(88), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(90), - [anon_sym_BQUOTE] = ACTIONS(92), - [anon_sym_LT_LPAREN] = ACTIONS(94), - [anon_sym_GT_LPAREN] = ACTIONS(94), - [sym_word] = ACTIONS(2144), - [sym_comment] = ACTIONS(52), + [anon_sym_PIPE] = ACTIONS(2152), + [anon_sym_RPAREN] = ACTIONS(2152), + [anon_sym_SEMI_SEMI] = ACTIONS(2152), + [anon_sym_PIPE_AMP] = ACTIONS(2152), + [anon_sym_AMP_AMP] = ACTIONS(2152), + [anon_sym_PIPE_PIPE] = ACTIONS(2152), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(2152), + [anon_sym_LF] = ACTIONS(2152), + [anon_sym_AMP] = ACTIONS(2152), }, [918] = { - [sym_file_descriptor] = ACTIONS(854), - [sym__concat] = ACTIONS(854), - [sym_variable_name] = ACTIONS(854), - [anon_sym_PIPE] = ACTIONS(1256), - [anon_sym_RPAREN] = ACTIONS(854), - [anon_sym_PIPE_AMP] = ACTIONS(854), - [anon_sym_AMP_AMP] = ACTIONS(854), - [anon_sym_PIPE_PIPE] = ACTIONS(1256), - [anon_sym_LT] = ACTIONS(1256), - [anon_sym_GT] = ACTIONS(1256), - [anon_sym_GT_GT] = ACTIONS(854), - [anon_sym_AMP_GT] = ACTIONS(1256), - [anon_sym_AMP_GT_GT] = ACTIONS(854), - [anon_sym_LT_AMP] = ACTIONS(854), - [anon_sym_GT_AMP] = ACTIONS(854), - [anon_sym_DQUOTE] = ACTIONS(854), - [sym_raw_string] = ACTIONS(854), - [anon_sym_DOLLAR] = ACTIONS(1256), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(854), - [anon_sym_BQUOTE] = ACTIONS(854), - [anon_sym_LT_LPAREN] = ACTIONS(854), - [anon_sym_GT_LPAREN] = ACTIONS(854), - [sym_word] = ACTIONS(856), + [anon_sym_RBRACK] = ACTIONS(2154), [sym_comment] = ACTIONS(52), }, [919] = { - [anon_sym_AT] = ACTIONS(2146), + [anon_sym_RBRACK] = ACTIONS(2156), [sym_comment] = ACTIONS(52), }, [920] = { - [sym_concatenation] = STATE(1069), - [sym_string] = STATE(1068), - [sym_simple_expansion] = STATE(1068), - [sym_expansion] = STATE(1068), - [sym_command_substitution] = STATE(1068), - [sym_process_substitution] = STATE(1068), + [anon_sym_RBRACE] = ACTIONS(2158), + [sym_comment] = ACTIONS(52), + }, + [921] = { + [sym__concat] = ACTIONS(1818), + [anon_sym_RBRACE] = ACTIONS(1818), + [anon_sym_RBRACK] = ACTIONS(2160), + [anon_sym_DQUOTE] = ACTIONS(1818), + [sym_raw_string] = ACTIONS(1818), + [anon_sym_DOLLAR] = ACTIONS(2160), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1818), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1818), + [anon_sym_BQUOTE] = ACTIONS(1818), + [anon_sym_LT_LPAREN] = ACTIONS(1818), + [anon_sym_GT_LPAREN] = ACTIONS(1818), + [sym_word] = ACTIONS(1820), + [sym_comment] = ACTIONS(52), + }, + [922] = { + [anon_sym_RBRACE] = ACTIONS(2162), + [sym_comment] = ACTIONS(52), + }, + [923] = { + [sym__concat] = ACTIONS(1824), + [anon_sym_RBRACE] = ACTIONS(1824), + [anon_sym_RBRACK] = ACTIONS(2164), + [anon_sym_DQUOTE] = ACTIONS(1824), + [sym_raw_string] = ACTIONS(1824), + [anon_sym_DOLLAR] = ACTIONS(2164), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1824), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1824), + [anon_sym_BQUOTE] = ACTIONS(1824), + [anon_sym_LT_LPAREN] = ACTIONS(1824), + [anon_sym_GT_LPAREN] = ACTIONS(1824), + [sym_word] = ACTIONS(1826), + [sym_comment] = ACTIONS(52), + }, + [924] = { + [anon_sym_RBRACK] = ACTIONS(2166), + [sym_comment] = ACTIONS(52), + }, + [925] = { + [anon_sym_RBRACK] = ACTIONS(2168), + [sym_comment] = ACTIONS(52), + }, + [926] = { + [anon_sym_RBRACE] = ACTIONS(2170), + [sym_comment] = ACTIONS(52), + }, + [927] = { + [sym__concat] = ACTIONS(1818), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2160), + [anon_sym_DQUOTE] = ACTIONS(1818), + [sym_raw_string] = ACTIONS(1818), + [anon_sym_DOLLAR] = ACTIONS(2160), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1818), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1818), + [anon_sym_BQUOTE] = ACTIONS(1818), + [anon_sym_LT_LPAREN] = ACTIONS(1818), + [anon_sym_GT_LPAREN] = ACTIONS(1818), + [sym_word] = ACTIONS(1820), + [sym_comment] = ACTIONS(52), + }, + [928] = { + [anon_sym_RBRACE] = ACTIONS(2172), + [sym_comment] = ACTIONS(52), + }, + [929] = { + [sym__concat] = ACTIONS(1824), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2164), + [anon_sym_DQUOTE] = ACTIONS(1824), + [sym_raw_string] = ACTIONS(1824), + [anon_sym_DOLLAR] = ACTIONS(2164), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1824), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1824), + [anon_sym_BQUOTE] = ACTIONS(1824), + [anon_sym_LT_LPAREN] = ACTIONS(1824), + [anon_sym_GT_LPAREN] = ACTIONS(1824), + [sym_word] = ACTIONS(1826), + [sym_comment] = ACTIONS(52), + }, + [930] = { + [anon_sym_RBRACK] = ACTIONS(2174), + [sym_comment] = ACTIONS(52), + }, + [931] = { + [anon_sym_RBRACK] = ACTIONS(2176), + [sym_comment] = ACTIONS(52), + }, + [932] = { + [anon_sym_RBRACE] = ACTIONS(2178), + [sym_comment] = ACTIONS(52), + }, + [933] = { + [sym_file_descriptor] = ACTIONS(1818), + [sym__concat] = ACTIONS(1818), + [sym_variable_name] = ACTIONS(1818), + [anon_sym_LT] = ACTIONS(2160), + [anon_sym_GT] = ACTIONS(2160), + [anon_sym_GT_GT] = ACTIONS(1818), + [anon_sym_AMP_GT] = ACTIONS(2160), + [anon_sym_AMP_GT_GT] = ACTIONS(1818), + [anon_sym_LT_AMP] = ACTIONS(1818), + [anon_sym_GT_AMP] = ACTIONS(1818), + [anon_sym_DQUOTE] = ACTIONS(1818), + [sym_raw_string] = ACTIONS(1818), + [anon_sym_DOLLAR] = ACTIONS(2160), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1818), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1818), + [anon_sym_BQUOTE] = ACTIONS(1818), + [anon_sym_LT_LPAREN] = ACTIONS(1818), + [anon_sym_GT_LPAREN] = ACTIONS(1818), + [sym_word] = ACTIONS(2160), + [sym_comment] = ACTIONS(52), + }, + [934] = { + [anon_sym_RBRACE] = ACTIONS(2180), + [sym_comment] = ACTIONS(52), + }, + [935] = { + [sym_file_descriptor] = ACTIONS(1824), + [sym__concat] = ACTIONS(1824), + [sym_variable_name] = ACTIONS(1824), + [anon_sym_LT] = ACTIONS(2164), + [anon_sym_GT] = ACTIONS(2164), + [anon_sym_GT_GT] = ACTIONS(1824), + [anon_sym_AMP_GT] = ACTIONS(2164), + [anon_sym_AMP_GT_GT] = ACTIONS(1824), + [anon_sym_LT_AMP] = ACTIONS(1824), + [anon_sym_GT_AMP] = ACTIONS(1824), + [anon_sym_DQUOTE] = ACTIONS(1824), + [sym_raw_string] = ACTIONS(1824), + [anon_sym_DOLLAR] = ACTIONS(2164), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1824), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1824), + [anon_sym_BQUOTE] = ACTIONS(1824), + [anon_sym_LT_LPAREN] = ACTIONS(1824), + [anon_sym_GT_LPAREN] = ACTIONS(1824), + [sym_word] = ACTIONS(2164), + [sym_comment] = ACTIONS(52), + }, + [936] = { + [anon_sym_RBRACK] = ACTIONS(2182), + [sym_comment] = ACTIONS(52), + }, + [937] = { + [anon_sym_RBRACK] = ACTIONS(2184), + [sym_comment] = ACTIONS(52), + }, + [938] = { + [anon_sym_RBRACE] = ACTIONS(2186), + [sym_comment] = ACTIONS(52), + }, + [939] = { + [anon_sym_DQUOTE] = ACTIONS(1820), + [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(2160), + [anon_sym_DOLLAR] = ACTIONS(1820), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1820), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1820), + [anon_sym_BQUOTE] = ACTIONS(1820), + [sym_comment] = ACTIONS(142), + }, + [940] = { + [anon_sym_RBRACE] = ACTIONS(2188), + [sym_comment] = ACTIONS(52), + }, + [941] = { + [anon_sym_DQUOTE] = ACTIONS(1826), + [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(2164), + [anon_sym_DOLLAR] = ACTIONS(1826), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1826), + [anon_sym_BQUOTE] = ACTIONS(1826), + [sym_comment] = ACTIONS(142), + }, + [942] = { + [anon_sym_RBRACE] = ACTIONS(2190), + [sym_comment] = ACTIONS(52), + }, + [943] = { + [anon_sym_RBRACE] = ACTIONS(2192), + [sym_comment] = ACTIONS(52), + }, + [944] = { + [sym_file_descriptor] = ACTIONS(2194), + [sym__concat] = ACTIONS(2194), + [anon_sym_PIPE] = ACTIONS(2196), + [anon_sym_RPAREN] = ACTIONS(2196), + [anon_sym_SEMI_SEMI] = ACTIONS(2196), + [anon_sym_PIPE_AMP] = ACTIONS(2196), + [anon_sym_AMP_AMP] = ACTIONS(2196), + [anon_sym_PIPE_PIPE] = ACTIONS(2196), + [anon_sym_LT] = ACTIONS(2196), + [anon_sym_GT] = ACTIONS(2196), + [anon_sym_GT_GT] = ACTIONS(2196), + [anon_sym_AMP_GT] = ACTIONS(2196), + [anon_sym_AMP_GT_GT] = ACTIONS(2196), + [anon_sym_LT_AMP] = ACTIONS(2196), + [anon_sym_GT_AMP] = ACTIONS(2196), + [anon_sym_LT_LT] = ACTIONS(2196), + [anon_sym_LT_LT_DASH] = ACTIONS(2196), + [anon_sym_DQUOTE] = ACTIONS(2196), + [sym_raw_string] = ACTIONS(2196), + [anon_sym_DOLLAR] = ACTIONS(2196), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2196), + [anon_sym_BQUOTE] = ACTIONS(2196), + [anon_sym_LT_LPAREN] = ACTIONS(2196), + [anon_sym_GT_LPAREN] = ACTIONS(2196), + [sym_word] = ACTIONS(2196), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(2196), + [anon_sym_LF] = ACTIONS(2196), + [anon_sym_AMP] = ACTIONS(2196), + }, + [945] = { + [sym_file_descriptor] = ACTIONS(2198), + [sym__concat] = ACTIONS(2198), + [anon_sym_PIPE] = ACTIONS(2200), + [anon_sym_RPAREN] = ACTIONS(2200), + [anon_sym_SEMI_SEMI] = ACTIONS(2200), + [anon_sym_PIPE_AMP] = ACTIONS(2200), + [anon_sym_AMP_AMP] = ACTIONS(2200), + [anon_sym_PIPE_PIPE] = ACTIONS(2200), + [anon_sym_LT] = ACTIONS(2200), + [anon_sym_GT] = ACTIONS(2200), + [anon_sym_GT_GT] = ACTIONS(2200), + [anon_sym_AMP_GT] = ACTIONS(2200), + [anon_sym_AMP_GT_GT] = ACTIONS(2200), + [anon_sym_LT_AMP] = ACTIONS(2200), + [anon_sym_GT_AMP] = ACTIONS(2200), + [anon_sym_LT_LT] = ACTIONS(2200), + [anon_sym_LT_LT_DASH] = ACTIONS(2200), + [anon_sym_DQUOTE] = ACTIONS(2200), + [sym_raw_string] = ACTIONS(2200), + [anon_sym_DOLLAR] = ACTIONS(2200), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2200), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2200), + [anon_sym_BQUOTE] = ACTIONS(2200), + [anon_sym_LT_LPAREN] = ACTIONS(2200), + [anon_sym_GT_LPAREN] = ACTIONS(2200), + [sym_word] = ACTIONS(2200), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(2200), + [anon_sym_LF] = ACTIONS(2200), + [anon_sym_AMP] = ACTIONS(2200), + }, + [946] = { + [sym_file_descriptor] = ACTIONS(1656), + [sym_variable_name] = ACTIONS(1656), + [anon_sym_PIPE] = ACTIONS(2202), + [anon_sym_RPAREN] = ACTIONS(1656), + [anon_sym_PIPE_AMP] = ACTIONS(1656), + [anon_sym_AMP_AMP] = ACTIONS(1656), + [anon_sym_PIPE_PIPE] = ACTIONS(2202), + [anon_sym_LT] = ACTIONS(2202), + [anon_sym_GT] = ACTIONS(2202), + [anon_sym_GT_GT] = ACTIONS(1656), + [anon_sym_AMP_GT] = ACTIONS(2202), + [anon_sym_AMP_GT_GT] = ACTIONS(1656), + [anon_sym_LT_AMP] = ACTIONS(1656), + [anon_sym_GT_AMP] = ACTIONS(1656), + [anon_sym_DQUOTE] = ACTIONS(1656), + [sym_raw_string] = ACTIONS(1656), + [anon_sym_DOLLAR] = ACTIONS(2202), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1656), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1656), + [anon_sym_BQUOTE] = ACTIONS(1656), + [anon_sym_LT_LPAREN] = ACTIONS(1656), + [anon_sym_GT_LPAREN] = ACTIONS(1656), + [sym_word] = ACTIONS(1658), + [sym_comment] = ACTIONS(52), + }, + [947] = { + [sym_file_descriptor] = ACTIONS(834), + [sym__concat] = ACTIONS(834), + [sym_variable_name] = ACTIONS(834), + [anon_sym_PIPE] = ACTIONS(1258), + [anon_sym_RPAREN] = ACTIONS(834), + [anon_sym_PIPE_AMP] = ACTIONS(834), + [anon_sym_AMP_AMP] = ACTIONS(834), + [anon_sym_PIPE_PIPE] = ACTIONS(1258), + [anon_sym_LT] = ACTIONS(1258), + [anon_sym_GT] = ACTIONS(1258), + [anon_sym_GT_GT] = ACTIONS(834), + [anon_sym_AMP_GT] = ACTIONS(1258), + [anon_sym_AMP_GT_GT] = ACTIONS(834), + [anon_sym_LT_AMP] = ACTIONS(834), + [anon_sym_GT_AMP] = ACTIONS(834), + [anon_sym_DQUOTE] = ACTIONS(834), + [sym_raw_string] = ACTIONS(834), + [anon_sym_DOLLAR] = ACTIONS(1258), + [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_word] = ACTIONS(836), + [sym_comment] = ACTIONS(52), + }, + [948] = { + [sym_file_descriptor] = ACTIONS(842), + [sym__concat] = ACTIONS(842), + [sym_variable_name] = ACTIONS(842), + [anon_sym_PIPE] = ACTIONS(1260), + [anon_sym_RPAREN] = ACTIONS(842), + [anon_sym_PIPE_AMP] = ACTIONS(842), + [anon_sym_AMP_AMP] = ACTIONS(842), + [anon_sym_PIPE_PIPE] = ACTIONS(1260), + [anon_sym_LT] = ACTIONS(1260), + [anon_sym_GT] = ACTIONS(1260), + [anon_sym_GT_GT] = ACTIONS(842), + [anon_sym_AMP_GT] = ACTIONS(1260), + [anon_sym_AMP_GT_GT] = ACTIONS(842), + [anon_sym_LT_AMP] = ACTIONS(842), + [anon_sym_GT_AMP] = ACTIONS(842), + [anon_sym_DQUOTE] = ACTIONS(842), + [sym_raw_string] = ACTIONS(842), + [anon_sym_DOLLAR] = ACTIONS(1260), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(842), + [anon_sym_LT_LPAREN] = ACTIONS(842), + [anon_sym_GT_LPAREN] = ACTIONS(842), + [sym_word] = ACTIONS(844), + [sym_comment] = ACTIONS(52), + }, + [949] = { + [sym_string] = STATE(1107), + [sym_simple_expansion] = STATE(1107), + [sym_expansion] = STATE(1107), + [sym_command_substitution] = STATE(1107), + [sym_process_substitution] = STATE(1107), + [anon_sym_DQUOTE] = ACTIONS(882), + [sym_raw_string] = ACTIONS(2204), + [anon_sym_DOLLAR] = ACTIONS(886), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(888), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(890), + [anon_sym_BQUOTE] = ACTIONS(892), + [anon_sym_LT_LPAREN] = ACTIONS(894), + [anon_sym_GT_LPAREN] = ACTIONS(894), + [sym_word] = ACTIONS(2206), + [sym_comment] = ACTIONS(52), + }, + [950] = { + [anon_sym_RBRACE] = ACTIONS(2208), + [anon_sym_LBRACK] = ACTIONS(2210), + [sym_comment] = ACTIONS(52), + }, + [951] = { + [anon_sym_RBRACE] = ACTIONS(2212), + [anon_sym_LBRACK] = ACTIONS(2214), + [sym_comment] = ACTIONS(52), + }, + [952] = { + [sym_file_descriptor] = ACTIONS(858), + [sym__concat] = ACTIONS(858), + [sym_variable_name] = ACTIONS(858), + [anon_sym_PIPE] = ACTIONS(1274), + [anon_sym_RPAREN] = ACTIONS(858), + [anon_sym_PIPE_AMP] = ACTIONS(858), + [anon_sym_AMP_AMP] = ACTIONS(858), + [anon_sym_PIPE_PIPE] = ACTIONS(1274), + [anon_sym_LT] = ACTIONS(1274), + [anon_sym_GT] = ACTIONS(1274), + [anon_sym_GT_GT] = ACTIONS(858), + [anon_sym_AMP_GT] = ACTIONS(1274), + [anon_sym_AMP_GT_GT] = ACTIONS(858), + [anon_sym_LT_AMP] = ACTIONS(858), + [anon_sym_GT_AMP] = ACTIONS(858), + [anon_sym_DQUOTE] = ACTIONS(858), + [sym_raw_string] = ACTIONS(858), + [anon_sym_DOLLAR] = ACTIONS(1274), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(858), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(858), + [anon_sym_LT_LPAREN] = ACTIONS(858), + [anon_sym_GT_LPAREN] = ACTIONS(858), + [sym_word] = ACTIONS(860), + [sym_comment] = ACTIONS(52), + }, + [953] = { + [anon_sym_AT] = ACTIONS(2216), + [sym_comment] = ACTIONS(52), + }, + [954] = { + [sym_concatenation] = STATE(1114), + [sym_string] = STATE(1113), + [sym_simple_expansion] = STATE(1113), + [sym_expansion] = STATE(1113), + [sym_command_substitution] = STATE(1113), + [sym_process_substitution] = STATE(1113), [anon_sym_DQUOTE] = ACTIONS(82), - [sym_raw_string] = ACTIONS(2148), + [sym_raw_string] = ACTIONS(2218), [anon_sym_DOLLAR] = ACTIONS(86), [anon_sym_DOLLAR_LBRACE] = ACTIONS(88), [anon_sym_DOLLAR_LPAREN] = ACTIONS(90), [anon_sym_BQUOTE] = ACTIONS(92), [anon_sym_LT_LPAREN] = ACTIONS(94), [anon_sym_GT_LPAREN] = ACTIONS(94), - [sym_word] = ACTIONS(2150), + [sym_word] = ACTIONS(2220), [sym_comment] = ACTIONS(52), }, - [921] = { - [sym_file_descriptor] = ACTIONS(946), - [sym__concat] = ACTIONS(946), - [sym_variable_name] = ACTIONS(946), - [anon_sym_PIPE] = ACTIONS(1264), - [anon_sym_RPAREN] = ACTIONS(946), - [anon_sym_PIPE_AMP] = ACTIONS(946), - [anon_sym_AMP_AMP] = ACTIONS(946), - [anon_sym_PIPE_PIPE] = ACTIONS(1264), - [anon_sym_LT] = ACTIONS(1264), - [anon_sym_GT] = ACTIONS(1264), - [anon_sym_GT_GT] = ACTIONS(946), - [anon_sym_AMP_GT] = ACTIONS(1264), - [anon_sym_AMP_GT_GT] = ACTIONS(946), - [anon_sym_LT_AMP] = ACTIONS(946), - [anon_sym_GT_AMP] = ACTIONS(946), - [anon_sym_DQUOTE] = ACTIONS(946), - [sym_raw_string] = ACTIONS(946), - [anon_sym_DOLLAR] = ACTIONS(1264), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(946), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(946), - [anon_sym_BQUOTE] = ACTIONS(946), - [anon_sym_LT_LPAREN] = ACTIONS(946), - [anon_sym_GT_LPAREN] = ACTIONS(946), - [sym_word] = ACTIONS(948), + [955] = { + [sym_file_descriptor] = ACTIONS(868), + [sym__concat] = ACTIONS(868), + [sym_variable_name] = ACTIONS(868), + [anon_sym_PIPE] = ACTIONS(1282), + [anon_sym_RPAREN] = ACTIONS(868), + [anon_sym_PIPE_AMP] = ACTIONS(868), + [anon_sym_AMP_AMP] = ACTIONS(868), + [anon_sym_PIPE_PIPE] = ACTIONS(1282), + [anon_sym_LT] = ACTIONS(1282), + [anon_sym_GT] = ACTIONS(1282), + [anon_sym_GT_GT] = ACTIONS(868), + [anon_sym_AMP_GT] = ACTIONS(1282), + [anon_sym_AMP_GT_GT] = ACTIONS(868), + [anon_sym_LT_AMP] = ACTIONS(868), + [anon_sym_GT_AMP] = ACTIONS(868), + [anon_sym_DQUOTE] = ACTIONS(868), + [sym_raw_string] = ACTIONS(868), + [anon_sym_DOLLAR] = ACTIONS(1282), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(868), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(868), + [anon_sym_BQUOTE] = ACTIONS(868), + [anon_sym_LT_LPAREN] = ACTIONS(868), + [anon_sym_GT_LPAREN] = ACTIONS(868), + [sym_word] = ACTIONS(870), [sym_comment] = ACTIONS(52), }, - [922] = { - [sym_file_descriptor] = ACTIONS(984), - [sym__concat] = ACTIONS(984), - [sym_variable_name] = ACTIONS(984), - [anon_sym_PIPE] = ACTIONS(1266), - [anon_sym_RPAREN] = ACTIONS(984), - [anon_sym_PIPE_AMP] = ACTIONS(984), - [anon_sym_AMP_AMP] = ACTIONS(984), - [anon_sym_PIPE_PIPE] = ACTIONS(1266), - [anon_sym_LT] = ACTIONS(1266), - [anon_sym_GT] = ACTIONS(1266), - [anon_sym_GT_GT] = ACTIONS(984), - [anon_sym_AMP_GT] = ACTIONS(1266), - [anon_sym_AMP_GT_GT] = ACTIONS(984), - [anon_sym_LT_AMP] = ACTIONS(984), - [anon_sym_GT_AMP] = ACTIONS(984), - [anon_sym_DQUOTE] = ACTIONS(984), - [sym_raw_string] = ACTIONS(984), - [anon_sym_DOLLAR] = ACTIONS(1266), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(984), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(984), - [anon_sym_BQUOTE] = ACTIONS(984), - [anon_sym_LT_LPAREN] = ACTIONS(984), - [anon_sym_GT_LPAREN] = ACTIONS(984), - [sym_word] = ACTIONS(986), + [956] = { + [anon_sym_AT] = ACTIONS(2222), [sym_comment] = ACTIONS(52), }, - [923] = { - [sym_do_group] = STATE(1070), - [anon_sym_do] = ACTIONS(886), + [957] = { + [sym_concatenation] = STATE(1117), + [sym_string] = STATE(1116), + [sym_simple_expansion] = STATE(1116), + [sym_expansion] = STATE(1116), + [sym_command_substitution] = STATE(1116), + [sym_process_substitution] = STATE(1116), + [anon_sym_DQUOTE] = ACTIONS(82), + [sym_raw_string] = ACTIONS(2224), + [anon_sym_DOLLAR] = ACTIONS(86), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(88), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(90), + [anon_sym_BQUOTE] = ACTIONS(92), + [anon_sym_LT_LPAREN] = ACTIONS(94), + [anon_sym_GT_LPAREN] = ACTIONS(94), + [sym_word] = ACTIONS(2226), [sym_comment] = ACTIONS(52), }, - [924] = { - [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), - [anon_sym_BQUOTE] = ACTIONS(2154), + [958] = { + [sym_file_descriptor] = ACTIONS(960), + [sym__concat] = ACTIONS(960), + [sym_variable_name] = ACTIONS(960), + [anon_sym_PIPE] = ACTIONS(1290), + [anon_sym_RPAREN] = ACTIONS(960), + [anon_sym_PIPE_AMP] = ACTIONS(960), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(1290), + [anon_sym_LT] = ACTIONS(1290), + [anon_sym_GT] = ACTIONS(1290), + [anon_sym_GT_GT] = ACTIONS(960), + [anon_sym_AMP_GT] = ACTIONS(1290), + [anon_sym_AMP_GT_GT] = ACTIONS(960), + [anon_sym_LT_AMP] = ACTIONS(960), + [anon_sym_GT_AMP] = ACTIONS(960), + [anon_sym_DQUOTE] = ACTIONS(960), + [sym_raw_string] = ACTIONS(960), + [anon_sym_DOLLAR] = ACTIONS(1290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(960), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(960), + [anon_sym_BQUOTE] = ACTIONS(960), + [anon_sym_LT_LPAREN] = ACTIONS(960), + [anon_sym_GT_LPAREN] = ACTIONS(960), + [sym_word] = ACTIONS(962), [sym_comment] = ACTIONS(52), }, - [925] = { - [anon_sym_PIPE] = ACTIONS(2156), - [anon_sym_RPAREN] = ACTIONS(2158), - [anon_sym_PIPE_AMP] = ACTIONS(2158), - [anon_sym_AMP_AMP] = ACTIONS(2158), - [anon_sym_PIPE_PIPE] = ACTIONS(2158), - [anon_sym_BQUOTE] = ACTIONS(2158), + [959] = { + [sym_file_descriptor] = ACTIONS(998), + [sym__concat] = ACTIONS(998), + [sym_variable_name] = ACTIONS(998), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_RPAREN] = ACTIONS(998), + [anon_sym_PIPE_AMP] = ACTIONS(998), + [anon_sym_AMP_AMP] = ACTIONS(998), + [anon_sym_PIPE_PIPE] = ACTIONS(1292), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(998), + [anon_sym_AMP_GT] = ACTIONS(1292), + [anon_sym_AMP_GT_GT] = ACTIONS(998), + [anon_sym_LT_AMP] = ACTIONS(998), + [anon_sym_GT_AMP] = ACTIONS(998), + [anon_sym_DQUOTE] = ACTIONS(998), + [sym_raw_string] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(998), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(998), + [anon_sym_BQUOTE] = ACTIONS(998), + [anon_sym_LT_LPAREN] = ACTIONS(998), + [anon_sym_GT_LPAREN] = ACTIONS(998), + [sym_word] = ACTIONS(1000), [sym_comment] = ACTIONS(52), }, - [926] = { - [anon_sym_fi] = ACTIONS(2160), + [960] = { + [sym_do_group] = STATE(1118), + [anon_sym_do] = ACTIONS(900), [sym_comment] = ACTIONS(52), }, - [927] = { - [sym_elif_clause] = STATE(642), - [sym_else_clause] = STATE(1072), - [anon_sym_fi] = ACTIONS(2160), - [anon_sym_elif] = ACTIONS(1190), - [anon_sym_else] = ACTIONS(1192), + [961] = { + [anon_sym_PIPE] = ACTIONS(2228), + [anon_sym_RPAREN] = ACTIONS(2230), + [anon_sym_PIPE_AMP] = ACTIONS(2230), + [anon_sym_AMP_AMP] = ACTIONS(2230), + [anon_sym_PIPE_PIPE] = ACTIONS(2230), + [anon_sym_BQUOTE] = ACTIONS(2230), [sym_comment] = ACTIONS(52), }, - [928] = { - [anon_sym_PIPE] = ACTIONS(2162), - [anon_sym_RPAREN] = ACTIONS(2164), - [anon_sym_PIPE_AMP] = ACTIONS(2164), - [anon_sym_AMP_AMP] = ACTIONS(2164), + [962] = { + [anon_sym_PIPE] = ACTIONS(2232), + [anon_sym_RPAREN] = ACTIONS(2234), + [anon_sym_PIPE_AMP] = ACTIONS(2234), + [anon_sym_AMP_AMP] = ACTIONS(2234), + [anon_sym_PIPE_PIPE] = ACTIONS(2234), + [anon_sym_BQUOTE] = ACTIONS(2234), + [sym_comment] = ACTIONS(52), + }, + [963] = { + [anon_sym_fi] = ACTIONS(2236), + [sym_comment] = ACTIONS(52), + }, + [964] = { + [sym_elif_clause] = STATE(666), + [sym_else_clause] = STATE(1120), + [anon_sym_fi] = ACTIONS(2236), + [anon_sym_elif] = ACTIONS(1216), + [anon_sym_else] = ACTIONS(1218), + [sym_comment] = ACTIONS(52), + }, + [965] = { + [anon_sym_PIPE] = ACTIONS(2238), + [anon_sym_RPAREN] = ACTIONS(2240), + [anon_sym_PIPE_AMP] = ACTIONS(2240), + [anon_sym_AMP_AMP] = ACTIONS(2240), + [anon_sym_PIPE_PIPE] = ACTIONS(2240), + [anon_sym_BQUOTE] = ACTIONS(2240), + [sym_comment] = ACTIONS(52), + }, + [966] = { + [sym_case_item] = STATE(909), + [sym_concatenation] = STATE(670), + [sym_string] = STATE(668), + [sym_simple_expansion] = STATE(668), + [sym_expansion] = STATE(668), + [sym_command_substitution] = STATE(668), + [sym_process_substitution] = STATE(668), + [anon_sym_esac] = ACTIONS(2242), + [anon_sym_DQUOTE] = ACTIONS(254), + [sym_raw_string] = ACTIONS(1222), + [anon_sym_DOLLAR] = ACTIONS(258), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(260), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(262), + [anon_sym_BQUOTE] = ACTIONS(264), + [anon_sym_LT_LPAREN] = ACTIONS(266), + [anon_sym_GT_LPAREN] = ACTIONS(266), + [sym_word] = ACTIONS(1224), + [sym_comment] = ACTIONS(52), + }, + [967] = { + [sym_case_item] = STATE(669), + [sym_concatenation] = STATE(670), + [sym_string] = STATE(668), + [sym_simple_expansion] = STATE(668), + [sym_expansion] = STATE(668), + [sym_command_substitution] = STATE(668), + [sym_process_substitution] = STATE(668), + [aux_sym_case_statement_repeat1] = STATE(1122), + [anon_sym_esac] = ACTIONS(2242), + [anon_sym_DQUOTE] = ACTIONS(254), + [sym_raw_string] = ACTIONS(1222), + [anon_sym_DOLLAR] = ACTIONS(258), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(260), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(262), + [anon_sym_BQUOTE] = ACTIONS(264), + [anon_sym_LT_LPAREN] = ACTIONS(266), + [anon_sym_GT_LPAREN] = ACTIONS(266), + [sym_word] = ACTIONS(1224), + [sym_comment] = ACTIONS(52), + }, + [968] = { + [sym_file_redirect] = STATE(1123), + [sym_file_descriptor] = ACTIONS(950), + [anon_sym_PIPE] = ACTIONS(2244), + [anon_sym_RPAREN] = ACTIONS(2246), + [anon_sym_PIPE_AMP] = ACTIONS(2246), + [anon_sym_AMP_AMP] = ACTIONS(2246), + [anon_sym_PIPE_PIPE] = ACTIONS(2246), + [anon_sym_LT] = ACTIONS(956), + [anon_sym_GT] = ACTIONS(956), + [anon_sym_GT_GT] = ACTIONS(958), + [anon_sym_AMP_GT] = ACTIONS(956), + [anon_sym_AMP_GT_GT] = ACTIONS(958), + [anon_sym_LT_AMP] = ACTIONS(958), + [anon_sym_GT_AMP] = ACTIONS(958), + [anon_sym_BQUOTE] = ACTIONS(2246), + [sym_comment] = ACTIONS(52), + }, + [969] = { + [anon_sym_PIPE] = ACTIONS(2248), + [anon_sym_RPAREN] = ACTIONS(2250), + [anon_sym_PIPE_AMP] = ACTIONS(2250), + [anon_sym_AMP_AMP] = ACTIONS(2250), + [anon_sym_PIPE_PIPE] = ACTIONS(2250), + [anon_sym_BQUOTE] = ACTIONS(2250), + [sym_comment] = ACTIONS(52), + }, + [970] = { + [anon_sym_RBRACK] = ACTIONS(2252), + [sym_comment] = ACTIONS(52), + }, + [971] = { + [anon_sym_RBRACK] = ACTIONS(2254), + [sym_comment] = ACTIONS(52), + }, + [972] = { + [anon_sym_RBRACE] = ACTIONS(2256), + [sym_comment] = ACTIONS(52), + }, + [973] = { + [sym_file_descriptor] = ACTIONS(1818), + [sym__concat] = ACTIONS(1818), + [anon_sym_PIPE] = ACTIONS(2160), + [anon_sym_RPAREN] = ACTIONS(1818), + [anon_sym_PIPE_AMP] = ACTIONS(1818), + [anon_sym_AMP_AMP] = ACTIONS(1818), + [anon_sym_PIPE_PIPE] = ACTIONS(2160), + [anon_sym_LT] = ACTIONS(2160), + [anon_sym_GT] = ACTIONS(2160), + [anon_sym_GT_GT] = ACTIONS(1818), + [anon_sym_AMP_GT] = ACTIONS(2160), + [anon_sym_AMP_GT_GT] = ACTIONS(1818), + [anon_sym_LT_AMP] = ACTIONS(1818), + [anon_sym_GT_AMP] = ACTIONS(1818), + [anon_sym_LT_LT] = ACTIONS(2160), + [anon_sym_LT_LT_DASH] = ACTIONS(1818), + [anon_sym_DQUOTE] = ACTIONS(1818), + [sym_raw_string] = ACTIONS(1818), + [anon_sym_DOLLAR] = ACTIONS(2160), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1818), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1818), + [anon_sym_BQUOTE] = ACTIONS(1818), + [anon_sym_LT_LPAREN] = ACTIONS(1818), + [anon_sym_GT_LPAREN] = ACTIONS(1818), + [sym_word] = ACTIONS(1820), + [sym_comment] = ACTIONS(52), + }, + [974] = { + [anon_sym_RBRACE] = ACTIONS(2258), + [sym_comment] = ACTIONS(52), + }, + [975] = { + [sym_file_descriptor] = ACTIONS(1824), + [sym__concat] = ACTIONS(1824), + [anon_sym_PIPE] = ACTIONS(2164), + [anon_sym_RPAREN] = ACTIONS(1824), + [anon_sym_PIPE_AMP] = ACTIONS(1824), + [anon_sym_AMP_AMP] = ACTIONS(1824), [anon_sym_PIPE_PIPE] = ACTIONS(2164), - [anon_sym_BQUOTE] = ACTIONS(2164), + [anon_sym_LT] = ACTIONS(2164), + [anon_sym_GT] = ACTIONS(2164), + [anon_sym_GT_GT] = ACTIONS(1824), + [anon_sym_AMP_GT] = ACTIONS(2164), + [anon_sym_AMP_GT_GT] = ACTIONS(1824), + [anon_sym_LT_AMP] = ACTIONS(1824), + [anon_sym_GT_AMP] = ACTIONS(1824), + [anon_sym_LT_LT] = ACTIONS(2164), + [anon_sym_LT_LT_DASH] = ACTIONS(1824), + [anon_sym_DQUOTE] = ACTIONS(1824), + [sym_raw_string] = ACTIONS(1824), + [anon_sym_DOLLAR] = ACTIONS(2164), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1824), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1824), + [anon_sym_BQUOTE] = ACTIONS(1824), + [anon_sym_LT_LPAREN] = ACTIONS(1824), + [anon_sym_GT_LPAREN] = ACTIONS(1824), + [sym_word] = ACTIONS(1826), [sym_comment] = ACTIONS(52), }, - [929] = { - [sym_case_item] = STATE(872), - [sym_concatenation] = STATE(646), - [sym_string] = STATE(644), - [sym_simple_expansion] = STATE(644), - [sym_expansion] = STATE(644), - [sym_command_substitution] = STATE(644), - [sym_process_substitution] = STATE(644), - [anon_sym_esac] = ACTIONS(2166), - [anon_sym_DQUOTE] = ACTIONS(254), - [sym_raw_string] = ACTIONS(1196), - [anon_sym_DOLLAR] = ACTIONS(258), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(260), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_LT_LPAREN] = ACTIONS(266), - [anon_sym_GT_LPAREN] = ACTIONS(266), - [sym_word] = ACTIONS(1198), + [976] = { + [anon_sym_PIPE] = ACTIONS(2244), + [anon_sym_RPAREN] = ACTIONS(2246), + [anon_sym_PIPE_AMP] = ACTIONS(2246), + [anon_sym_AMP_AMP] = ACTIONS(2246), + [anon_sym_PIPE_PIPE] = ACTIONS(2246), + [anon_sym_BQUOTE] = ACTIONS(2246), [sym_comment] = ACTIONS(52), }, - [930] = { - [sym_case_item] = STATE(645), - [sym_concatenation] = STATE(646), - [sym_string] = STATE(644), - [sym_simple_expansion] = STATE(644), - [sym_expansion] = STATE(644), - [sym_command_substitution] = STATE(644), - [sym_process_substitution] = STATE(644), - [aux_sym_case_statement_repeat1] = STATE(1074), - [anon_sym_esac] = ACTIONS(2166), - [anon_sym_DQUOTE] = ACTIONS(254), - [sym_raw_string] = ACTIONS(1196), - [anon_sym_DOLLAR] = ACTIONS(258), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(260), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_LT_LPAREN] = ACTIONS(266), - [anon_sym_GT_LPAREN] = ACTIONS(266), - [sym_word] = ACTIONS(1198), - [sym_comment] = ACTIONS(52), - }, - [931] = { - [sym_file_redirect] = STATE(1075), - [sym_file_descriptor] = ACTIONS(936), - [anon_sym_PIPE] = ACTIONS(2168), - [anon_sym_RPAREN] = ACTIONS(2170), - [anon_sym_PIPE_AMP] = ACTIONS(2170), - [anon_sym_AMP_AMP] = ACTIONS(2170), - [anon_sym_PIPE_PIPE] = ACTIONS(2170), - [anon_sym_LT] = ACTIONS(942), - [anon_sym_GT] = ACTIONS(942), - [anon_sym_GT_GT] = ACTIONS(944), - [anon_sym_AMP_GT] = ACTIONS(942), - [anon_sym_AMP_GT_GT] = ACTIONS(944), - [anon_sym_LT_AMP] = ACTIONS(944), - [anon_sym_GT_AMP] = ACTIONS(944), - [anon_sym_BQUOTE] = ACTIONS(2170), - [sym_comment] = ACTIONS(52), - }, - [932] = { - [anon_sym_PIPE] = ACTIONS(2172), - [anon_sym_RPAREN] = ACTIONS(2174), - [anon_sym_PIPE_AMP] = ACTIONS(2174), - [anon_sym_AMP_AMP] = ACTIONS(2174), - [anon_sym_PIPE_PIPE] = ACTIONS(2174), - [anon_sym_BQUOTE] = ACTIONS(2174), - [sym_comment] = ACTIONS(52), - }, - [933] = { - [anon_sym_RBRACK] = ACTIONS(2176), - [sym_comment] = ACTIONS(52), - }, - [934] = { - [anon_sym_RBRACK] = ACTIONS(2178), - [sym_comment] = ACTIONS(52), - }, - [935] = { - [anon_sym_RBRACE] = ACTIONS(2180), - [sym_comment] = ACTIONS(52), - }, - [936] = { - [sym_file_descriptor] = ACTIONS(1766), - [sym__concat] = ACTIONS(1766), - [anon_sym_PIPE] = ACTIONS(2084), - [anon_sym_RPAREN] = ACTIONS(1766), - [anon_sym_PIPE_AMP] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(2084), - [anon_sym_LT] = ACTIONS(2084), - [anon_sym_GT] = ACTIONS(2084), - [anon_sym_GT_GT] = ACTIONS(1766), - [anon_sym_AMP_GT] = ACTIONS(2084), - [anon_sym_AMP_GT_GT] = ACTIONS(1766), - [anon_sym_LT_AMP] = ACTIONS(1766), - [anon_sym_GT_AMP] = ACTIONS(1766), - [anon_sym_LT_LT] = ACTIONS(2084), - [anon_sym_LT_LT_DASH] = ACTIONS(1766), - [anon_sym_DQUOTE] = ACTIONS(1766), - [sym_raw_string] = ACTIONS(1766), - [anon_sym_DOLLAR] = ACTIONS(2084), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1766), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1766), - [anon_sym_BQUOTE] = ACTIONS(1766), - [anon_sym_LT_LPAREN] = ACTIONS(1766), - [anon_sym_GT_LPAREN] = ACTIONS(1766), - [sym_word] = ACTIONS(1768), - [sym_comment] = ACTIONS(52), - }, - [937] = { - [anon_sym_RBRACE] = ACTIONS(2182), - [sym_comment] = ACTIONS(52), - }, - [938] = { - [sym_file_descriptor] = ACTIONS(1772), - [sym__concat] = ACTIONS(1772), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(1772), - [anon_sym_PIPE_AMP] = ACTIONS(1772), - [anon_sym_AMP_AMP] = ACTIONS(1772), - [anon_sym_PIPE_PIPE] = ACTIONS(2088), - [anon_sym_LT] = ACTIONS(2088), - [anon_sym_GT] = ACTIONS(2088), - [anon_sym_GT_GT] = ACTIONS(1772), - [anon_sym_AMP_GT] = ACTIONS(2088), - [anon_sym_AMP_GT_GT] = ACTIONS(1772), - [anon_sym_LT_AMP] = ACTIONS(1772), - [anon_sym_GT_AMP] = ACTIONS(1772), - [anon_sym_LT_LT] = ACTIONS(2088), - [anon_sym_LT_LT_DASH] = ACTIONS(1772), - [anon_sym_DQUOTE] = ACTIONS(1772), - [sym_raw_string] = ACTIONS(1772), - [anon_sym_DOLLAR] = ACTIONS(2088), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1772), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1772), - [anon_sym_BQUOTE] = ACTIONS(1772), - [anon_sym_LT_LPAREN] = ACTIONS(1772), - [anon_sym_GT_LPAREN] = ACTIONS(1772), - [sym_word] = ACTIONS(1774), - [sym_comment] = ACTIONS(52), - }, - [939] = { - [anon_sym_PIPE] = ACTIONS(2168), - [anon_sym_RPAREN] = ACTIONS(2170), - [anon_sym_PIPE_AMP] = ACTIONS(2170), - [anon_sym_AMP_AMP] = ACTIONS(2170), - [anon_sym_PIPE_PIPE] = ACTIONS(2170), - [anon_sym_BQUOTE] = ACTIONS(2170), - [sym_comment] = ACTIONS(52), - }, - [940] = { - [aux_sym_concatenation_repeat1] = STATE(945), - [sym__concat] = ACTIONS(1860), + [977] = { + [aux_sym_concatenation_repeat1] = STATE(982), + [sym__concat] = ACTIONS(1912), [anon_sym_PIPE] = ACTIONS(582), [anon_sym_RPAREN] = ACTIONS(580), [anon_sym_PIPE_AMP] = ACTIONS(580), @@ -21936,7 +22744,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(580), [sym_comment] = ACTIONS(52), }, - [941] = { + [978] = { [anon_sym_PIPE] = ACTIONS(582), [anon_sym_RPAREN] = ACTIONS(580), [anon_sym_PIPE_AMP] = ACTIONS(580), @@ -21945,9 +22753,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(580), [sym_comment] = ACTIONS(52), }, - [942] = { + [979] = { [sym__concat] = ACTIONS(386), - [anon_sym_PIPE] = ACTIONS(694), + [anon_sym_PIPE] = ACTIONS(708), [anon_sym_RPAREN] = ACTIONS(386), [anon_sym_PIPE_AMP] = ACTIONS(386), [anon_sym_AMP_AMP] = ACTIONS(386), @@ -21955,11 +22763,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(386), [sym_comment] = ACTIONS(52), }, - [943] = { + [980] = { [sym_simple_expansion] = STATE(253), [sym_expansion] = STATE(253), [sym_command_substitution] = STATE(253), - [anon_sym_DQUOTE] = ACTIONS(2184), + [anon_sym_DQUOTE] = ACTIONS(2260), [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(406), [anon_sym_DOLLAR] = ACTIONS(134), [anon_sym_DOLLAR_LBRACE] = ACTIONS(136), @@ -21967,26 +22775,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(140), [sym_comment] = ACTIONS(142), }, - [944] = { - [sym_string] = STATE(1081), - [sym_simple_expansion] = STATE(1081), - [sym_expansion] = STATE(1081), - [sym_command_substitution] = STATE(1081), - [sym_process_substitution] = STATE(1081), - [anon_sym_DQUOTE] = ACTIONS(1442), - [sym_raw_string] = ACTIONS(2186), - [anon_sym_DOLLAR] = ACTIONS(1446), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1448), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1450), - [anon_sym_BQUOTE] = ACTIONS(1452), - [anon_sym_LT_LPAREN] = ACTIONS(1454), - [anon_sym_GT_LPAREN] = ACTIONS(1454), - [sym_word] = ACTIONS(2188), + [981] = { + [sym_string] = STATE(1129), + [sym_simple_expansion] = STATE(1129), + [sym_expansion] = STATE(1129), + [sym_command_substitution] = STATE(1129), + [sym_process_substitution] = STATE(1129), + [anon_sym_DQUOTE] = ACTIONS(1468), + [sym_raw_string] = ACTIONS(2262), + [anon_sym_DOLLAR] = ACTIONS(1472), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1474), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1476), + [anon_sym_BQUOTE] = ACTIONS(1478), + [anon_sym_LT_LPAREN] = ACTIONS(1480), + [anon_sym_GT_LPAREN] = ACTIONS(1480), + [sym_word] = ACTIONS(2264), [sym_comment] = ACTIONS(52), }, - [945] = { - [sym__concat] = ACTIONS(2190), - [anon_sym_PIPE] = ACTIONS(704), + [982] = { + [sym__concat] = ACTIONS(2266), + [anon_sym_PIPE] = ACTIONS(718), [anon_sym_RPAREN] = ACTIONS(412), [anon_sym_PIPE_AMP] = ACTIONS(412), [anon_sym_AMP_AMP] = ACTIONS(412), @@ -21994,7 +22802,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(412), [sym_comment] = ACTIONS(52), }, - [946] = { + [983] = { [sym__concat] = ACTIONS(418), [anon_sym_PIPE] = ACTIONS(430), [anon_sym_RPAREN] = ACTIONS(418), @@ -22004,9 +22812,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(418), [sym_comment] = ACTIONS(52), }, - [947] = { + [984] = { [sym__concat] = ACTIONS(422), - [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_PIPE] = ACTIONS(720), [anon_sym_RPAREN] = ACTIONS(422), [anon_sym_PIPE_AMP] = ACTIONS(422), [anon_sym_AMP_AMP] = ACTIONS(422), @@ -22014,9 +22822,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(422), [sym_comment] = ACTIONS(52), }, - [948] = { + [985] = { [sym__concat] = ACTIONS(426), - [anon_sym_PIPE] = ACTIONS(708), + [anon_sym_PIPE] = ACTIONS(722), [anon_sym_RPAREN] = ACTIONS(426), [anon_sym_PIPE_AMP] = ACTIONS(426), [anon_sym_AMP_AMP] = ACTIONS(426), @@ -22024,8 +22832,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(426), [sym_comment] = ACTIONS(52), }, - [949] = { - [sym_special_variable_name] = STATE(1084), + [986] = { + [sym_special_variable_name] = STATE(1132), [anon_sym_RBRACE] = ACTIONS(418), [anon_sym_LBRACK] = ACTIONS(418), [anon_sym_EQ] = ACTIONS(418), @@ -22038,7 +22846,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(418), [anon_sym_SLASH] = ACTIONS(418), [sym_comment] = ACTIONS(142), - [sym_simple_variable_name] = ACTIONS(2192), + [sym_simple_variable_name] = ACTIONS(2268), [anon_sym_STAR] = ACTIONS(156), [anon_sym_QMARK] = ACTIONS(156), [anon_sym_DASH] = ACTIONS(156), @@ -22046,41 +22854,41 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_0] = ACTIONS(162), [anon_sym__] = ACTIONS(162), }, - [950] = { - [anon_sym_RBRACE] = ACTIONS(2194), - [anon_sym_LBRACK] = ACTIONS(2196), - [anon_sym_EQ] = ACTIONS(2198), - [anon_sym_COLON] = ACTIONS(2200), - [anon_sym_COLON_QMARK] = ACTIONS(2198), - [anon_sym_COLON_DASH] = ACTIONS(2198), - [anon_sym_PERCENT] = ACTIONS(2198), - [anon_sym_SLASH] = ACTIONS(2198), + [987] = { + [anon_sym_RBRACE] = ACTIONS(2270), + [anon_sym_LBRACK] = ACTIONS(2272), + [anon_sym_EQ] = ACTIONS(2274), + [anon_sym_COLON] = ACTIONS(2276), + [anon_sym_COLON_QMARK] = ACTIONS(2274), + [anon_sym_COLON_DASH] = ACTIONS(2274), + [anon_sym_PERCENT] = ACTIONS(2274), + [anon_sym_SLASH] = ACTIONS(2274), [sym_comment] = ACTIONS(52), }, - [951] = { - [anon_sym_RBRACE] = ACTIONS(2202), - [anon_sym_LBRACK] = ACTIONS(2204), - [anon_sym_EQ] = ACTIONS(2206), - [anon_sym_COLON] = ACTIONS(2208), - [anon_sym_COLON_QMARK] = ACTIONS(2206), - [anon_sym_COLON_DASH] = ACTIONS(2206), - [anon_sym_PERCENT] = ACTIONS(2206), - [anon_sym_SLASH] = ACTIONS(2206), + [988] = { + [anon_sym_RBRACE] = ACTIONS(2278), + [anon_sym_LBRACK] = ACTIONS(2280), + [anon_sym_EQ] = ACTIONS(2282), + [anon_sym_COLON] = ACTIONS(2284), + [anon_sym_COLON_QMARK] = ACTIONS(2282), + [anon_sym_COLON_DASH] = ACTIONS(2282), + [anon_sym_PERCENT] = ACTIONS(2282), + [anon_sym_SLASH] = ACTIONS(2282), [sym_comment] = ACTIONS(52), }, - [952] = { + [989] = { [anon_sym_PIPE] = ACTIONS(480), - [anon_sym_RPAREN] = ACTIONS(2210), + [anon_sym_RPAREN] = ACTIONS(2286), [anon_sym_PIPE_AMP] = ACTIONS(484), [anon_sym_AMP_AMP] = ACTIONS(486), [anon_sym_PIPE_PIPE] = ACTIONS(486), [sym_comment] = ACTIONS(52), }, - [953] = { + [990] = { [sym_file_descriptor] = ACTIONS(238), [sym_variable_name] = ACTIONS(238), [anon_sym_PIPE] = ACTIONS(480), - [anon_sym_RPAREN] = ACTIONS(2210), + [anon_sym_RPAREN] = ACTIONS(2286), [anon_sym_PIPE_AMP] = ACTIONS(484), [anon_sym_AMP_AMP] = ACTIONS(486), [anon_sym_PIPE_PIPE] = ACTIONS(506), @@ -22102,15 +22910,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(240), [sym_comment] = ACTIONS(52), }, - [954] = { + [991] = { [anon_sym_PIPE] = ACTIONS(510), [anon_sym_PIPE_AMP] = ACTIONS(512), [anon_sym_AMP_AMP] = ACTIONS(514), [anon_sym_PIPE_PIPE] = ACTIONS(514), - [anon_sym_BQUOTE] = ACTIONS(2210), + [anon_sym_BQUOTE] = ACTIONS(2286), [sym_comment] = ACTIONS(52), }, - [955] = { + [992] = { [sym_file_descriptor] = ACTIONS(238), [sym_variable_name] = ACTIONS(238), [anon_sym_PIPE] = ACTIONS(510), @@ -22129,25 +22937,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(242), [anon_sym_DOLLAR_LBRACE] = ACTIONS(238), [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(2210), + [anon_sym_BQUOTE] = ACTIONS(2286), [anon_sym_LT_LPAREN] = ACTIONS(238), [anon_sym_GT_LPAREN] = ACTIONS(238), [sym_word] = ACTIONS(240), [sym_comment] = ACTIONS(52), }, - [956] = { + [993] = { [anon_sym_PIPE] = ACTIONS(480), - [anon_sym_RPAREN] = ACTIONS(2212), + [anon_sym_RPAREN] = ACTIONS(2288), [anon_sym_PIPE_AMP] = ACTIONS(484), [anon_sym_AMP_AMP] = ACTIONS(486), [anon_sym_PIPE_PIPE] = ACTIONS(486), [sym_comment] = ACTIONS(52), }, - [957] = { + [994] = { [sym_file_descriptor] = ACTIONS(238), [sym_variable_name] = ACTIONS(238), [anon_sym_PIPE] = ACTIONS(480), - [anon_sym_RPAREN] = ACTIONS(2212), + [anon_sym_RPAREN] = ACTIONS(2288), [anon_sym_PIPE_AMP] = ACTIONS(484), [anon_sym_AMP_AMP] = ACTIONS(486), [anon_sym_PIPE_PIPE] = ACTIONS(506), @@ -22169,768 +22977,846 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(240), [sym_comment] = ACTIONS(52), }, - [958] = { - [sym_file_descriptor] = ACTIONS(820), - [sym__concat] = ACTIONS(820), - [anon_sym_PIPE] = ACTIONS(1232), - [anon_sym_RPAREN] = ACTIONS(820), - [anon_sym_PIPE_AMP] = ACTIONS(820), - [anon_sym_AMP_AMP] = ACTIONS(820), - [anon_sym_PIPE_PIPE] = ACTIONS(820), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_GT] = ACTIONS(1232), - [anon_sym_GT_GT] = ACTIONS(820), - [anon_sym_AMP_GT] = ACTIONS(1232), - [anon_sym_AMP_GT_GT] = ACTIONS(820), - [anon_sym_LT_AMP] = ACTIONS(820), - [anon_sym_GT_AMP] = ACTIONS(820), - [anon_sym_LT_LT] = ACTIONS(1232), - [anon_sym_LT_LT_DASH] = ACTIONS(820), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_comment] = ACTIONS(52), - }, - [959] = { - [sym_file_descriptor] = ACTIONS(828), - [sym__concat] = ACTIONS(828), - [anon_sym_PIPE] = ACTIONS(1234), - [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(1234), - [anon_sym_GT] = ACTIONS(1234), - [anon_sym_GT_GT] = ACTIONS(828), - [anon_sym_AMP_GT] = ACTIONS(1234), - [anon_sym_AMP_GT_GT] = ACTIONS(828), - [anon_sym_LT_AMP] = ACTIONS(828), - [anon_sym_GT_AMP] = ACTIONS(828), - [anon_sym_LT_LT] = ACTIONS(1234), - [anon_sym_LT_LT_DASH] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(828), - [sym_comment] = ACTIONS(52), - }, - [960] = { - [sym_string] = STATE(1093), - [sym_simple_expansion] = STATE(1093), - [sym_expansion] = STATE(1093), - [sym_command_substitution] = STATE(1093), - [sym_process_substitution] = STATE(1093), - [anon_sym_DQUOTE] = ACTIONS(954), - [sym_raw_string] = ACTIONS(2214), - [anon_sym_DOLLAR] = ACTIONS(958), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(960), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(962), - [anon_sym_BQUOTE] = ACTIONS(964), - [anon_sym_LT_LPAREN] = ACTIONS(966), - [anon_sym_GT_LPAREN] = ACTIONS(966), - [sym_word] = ACTIONS(2216), - [sym_comment] = ACTIONS(52), - }, - [961] = { - [anon_sym_RBRACE] = ACTIONS(2218), - [anon_sym_LBRACK] = ACTIONS(2220), - [sym_comment] = ACTIONS(52), - }, - [962] = { - [anon_sym_RBRACE] = ACTIONS(2222), - [anon_sym_LBRACK] = ACTIONS(2224), - [sym_comment] = ACTIONS(52), - }, - [963] = { - [sym_file_descriptor] = ACTIONS(844), - [sym__concat] = ACTIONS(844), - [anon_sym_PIPE] = ACTIONS(1248), - [anon_sym_RPAREN] = ACTIONS(844), - [anon_sym_PIPE_AMP] = ACTIONS(844), - [anon_sym_AMP_AMP] = ACTIONS(844), - [anon_sym_PIPE_PIPE] = ACTIONS(844), - [anon_sym_LT] = ACTIONS(1248), - [anon_sym_GT] = ACTIONS(1248), - [anon_sym_GT_GT] = ACTIONS(844), - [anon_sym_AMP_GT] = ACTIONS(1248), - [anon_sym_AMP_GT_GT] = ACTIONS(844), - [anon_sym_LT_AMP] = ACTIONS(844), - [anon_sym_GT_AMP] = ACTIONS(844), - [anon_sym_LT_LT] = ACTIONS(1248), - [anon_sym_LT_LT_DASH] = ACTIONS(844), - [anon_sym_BQUOTE] = ACTIONS(844), - [sym_comment] = ACTIONS(52), - }, - [964] = { - [anon_sym_AT] = ACTIONS(2226), - [sym_comment] = ACTIONS(52), - }, - [965] = { - [sym_concatenation] = STATE(1100), - [sym_string] = STATE(1099), - [sym_simple_expansion] = STATE(1099), - [sym_expansion] = STATE(1099), - [sym_command_substitution] = STATE(1099), - [sym_process_substitution] = STATE(1099), - [anon_sym_DQUOTE] = ACTIONS(82), - [sym_raw_string] = ACTIONS(2228), - [anon_sym_DOLLAR] = ACTIONS(86), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(88), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(90), - [anon_sym_BQUOTE] = ACTIONS(92), - [anon_sym_LT_LPAREN] = ACTIONS(94), - [anon_sym_GT_LPAREN] = ACTIONS(94), - [sym_word] = ACTIONS(2230), - [sym_comment] = ACTIONS(52), - }, - [966] = { - [sym_file_descriptor] = ACTIONS(854), - [sym__concat] = ACTIONS(854), - [anon_sym_PIPE] = ACTIONS(1256), - [anon_sym_RPAREN] = ACTIONS(854), - [anon_sym_PIPE_AMP] = ACTIONS(854), - [anon_sym_AMP_AMP] = ACTIONS(854), - [anon_sym_PIPE_PIPE] = ACTIONS(854), - [anon_sym_LT] = ACTIONS(1256), - [anon_sym_GT] = ACTIONS(1256), - [anon_sym_GT_GT] = ACTIONS(854), - [anon_sym_AMP_GT] = ACTIONS(1256), - [anon_sym_AMP_GT_GT] = ACTIONS(854), - [anon_sym_LT_AMP] = ACTIONS(854), - [anon_sym_GT_AMP] = ACTIONS(854), - [anon_sym_LT_LT] = ACTIONS(1256), - [anon_sym_LT_LT_DASH] = ACTIONS(854), - [anon_sym_BQUOTE] = ACTIONS(854), - [sym_comment] = ACTIONS(52), - }, - [967] = { - [anon_sym_AT] = ACTIONS(2232), - [sym_comment] = ACTIONS(52), - }, - [968] = { - [sym_concatenation] = STATE(1103), - [sym_string] = STATE(1102), - [sym_simple_expansion] = STATE(1102), - [sym_expansion] = STATE(1102), - [sym_command_substitution] = STATE(1102), - [sym_process_substitution] = STATE(1102), - [anon_sym_DQUOTE] = ACTIONS(82), - [sym_raw_string] = ACTIONS(2234), - [anon_sym_DOLLAR] = ACTIONS(86), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(88), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(90), - [anon_sym_BQUOTE] = ACTIONS(92), - [anon_sym_LT_LPAREN] = ACTIONS(94), - [anon_sym_GT_LPAREN] = ACTIONS(94), - [sym_word] = ACTIONS(2236), - [sym_comment] = ACTIONS(52), - }, - [969] = { - [sym_file_descriptor] = ACTIONS(946), - [sym__concat] = ACTIONS(946), - [anon_sym_PIPE] = ACTIONS(1264), - [anon_sym_RPAREN] = ACTIONS(946), - [anon_sym_PIPE_AMP] = ACTIONS(946), - [anon_sym_AMP_AMP] = ACTIONS(946), - [anon_sym_PIPE_PIPE] = ACTIONS(946), - [anon_sym_LT] = ACTIONS(1264), - [anon_sym_GT] = ACTIONS(1264), - [anon_sym_GT_GT] = ACTIONS(946), - [anon_sym_AMP_GT] = ACTIONS(1264), - [anon_sym_AMP_GT_GT] = ACTIONS(946), - [anon_sym_LT_AMP] = ACTIONS(946), - [anon_sym_GT_AMP] = ACTIONS(946), - [anon_sym_LT_LT] = ACTIONS(1264), - [anon_sym_LT_LT_DASH] = ACTIONS(946), - [anon_sym_BQUOTE] = ACTIONS(946), - [sym_comment] = ACTIONS(52), - }, - [970] = { - [sym_file_descriptor] = ACTIONS(984), - [sym__concat] = ACTIONS(984), - [anon_sym_PIPE] = ACTIONS(1266), - [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_LT] = ACTIONS(1266), - [anon_sym_GT] = ACTIONS(1266), - [anon_sym_GT_GT] = ACTIONS(984), - [anon_sym_AMP_GT] = ACTIONS(1266), - [anon_sym_AMP_GT_GT] = ACTIONS(984), - [anon_sym_LT_AMP] = ACTIONS(984), - [anon_sym_GT_AMP] = ACTIONS(984), - [anon_sym_LT_LT] = ACTIONS(1266), - [anon_sym_LT_LT_DASH] = ACTIONS(984), - [anon_sym_BQUOTE] = ACTIONS(984), - [sym_comment] = ACTIONS(52), - }, - [971] = { - [sym_file_descriptor] = ACTIONS(1986), - [anon_sym_PIPE] = ACTIONS(2238), - [anon_sym_RPAREN] = ACTIONS(1986), - [anon_sym_PIPE_AMP] = ACTIONS(1986), - [anon_sym_AMP_AMP] = ACTIONS(1986), - [anon_sym_PIPE_PIPE] = ACTIONS(1986), - [anon_sym_LT] = ACTIONS(2238), - [anon_sym_GT] = ACTIONS(2238), - [anon_sym_GT_GT] = ACTIONS(1986), - [anon_sym_AMP_GT] = ACTIONS(2238), - [anon_sym_AMP_GT_GT] = ACTIONS(1986), - [anon_sym_LT_AMP] = ACTIONS(1986), - [anon_sym_GT_AMP] = ACTIONS(1986), - [anon_sym_LT_LT] = ACTIONS(2238), - [anon_sym_LT_LT_DASH] = ACTIONS(1986), - [anon_sym_BQUOTE] = ACTIONS(1986), - [sym_comment] = ACTIONS(52), - }, - [972] = { - [sym__concat] = ACTIONS(820), - [anon_sym_PIPE] = ACTIONS(822), - [anon_sym_RPAREN] = ACTIONS(822), - [anon_sym_SEMI_SEMI] = ACTIONS(822), - [anon_sym_PIPE_AMP] = ACTIONS(822), - [anon_sym_AMP_AMP] = ACTIONS(822), - [anon_sym_PIPE_PIPE] = ACTIONS(822), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(822), - [anon_sym_LF] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(822), - }, - [973] = { - [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(142), - [anon_sym_SEMI] = ACTIONS(830), - [anon_sym_LF] = ACTIONS(830), - [anon_sym_AMP] = ACTIONS(830), - }, - [974] = { - [sym_string] = STATE(1104), - [sym_simple_expansion] = STATE(1104), - [sym_expansion] = STATE(1104), - [sym_command_substitution] = STATE(1104), - [sym_process_substitution] = STATE(1104), - [anon_sym_DQUOTE] = ACTIONS(998), - [sym_raw_string] = ACTIONS(2240), - [anon_sym_DOLLAR] = ACTIONS(1002), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1004), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1006), - [anon_sym_BQUOTE] = ACTIONS(1008), - [anon_sym_LT_LPAREN] = ACTIONS(1010), - [anon_sym_GT_LPAREN] = ACTIONS(1010), - [sym_word] = ACTIONS(2242), - [sym_comment] = ACTIONS(52), - }, - [975] = { - [anon_sym_RBRACE] = ACTIONS(2244), - [anon_sym_LBRACK] = ACTIONS(2246), - [sym_comment] = ACTIONS(52), - }, - [976] = { - [anon_sym_RBRACE] = ACTIONS(2248), - [anon_sym_LBRACK] = ACTIONS(2250), - [sym_comment] = ACTIONS(52), - }, - [977] = { - [sym__concat] = ACTIONS(844), - [anon_sym_PIPE] = ACTIONS(846), - [anon_sym_RPAREN] = ACTIONS(846), - [anon_sym_SEMI_SEMI] = ACTIONS(846), - [anon_sym_PIPE_AMP] = ACTIONS(846), - [anon_sym_AMP_AMP] = ACTIONS(846), - [anon_sym_PIPE_PIPE] = ACTIONS(846), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(846), - [anon_sym_LF] = ACTIONS(846), - [anon_sym_AMP] = ACTIONS(846), - }, - [978] = { - [anon_sym_AT] = ACTIONS(2252), - [sym_comment] = ACTIONS(52), - }, - [979] = { - [sym_concatenation] = STATE(1111), - [sym_string] = STATE(1110), - [sym_simple_expansion] = STATE(1110), - [sym_expansion] = STATE(1110), - [sym_command_substitution] = STATE(1110), - [sym_process_substitution] = STATE(1110), - [anon_sym_DQUOTE] = ACTIONS(82), - [sym_raw_string] = ACTIONS(2254), - [anon_sym_DOLLAR] = ACTIONS(86), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(88), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(90), - [anon_sym_BQUOTE] = ACTIONS(92), - [anon_sym_LT_LPAREN] = ACTIONS(94), - [anon_sym_GT_LPAREN] = ACTIONS(94), - [sym_word] = ACTIONS(2256), - [sym_comment] = ACTIONS(52), - }, - [980] = { - [sym__concat] = ACTIONS(854), - [anon_sym_PIPE] = ACTIONS(856), - [anon_sym_RPAREN] = ACTIONS(856), - [anon_sym_SEMI_SEMI] = ACTIONS(856), - [anon_sym_PIPE_AMP] = ACTIONS(856), - [anon_sym_AMP_AMP] = ACTIONS(856), - [anon_sym_PIPE_PIPE] = ACTIONS(856), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(856), - [anon_sym_LF] = ACTIONS(856), - [anon_sym_AMP] = ACTIONS(856), - }, - [981] = { - [anon_sym_AT] = ACTIONS(2258), - [sym_comment] = ACTIONS(52), - }, - [982] = { - [sym_concatenation] = STATE(1114), - [sym_string] = STATE(1113), - [sym_simple_expansion] = STATE(1113), - [sym_expansion] = STATE(1113), - [sym_command_substitution] = STATE(1113), - [sym_process_substitution] = STATE(1113), - [anon_sym_DQUOTE] = ACTIONS(82), - [sym_raw_string] = ACTIONS(2260), - [anon_sym_DOLLAR] = ACTIONS(86), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(88), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(90), - [anon_sym_BQUOTE] = ACTIONS(92), - [anon_sym_LT_LPAREN] = ACTIONS(94), - [anon_sym_GT_LPAREN] = ACTIONS(94), - [sym_word] = ACTIONS(2262), - [sym_comment] = ACTIONS(52), - }, - [983] = { - [sym__concat] = ACTIONS(946), - [anon_sym_PIPE] = ACTIONS(948), - [anon_sym_RPAREN] = ACTIONS(948), - [anon_sym_SEMI_SEMI] = ACTIONS(948), - [anon_sym_PIPE_AMP] = ACTIONS(948), - [anon_sym_AMP_AMP] = ACTIONS(948), - [anon_sym_PIPE_PIPE] = ACTIONS(948), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(948), - [anon_sym_LF] = ACTIONS(948), - [anon_sym_AMP] = ACTIONS(948), - }, - [984] = { - [sym__concat] = ACTIONS(984), - [anon_sym_PIPE] = ACTIONS(986), - [anon_sym_RPAREN] = ACTIONS(986), - [anon_sym_SEMI_SEMI] = ACTIONS(986), - [anon_sym_PIPE_AMP] = ACTIONS(986), - [anon_sym_AMP_AMP] = ACTIONS(986), - [anon_sym_PIPE_PIPE] = ACTIONS(986), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(986), - [anon_sym_LF] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - }, - [985] = { - [sym_file_descriptor] = ACTIONS(1336), - [sym__concat] = ACTIONS(1336), - [anon_sym_PIPE] = ACTIONS(1338), - [anon_sym_RPAREN] = ACTIONS(1338), - [anon_sym_SEMI_SEMI] = ACTIONS(1338), - [anon_sym_PIPE_AMP] = ACTIONS(1338), - [anon_sym_AMP_AMP] = ACTIONS(1338), - [anon_sym_PIPE_PIPE] = ACTIONS(1338), - [anon_sym_LT] = ACTIONS(1338), - [anon_sym_GT] = ACTIONS(1338), - [anon_sym_GT_GT] = ACTIONS(1338), - [anon_sym_AMP_GT] = ACTIONS(1338), - [anon_sym_AMP_GT_GT] = ACTIONS(1338), - [anon_sym_LT_AMP] = ACTIONS(1338), - [anon_sym_GT_AMP] = ACTIONS(1338), - [anon_sym_LT_LT] = ACTIONS(1338), - [anon_sym_LT_LT_DASH] = ACTIONS(1338), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1338), - [anon_sym_LF] = ACTIONS(1338), - [anon_sym_AMP] = ACTIONS(1338), - }, - [986] = { - [sym_file_descriptor] = ACTIONS(1340), - [sym__concat] = ACTIONS(1340), - [anon_sym_PIPE] = ACTIONS(1342), - [anon_sym_RPAREN] = ACTIONS(1342), - [anon_sym_SEMI_SEMI] = ACTIONS(1342), - [anon_sym_PIPE_AMP] = ACTIONS(1342), - [anon_sym_AMP_AMP] = ACTIONS(1342), - [anon_sym_PIPE_PIPE] = ACTIONS(1342), - [anon_sym_LT] = ACTIONS(1342), - [anon_sym_GT] = ACTIONS(1342), - [anon_sym_GT_GT] = ACTIONS(1342), - [anon_sym_AMP_GT] = ACTIONS(1342), - [anon_sym_AMP_GT_GT] = ACTIONS(1342), - [anon_sym_LT_AMP] = ACTIONS(1342), - [anon_sym_GT_AMP] = ACTIONS(1342), - [anon_sym_LT_LT] = ACTIONS(1342), - [anon_sym_LT_LT_DASH] = ACTIONS(1342), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1342), - [anon_sym_LF] = ACTIONS(1342), - [anon_sym_AMP] = ACTIONS(1342), - }, - [987] = { - [anon_sym_AT] = ACTIONS(2264), - [sym_comment] = ACTIONS(52), - }, - [988] = { - [sym_file_descriptor] = ACTIONS(1346), - [sym__concat] = ACTIONS(1346), - [anon_sym_PIPE] = ACTIONS(1348), - [anon_sym_RPAREN] = ACTIONS(1348), - [anon_sym_SEMI_SEMI] = ACTIONS(1348), - [anon_sym_PIPE_AMP] = ACTIONS(1348), - [anon_sym_AMP_AMP] = ACTIONS(1348), - [anon_sym_PIPE_PIPE] = ACTIONS(1348), - [anon_sym_LT] = ACTIONS(1348), - [anon_sym_GT] = ACTIONS(1348), - [anon_sym_GT_GT] = ACTIONS(1348), - [anon_sym_AMP_GT] = ACTIONS(1348), - [anon_sym_AMP_GT_GT] = ACTIONS(1348), - [anon_sym_LT_AMP] = ACTIONS(1348), - [anon_sym_GT_AMP] = ACTIONS(1348), - [anon_sym_LT_LT] = ACTIONS(1348), - [anon_sym_LT_LT_DASH] = ACTIONS(1348), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1348), - [anon_sym_LF] = ACTIONS(1348), - [anon_sym_AMP] = ACTIONS(1348), - }, - [989] = { - [anon_sym_AT] = ACTIONS(2266), - [sym_comment] = ACTIONS(52), - }, - [990] = { - [anon_sym_RBRACK] = ACTIONS(2268), - [sym_comment] = ACTIONS(52), - }, - [991] = { - [aux_sym_concatenation_repeat1] = STATE(192), - [sym__concat] = ACTIONS(326), - [anon_sym_RBRACE] = ACTIONS(2270), - [sym_comment] = ACTIONS(52), - }, - [992] = { - [anon_sym_RBRACE] = ACTIONS(2270), - [sym_comment] = ACTIONS(52), - }, - [993] = { - [anon_sym_RBRACK] = ACTIONS(2272), - [sym_comment] = ACTIONS(52), - }, - [994] = { - [aux_sym_concatenation_repeat1] = STATE(192), - [sym__concat] = ACTIONS(326), - [anon_sym_RBRACE] = ACTIONS(2274), - [sym_comment] = ACTIONS(52), - }, [995] = { - [anon_sym_RBRACE] = ACTIONS(2274), + [sym_file_descriptor] = ACTIONS(834), + [sym__concat] = ACTIONS(834), + [anon_sym_PIPE] = ACTIONS(1258), + [anon_sym_RPAREN] = ACTIONS(834), + [anon_sym_PIPE_AMP] = ACTIONS(834), + [anon_sym_AMP_AMP] = ACTIONS(834), + [anon_sym_PIPE_PIPE] = ACTIONS(834), + [anon_sym_LT] = ACTIONS(1258), + [anon_sym_GT] = ACTIONS(1258), + [anon_sym_GT_GT] = ACTIONS(834), + [anon_sym_AMP_GT] = ACTIONS(1258), + [anon_sym_AMP_GT_GT] = ACTIONS(834), + [anon_sym_LT_AMP] = ACTIONS(834), + [anon_sym_GT_AMP] = ACTIONS(834), + [anon_sym_LT_LT] = ACTIONS(1258), + [anon_sym_LT_LT_DASH] = ACTIONS(834), + [anon_sym_BQUOTE] = ACTIONS(834), [sym_comment] = ACTIONS(52), }, [996] = { - [anon_sym_RBRACE] = ACTIONS(2276), - [anon_sym_LBRACK] = ACTIONS(2278), + [sym_file_descriptor] = ACTIONS(842), + [sym__concat] = ACTIONS(842), + [anon_sym_PIPE] = ACTIONS(1260), + [anon_sym_RPAREN] = ACTIONS(842), + [anon_sym_PIPE_AMP] = ACTIONS(842), + [anon_sym_AMP_AMP] = ACTIONS(842), + [anon_sym_PIPE_PIPE] = ACTIONS(842), + [anon_sym_LT] = ACTIONS(1260), + [anon_sym_GT] = ACTIONS(1260), + [anon_sym_GT_GT] = ACTIONS(842), + [anon_sym_AMP_GT] = ACTIONS(1260), + [anon_sym_AMP_GT_GT] = ACTIONS(842), + [anon_sym_LT_AMP] = ACTIONS(842), + [anon_sym_GT_AMP] = ACTIONS(842), + [anon_sym_LT_LT] = ACTIONS(1260), + [anon_sym_LT_LT_DASH] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(842), [sym_comment] = ACTIONS(52), }, [997] = { - [anon_sym_RBRACE] = ACTIONS(2280), - [anon_sym_LBRACK] = ACTIONS(2282), + [sym_string] = STATE(1141), + [sym_simple_expansion] = STATE(1141), + [sym_expansion] = STATE(1141), + [sym_command_substitution] = STATE(1141), + [sym_process_substitution] = STATE(1141), + [anon_sym_DQUOTE] = ACTIONS(968), + [sym_raw_string] = ACTIONS(2290), + [anon_sym_DOLLAR] = ACTIONS(972), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(974), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(976), + [anon_sym_BQUOTE] = ACTIONS(978), + [anon_sym_LT_LPAREN] = ACTIONS(980), + [anon_sym_GT_LPAREN] = ACTIONS(980), + [sym_word] = ACTIONS(2292), [sym_comment] = ACTIONS(52), }, [998] = { - [sym__heredoc_middle] = ACTIONS(844), - [sym__heredoc_end] = ACTIONS(844), - [anon_sym_DOLLAR] = ACTIONS(1248), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(844), + [anon_sym_RBRACE] = ACTIONS(2294), + [anon_sym_LBRACK] = ACTIONS(2296), [sym_comment] = ACTIONS(52), }, [999] = { - [anon_sym_AT] = ACTIONS(2284), + [anon_sym_RBRACE] = ACTIONS(2298), + [anon_sym_LBRACK] = ACTIONS(2300), [sym_comment] = ACTIONS(52), }, [1000] = { - [sym_concatenation] = STATE(1127), - [sym_string] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [anon_sym_DQUOTE] = ACTIONS(82), - [sym_raw_string] = ACTIONS(2286), - [anon_sym_DOLLAR] = ACTIONS(86), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(88), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(90), - [anon_sym_BQUOTE] = ACTIONS(92), - [anon_sym_LT_LPAREN] = ACTIONS(94), - [anon_sym_GT_LPAREN] = ACTIONS(94), - [sym_word] = ACTIONS(2288), + [sym_file_descriptor] = ACTIONS(858), + [sym__concat] = ACTIONS(858), + [anon_sym_PIPE] = ACTIONS(1274), + [anon_sym_RPAREN] = ACTIONS(858), + [anon_sym_PIPE_AMP] = ACTIONS(858), + [anon_sym_AMP_AMP] = ACTIONS(858), + [anon_sym_PIPE_PIPE] = ACTIONS(858), + [anon_sym_LT] = ACTIONS(1274), + [anon_sym_GT] = ACTIONS(1274), + [anon_sym_GT_GT] = ACTIONS(858), + [anon_sym_AMP_GT] = ACTIONS(1274), + [anon_sym_AMP_GT_GT] = ACTIONS(858), + [anon_sym_LT_AMP] = ACTIONS(858), + [anon_sym_GT_AMP] = ACTIONS(858), + [anon_sym_LT_LT] = ACTIONS(1274), + [anon_sym_LT_LT_DASH] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(858), [sym_comment] = ACTIONS(52), }, [1001] = { - [sym__heredoc_middle] = ACTIONS(854), - [sym__heredoc_end] = ACTIONS(854), - [anon_sym_DOLLAR] = ACTIONS(1256), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_AT] = ACTIONS(2302), [sym_comment] = ACTIONS(52), }, [1002] = { - [anon_sym_AT] = ACTIONS(2290), - [sym_comment] = ACTIONS(52), - }, - [1003] = { - [sym_concatenation] = STATE(1130), - [sym_string] = STATE(1129), - [sym_simple_expansion] = STATE(1129), - [sym_expansion] = STATE(1129), - [sym_command_substitution] = STATE(1129), - [sym_process_substitution] = STATE(1129), + [sym_concatenation] = STATE(1148), + [sym_string] = STATE(1147), + [sym_simple_expansion] = STATE(1147), + [sym_expansion] = STATE(1147), + [sym_command_substitution] = STATE(1147), + [sym_process_substitution] = STATE(1147), [anon_sym_DQUOTE] = ACTIONS(82), - [sym_raw_string] = ACTIONS(2292), + [sym_raw_string] = ACTIONS(2304), [anon_sym_DOLLAR] = ACTIONS(86), [anon_sym_DOLLAR_LBRACE] = ACTIONS(88), [anon_sym_DOLLAR_LPAREN] = ACTIONS(90), [anon_sym_BQUOTE] = ACTIONS(92), [anon_sym_LT_LPAREN] = ACTIONS(94), [anon_sym_GT_LPAREN] = ACTIONS(94), - [sym_word] = ACTIONS(2294), + [sym_word] = ACTIONS(2306), + [sym_comment] = ACTIONS(52), + }, + [1003] = { + [sym_file_descriptor] = ACTIONS(868), + [sym__concat] = ACTIONS(868), + [anon_sym_PIPE] = ACTIONS(1282), + [anon_sym_RPAREN] = ACTIONS(868), + [anon_sym_PIPE_AMP] = ACTIONS(868), + [anon_sym_AMP_AMP] = ACTIONS(868), + [anon_sym_PIPE_PIPE] = ACTIONS(868), + [anon_sym_LT] = ACTIONS(1282), + [anon_sym_GT] = ACTIONS(1282), + [anon_sym_GT_GT] = ACTIONS(868), + [anon_sym_AMP_GT] = ACTIONS(1282), + [anon_sym_AMP_GT_GT] = ACTIONS(868), + [anon_sym_LT_AMP] = ACTIONS(868), + [anon_sym_GT_AMP] = ACTIONS(868), + [anon_sym_LT_LT] = ACTIONS(1282), + [anon_sym_LT_LT_DASH] = ACTIONS(868), + [anon_sym_BQUOTE] = ACTIONS(868), [sym_comment] = ACTIONS(52), }, [1004] = { - [sym_file_descriptor] = ACTIONS(1600), - [sym_variable_name] = ACTIONS(1600), - [anon_sym_LT] = ACTIONS(2126), - [anon_sym_GT] = ACTIONS(2126), - [anon_sym_GT_GT] = ACTIONS(1600), - [anon_sym_AMP_GT] = ACTIONS(2126), - [anon_sym_AMP_GT_GT] = ACTIONS(1600), - [anon_sym_LT_AMP] = ACTIONS(1600), - [anon_sym_GT_AMP] = ACTIONS(1600), - [anon_sym_DQUOTE] = ACTIONS(1600), - [sym_raw_string] = ACTIONS(1600), - [anon_sym_DOLLAR] = ACTIONS(2126), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1600), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1600), - [anon_sym_BQUOTE] = ACTIONS(1600), - [anon_sym_LT_LPAREN] = ACTIONS(1600), - [anon_sym_GT_LPAREN] = ACTIONS(1600), - [sym_word] = ACTIONS(2126), + [anon_sym_AT] = ACTIONS(2308), [sym_comment] = ACTIONS(52), }, [1005] = { - [anon_sym_RBRACK] = ACTIONS(2296), + [sym_concatenation] = STATE(1151), + [sym_string] = STATE(1150), + [sym_simple_expansion] = STATE(1150), + [sym_expansion] = STATE(1150), + [sym_command_substitution] = STATE(1150), + [sym_process_substitution] = STATE(1150), + [anon_sym_DQUOTE] = ACTIONS(82), + [sym_raw_string] = ACTIONS(2310), + [anon_sym_DOLLAR] = ACTIONS(86), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(88), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(90), + [anon_sym_BQUOTE] = ACTIONS(92), + [anon_sym_LT_LPAREN] = ACTIONS(94), + [anon_sym_GT_LPAREN] = ACTIONS(94), + [sym_word] = ACTIONS(2312), [sym_comment] = ACTIONS(52), }, [1006] = { - [anon_sym_RBRACK] = ACTIONS(2298), + [sym_file_descriptor] = ACTIONS(960), + [sym__concat] = ACTIONS(960), + [anon_sym_PIPE] = ACTIONS(1290), + [anon_sym_RPAREN] = ACTIONS(960), + [anon_sym_PIPE_AMP] = ACTIONS(960), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [anon_sym_LT] = ACTIONS(1290), + [anon_sym_GT] = ACTIONS(1290), + [anon_sym_GT_GT] = ACTIONS(960), + [anon_sym_AMP_GT] = ACTIONS(1290), + [anon_sym_AMP_GT_GT] = ACTIONS(960), + [anon_sym_LT_AMP] = ACTIONS(960), + [anon_sym_GT_AMP] = ACTIONS(960), + [anon_sym_LT_LT] = ACTIONS(1290), + [anon_sym_LT_LT_DASH] = ACTIONS(960), + [anon_sym_BQUOTE] = ACTIONS(960), [sym_comment] = ACTIONS(52), }, [1007] = { - [anon_sym_RBRACE] = ACTIONS(2300), + [sym_file_descriptor] = ACTIONS(998), + [sym__concat] = ACTIONS(998), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_RPAREN] = ACTIONS(998), + [anon_sym_PIPE_AMP] = ACTIONS(998), + [anon_sym_AMP_AMP] = ACTIONS(998), + [anon_sym_PIPE_PIPE] = ACTIONS(998), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(998), + [anon_sym_AMP_GT] = ACTIONS(1292), + [anon_sym_AMP_GT_GT] = ACTIONS(998), + [anon_sym_LT_AMP] = ACTIONS(998), + [anon_sym_GT_AMP] = ACTIONS(998), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_LT_LT_DASH] = ACTIONS(998), + [anon_sym_BQUOTE] = ACTIONS(998), [sym_comment] = ACTIONS(52), }, [1008] = { - [sym__concat] = ACTIONS(1766), - [anon_sym_PIPE] = ACTIONS(1766), - [anon_sym_RPAREN] = ACTIONS(1766), - [anon_sym_RBRACK] = ACTIONS(1766), + [sym_file_descriptor] = ACTIONS(2038), + [anon_sym_PIPE] = ACTIONS(2314), + [anon_sym_RPAREN] = ACTIONS(2038), + [anon_sym_PIPE_AMP] = ACTIONS(2038), + [anon_sym_AMP_AMP] = ACTIONS(2038), + [anon_sym_PIPE_PIPE] = ACTIONS(2038), + [anon_sym_LT] = ACTIONS(2314), + [anon_sym_GT] = ACTIONS(2314), + [anon_sym_GT_GT] = ACTIONS(2038), + [anon_sym_AMP_GT] = ACTIONS(2314), + [anon_sym_AMP_GT_GT] = ACTIONS(2038), + [anon_sym_LT_AMP] = ACTIONS(2038), + [anon_sym_GT_AMP] = ACTIONS(2038), + [anon_sym_LT_LT] = ACTIONS(2314), + [anon_sym_LT_LT_DASH] = ACTIONS(2038), + [anon_sym_BQUOTE] = ACTIONS(2038), [sym_comment] = ACTIONS(52), }, [1009] = { - [anon_sym_RBRACE] = ACTIONS(2302), - [sym_comment] = ACTIONS(52), + [sym__concat] = ACTIONS(834), + [anon_sym_PIPE] = ACTIONS(836), + [anon_sym_RPAREN] = ACTIONS(836), + [anon_sym_SEMI_SEMI] = ACTIONS(836), + [anon_sym_PIPE_AMP] = ACTIONS(836), + [anon_sym_AMP_AMP] = ACTIONS(836), + [anon_sym_PIPE_PIPE] = ACTIONS(836), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(836), + [anon_sym_LF] = ACTIONS(836), + [anon_sym_AMP] = ACTIONS(836), }, [1010] = { - [sym__concat] = ACTIONS(1772), - [anon_sym_PIPE] = ACTIONS(1772), - [anon_sym_RPAREN] = ACTIONS(1772), - [anon_sym_RBRACK] = ACTIONS(1772), - [sym_comment] = ACTIONS(52), + [sym__concat] = ACTIONS(842), + [anon_sym_PIPE] = ACTIONS(844), + [anon_sym_RPAREN] = ACTIONS(844), + [anon_sym_SEMI_SEMI] = ACTIONS(844), + [anon_sym_PIPE_AMP] = ACTIONS(844), + [anon_sym_AMP_AMP] = ACTIONS(844), + [anon_sym_PIPE_PIPE] = ACTIONS(844), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(844), + [anon_sym_LF] = ACTIONS(844), + [anon_sym_AMP] = ACTIONS(844), }, [1011] = { - [anon_sym_RBRACK] = ACTIONS(2304), + [sym_string] = STATE(1152), + [sym_simple_expansion] = STATE(1152), + [sym_expansion] = STATE(1152), + [sym_command_substitution] = STATE(1152), + [sym_process_substitution] = STATE(1152), + [anon_sym_DQUOTE] = ACTIONS(1012), + [sym_raw_string] = ACTIONS(2316), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1018), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1020), + [anon_sym_BQUOTE] = ACTIONS(1022), + [anon_sym_LT_LPAREN] = ACTIONS(1024), + [anon_sym_GT_LPAREN] = ACTIONS(1024), + [sym_word] = ACTIONS(2318), [sym_comment] = ACTIONS(52), }, [1012] = { - [anon_sym_RBRACK] = ACTIONS(2306), + [anon_sym_RBRACE] = ACTIONS(2320), + [anon_sym_LBRACK] = ACTIONS(2322), [sym_comment] = ACTIONS(52), }, [1013] = { - [anon_sym_RBRACE] = ACTIONS(2308), + [anon_sym_RBRACE] = ACTIONS(2324), + [anon_sym_LBRACK] = ACTIONS(2326), [sym_comment] = ACTIONS(52), }, [1014] = { - [sym_file_descriptor] = ACTIONS(1766), - [sym__concat] = ACTIONS(1766), - [sym_variable_name] = ACTIONS(1766), - [anon_sym_PIPE] = ACTIONS(1768), - [anon_sym_RPAREN] = ACTIONS(1768), - [anon_sym_SEMI_SEMI] = ACTIONS(1768), - [anon_sym_PIPE_AMP] = ACTIONS(1768), - [anon_sym_AMP_AMP] = ACTIONS(1768), - [anon_sym_PIPE_PIPE] = ACTIONS(1768), - [anon_sym_LT] = ACTIONS(1768), - [anon_sym_GT] = ACTIONS(1768), - [anon_sym_GT_GT] = ACTIONS(1768), - [anon_sym_AMP_GT] = ACTIONS(1768), - [anon_sym_AMP_GT_GT] = ACTIONS(1768), - [anon_sym_LT_AMP] = ACTIONS(1768), - [anon_sym_GT_AMP] = ACTIONS(1768), - [anon_sym_DQUOTE] = ACTIONS(1768), - [sym_raw_string] = ACTIONS(1768), - [anon_sym_DOLLAR] = ACTIONS(1768), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1768), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1768), - [anon_sym_BQUOTE] = ACTIONS(1768), - [anon_sym_LT_LPAREN] = ACTIONS(1768), - [anon_sym_GT_LPAREN] = ACTIONS(1768), - [sym_word] = ACTIONS(1768), + [sym__concat] = ACTIONS(858), + [anon_sym_PIPE] = ACTIONS(860), + [anon_sym_RPAREN] = ACTIONS(860), + [anon_sym_SEMI_SEMI] = ACTIONS(860), + [anon_sym_PIPE_AMP] = ACTIONS(860), + [anon_sym_AMP_AMP] = ACTIONS(860), + [anon_sym_PIPE_PIPE] = ACTIONS(860), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1768), - [anon_sym_LF] = ACTIONS(1768), - [anon_sym_AMP] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(860), + [anon_sym_LF] = ACTIONS(860), + [anon_sym_AMP] = ACTIONS(860), }, [1015] = { - [anon_sym_RBRACE] = ACTIONS(2310), + [anon_sym_AT] = ACTIONS(2328), [sym_comment] = ACTIONS(52), }, [1016] = { - [sym_file_descriptor] = ACTIONS(1772), - [sym__concat] = ACTIONS(1772), - [sym_variable_name] = ACTIONS(1772), - [anon_sym_PIPE] = ACTIONS(1774), - [anon_sym_RPAREN] = ACTIONS(1774), - [anon_sym_SEMI_SEMI] = ACTIONS(1774), - [anon_sym_PIPE_AMP] = ACTIONS(1774), - [anon_sym_AMP_AMP] = ACTIONS(1774), - [anon_sym_PIPE_PIPE] = ACTIONS(1774), - [anon_sym_LT] = ACTIONS(1774), - [anon_sym_GT] = ACTIONS(1774), - [anon_sym_GT_GT] = ACTIONS(1774), - [anon_sym_AMP_GT] = ACTIONS(1774), - [anon_sym_AMP_GT_GT] = ACTIONS(1774), - [anon_sym_LT_AMP] = ACTIONS(1774), - [anon_sym_GT_AMP] = ACTIONS(1774), - [anon_sym_DQUOTE] = ACTIONS(1774), - [sym_raw_string] = ACTIONS(1774), - [anon_sym_DOLLAR] = ACTIONS(1774), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1774), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1774), - [anon_sym_BQUOTE] = ACTIONS(1774), - [anon_sym_LT_LPAREN] = ACTIONS(1774), - [anon_sym_GT_LPAREN] = ACTIONS(1774), - [sym_word] = ACTIONS(1774), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1774), - [anon_sym_LF] = ACTIONS(1774), - [anon_sym_AMP] = ACTIONS(1774), + [sym_concatenation] = STATE(1159), + [sym_string] = STATE(1158), + [sym_simple_expansion] = STATE(1158), + [sym_expansion] = STATE(1158), + [sym_command_substitution] = STATE(1158), + [sym_process_substitution] = STATE(1158), + [anon_sym_DQUOTE] = ACTIONS(82), + [sym_raw_string] = ACTIONS(2330), + [anon_sym_DOLLAR] = ACTIONS(86), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(88), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(90), + [anon_sym_BQUOTE] = ACTIONS(92), + [anon_sym_LT_LPAREN] = ACTIONS(94), + [anon_sym_GT_LPAREN] = ACTIONS(94), + [sym_word] = ACTIONS(2332), + [sym_comment] = ACTIONS(52), }, [1017] = { - [sym__concat] = ACTIONS(1336), - [anon_sym_SEMI_SEMI] = ACTIONS(1338), - [anon_sym_DQUOTE] = ACTIONS(1338), - [sym_raw_string] = ACTIONS(1338), - [anon_sym_DOLLAR] = ACTIONS(1338), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1338), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1338), - [anon_sym_BQUOTE] = ACTIONS(1338), - [anon_sym_LT_LPAREN] = ACTIONS(1338), - [anon_sym_GT_LPAREN] = ACTIONS(1338), - [sym_word] = ACTIONS(1338), + [sym__concat] = ACTIONS(868), + [anon_sym_PIPE] = ACTIONS(870), + [anon_sym_RPAREN] = ACTIONS(870), + [anon_sym_SEMI_SEMI] = ACTIONS(870), + [anon_sym_PIPE_AMP] = ACTIONS(870), + [anon_sym_AMP_AMP] = ACTIONS(870), + [anon_sym_PIPE_PIPE] = ACTIONS(870), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1338), - [anon_sym_LF] = ACTIONS(1338), - [anon_sym_AMP] = ACTIONS(1338), + [anon_sym_SEMI] = ACTIONS(870), + [anon_sym_LF] = ACTIONS(870), + [anon_sym_AMP] = ACTIONS(870), }, [1018] = { - [sym__concat] = ACTIONS(1340), - [anon_sym_SEMI_SEMI] = ACTIONS(1342), - [anon_sym_DQUOTE] = ACTIONS(1342), - [sym_raw_string] = ACTIONS(1342), - [anon_sym_DOLLAR] = ACTIONS(1342), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1342), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1342), - [anon_sym_BQUOTE] = ACTIONS(1342), - [anon_sym_LT_LPAREN] = ACTIONS(1342), - [anon_sym_GT_LPAREN] = ACTIONS(1342), - [sym_word] = ACTIONS(1342), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1342), - [anon_sym_LF] = ACTIONS(1342), - [anon_sym_AMP] = ACTIONS(1342), + [anon_sym_AT] = ACTIONS(2334), + [sym_comment] = ACTIONS(52), }, [1019] = { - [anon_sym_AT] = ACTIONS(2312), + [sym_concatenation] = STATE(1162), + [sym_string] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [anon_sym_DQUOTE] = ACTIONS(82), + [sym_raw_string] = ACTIONS(2336), + [anon_sym_DOLLAR] = ACTIONS(86), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(88), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(90), + [anon_sym_BQUOTE] = ACTIONS(92), + [anon_sym_LT_LPAREN] = ACTIONS(94), + [anon_sym_GT_LPAREN] = ACTIONS(94), + [sym_word] = ACTIONS(2338), [sym_comment] = ACTIONS(52), }, [1020] = { - [sym__concat] = ACTIONS(1346), - [anon_sym_SEMI_SEMI] = ACTIONS(1348), - [anon_sym_DQUOTE] = ACTIONS(1348), - [sym_raw_string] = ACTIONS(1348), - [anon_sym_DOLLAR] = ACTIONS(1348), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1348), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1348), - [anon_sym_BQUOTE] = ACTIONS(1348), - [anon_sym_LT_LPAREN] = ACTIONS(1348), - [anon_sym_GT_LPAREN] = ACTIONS(1348), - [sym_word] = ACTIONS(1348), + [sym__concat] = ACTIONS(960), + [anon_sym_PIPE] = ACTIONS(962), + [anon_sym_RPAREN] = ACTIONS(962), + [anon_sym_SEMI_SEMI] = ACTIONS(962), + [anon_sym_PIPE_AMP] = ACTIONS(962), + [anon_sym_AMP_AMP] = ACTIONS(962), + [anon_sym_PIPE_PIPE] = ACTIONS(962), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1348), - [anon_sym_LF] = ACTIONS(1348), - [anon_sym_AMP] = ACTIONS(1348), + [anon_sym_SEMI] = ACTIONS(962), + [anon_sym_LF] = ACTIONS(962), + [anon_sym_AMP] = ACTIONS(962), }, [1021] = { - [anon_sym_AT] = ACTIONS(2314), - [sym_comment] = ACTIONS(52), + [sym__concat] = ACTIONS(998), + [anon_sym_PIPE] = ACTIONS(1000), + [anon_sym_RPAREN] = ACTIONS(1000), + [anon_sym_SEMI_SEMI] = ACTIONS(1000), + [anon_sym_PIPE_AMP] = ACTIONS(1000), + [anon_sym_AMP_AMP] = ACTIONS(1000), + [anon_sym_PIPE_PIPE] = ACTIONS(1000), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(1000), + [anon_sym_LF] = ACTIONS(1000), + [anon_sym_AMP] = ACTIONS(1000), }, [1022] = { - [anon_sym_RBRACK] = ACTIONS(2316), - [sym_comment] = ACTIONS(52), + [sym_file_descriptor] = ACTIONS(1362), + [sym__concat] = ACTIONS(1362), + [anon_sym_PIPE] = ACTIONS(1364), + [anon_sym_RPAREN] = ACTIONS(1364), + [anon_sym_SEMI_SEMI] = ACTIONS(1364), + [anon_sym_PIPE_AMP] = ACTIONS(1364), + [anon_sym_AMP_AMP] = ACTIONS(1364), + [anon_sym_PIPE_PIPE] = ACTIONS(1364), + [anon_sym_LT] = ACTIONS(1364), + [anon_sym_GT] = ACTIONS(1364), + [anon_sym_GT_GT] = ACTIONS(1364), + [anon_sym_AMP_GT] = ACTIONS(1364), + [anon_sym_AMP_GT_GT] = ACTIONS(1364), + [anon_sym_LT_AMP] = ACTIONS(1364), + [anon_sym_GT_AMP] = ACTIONS(1364), + [anon_sym_LT_LT] = ACTIONS(1364), + [anon_sym_LT_LT_DASH] = ACTIONS(1364), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(1364), + [anon_sym_LF] = ACTIONS(1364), + [anon_sym_AMP] = ACTIONS(1364), }, [1023] = { - [aux_sym_concatenation_repeat1] = STATE(192), - [sym__concat] = ACTIONS(326), - [anon_sym_RBRACE] = ACTIONS(2318), - [sym_comment] = ACTIONS(52), + [sym_file_descriptor] = ACTIONS(1366), + [sym__concat] = ACTIONS(1366), + [anon_sym_PIPE] = ACTIONS(1368), + [anon_sym_RPAREN] = ACTIONS(1368), + [anon_sym_SEMI_SEMI] = ACTIONS(1368), + [anon_sym_PIPE_AMP] = ACTIONS(1368), + [anon_sym_AMP_AMP] = ACTIONS(1368), + [anon_sym_PIPE_PIPE] = ACTIONS(1368), + [anon_sym_LT] = ACTIONS(1368), + [anon_sym_GT] = ACTIONS(1368), + [anon_sym_GT_GT] = ACTIONS(1368), + [anon_sym_AMP_GT] = ACTIONS(1368), + [anon_sym_AMP_GT_GT] = ACTIONS(1368), + [anon_sym_LT_AMP] = ACTIONS(1368), + [anon_sym_GT_AMP] = ACTIONS(1368), + [anon_sym_LT_LT] = ACTIONS(1368), + [anon_sym_LT_LT_DASH] = ACTIONS(1368), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(1368), + [anon_sym_LF] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), }, [1024] = { - [anon_sym_RBRACE] = ACTIONS(2318), + [anon_sym_AT] = ACTIONS(2340), [sym_comment] = ACTIONS(52), }, [1025] = { - [anon_sym_RBRACK] = ACTIONS(2320), - [sym_comment] = ACTIONS(52), + [sym_file_descriptor] = ACTIONS(1372), + [sym__concat] = ACTIONS(1372), + [anon_sym_PIPE] = ACTIONS(1374), + [anon_sym_RPAREN] = ACTIONS(1374), + [anon_sym_SEMI_SEMI] = ACTIONS(1374), + [anon_sym_PIPE_AMP] = ACTIONS(1374), + [anon_sym_AMP_AMP] = ACTIONS(1374), + [anon_sym_PIPE_PIPE] = ACTIONS(1374), + [anon_sym_LT] = ACTIONS(1374), + [anon_sym_GT] = ACTIONS(1374), + [anon_sym_GT_GT] = ACTIONS(1374), + [anon_sym_AMP_GT] = ACTIONS(1374), + [anon_sym_AMP_GT_GT] = ACTIONS(1374), + [anon_sym_LT_AMP] = ACTIONS(1374), + [anon_sym_GT_AMP] = ACTIONS(1374), + [anon_sym_LT_LT] = ACTIONS(1374), + [anon_sym_LT_LT_DASH] = ACTIONS(1374), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(1374), + [anon_sym_LF] = ACTIONS(1374), + [anon_sym_AMP] = ACTIONS(1374), }, [1026] = { - [aux_sym_concatenation_repeat1] = STATE(192), - [sym__concat] = ACTIONS(326), - [anon_sym_RBRACE] = ACTIONS(2322), + [anon_sym_AT] = ACTIONS(2342), [sym_comment] = ACTIONS(52), }, [1027] = { - [anon_sym_RBRACE] = ACTIONS(2322), + [anon_sym_RBRACK] = ACTIONS(2344), [sym_comment] = ACTIONS(52), }, [1028] = { - [sym__terminated_statement] = STATE(639), - [sym_for_statement] = STATE(394), - [sym_while_statement] = STATE(394), - [sym_if_statement] = STATE(394), - [sym_case_statement] = STATE(394), - [sym_function_definition] = STATE(394), - [sym_subshell] = STATE(394), - [sym_pipeline] = STATE(394), - [sym_list] = STATE(394), - [sym_bracket_command] = STATE(394), - [sym_command] = STATE(394), + [aux_sym_concatenation_repeat1] = STATE(192), + [sym__concat] = ACTIONS(326), + [anon_sym_RBRACE] = ACTIONS(2346), + [sym_comment] = ACTIONS(52), + }, + [1029] = { + [anon_sym_RBRACE] = ACTIONS(2346), + [sym_comment] = ACTIONS(52), + }, + [1030] = { + [anon_sym_RBRACK] = ACTIONS(2348), + [sym_comment] = ACTIONS(52), + }, + [1031] = { + [aux_sym_concatenation_repeat1] = STATE(192), + [sym__concat] = ACTIONS(326), + [anon_sym_RBRACE] = ACTIONS(2350), + [sym_comment] = ACTIONS(52), + }, + [1032] = { + [anon_sym_RBRACE] = ACTIONS(2350), + [sym_comment] = ACTIONS(52), + }, + [1033] = { + [anon_sym_RBRACE] = ACTIONS(2352), + [anon_sym_LBRACK] = ACTIONS(2354), + [sym_comment] = ACTIONS(52), + }, + [1034] = { + [anon_sym_RBRACE] = ACTIONS(2356), + [anon_sym_LBRACK] = ACTIONS(2358), + [sym_comment] = ACTIONS(52), + }, + [1035] = { + [sym__heredoc_middle] = ACTIONS(858), + [sym__heredoc_end] = ACTIONS(858), + [anon_sym_DOLLAR] = ACTIONS(1274), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(858), + [sym_comment] = ACTIONS(52), + }, + [1036] = { + [anon_sym_AT] = ACTIONS(2360), + [sym_comment] = ACTIONS(52), + }, + [1037] = { + [sym_concatenation] = STATE(1175), + [sym_string] = STATE(1174), + [sym_simple_expansion] = STATE(1174), + [sym_expansion] = STATE(1174), + [sym_command_substitution] = STATE(1174), + [sym_process_substitution] = STATE(1174), + [anon_sym_DQUOTE] = ACTIONS(82), + [sym_raw_string] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(86), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(88), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(90), + [anon_sym_BQUOTE] = ACTIONS(92), + [anon_sym_LT_LPAREN] = ACTIONS(94), + [anon_sym_GT_LPAREN] = ACTIONS(94), + [sym_word] = ACTIONS(2364), + [sym_comment] = ACTIONS(52), + }, + [1038] = { + [sym__heredoc_middle] = ACTIONS(868), + [sym__heredoc_end] = ACTIONS(868), + [anon_sym_DOLLAR] = ACTIONS(1282), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(868), + [sym_comment] = ACTIONS(52), + }, + [1039] = { + [anon_sym_AT] = ACTIONS(2366), + [sym_comment] = ACTIONS(52), + }, + [1040] = { + [sym_concatenation] = STATE(1178), + [sym_string] = STATE(1177), + [sym_simple_expansion] = STATE(1177), + [sym_expansion] = STATE(1177), + [sym_command_substitution] = STATE(1177), + [sym_process_substitution] = STATE(1177), + [anon_sym_DQUOTE] = ACTIONS(82), + [sym_raw_string] = ACTIONS(2368), + [anon_sym_DOLLAR] = ACTIONS(86), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(88), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(90), + [anon_sym_BQUOTE] = ACTIONS(92), + [anon_sym_LT_LPAREN] = ACTIONS(94), + [anon_sym_GT_LPAREN] = ACTIONS(94), + [sym_word] = ACTIONS(2370), + [sym_comment] = ACTIONS(52), + }, + [1041] = { + [sym_file_descriptor] = ACTIONS(1656), + [sym_variable_name] = ACTIONS(1656), + [anon_sym_LT] = ACTIONS(2202), + [anon_sym_GT] = ACTIONS(2202), + [anon_sym_GT_GT] = ACTIONS(1656), + [anon_sym_AMP_GT] = ACTIONS(2202), + [anon_sym_AMP_GT_GT] = ACTIONS(1656), + [anon_sym_LT_AMP] = ACTIONS(1656), + [anon_sym_GT_AMP] = ACTIONS(1656), + [anon_sym_DQUOTE] = ACTIONS(1656), + [sym_raw_string] = ACTIONS(1656), + [anon_sym_DOLLAR] = ACTIONS(2202), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1656), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1656), + [anon_sym_BQUOTE] = ACTIONS(1656), + [anon_sym_LT_LPAREN] = ACTIONS(1656), + [anon_sym_GT_LPAREN] = ACTIONS(1656), + [sym_word] = ACTIONS(2202), + [sym_comment] = ACTIONS(52), + }, + [1042] = { + [anon_sym_RBRACK] = ACTIONS(2372), + [sym_comment] = ACTIONS(52), + }, + [1043] = { + [anon_sym_RBRACK] = ACTIONS(2374), + [sym_comment] = ACTIONS(52), + }, + [1044] = { + [anon_sym_RBRACE] = ACTIONS(2376), + [sym_comment] = ACTIONS(52), + }, + [1045] = { + [sym__concat] = ACTIONS(1818), + [anon_sym_PIPE] = ACTIONS(1818), + [anon_sym_RPAREN] = ACTIONS(1818), + [anon_sym_RBRACK] = ACTIONS(1818), + [sym_comment] = ACTIONS(52), + }, + [1046] = { + [anon_sym_RBRACE] = ACTIONS(2378), + [sym_comment] = ACTIONS(52), + }, + [1047] = { + [sym__concat] = ACTIONS(1824), + [anon_sym_PIPE] = ACTIONS(1824), + [anon_sym_RPAREN] = ACTIONS(1824), + [anon_sym_RBRACK] = ACTIONS(1824), + [sym_comment] = ACTIONS(52), + }, + [1048] = { + [sym__concat] = ACTIONS(1362), + [anon_sym_RPAREN] = ACTIONS(1362), + [anon_sym_DQUOTE] = ACTIONS(1362), + [sym_raw_string] = ACTIONS(1362), + [anon_sym_DOLLAR] = ACTIONS(1758), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1362), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1362), + [anon_sym_BQUOTE] = ACTIONS(1362), + [anon_sym_LT_LPAREN] = ACTIONS(1362), + [anon_sym_GT_LPAREN] = ACTIONS(1362), + [sym_word] = ACTIONS(1758), + [sym_comment] = ACTIONS(52), + }, + [1049] = { + [sym__concat] = ACTIONS(1366), + [anon_sym_RPAREN] = ACTIONS(1366), + [anon_sym_DQUOTE] = ACTIONS(1366), + [sym_raw_string] = ACTIONS(1366), + [anon_sym_DOLLAR] = ACTIONS(1760), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1366), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1366), + [anon_sym_BQUOTE] = ACTIONS(1366), + [anon_sym_LT_LPAREN] = ACTIONS(1366), + [anon_sym_GT_LPAREN] = ACTIONS(1366), + [sym_word] = ACTIONS(1760), + [sym_comment] = ACTIONS(52), + }, + [1050] = { + [anon_sym_AT] = ACTIONS(2380), + [sym_comment] = ACTIONS(52), + }, + [1051] = { + [sym__concat] = ACTIONS(1372), + [anon_sym_RPAREN] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1372), + [sym_raw_string] = ACTIONS(1372), + [anon_sym_DOLLAR] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1372), + [anon_sym_BQUOTE] = ACTIONS(1372), + [anon_sym_LT_LPAREN] = ACTIONS(1372), + [anon_sym_GT_LPAREN] = ACTIONS(1372), + [sym_word] = ACTIONS(1764), + [sym_comment] = ACTIONS(52), + }, + [1052] = { + [anon_sym_AT] = ACTIONS(2382), + [sym_comment] = ACTIONS(52), + }, + [1053] = { + [anon_sym_RBRACK] = ACTIONS(2384), + [sym_comment] = ACTIONS(52), + }, + [1054] = { + [aux_sym_concatenation_repeat1] = STATE(192), + [sym__concat] = ACTIONS(326), + [anon_sym_RBRACE] = ACTIONS(2386), + [sym_comment] = ACTIONS(52), + }, + [1055] = { + [anon_sym_RBRACE] = ACTIONS(2386), + [sym_comment] = ACTIONS(52), + }, + [1056] = { + [anon_sym_RBRACK] = ACTIONS(2388), + [sym_comment] = ACTIONS(52), + }, + [1057] = { + [aux_sym_concatenation_repeat1] = STATE(192), + [sym__concat] = ACTIONS(326), + [anon_sym_RBRACE] = ACTIONS(2390), + [sym_comment] = ACTIONS(52), + }, + [1058] = { + [anon_sym_RBRACE] = ACTIONS(2390), + [sym_comment] = ACTIONS(52), + }, + [1059] = { + [anon_sym_RBRACK] = ACTIONS(2392), + [sym_comment] = ACTIONS(52), + }, + [1060] = { + [anon_sym_RBRACK] = ACTIONS(2394), + [sym_comment] = ACTIONS(52), + }, + [1061] = { + [anon_sym_RBRACE] = ACTIONS(2396), + [sym_comment] = ACTIONS(52), + }, + [1062] = { + [sym_file_descriptor] = ACTIONS(1818), + [sym__concat] = ACTIONS(1818), + [sym_variable_name] = ACTIONS(1818), + [anon_sym_PIPE] = ACTIONS(1820), + [anon_sym_RPAREN] = ACTIONS(1820), + [anon_sym_SEMI_SEMI] = ACTIONS(1820), + [anon_sym_PIPE_AMP] = ACTIONS(1820), + [anon_sym_AMP_AMP] = ACTIONS(1820), + [anon_sym_PIPE_PIPE] = ACTIONS(1820), + [anon_sym_LT] = ACTIONS(1820), + [anon_sym_GT] = ACTIONS(1820), + [anon_sym_GT_GT] = ACTIONS(1820), + [anon_sym_AMP_GT] = ACTIONS(1820), + [anon_sym_AMP_GT_GT] = ACTIONS(1820), + [anon_sym_LT_AMP] = ACTIONS(1820), + [anon_sym_GT_AMP] = ACTIONS(1820), + [anon_sym_DQUOTE] = ACTIONS(1820), + [sym_raw_string] = ACTIONS(1820), + [anon_sym_DOLLAR] = ACTIONS(1820), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1820), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1820), + [anon_sym_BQUOTE] = ACTIONS(1820), + [anon_sym_LT_LPAREN] = ACTIONS(1820), + [anon_sym_GT_LPAREN] = ACTIONS(1820), + [sym_word] = ACTIONS(1820), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(1820), + [anon_sym_LF] = ACTIONS(1820), + [anon_sym_AMP] = ACTIONS(1820), + }, + [1063] = { + [anon_sym_RBRACE] = ACTIONS(2398), + [sym_comment] = ACTIONS(52), + }, + [1064] = { + [sym_file_descriptor] = ACTIONS(1824), + [sym__concat] = ACTIONS(1824), + [sym_variable_name] = ACTIONS(1824), + [anon_sym_PIPE] = ACTIONS(1826), + [anon_sym_RPAREN] = ACTIONS(1826), + [anon_sym_SEMI_SEMI] = ACTIONS(1826), + [anon_sym_PIPE_AMP] = ACTIONS(1826), + [anon_sym_AMP_AMP] = ACTIONS(1826), + [anon_sym_PIPE_PIPE] = ACTIONS(1826), + [anon_sym_LT] = ACTIONS(1826), + [anon_sym_GT] = ACTIONS(1826), + [anon_sym_GT_GT] = ACTIONS(1826), + [anon_sym_AMP_GT] = ACTIONS(1826), + [anon_sym_AMP_GT_GT] = ACTIONS(1826), + [anon_sym_LT_AMP] = ACTIONS(1826), + [anon_sym_GT_AMP] = ACTIONS(1826), + [anon_sym_DQUOTE] = ACTIONS(1826), + [sym_raw_string] = ACTIONS(1826), + [anon_sym_DOLLAR] = ACTIONS(1826), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1826), + [anon_sym_BQUOTE] = ACTIONS(1826), + [anon_sym_LT_LPAREN] = ACTIONS(1826), + [anon_sym_GT_LPAREN] = ACTIONS(1826), + [sym_word] = ACTIONS(1826), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(1826), + [anon_sym_LF] = ACTIONS(1826), + [anon_sym_AMP] = ACTIONS(1826), + }, + [1065] = { + [sym__concat] = ACTIONS(1362), + [anon_sym_SEMI_SEMI] = ACTIONS(1364), + [anon_sym_DQUOTE] = ACTIONS(1364), + [sym_raw_string] = ACTIONS(1364), + [anon_sym_DOLLAR] = ACTIONS(1364), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1364), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1364), + [anon_sym_BQUOTE] = ACTIONS(1364), + [anon_sym_LT_LPAREN] = ACTIONS(1364), + [anon_sym_GT_LPAREN] = ACTIONS(1364), + [sym_word] = ACTIONS(1364), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(1364), + [anon_sym_LF] = ACTIONS(1364), + [anon_sym_AMP] = ACTIONS(1364), + }, + [1066] = { + [sym__concat] = ACTIONS(1366), + [anon_sym_SEMI_SEMI] = ACTIONS(1368), + [anon_sym_DQUOTE] = ACTIONS(1368), + [sym_raw_string] = ACTIONS(1368), + [anon_sym_DOLLAR] = ACTIONS(1368), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1368), + [anon_sym_BQUOTE] = ACTIONS(1368), + [anon_sym_LT_LPAREN] = ACTIONS(1368), + [anon_sym_GT_LPAREN] = ACTIONS(1368), + [sym_word] = ACTIONS(1368), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(1368), + [anon_sym_LF] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + }, + [1067] = { + [anon_sym_AT] = ACTIONS(2400), + [sym_comment] = ACTIONS(52), + }, + [1068] = { + [sym__concat] = ACTIONS(1372), + [anon_sym_SEMI_SEMI] = ACTIONS(1374), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_raw_string] = ACTIONS(1374), + [anon_sym_DOLLAR] = ACTIONS(1374), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1374), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1374), + [anon_sym_BQUOTE] = ACTIONS(1374), + [anon_sym_LT_LPAREN] = ACTIONS(1374), + [anon_sym_GT_LPAREN] = ACTIONS(1374), + [sym_word] = ACTIONS(1374), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(1374), + [anon_sym_LF] = ACTIONS(1374), + [anon_sym_AMP] = ACTIONS(1374), + }, + [1069] = { + [anon_sym_AT] = ACTIONS(2402), + [sym_comment] = ACTIONS(52), + }, + [1070] = { + [anon_sym_RBRACK] = ACTIONS(2404), + [sym_comment] = ACTIONS(52), + }, + [1071] = { + [aux_sym_concatenation_repeat1] = STATE(192), + [sym__concat] = ACTIONS(326), + [anon_sym_RBRACE] = ACTIONS(2406), + [sym_comment] = ACTIONS(52), + }, + [1072] = { + [anon_sym_RBRACE] = ACTIONS(2406), + [sym_comment] = ACTIONS(52), + }, + [1073] = { + [anon_sym_RBRACK] = ACTIONS(2408), + [sym_comment] = ACTIONS(52), + }, + [1074] = { + [aux_sym_concatenation_repeat1] = STATE(192), + [sym__concat] = ACTIONS(326), + [anon_sym_RBRACE] = ACTIONS(2410), + [sym_comment] = ACTIONS(52), + }, + [1075] = { + [anon_sym_RBRACE] = ACTIONS(2410), + [sym_comment] = ACTIONS(52), + }, + [1076] = { + [sym__terminated_statement] = STATE(663), + [sym_for_statement] = STATE(401), + [sym_while_statement] = STATE(401), + [sym_if_statement] = STATE(401), + [sym_case_statement] = STATE(401), + [sym_function_definition] = STATE(401), + [sym_subshell] = STATE(401), + [sym_pipeline] = STATE(401), + [sym_list] = STATE(401), + [sym_bracket_command] = STATE(401), + [sym_command] = STATE(401), [sym_command_name] = STATE(24), - [sym_environment_variable_assignment] = STATE(397), + [sym_environment_variable_assignment] = STATE(404), [sym_subscript] = STATE(26), [sym_file_redirect] = STATE(27), [sym_concatenation] = STATE(28), @@ -22945,9 +23831,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(2324), - [anon_sym_elif] = ACTIONS(2324), - [anon_sym_else] = ACTIONS(2324), + [anon_sym_fi] = ACTIONS(2412), + [anon_sym_elif] = ACTIONS(2412), + [anon_sym_else] = ACTIONS(2412), [anon_sym_case] = ACTIONS(22), [anon_sym_function] = ACTIONS(24), [anon_sym_LPAREN] = ACTIONS(26), @@ -22971,44 +23857,44 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(50), [sym_comment] = ACTIONS(52), }, - [1029] = { - [anon_sym_PIPE] = ACTIONS(2326), - [anon_sym_RPAREN] = ACTIONS(2326), - [anon_sym_SEMI_SEMI] = ACTIONS(2326), - [anon_sym_PIPE_AMP] = ACTIONS(2326), - [anon_sym_AMP_AMP] = ACTIONS(2326), - [anon_sym_PIPE_PIPE] = ACTIONS(2326), + [1077] = { + [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), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(2326), - [anon_sym_LF] = ACTIONS(2326), - [anon_sym_AMP] = ACTIONS(2326), + [anon_sym_SEMI] = ACTIONS(2414), + [anon_sym_LF] = ACTIONS(2414), + [anon_sym_AMP] = ACTIONS(2414), }, - [1030] = { + [1078] = { [aux_sym_concatenation_repeat1] = STATE(344), [sym__concat] = ACTIONS(586), - [anon_sym_PIPE] = ACTIONS(2328), - [anon_sym_RPAREN] = ACTIONS(2328), + [anon_sym_PIPE] = ACTIONS(2416), + [anon_sym_RPAREN] = ACTIONS(2416), [sym_comment] = ACTIONS(52), }, - [1031] = { - [anon_sym_PIPE] = ACTIONS(2328), - [anon_sym_RPAREN] = ACTIONS(2328), + [1079] = { + [anon_sym_PIPE] = ACTIONS(2416), + [anon_sym_RPAREN] = ACTIONS(2416), [sym_comment] = ACTIONS(52), }, - [1032] = { - [anon_sym_esac] = ACTIONS(2330), - [anon_sym_DQUOTE] = ACTIONS(2332), - [sym_raw_string] = ACTIONS(2332), - [anon_sym_DOLLAR] = ACTIONS(2330), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2332), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2332), - [anon_sym_BQUOTE] = ACTIONS(2332), - [anon_sym_LT_LPAREN] = ACTIONS(2332), - [anon_sym_GT_LPAREN] = ACTIONS(2332), - [sym_word] = ACTIONS(2334), + [1080] = { + [anon_sym_esac] = ACTIONS(2418), + [anon_sym_DQUOTE] = ACTIONS(2420), + [sym_raw_string] = ACTIONS(2420), + [anon_sym_DOLLAR] = ACTIONS(2418), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2420), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2420), + [anon_sym_BQUOTE] = ACTIONS(2420), + [anon_sym_LT_LPAREN] = ACTIONS(2420), + [anon_sym_GT_LPAREN] = ACTIONS(2420), + [sym_word] = ACTIONS(2422), [sym_comment] = ACTIONS(52), }, - [1033] = { + [1081] = { [sym__terminated_statement] = STATE(136), [sym_for_statement] = STATE(23), [sym_while_statement] = STATE(23), @@ -23037,7 +23923,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(2336), + [anon_sym_SEMI_SEMI] = ACTIONS(2424), [anon_sym_function] = ACTIONS(24), [anon_sym_LPAREN] = ACTIONS(26), [anon_sym_LBRACK] = ACTIONS(28), @@ -23060,25 +23946,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(50), [sym_comment] = ACTIONS(52), }, - [1034] = { - [sym_concatenation] = STATE(1147), - [sym_string] = STATE(1146), - [sym_simple_expansion] = STATE(1146), - [sym_expansion] = STATE(1146), - [sym_command_substitution] = STATE(1146), - [sym_process_substitution] = STATE(1146), + [1082] = { + [sym_concatenation] = STATE(1201), + [sym_string] = STATE(1200), + [sym_simple_expansion] = STATE(1200), + [sym_expansion] = STATE(1200), + [sym_command_substitution] = STATE(1200), + [sym_process_substitution] = STATE(1200), [anon_sym_DQUOTE] = ACTIONS(254), - [sym_raw_string] = ACTIONS(2338), + [sym_raw_string] = ACTIONS(2426), [anon_sym_DOLLAR] = ACTIONS(258), [anon_sym_DOLLAR_LBRACE] = ACTIONS(260), [anon_sym_DOLLAR_LPAREN] = ACTIONS(262), [anon_sym_BQUOTE] = ACTIONS(264), [anon_sym_LT_LPAREN] = ACTIONS(266), [anon_sym_GT_LPAREN] = ACTIONS(266), - [sym_word] = ACTIONS(2340), + [sym_word] = ACTIONS(2428), [sym_comment] = ACTIONS(52), }, - [1035] = { + [1083] = { [sym__terminated_statement] = STATE(22), [sym_for_statement] = STATE(23), [sym_while_statement] = STATE(23), @@ -23100,7 +23986,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(14), [sym_command_substitution] = STATE(14), [sym_process_substitution] = STATE(14), - [aux_sym_program_repeat1] = STATE(1148), + [aux_sym_program_repeat1] = STATE(1202), [aux_sym_command_repeat1] = STATE(30), [sym_file_descriptor] = ACTIONS(10), [sym_variable_name] = ACTIONS(12), @@ -23108,7 +23994,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(2336), + [anon_sym_SEMI_SEMI] = ACTIONS(2424), [anon_sym_function] = ACTIONS(24), [anon_sym_LPAREN] = ACTIONS(26), [anon_sym_LBRACK] = ACTIONS(28), @@ -23131,1083 +24017,1127 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(50), [sym_comment] = ACTIONS(52), }, - [1036] = { - [anon_sym_PIPE] = ACTIONS(2342), - [anon_sym_RPAREN] = ACTIONS(2342), - [anon_sym_SEMI_SEMI] = ACTIONS(2342), - [anon_sym_PIPE_AMP] = ACTIONS(2342), - [anon_sym_AMP_AMP] = ACTIONS(2342), - [anon_sym_PIPE_PIPE] = ACTIONS(2342), + [1084] = { + [anon_sym_PIPE] = ACTIONS(2430), + [anon_sym_RPAREN] = ACTIONS(2430), + [anon_sym_SEMI_SEMI] = ACTIONS(2430), + [anon_sym_PIPE_AMP] = ACTIONS(2430), + [anon_sym_AMP_AMP] = ACTIONS(2430), + [anon_sym_PIPE_PIPE] = ACTIONS(2430), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(2342), - [anon_sym_LF] = ACTIONS(2342), - [anon_sym_AMP] = ACTIONS(2342), + [anon_sym_SEMI] = ACTIONS(2430), + [anon_sym_LF] = ACTIONS(2430), + [anon_sym_AMP] = ACTIONS(2430), }, - [1037] = { - [anon_sym_RBRACE] = ACTIONS(2344), + [1085] = { + [anon_sym_RBRACE] = ACTIONS(2432), [sym_comment] = ACTIONS(52), }, - [1038] = { - [anon_sym_RBRACE] = ACTIONS(2346), + [1086] = { + [anon_sym_RBRACE] = ACTIONS(2434), [sym_comment] = ACTIONS(52), }, - [1039] = { - [sym__concat] = ACTIONS(2118), - [anon_sym_in] = ACTIONS(2120), - [anon_sym_SEMI_SEMI] = ACTIONS(2120), + [1087] = { + [sym__concat] = ACTIONS(2194), + [anon_sym_in] = ACTIONS(2196), + [anon_sym_SEMI_SEMI] = ACTIONS(2196), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(2120), - [anon_sym_LF] = ACTIONS(2120), - [anon_sym_AMP] = ACTIONS(2120), + [anon_sym_SEMI] = ACTIONS(2196), + [anon_sym_LF] = ACTIONS(2196), + [anon_sym_AMP] = ACTIONS(2196), }, - [1040] = { - [sym__concat] = ACTIONS(2122), - [anon_sym_in] = ACTIONS(2124), - [anon_sym_SEMI_SEMI] = ACTIONS(2124), + [1088] = { + [sym__concat] = ACTIONS(2198), + [anon_sym_in] = ACTIONS(2200), + [anon_sym_SEMI_SEMI] = ACTIONS(2200), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(2124), - [anon_sym_LF] = ACTIONS(2124), - [anon_sym_AMP] = ACTIONS(2124), + [anon_sym_SEMI] = ACTIONS(2200), + [anon_sym_LF] = ACTIONS(2200), + [anon_sym_AMP] = ACTIONS(2200), }, - [1041] = { - [anon_sym_RBRACE] = ACTIONS(2348), + [1089] = { + [anon_sym_RBRACE] = ACTIONS(2436), [sym_comment] = ACTIONS(52), }, - [1042] = { - [anon_sym_RBRACE] = ACTIONS(2350), + [1090] = { + [anon_sym_RBRACE] = ACTIONS(2438), [sym_comment] = ACTIONS(52), }, - [1043] = { - [sym__concat] = ACTIONS(2118), - [anon_sym_RBRACE] = ACTIONS(2118), - [anon_sym_RBRACK] = ACTIONS(2352), - [anon_sym_DQUOTE] = ACTIONS(2118), - [sym_raw_string] = ACTIONS(2118), - [anon_sym_DOLLAR] = ACTIONS(2352), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2118), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2118), - [anon_sym_BQUOTE] = ACTIONS(2118), - [anon_sym_LT_LPAREN] = ACTIONS(2118), - [anon_sym_GT_LPAREN] = ACTIONS(2118), - [sym_word] = ACTIONS(2120), + [1091] = { + [sym__concat] = ACTIONS(2194), + [anon_sym_RBRACE] = ACTIONS(2194), + [anon_sym_RBRACK] = ACTIONS(2440), + [anon_sym_DQUOTE] = ACTIONS(2194), + [sym_raw_string] = ACTIONS(2194), + [anon_sym_DOLLAR] = ACTIONS(2440), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2194), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2194), + [anon_sym_BQUOTE] = ACTIONS(2194), + [anon_sym_LT_LPAREN] = ACTIONS(2194), + [anon_sym_GT_LPAREN] = ACTIONS(2194), + [sym_word] = ACTIONS(2196), [sym_comment] = ACTIONS(52), }, - [1044] = { - [sym__concat] = ACTIONS(2122), - [anon_sym_RBRACE] = ACTIONS(2122), - [anon_sym_RBRACK] = ACTIONS(2354), - [anon_sym_DQUOTE] = ACTIONS(2122), - [sym_raw_string] = ACTIONS(2122), - [anon_sym_DOLLAR] = ACTIONS(2354), - [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_word] = ACTIONS(2124), + [1092] = { + [sym__concat] = ACTIONS(2198), + [anon_sym_RBRACE] = ACTIONS(2198), + [anon_sym_RBRACK] = ACTIONS(2442), + [anon_sym_DQUOTE] = ACTIONS(2198), + [sym_raw_string] = ACTIONS(2198), + [anon_sym_DOLLAR] = ACTIONS(2442), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2198), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2198), + [anon_sym_BQUOTE] = ACTIONS(2198), + [anon_sym_LT_LPAREN] = ACTIONS(2198), + [anon_sym_GT_LPAREN] = ACTIONS(2198), + [sym_word] = ACTIONS(2200), [sym_comment] = ACTIONS(52), }, - [1045] = { - [anon_sym_RBRACE] = ACTIONS(2356), + [1093] = { + [anon_sym_RBRACE] = ACTIONS(2444), [sym_comment] = ACTIONS(52), }, - [1046] = { - [anon_sym_RBRACE] = ACTIONS(2358), + [1094] = { + [anon_sym_RBRACE] = ACTIONS(2446), [sym_comment] = ACTIONS(52), }, - [1047] = { - [sym__concat] = ACTIONS(2118), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2352), - [anon_sym_DQUOTE] = ACTIONS(2118), - [sym_raw_string] = ACTIONS(2118), - [anon_sym_DOLLAR] = ACTIONS(2352), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2118), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2118), - [anon_sym_BQUOTE] = ACTIONS(2118), - [anon_sym_LT_LPAREN] = ACTIONS(2118), - [anon_sym_GT_LPAREN] = ACTIONS(2118), - [sym_word] = ACTIONS(2120), + [1095] = { + [sym__concat] = ACTIONS(2194), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2440), + [anon_sym_DQUOTE] = ACTIONS(2194), + [sym_raw_string] = ACTIONS(2194), + [anon_sym_DOLLAR] = ACTIONS(2440), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2194), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2194), + [anon_sym_BQUOTE] = ACTIONS(2194), + [anon_sym_LT_LPAREN] = ACTIONS(2194), + [anon_sym_GT_LPAREN] = ACTIONS(2194), + [sym_word] = ACTIONS(2196), [sym_comment] = ACTIONS(52), }, - [1048] = { - [sym__concat] = ACTIONS(2122), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2354), - [anon_sym_DQUOTE] = ACTIONS(2122), - [sym_raw_string] = ACTIONS(2122), - [anon_sym_DOLLAR] = ACTIONS(2354), - [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_word] = ACTIONS(2124), + [1096] = { + [sym__concat] = ACTIONS(2198), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2442), + [anon_sym_DQUOTE] = ACTIONS(2198), + [sym_raw_string] = ACTIONS(2198), + [anon_sym_DOLLAR] = ACTIONS(2442), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2198), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2198), + [anon_sym_BQUOTE] = ACTIONS(2198), + [anon_sym_LT_LPAREN] = ACTIONS(2198), + [anon_sym_GT_LPAREN] = ACTIONS(2198), + [sym_word] = ACTIONS(2200), [sym_comment] = ACTIONS(52), }, - [1049] = { - [anon_sym_RBRACE] = ACTIONS(2360), + [1097] = { + [anon_sym_RBRACE] = ACTIONS(2448), [sym_comment] = ACTIONS(52), }, - [1050] = { - [anon_sym_RBRACE] = ACTIONS(2362), + [1098] = { + [anon_sym_RBRACE] = ACTIONS(2450), [sym_comment] = ACTIONS(52), }, - [1051] = { - [sym_file_descriptor] = ACTIONS(2118), - [sym__concat] = ACTIONS(2118), - [sym_variable_name] = ACTIONS(2118), - [anon_sym_LT] = ACTIONS(2352), - [anon_sym_GT] = ACTIONS(2352), - [anon_sym_GT_GT] = ACTIONS(2118), - [anon_sym_AMP_GT] = ACTIONS(2352), - [anon_sym_AMP_GT_GT] = ACTIONS(2118), - [anon_sym_LT_AMP] = ACTIONS(2118), - [anon_sym_GT_AMP] = ACTIONS(2118), - [anon_sym_DQUOTE] = ACTIONS(2118), - [sym_raw_string] = ACTIONS(2118), - [anon_sym_DOLLAR] = ACTIONS(2352), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2118), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2118), - [anon_sym_BQUOTE] = ACTIONS(2118), - [anon_sym_LT_LPAREN] = ACTIONS(2118), - [anon_sym_GT_LPAREN] = ACTIONS(2118), - [sym_word] = ACTIONS(2352), + [1099] = { + [sym_file_descriptor] = ACTIONS(2194), + [sym__concat] = ACTIONS(2194), + [sym_variable_name] = ACTIONS(2194), + [anon_sym_LT] = ACTIONS(2440), + [anon_sym_GT] = ACTIONS(2440), + [anon_sym_GT_GT] = ACTIONS(2194), + [anon_sym_AMP_GT] = ACTIONS(2440), + [anon_sym_AMP_GT_GT] = ACTIONS(2194), + [anon_sym_LT_AMP] = ACTIONS(2194), + [anon_sym_GT_AMP] = ACTIONS(2194), + [anon_sym_DQUOTE] = ACTIONS(2194), + [sym_raw_string] = ACTIONS(2194), + [anon_sym_DOLLAR] = ACTIONS(2440), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2194), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2194), + [anon_sym_BQUOTE] = ACTIONS(2194), + [anon_sym_LT_LPAREN] = ACTIONS(2194), + [anon_sym_GT_LPAREN] = ACTIONS(2194), + [sym_word] = ACTIONS(2440), [sym_comment] = ACTIONS(52), }, - [1052] = { - [sym_file_descriptor] = ACTIONS(2122), - [sym__concat] = ACTIONS(2122), - [sym_variable_name] = ACTIONS(2122), - [anon_sym_LT] = ACTIONS(2354), - [anon_sym_GT] = ACTIONS(2354), - [anon_sym_GT_GT] = ACTIONS(2122), - [anon_sym_AMP_GT] = ACTIONS(2354), - [anon_sym_AMP_GT_GT] = ACTIONS(2122), - [anon_sym_LT_AMP] = ACTIONS(2122), - [anon_sym_GT_AMP] = ACTIONS(2122), - [anon_sym_DQUOTE] = ACTIONS(2122), - [sym_raw_string] = ACTIONS(2122), - [anon_sym_DOLLAR] = ACTIONS(2354), - [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_word] = ACTIONS(2354), + [1100] = { + [sym_file_descriptor] = ACTIONS(2198), + [sym__concat] = ACTIONS(2198), + [sym_variable_name] = ACTIONS(2198), + [anon_sym_LT] = ACTIONS(2442), + [anon_sym_GT] = ACTIONS(2442), + [anon_sym_GT_GT] = ACTIONS(2198), + [anon_sym_AMP_GT] = ACTIONS(2442), + [anon_sym_AMP_GT_GT] = ACTIONS(2198), + [anon_sym_LT_AMP] = ACTIONS(2198), + [anon_sym_GT_AMP] = ACTIONS(2198), + [anon_sym_DQUOTE] = ACTIONS(2198), + [sym_raw_string] = ACTIONS(2198), + [anon_sym_DOLLAR] = ACTIONS(2442), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2198), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2198), + [anon_sym_BQUOTE] = ACTIONS(2198), + [anon_sym_LT_LPAREN] = ACTIONS(2198), + [anon_sym_GT_LPAREN] = ACTIONS(2198), + [sym_word] = ACTIONS(2442), [sym_comment] = ACTIONS(52), }, - [1053] = { - [anon_sym_RBRACE] = ACTIONS(2364), + [1101] = { + [anon_sym_RBRACE] = ACTIONS(2452), [sym_comment] = ACTIONS(52), }, - [1054] = { - [anon_sym_RBRACE] = ACTIONS(2366), + [1102] = { + [anon_sym_RBRACE] = ACTIONS(2454), [sym_comment] = ACTIONS(52), }, - [1055] = { - [anon_sym_DQUOTE] = ACTIONS(2120), - [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(2352), - [anon_sym_DOLLAR] = ACTIONS(2120), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2120), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2120), - [anon_sym_BQUOTE] = ACTIONS(2120), + [1103] = { + [anon_sym_DQUOTE] = ACTIONS(2196), + [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(2440), + [anon_sym_DOLLAR] = ACTIONS(2196), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2196), + [anon_sym_BQUOTE] = ACTIONS(2196), [sym_comment] = ACTIONS(142), }, - [1056] = { - [anon_sym_DQUOTE] = ACTIONS(2124), - [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(2354), - [anon_sym_DOLLAR] = ACTIONS(2124), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2124), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2124), - [anon_sym_BQUOTE] = ACTIONS(2124), + [1104] = { + [anon_sym_DQUOTE] = ACTIONS(2200), + [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(2442), + [anon_sym_DOLLAR] = ACTIONS(2200), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2200), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2200), + [anon_sym_BQUOTE] = ACTIONS(2200), [sym_comment] = ACTIONS(142), }, - [1057] = { - [sym_file_descriptor] = ACTIONS(2368), - [sym__concat] = ACTIONS(2368), - [anon_sym_PIPE] = ACTIONS(2370), - [anon_sym_RPAREN] = ACTIONS(2370), - [anon_sym_SEMI_SEMI] = ACTIONS(2370), - [anon_sym_PIPE_AMP] = ACTIONS(2370), - [anon_sym_AMP_AMP] = ACTIONS(2370), - [anon_sym_PIPE_PIPE] = ACTIONS(2370), - [anon_sym_LT] = ACTIONS(2370), - [anon_sym_GT] = ACTIONS(2370), - [anon_sym_GT_GT] = ACTIONS(2370), - [anon_sym_AMP_GT] = ACTIONS(2370), - [anon_sym_AMP_GT_GT] = ACTIONS(2370), - [anon_sym_LT_AMP] = ACTIONS(2370), - [anon_sym_GT_AMP] = ACTIONS(2370), - [anon_sym_LT_LT] = ACTIONS(2370), - [anon_sym_LT_LT_DASH] = ACTIONS(2370), - [anon_sym_DQUOTE] = ACTIONS(2370), - [sym_raw_string] = ACTIONS(2370), - [anon_sym_DOLLAR] = ACTIONS(2370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2370), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2370), - [anon_sym_BQUOTE] = ACTIONS(2370), - [anon_sym_LT_LPAREN] = ACTIONS(2370), - [anon_sym_GT_LPAREN] = ACTIONS(2370), - [sym_word] = ACTIONS(2370), + [1105] = { + [sym_file_descriptor] = ACTIONS(2456), + [sym__concat] = ACTIONS(2456), + [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_DQUOTE] = ACTIONS(2458), + [sym_raw_string] = ACTIONS(2458), + [anon_sym_DOLLAR] = ACTIONS(2458), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2458), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2458), + [anon_sym_BQUOTE] = ACTIONS(2458), + [anon_sym_LT_LPAREN] = ACTIONS(2458), + [anon_sym_GT_LPAREN] = ACTIONS(2458), + [sym_word] = ACTIONS(2458), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(2370), - [anon_sym_LF] = ACTIONS(2370), - [anon_sym_AMP] = ACTIONS(2370), + [anon_sym_SEMI] = ACTIONS(2458), + [anon_sym_LF] = ACTIONS(2458), + [anon_sym_AMP] = ACTIONS(2458), }, - [1058] = { - [sym_file_descriptor] = ACTIONS(2372), - [sym__concat] = ACTIONS(2372), - [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_DQUOTE] = ACTIONS(2374), - [sym_raw_string] = ACTIONS(2374), - [anon_sym_DOLLAR] = ACTIONS(2374), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2374), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2374), - [anon_sym_BQUOTE] = ACTIONS(2374), - [anon_sym_LT_LPAREN] = ACTIONS(2374), - [anon_sym_GT_LPAREN] = ACTIONS(2374), - [sym_word] = ACTIONS(2374), + [1106] = { + [sym_file_descriptor] = ACTIONS(2460), + [sym__concat] = ACTIONS(2460), + [anon_sym_PIPE] = ACTIONS(2462), + [anon_sym_RPAREN] = ACTIONS(2462), + [anon_sym_SEMI_SEMI] = ACTIONS(2462), + [anon_sym_PIPE_AMP] = ACTIONS(2462), + [anon_sym_AMP_AMP] = ACTIONS(2462), + [anon_sym_PIPE_PIPE] = ACTIONS(2462), + [anon_sym_LT] = ACTIONS(2462), + [anon_sym_GT] = ACTIONS(2462), + [anon_sym_GT_GT] = ACTIONS(2462), + [anon_sym_AMP_GT] = ACTIONS(2462), + [anon_sym_AMP_GT_GT] = ACTIONS(2462), + [anon_sym_LT_AMP] = ACTIONS(2462), + [anon_sym_GT_AMP] = ACTIONS(2462), + [anon_sym_LT_LT] = ACTIONS(2462), + [anon_sym_LT_LT_DASH] = ACTIONS(2462), + [anon_sym_DQUOTE] = ACTIONS(2462), + [sym_raw_string] = ACTIONS(2462), + [anon_sym_DOLLAR] = ACTIONS(2462), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2462), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2462), + [anon_sym_BQUOTE] = ACTIONS(2462), + [anon_sym_LT_LPAREN] = ACTIONS(2462), + [anon_sym_GT_LPAREN] = ACTIONS(2462), + [sym_word] = ACTIONS(2462), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(2374), - [anon_sym_LF] = ACTIONS(2374), - [anon_sym_AMP] = ACTIONS(2374), + [anon_sym_SEMI] = ACTIONS(2462), + [anon_sym_LF] = ACTIONS(2462), + [anon_sym_AMP] = ACTIONS(2462), }, - [1059] = { - [sym_file_descriptor] = ACTIONS(1336), - [sym__concat] = ACTIONS(1336), - [sym_variable_name] = ACTIONS(1336), - [anon_sym_PIPE] = ACTIONS(1706), - [anon_sym_RPAREN] = ACTIONS(1336), - [anon_sym_PIPE_AMP] = ACTIONS(1336), - [anon_sym_AMP_AMP] = ACTIONS(1336), - [anon_sym_PIPE_PIPE] = ACTIONS(1706), - [anon_sym_LT] = ACTIONS(1706), - [anon_sym_GT] = ACTIONS(1706), - [anon_sym_GT_GT] = ACTIONS(1336), - [anon_sym_AMP_GT] = ACTIONS(1706), - [anon_sym_AMP_GT_GT] = ACTIONS(1336), - [anon_sym_LT_AMP] = ACTIONS(1336), - [anon_sym_GT_AMP] = ACTIONS(1336), - [anon_sym_DQUOTE] = ACTIONS(1336), - [sym_raw_string] = ACTIONS(1336), - [anon_sym_DOLLAR] = ACTIONS(1706), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1336), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1336), - [anon_sym_BQUOTE] = ACTIONS(1336), - [anon_sym_LT_LPAREN] = ACTIONS(1336), - [anon_sym_GT_LPAREN] = ACTIONS(1336), - [sym_word] = ACTIONS(1338), + [1107] = { + [sym_file_descriptor] = ACTIONS(1362), + [sym__concat] = ACTIONS(1362), + [sym_variable_name] = ACTIONS(1362), + [anon_sym_PIPE] = ACTIONS(1758), + [anon_sym_RPAREN] = ACTIONS(1362), + [anon_sym_PIPE_AMP] = ACTIONS(1362), + [anon_sym_AMP_AMP] = ACTIONS(1362), + [anon_sym_PIPE_PIPE] = ACTIONS(1758), + [anon_sym_LT] = ACTIONS(1758), + [anon_sym_GT] = ACTIONS(1758), + [anon_sym_GT_GT] = ACTIONS(1362), + [anon_sym_AMP_GT] = ACTIONS(1758), + [anon_sym_AMP_GT_GT] = ACTIONS(1362), + [anon_sym_LT_AMP] = ACTIONS(1362), + [anon_sym_GT_AMP] = ACTIONS(1362), + [anon_sym_DQUOTE] = ACTIONS(1362), + [sym_raw_string] = ACTIONS(1362), + [anon_sym_DOLLAR] = ACTIONS(1758), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1362), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1362), + [anon_sym_BQUOTE] = ACTIONS(1362), + [anon_sym_LT_LPAREN] = ACTIONS(1362), + [anon_sym_GT_LPAREN] = ACTIONS(1362), + [sym_word] = ACTIONS(1364), [sym_comment] = ACTIONS(52), }, - [1060] = { - [sym_file_descriptor] = ACTIONS(1340), - [sym__concat] = ACTIONS(1340), - [sym_variable_name] = ACTIONS(1340), - [anon_sym_PIPE] = ACTIONS(1708), - [anon_sym_RPAREN] = ACTIONS(1340), - [anon_sym_PIPE_AMP] = ACTIONS(1340), - [anon_sym_AMP_AMP] = ACTIONS(1340), - [anon_sym_PIPE_PIPE] = ACTIONS(1708), - [anon_sym_LT] = ACTIONS(1708), - [anon_sym_GT] = ACTIONS(1708), - [anon_sym_GT_GT] = ACTIONS(1340), - [anon_sym_AMP_GT] = ACTIONS(1708), - [anon_sym_AMP_GT_GT] = ACTIONS(1340), - [anon_sym_LT_AMP] = ACTIONS(1340), - [anon_sym_GT_AMP] = ACTIONS(1340), - [anon_sym_DQUOTE] = ACTIONS(1340), - [sym_raw_string] = ACTIONS(1340), - [anon_sym_DOLLAR] = ACTIONS(1708), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1340), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1340), - [anon_sym_BQUOTE] = ACTIONS(1340), - [anon_sym_LT_LPAREN] = ACTIONS(1340), - [anon_sym_GT_LPAREN] = ACTIONS(1340), - [sym_word] = ACTIONS(1342), + [1108] = { + [sym_file_descriptor] = ACTIONS(1366), + [sym__concat] = ACTIONS(1366), + [sym_variable_name] = ACTIONS(1366), + [anon_sym_PIPE] = ACTIONS(1760), + [anon_sym_RPAREN] = ACTIONS(1366), + [anon_sym_PIPE_AMP] = ACTIONS(1366), + [anon_sym_AMP_AMP] = ACTIONS(1366), + [anon_sym_PIPE_PIPE] = ACTIONS(1760), + [anon_sym_LT] = ACTIONS(1760), + [anon_sym_GT] = ACTIONS(1760), + [anon_sym_GT_GT] = ACTIONS(1366), + [anon_sym_AMP_GT] = ACTIONS(1760), + [anon_sym_AMP_GT_GT] = ACTIONS(1366), + [anon_sym_LT_AMP] = ACTIONS(1366), + [anon_sym_GT_AMP] = ACTIONS(1366), + [anon_sym_DQUOTE] = ACTIONS(1366), + [sym_raw_string] = ACTIONS(1366), + [anon_sym_DOLLAR] = ACTIONS(1760), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1366), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1366), + [anon_sym_BQUOTE] = ACTIONS(1366), + [anon_sym_LT_LPAREN] = ACTIONS(1366), + [anon_sym_GT_LPAREN] = ACTIONS(1366), + [sym_word] = ACTIONS(1368), [sym_comment] = ACTIONS(52), }, - [1061] = { - [anon_sym_AT] = ACTIONS(2376), + [1109] = { + [anon_sym_AT] = ACTIONS(2464), [sym_comment] = ACTIONS(52), }, - [1062] = { - [sym_file_descriptor] = ACTIONS(1346), - [sym__concat] = ACTIONS(1346), - [sym_variable_name] = ACTIONS(1346), - [anon_sym_PIPE] = ACTIONS(1712), - [anon_sym_RPAREN] = ACTIONS(1346), - [anon_sym_PIPE_AMP] = ACTIONS(1346), - [anon_sym_AMP_AMP] = ACTIONS(1346), - [anon_sym_PIPE_PIPE] = ACTIONS(1712), - [anon_sym_LT] = ACTIONS(1712), - [anon_sym_GT] = ACTIONS(1712), - [anon_sym_GT_GT] = ACTIONS(1346), - [anon_sym_AMP_GT] = ACTIONS(1712), - [anon_sym_AMP_GT_GT] = ACTIONS(1346), - [anon_sym_LT_AMP] = ACTIONS(1346), - [anon_sym_GT_AMP] = ACTIONS(1346), - [anon_sym_DQUOTE] = ACTIONS(1346), - [sym_raw_string] = ACTIONS(1346), - [anon_sym_DOLLAR] = ACTIONS(1712), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1346), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1346), - [anon_sym_BQUOTE] = ACTIONS(1346), - [anon_sym_LT_LPAREN] = ACTIONS(1346), - [anon_sym_GT_LPAREN] = ACTIONS(1346), - [sym_word] = ACTIONS(1348), + [1110] = { + [sym_file_descriptor] = ACTIONS(1372), + [sym__concat] = ACTIONS(1372), + [sym_variable_name] = ACTIONS(1372), + [anon_sym_PIPE] = ACTIONS(1764), + [anon_sym_RPAREN] = ACTIONS(1372), + [anon_sym_PIPE_AMP] = ACTIONS(1372), + [anon_sym_AMP_AMP] = ACTIONS(1372), + [anon_sym_PIPE_PIPE] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(1764), + [anon_sym_GT] = ACTIONS(1764), + [anon_sym_GT_GT] = ACTIONS(1372), + [anon_sym_AMP_GT] = ACTIONS(1764), + [anon_sym_AMP_GT_GT] = ACTIONS(1372), + [anon_sym_LT_AMP] = ACTIONS(1372), + [anon_sym_GT_AMP] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1372), + [sym_raw_string] = ACTIONS(1372), + [anon_sym_DOLLAR] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1372), + [anon_sym_BQUOTE] = ACTIONS(1372), + [anon_sym_LT_LPAREN] = ACTIONS(1372), + [anon_sym_GT_LPAREN] = ACTIONS(1372), + [sym_word] = ACTIONS(1374), [sym_comment] = ACTIONS(52), }, - [1063] = { - [anon_sym_AT] = ACTIONS(2378), + [1111] = { + [anon_sym_AT] = ACTIONS(2466), [sym_comment] = ACTIONS(52), }, - [1064] = { - [anon_sym_RBRACK] = ACTIONS(2380), + [1112] = { + [anon_sym_RBRACK] = ACTIONS(2468), [sym_comment] = ACTIONS(52), }, - [1065] = { + [1113] = { [aux_sym_concatenation_repeat1] = STATE(192), [sym__concat] = ACTIONS(326), - [anon_sym_RBRACE] = ACTIONS(2382), + [anon_sym_RBRACE] = ACTIONS(2470), [sym_comment] = ACTIONS(52), }, - [1066] = { - [anon_sym_RBRACE] = ACTIONS(2382), + [1114] = { + [anon_sym_RBRACE] = ACTIONS(2470), [sym_comment] = ACTIONS(52), }, - [1067] = { - [anon_sym_RBRACK] = ACTIONS(2384), + [1115] = { + [anon_sym_RBRACK] = ACTIONS(2472), [sym_comment] = ACTIONS(52), }, - [1068] = { + [1116] = { [aux_sym_concatenation_repeat1] = STATE(192), [sym__concat] = ACTIONS(326), - [anon_sym_RBRACE] = ACTIONS(2386), + [anon_sym_RBRACE] = ACTIONS(2474), [sym_comment] = ACTIONS(52), }, - [1069] = { - [anon_sym_RBRACE] = ACTIONS(2386), + [1117] = { + [anon_sym_RBRACE] = ACTIONS(2474), [sym_comment] = ACTIONS(52), }, - [1070] = { - [anon_sym_PIPE] = ACTIONS(2388), - [anon_sym_RPAREN] = ACTIONS(2390), - [anon_sym_PIPE_AMP] = ACTIONS(2390), - [anon_sym_AMP_AMP] = ACTIONS(2390), - [anon_sym_PIPE_PIPE] = ACTIONS(2390), - [anon_sym_BQUOTE] = ACTIONS(2390), + [1118] = { + [anon_sym_PIPE] = ACTIONS(2476), + [anon_sym_RPAREN] = ACTIONS(2478), + [anon_sym_PIPE_AMP] = ACTIONS(2478), + [anon_sym_AMP_AMP] = ACTIONS(2478), + [anon_sym_PIPE_PIPE] = ACTIONS(2478), + [anon_sym_BQUOTE] = ACTIONS(2478), [sym_comment] = ACTIONS(52), }, - [1071] = { - [anon_sym_PIPE] = ACTIONS(2392), - [anon_sym_RPAREN] = ACTIONS(2394), - [anon_sym_PIPE_AMP] = ACTIONS(2394), - [anon_sym_AMP_AMP] = ACTIONS(2394), - [anon_sym_PIPE_PIPE] = ACTIONS(2394), - [anon_sym_BQUOTE] = ACTIONS(2394), + [1119] = { + [anon_sym_PIPE] = ACTIONS(2480), + [anon_sym_RPAREN] = ACTIONS(2482), + [anon_sym_PIPE_AMP] = ACTIONS(2482), + [anon_sym_AMP_AMP] = ACTIONS(2482), + [anon_sym_PIPE_PIPE] = ACTIONS(2482), + [anon_sym_BQUOTE] = ACTIONS(2482), [sym_comment] = ACTIONS(52), }, - [1072] = { - [anon_sym_fi] = ACTIONS(2396), + [1120] = { + [anon_sym_fi] = ACTIONS(2484), [sym_comment] = ACTIONS(52), }, - [1073] = { - [anon_sym_PIPE] = ACTIONS(2398), - [anon_sym_RPAREN] = ACTIONS(2400), - [anon_sym_PIPE_AMP] = ACTIONS(2400), - [anon_sym_AMP_AMP] = ACTIONS(2400), - [anon_sym_PIPE_PIPE] = ACTIONS(2400), - [anon_sym_BQUOTE] = ACTIONS(2400), + [1121] = { + [anon_sym_PIPE] = ACTIONS(2486), + [anon_sym_RPAREN] = ACTIONS(2488), + [anon_sym_PIPE_AMP] = ACTIONS(2488), + [anon_sym_AMP_AMP] = ACTIONS(2488), + [anon_sym_PIPE_PIPE] = ACTIONS(2488), + [anon_sym_BQUOTE] = ACTIONS(2488), [sym_comment] = ACTIONS(52), }, - [1074] = { - [sym_case_item] = STATE(872), - [sym_concatenation] = STATE(646), - [sym_string] = STATE(644), - [sym_simple_expansion] = STATE(644), - [sym_expansion] = STATE(644), - [sym_command_substitution] = STATE(644), - [sym_process_substitution] = STATE(644), - [anon_sym_esac] = ACTIONS(2402), + [1122] = { + [sym_case_item] = STATE(909), + [sym_concatenation] = STATE(670), + [sym_string] = STATE(668), + [sym_simple_expansion] = STATE(668), + [sym_expansion] = STATE(668), + [sym_command_substitution] = STATE(668), + [sym_process_substitution] = STATE(668), + [anon_sym_esac] = ACTIONS(2490), [anon_sym_DQUOTE] = ACTIONS(254), - [sym_raw_string] = ACTIONS(1196), + [sym_raw_string] = ACTIONS(1222), [anon_sym_DOLLAR] = ACTIONS(258), [anon_sym_DOLLAR_LBRACE] = ACTIONS(260), [anon_sym_DOLLAR_LPAREN] = ACTIONS(262), [anon_sym_BQUOTE] = ACTIONS(264), [anon_sym_LT_LPAREN] = ACTIONS(266), [anon_sym_GT_LPAREN] = ACTIONS(266), - [sym_word] = ACTIONS(1198), - [sym_comment] = ACTIONS(52), - }, - [1075] = { - [anon_sym_PIPE] = ACTIONS(2404), - [anon_sym_RPAREN] = ACTIONS(2406), - [anon_sym_PIPE_AMP] = ACTIONS(2406), - [anon_sym_AMP_AMP] = ACTIONS(2406), - [anon_sym_PIPE_PIPE] = ACTIONS(2406), - [anon_sym_BQUOTE] = ACTIONS(2406), - [sym_comment] = ACTIONS(52), - }, - [1076] = { - [anon_sym_RBRACE] = ACTIONS(2408), - [sym_comment] = ACTIONS(52), - }, - [1077] = { - [anon_sym_RBRACE] = ACTIONS(2410), - [sym_comment] = ACTIONS(52), - }, - [1078] = { - [sym_file_descriptor] = ACTIONS(2118), - [sym__concat] = ACTIONS(2118), - [anon_sym_PIPE] = ACTIONS(2352), - [anon_sym_RPAREN] = ACTIONS(2118), - [anon_sym_PIPE_AMP] = ACTIONS(2118), - [anon_sym_AMP_AMP] = ACTIONS(2118), - [anon_sym_PIPE_PIPE] = ACTIONS(2352), - [anon_sym_LT] = ACTIONS(2352), - [anon_sym_GT] = ACTIONS(2352), - [anon_sym_GT_GT] = ACTIONS(2118), - [anon_sym_AMP_GT] = ACTIONS(2352), - [anon_sym_AMP_GT_GT] = ACTIONS(2118), - [anon_sym_LT_AMP] = ACTIONS(2118), - [anon_sym_GT_AMP] = ACTIONS(2118), - [anon_sym_LT_LT] = ACTIONS(2352), - [anon_sym_LT_LT_DASH] = ACTIONS(2118), - [anon_sym_DQUOTE] = ACTIONS(2118), - [sym_raw_string] = ACTIONS(2118), - [anon_sym_DOLLAR] = ACTIONS(2352), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2118), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2118), - [anon_sym_BQUOTE] = ACTIONS(2118), - [anon_sym_LT_LPAREN] = ACTIONS(2118), - [anon_sym_GT_LPAREN] = ACTIONS(2118), - [sym_word] = ACTIONS(2120), - [sym_comment] = ACTIONS(52), - }, - [1079] = { - [sym_file_descriptor] = ACTIONS(2122), - [sym__concat] = ACTIONS(2122), - [anon_sym_PIPE] = ACTIONS(2354), - [anon_sym_RPAREN] = ACTIONS(2122), - [anon_sym_PIPE_AMP] = ACTIONS(2122), - [anon_sym_AMP_AMP] = ACTIONS(2122), - [anon_sym_PIPE_PIPE] = ACTIONS(2354), - [anon_sym_LT] = ACTIONS(2354), - [anon_sym_GT] = ACTIONS(2354), - [anon_sym_GT_GT] = ACTIONS(2122), - [anon_sym_AMP_GT] = ACTIONS(2354), - [anon_sym_AMP_GT_GT] = ACTIONS(2122), - [anon_sym_LT_AMP] = ACTIONS(2122), - [anon_sym_GT_AMP] = ACTIONS(2122), - [anon_sym_LT_LT] = ACTIONS(2354), - [anon_sym_LT_LT_DASH] = ACTIONS(2122), - [anon_sym_DQUOTE] = ACTIONS(2122), - [sym_raw_string] = ACTIONS(2122), - [anon_sym_DOLLAR] = ACTIONS(2354), - [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_word] = ACTIONS(2124), - [sym_comment] = ACTIONS(52), - }, - [1080] = { - [sym__concat] = ACTIONS(820), - [anon_sym_PIPE] = ACTIONS(1232), - [anon_sym_RPAREN] = ACTIONS(820), - [anon_sym_PIPE_AMP] = ACTIONS(820), - [anon_sym_AMP_AMP] = ACTIONS(820), - [anon_sym_PIPE_PIPE] = ACTIONS(820), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_comment] = ACTIONS(52), - }, - [1081] = { - [sym__concat] = ACTIONS(828), - [anon_sym_PIPE] = ACTIONS(1234), - [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_BQUOTE] = ACTIONS(828), - [sym_comment] = ACTIONS(52), - }, - [1082] = { - [sym_string] = STATE(1169), - [sym_simple_expansion] = STATE(1169), - [sym_expansion] = STATE(1169), - [sym_command_substitution] = STATE(1169), - [sym_process_substitution] = STATE(1169), - [anon_sym_DQUOTE] = ACTIONS(1442), - [sym_raw_string] = ACTIONS(2412), - [anon_sym_DOLLAR] = ACTIONS(1446), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1448), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1450), - [anon_sym_BQUOTE] = ACTIONS(1452), - [anon_sym_LT_LPAREN] = ACTIONS(1454), - [anon_sym_GT_LPAREN] = ACTIONS(1454), - [sym_word] = ACTIONS(2414), - [sym_comment] = ACTIONS(52), - }, - [1083] = { - [anon_sym_RBRACE] = ACTIONS(2416), - [anon_sym_LBRACK] = ACTIONS(2418), - [sym_comment] = ACTIONS(52), - }, - [1084] = { - [anon_sym_RBRACE] = ACTIONS(2420), - [anon_sym_LBRACK] = ACTIONS(2422), - [sym_comment] = ACTIONS(52), - }, - [1085] = { - [sym__concat] = ACTIONS(844), - [anon_sym_PIPE] = ACTIONS(1248), - [anon_sym_RPAREN] = ACTIONS(844), - [anon_sym_PIPE_AMP] = ACTIONS(844), - [anon_sym_AMP_AMP] = ACTIONS(844), - [anon_sym_PIPE_PIPE] = ACTIONS(844), - [anon_sym_BQUOTE] = ACTIONS(844), - [sym_comment] = ACTIONS(52), - }, - [1086] = { - [anon_sym_AT] = ACTIONS(2424), - [sym_comment] = ACTIONS(52), - }, - [1087] = { - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(1175), - [sym_simple_expansion] = STATE(1175), - [sym_expansion] = STATE(1175), - [sym_command_substitution] = STATE(1175), - [sym_process_substitution] = STATE(1175), - [anon_sym_DQUOTE] = ACTIONS(82), - [sym_raw_string] = ACTIONS(2426), - [anon_sym_DOLLAR] = ACTIONS(86), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(88), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(90), - [anon_sym_BQUOTE] = ACTIONS(92), - [anon_sym_LT_LPAREN] = ACTIONS(94), - [anon_sym_GT_LPAREN] = ACTIONS(94), - [sym_word] = ACTIONS(2428), - [sym_comment] = ACTIONS(52), - }, - [1088] = { - [sym__concat] = ACTIONS(854), - [anon_sym_PIPE] = ACTIONS(1256), - [anon_sym_RPAREN] = ACTIONS(854), - [anon_sym_PIPE_AMP] = ACTIONS(854), - [anon_sym_AMP_AMP] = ACTIONS(854), - [anon_sym_PIPE_PIPE] = ACTIONS(854), - [anon_sym_BQUOTE] = ACTIONS(854), - [sym_comment] = ACTIONS(52), - }, - [1089] = { - [anon_sym_AT] = ACTIONS(2430), - [sym_comment] = ACTIONS(52), - }, - [1090] = { - [sym_concatenation] = STATE(1179), - [sym_string] = STATE(1178), - [sym_simple_expansion] = STATE(1178), - [sym_expansion] = STATE(1178), - [sym_command_substitution] = STATE(1178), - [sym_process_substitution] = STATE(1178), - [anon_sym_DQUOTE] = ACTIONS(82), - [sym_raw_string] = ACTIONS(2432), - [anon_sym_DOLLAR] = ACTIONS(86), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(88), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(90), - [anon_sym_BQUOTE] = ACTIONS(92), - [anon_sym_LT_LPAREN] = ACTIONS(94), - [anon_sym_GT_LPAREN] = ACTIONS(94), - [sym_word] = ACTIONS(2434), - [sym_comment] = ACTIONS(52), - }, - [1091] = { - [sym__concat] = ACTIONS(946), - [anon_sym_PIPE] = ACTIONS(1264), - [anon_sym_RPAREN] = ACTIONS(946), - [anon_sym_PIPE_AMP] = ACTIONS(946), - [anon_sym_AMP_AMP] = ACTIONS(946), - [anon_sym_PIPE_PIPE] = ACTIONS(946), - [anon_sym_BQUOTE] = ACTIONS(946), - [sym_comment] = ACTIONS(52), - }, - [1092] = { - [sym__concat] = ACTIONS(984), - [anon_sym_PIPE] = ACTIONS(1266), - [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_BQUOTE] = ACTIONS(984), - [sym_comment] = ACTIONS(52), - }, - [1093] = { - [sym_file_descriptor] = ACTIONS(1336), - [sym__concat] = ACTIONS(1336), - [anon_sym_PIPE] = ACTIONS(1706), - [anon_sym_RPAREN] = ACTIONS(1336), - [anon_sym_PIPE_AMP] = ACTIONS(1336), - [anon_sym_AMP_AMP] = ACTIONS(1336), - [anon_sym_PIPE_PIPE] = ACTIONS(1336), - [anon_sym_LT] = ACTIONS(1706), - [anon_sym_GT] = ACTIONS(1706), - [anon_sym_GT_GT] = ACTIONS(1336), - [anon_sym_AMP_GT] = ACTIONS(1706), - [anon_sym_AMP_GT_GT] = ACTIONS(1336), - [anon_sym_LT_AMP] = ACTIONS(1336), - [anon_sym_GT_AMP] = ACTIONS(1336), - [anon_sym_LT_LT] = ACTIONS(1706), - [anon_sym_LT_LT_DASH] = ACTIONS(1336), - [anon_sym_BQUOTE] = ACTIONS(1336), - [sym_comment] = ACTIONS(52), - }, - [1094] = { - [sym_file_descriptor] = ACTIONS(1340), - [sym__concat] = ACTIONS(1340), - [anon_sym_PIPE] = ACTIONS(1708), - [anon_sym_RPAREN] = ACTIONS(1340), - [anon_sym_PIPE_AMP] = ACTIONS(1340), - [anon_sym_AMP_AMP] = ACTIONS(1340), - [anon_sym_PIPE_PIPE] = ACTIONS(1340), - [anon_sym_LT] = ACTIONS(1708), - [anon_sym_GT] = ACTIONS(1708), - [anon_sym_GT_GT] = ACTIONS(1340), - [anon_sym_AMP_GT] = ACTIONS(1708), - [anon_sym_AMP_GT_GT] = ACTIONS(1340), - [anon_sym_LT_AMP] = ACTIONS(1340), - [anon_sym_GT_AMP] = ACTIONS(1340), - [anon_sym_LT_LT] = ACTIONS(1708), - [anon_sym_LT_LT_DASH] = ACTIONS(1340), - [anon_sym_BQUOTE] = ACTIONS(1340), - [sym_comment] = ACTIONS(52), - }, - [1095] = { - [anon_sym_AT] = ACTIONS(2436), - [sym_comment] = ACTIONS(52), - }, - [1096] = { - [sym_file_descriptor] = ACTIONS(1346), - [sym__concat] = ACTIONS(1346), - [anon_sym_PIPE] = ACTIONS(1712), - [anon_sym_RPAREN] = ACTIONS(1346), - [anon_sym_PIPE_AMP] = ACTIONS(1346), - [anon_sym_AMP_AMP] = ACTIONS(1346), - [anon_sym_PIPE_PIPE] = ACTIONS(1346), - [anon_sym_LT] = ACTIONS(1712), - [anon_sym_GT] = ACTIONS(1712), - [anon_sym_GT_GT] = ACTIONS(1346), - [anon_sym_AMP_GT] = ACTIONS(1712), - [anon_sym_AMP_GT_GT] = ACTIONS(1346), - [anon_sym_LT_AMP] = ACTIONS(1346), - [anon_sym_GT_AMP] = ACTIONS(1346), - [anon_sym_LT_LT] = ACTIONS(1712), - [anon_sym_LT_LT_DASH] = ACTIONS(1346), - [anon_sym_BQUOTE] = ACTIONS(1346), - [sym_comment] = ACTIONS(52), - }, - [1097] = { - [anon_sym_AT] = ACTIONS(2438), - [sym_comment] = ACTIONS(52), - }, - [1098] = { - [anon_sym_RBRACK] = ACTIONS(2440), - [sym_comment] = ACTIONS(52), - }, - [1099] = { - [aux_sym_concatenation_repeat1] = STATE(192), - [sym__concat] = ACTIONS(326), - [anon_sym_RBRACE] = ACTIONS(2442), - [sym_comment] = ACTIONS(52), - }, - [1100] = { - [anon_sym_RBRACE] = ACTIONS(2442), - [sym_comment] = ACTIONS(52), - }, - [1101] = { - [anon_sym_RBRACK] = ACTIONS(2444), - [sym_comment] = ACTIONS(52), - }, - [1102] = { - [aux_sym_concatenation_repeat1] = STATE(192), - [sym__concat] = ACTIONS(326), - [anon_sym_RBRACE] = ACTIONS(2446), - [sym_comment] = ACTIONS(52), - }, - [1103] = { - [anon_sym_RBRACE] = ACTIONS(2446), - [sym_comment] = ACTIONS(52), - }, - [1104] = { - [sym__concat] = ACTIONS(1336), - [anon_sym_PIPE] = ACTIONS(1338), - [anon_sym_RPAREN] = ACTIONS(1338), - [anon_sym_SEMI_SEMI] = ACTIONS(1338), - [anon_sym_PIPE_AMP] = ACTIONS(1338), - [anon_sym_AMP_AMP] = ACTIONS(1338), - [anon_sym_PIPE_PIPE] = ACTIONS(1338), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1338), - [anon_sym_LF] = ACTIONS(1338), - [anon_sym_AMP] = ACTIONS(1338), - }, - [1105] = { - [sym__concat] = ACTIONS(1340), - [anon_sym_PIPE] = ACTIONS(1342), - [anon_sym_RPAREN] = ACTIONS(1342), - [anon_sym_SEMI_SEMI] = ACTIONS(1342), - [anon_sym_PIPE_AMP] = ACTIONS(1342), - [anon_sym_AMP_AMP] = ACTIONS(1342), - [anon_sym_PIPE_PIPE] = ACTIONS(1342), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1342), - [anon_sym_LF] = ACTIONS(1342), - [anon_sym_AMP] = ACTIONS(1342), - }, - [1106] = { - [anon_sym_AT] = ACTIONS(2448), - [sym_comment] = ACTIONS(52), - }, - [1107] = { - [sym__concat] = ACTIONS(1346), - [anon_sym_PIPE] = ACTIONS(1348), - [anon_sym_RPAREN] = ACTIONS(1348), - [anon_sym_SEMI_SEMI] = ACTIONS(1348), - [anon_sym_PIPE_AMP] = ACTIONS(1348), - [anon_sym_AMP_AMP] = ACTIONS(1348), - [anon_sym_PIPE_PIPE] = ACTIONS(1348), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1348), - [anon_sym_LF] = ACTIONS(1348), - [anon_sym_AMP] = ACTIONS(1348), - }, - [1108] = { - [anon_sym_AT] = ACTIONS(2450), - [sym_comment] = ACTIONS(52), - }, - [1109] = { - [anon_sym_RBRACK] = ACTIONS(2452), - [sym_comment] = ACTIONS(52), - }, - [1110] = { - [aux_sym_concatenation_repeat1] = STATE(192), - [sym__concat] = ACTIONS(326), - [anon_sym_RBRACE] = ACTIONS(2454), - [sym_comment] = ACTIONS(52), - }, - [1111] = { - [anon_sym_RBRACE] = ACTIONS(2454), - [sym_comment] = ACTIONS(52), - }, - [1112] = { - [anon_sym_RBRACK] = ACTIONS(2456), - [sym_comment] = ACTIONS(52), - }, - [1113] = { - [aux_sym_concatenation_repeat1] = STATE(192), - [sym__concat] = ACTIONS(326), - [anon_sym_RBRACE] = ACTIONS(2458), - [sym_comment] = ACTIONS(52), - }, - [1114] = { - [anon_sym_RBRACE] = ACTIONS(2458), - [sym_comment] = ACTIONS(52), - }, - [1115] = { - [anon_sym_RBRACK] = ACTIONS(2460), - [sym_comment] = ACTIONS(52), - }, - [1116] = { - [anon_sym_RBRACK] = ACTIONS(2462), - [sym_comment] = ACTIONS(52), - }, - [1117] = { - [anon_sym_RBRACE] = ACTIONS(2464), - [sym_comment] = ACTIONS(52), - }, - [1118] = { - [sym_file_descriptor] = ACTIONS(1766), - [sym__concat] = ACTIONS(1766), - [anon_sym_PIPE] = ACTIONS(1768), - [anon_sym_RPAREN] = ACTIONS(1768), - [anon_sym_SEMI_SEMI] = ACTIONS(1768), - [anon_sym_PIPE_AMP] = ACTIONS(1768), - [anon_sym_AMP_AMP] = ACTIONS(1768), - [anon_sym_PIPE_PIPE] = ACTIONS(1768), - [anon_sym_LT] = ACTIONS(1768), - [anon_sym_GT] = ACTIONS(1768), - [anon_sym_GT_GT] = ACTIONS(1768), - [anon_sym_AMP_GT] = ACTIONS(1768), - [anon_sym_AMP_GT_GT] = ACTIONS(1768), - [anon_sym_LT_AMP] = ACTIONS(1768), - [anon_sym_GT_AMP] = ACTIONS(1768), - [anon_sym_LT_LT] = ACTIONS(1768), - [anon_sym_LT_LT_DASH] = ACTIONS(1768), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1768), - [anon_sym_LF] = ACTIONS(1768), - [anon_sym_AMP] = ACTIONS(1768), - }, - [1119] = { - [anon_sym_RBRACE] = ACTIONS(2466), - [sym_comment] = ACTIONS(52), - }, - [1120] = { - [sym_file_descriptor] = ACTIONS(1772), - [sym__concat] = ACTIONS(1772), - [anon_sym_PIPE] = ACTIONS(1774), - [anon_sym_RPAREN] = ACTIONS(1774), - [anon_sym_SEMI_SEMI] = ACTIONS(1774), - [anon_sym_PIPE_AMP] = ACTIONS(1774), - [anon_sym_AMP_AMP] = ACTIONS(1774), - [anon_sym_PIPE_PIPE] = ACTIONS(1774), - [anon_sym_LT] = ACTIONS(1774), - [anon_sym_GT] = ACTIONS(1774), - [anon_sym_GT_GT] = ACTIONS(1774), - [anon_sym_AMP_GT] = ACTIONS(1774), - [anon_sym_AMP_GT_GT] = ACTIONS(1774), - [anon_sym_LT_AMP] = ACTIONS(1774), - [anon_sym_GT_AMP] = ACTIONS(1774), - [anon_sym_LT_LT] = ACTIONS(1774), - [anon_sym_LT_LT_DASH] = ACTIONS(1774), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1774), - [anon_sym_LF] = ACTIONS(1774), - [anon_sym_AMP] = ACTIONS(1774), - }, - [1121] = { - [sym__heredoc_middle] = ACTIONS(1340), - [sym__heredoc_end] = ACTIONS(1340), - [anon_sym_DOLLAR] = ACTIONS(1708), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1340), - [sym_comment] = ACTIONS(52), - }, - [1122] = { - [anon_sym_AT] = ACTIONS(2468), + [sym_word] = ACTIONS(1224), [sym_comment] = ACTIONS(52), }, [1123] = { - [sym__heredoc_middle] = ACTIONS(1346), - [sym__heredoc_end] = ACTIONS(1346), - [anon_sym_DOLLAR] = ACTIONS(1712), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1346), + [anon_sym_PIPE] = ACTIONS(2492), + [anon_sym_RPAREN] = ACTIONS(2494), + [anon_sym_PIPE_AMP] = ACTIONS(2494), + [anon_sym_AMP_AMP] = ACTIONS(2494), + [anon_sym_PIPE_PIPE] = ACTIONS(2494), + [anon_sym_BQUOTE] = ACTIONS(2494), [sym_comment] = ACTIONS(52), }, [1124] = { - [anon_sym_AT] = ACTIONS(2470), + [anon_sym_RBRACE] = ACTIONS(2496), [sym_comment] = ACTIONS(52), }, [1125] = { - [anon_sym_RBRACK] = ACTIONS(2472), + [anon_sym_RBRACE] = ACTIONS(2498), [sym_comment] = ACTIONS(52), }, [1126] = { - [aux_sym_concatenation_repeat1] = STATE(192), - [sym__concat] = ACTIONS(326), - [anon_sym_RBRACE] = ACTIONS(2474), + [sym_file_descriptor] = ACTIONS(2194), + [sym__concat] = ACTIONS(2194), + [anon_sym_PIPE] = ACTIONS(2440), + [anon_sym_RPAREN] = ACTIONS(2194), + [anon_sym_PIPE_AMP] = ACTIONS(2194), + [anon_sym_AMP_AMP] = ACTIONS(2194), + [anon_sym_PIPE_PIPE] = ACTIONS(2440), + [anon_sym_LT] = ACTIONS(2440), + [anon_sym_GT] = ACTIONS(2440), + [anon_sym_GT_GT] = ACTIONS(2194), + [anon_sym_AMP_GT] = ACTIONS(2440), + [anon_sym_AMP_GT_GT] = ACTIONS(2194), + [anon_sym_LT_AMP] = ACTIONS(2194), + [anon_sym_GT_AMP] = ACTIONS(2194), + [anon_sym_LT_LT] = ACTIONS(2440), + [anon_sym_LT_LT_DASH] = ACTIONS(2194), + [anon_sym_DQUOTE] = ACTIONS(2194), + [sym_raw_string] = ACTIONS(2194), + [anon_sym_DOLLAR] = ACTIONS(2440), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2194), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2194), + [anon_sym_BQUOTE] = ACTIONS(2194), + [anon_sym_LT_LPAREN] = ACTIONS(2194), + [anon_sym_GT_LPAREN] = ACTIONS(2194), + [sym_word] = ACTIONS(2196), [sym_comment] = ACTIONS(52), }, [1127] = { - [anon_sym_RBRACE] = ACTIONS(2474), + [sym_file_descriptor] = ACTIONS(2198), + [sym__concat] = ACTIONS(2198), + [anon_sym_PIPE] = ACTIONS(2442), + [anon_sym_RPAREN] = ACTIONS(2198), + [anon_sym_PIPE_AMP] = ACTIONS(2198), + [anon_sym_AMP_AMP] = ACTIONS(2198), + [anon_sym_PIPE_PIPE] = ACTIONS(2442), + [anon_sym_LT] = ACTIONS(2442), + [anon_sym_GT] = ACTIONS(2442), + [anon_sym_GT_GT] = ACTIONS(2198), + [anon_sym_AMP_GT] = ACTIONS(2442), + [anon_sym_AMP_GT_GT] = ACTIONS(2198), + [anon_sym_LT_AMP] = ACTIONS(2198), + [anon_sym_GT_AMP] = ACTIONS(2198), + [anon_sym_LT_LT] = ACTIONS(2442), + [anon_sym_LT_LT_DASH] = ACTIONS(2198), + [anon_sym_DQUOTE] = ACTIONS(2198), + [sym_raw_string] = ACTIONS(2198), + [anon_sym_DOLLAR] = ACTIONS(2442), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2198), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2198), + [anon_sym_BQUOTE] = ACTIONS(2198), + [anon_sym_LT_LPAREN] = ACTIONS(2198), + [anon_sym_GT_LPAREN] = ACTIONS(2198), + [sym_word] = ACTIONS(2200), [sym_comment] = ACTIONS(52), }, [1128] = { - [anon_sym_RBRACK] = ACTIONS(2476), + [sym__concat] = ACTIONS(834), + [anon_sym_PIPE] = ACTIONS(1258), + [anon_sym_RPAREN] = ACTIONS(834), + [anon_sym_PIPE_AMP] = ACTIONS(834), + [anon_sym_AMP_AMP] = ACTIONS(834), + [anon_sym_PIPE_PIPE] = ACTIONS(834), + [anon_sym_BQUOTE] = ACTIONS(834), [sym_comment] = ACTIONS(52), }, [1129] = { - [aux_sym_concatenation_repeat1] = STATE(192), - [sym__concat] = ACTIONS(326), - [anon_sym_RBRACE] = ACTIONS(2478), + [sym__concat] = ACTIONS(842), + [anon_sym_PIPE] = ACTIONS(1260), + [anon_sym_RPAREN] = ACTIONS(842), + [anon_sym_PIPE_AMP] = ACTIONS(842), + [anon_sym_AMP_AMP] = ACTIONS(842), + [anon_sym_PIPE_PIPE] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(842), [sym_comment] = ACTIONS(52), }, [1130] = { - [anon_sym_RBRACE] = ACTIONS(2478), + [sym_string] = STATE(1223), + [sym_simple_expansion] = STATE(1223), + [sym_expansion] = STATE(1223), + [sym_command_substitution] = STATE(1223), + [sym_process_substitution] = STATE(1223), + [anon_sym_DQUOTE] = ACTIONS(1468), + [sym_raw_string] = ACTIONS(2500), + [anon_sym_DOLLAR] = ACTIONS(1472), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1474), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1476), + [anon_sym_BQUOTE] = ACTIONS(1478), + [anon_sym_LT_LPAREN] = ACTIONS(1480), + [anon_sym_GT_LPAREN] = ACTIONS(1480), + [sym_word] = ACTIONS(2502), [sym_comment] = ACTIONS(52), }, [1131] = { - [anon_sym_RBRACE] = ACTIONS(2480), + [anon_sym_RBRACE] = ACTIONS(2504), + [anon_sym_LBRACK] = ACTIONS(2506), [sym_comment] = ACTIONS(52), }, [1132] = { - [anon_sym_RBRACE] = ACTIONS(2482), + [anon_sym_RBRACE] = ACTIONS(2508), + [anon_sym_LBRACK] = ACTIONS(2510), [sym_comment] = ACTIONS(52), }, [1133] = { - [sym__concat] = ACTIONS(2118), - [anon_sym_PIPE] = ACTIONS(2118), - [anon_sym_RPAREN] = ACTIONS(2118), - [anon_sym_RBRACK] = ACTIONS(2118), + [sym__concat] = ACTIONS(858), + [anon_sym_PIPE] = ACTIONS(1274), + [anon_sym_RPAREN] = ACTIONS(858), + [anon_sym_PIPE_AMP] = ACTIONS(858), + [anon_sym_AMP_AMP] = ACTIONS(858), + [anon_sym_PIPE_PIPE] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(858), [sym_comment] = ACTIONS(52), }, [1134] = { - [sym__concat] = ACTIONS(2122), - [anon_sym_PIPE] = ACTIONS(2122), - [anon_sym_RPAREN] = ACTIONS(2122), - [anon_sym_RBRACK] = ACTIONS(2122), + [anon_sym_AT] = ACTIONS(2512), [sym_comment] = ACTIONS(52), }, [1135] = { - [anon_sym_RBRACE] = ACTIONS(2484), + [sym_concatenation] = STATE(1230), + [sym_string] = STATE(1229), + [sym_simple_expansion] = STATE(1229), + [sym_expansion] = STATE(1229), + [sym_command_substitution] = STATE(1229), + [sym_process_substitution] = STATE(1229), + [anon_sym_DQUOTE] = ACTIONS(82), + [sym_raw_string] = ACTIONS(2514), + [anon_sym_DOLLAR] = ACTIONS(86), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(88), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(90), + [anon_sym_BQUOTE] = ACTIONS(92), + [anon_sym_LT_LPAREN] = ACTIONS(94), + [anon_sym_GT_LPAREN] = ACTIONS(94), + [sym_word] = ACTIONS(2516), [sym_comment] = ACTIONS(52), }, [1136] = { - [anon_sym_RBRACE] = ACTIONS(2486), + [sym__concat] = ACTIONS(868), + [anon_sym_PIPE] = ACTIONS(1282), + [anon_sym_RPAREN] = ACTIONS(868), + [anon_sym_PIPE_AMP] = ACTIONS(868), + [anon_sym_AMP_AMP] = ACTIONS(868), + [anon_sym_PIPE_PIPE] = ACTIONS(868), + [anon_sym_BQUOTE] = ACTIONS(868), [sym_comment] = ACTIONS(52), }, [1137] = { - [sym_file_descriptor] = ACTIONS(2118), - [sym__concat] = ACTIONS(2118), - [sym_variable_name] = ACTIONS(2118), - [anon_sym_PIPE] = ACTIONS(2120), - [anon_sym_RPAREN] = ACTIONS(2120), - [anon_sym_SEMI_SEMI] = ACTIONS(2120), - [anon_sym_PIPE_AMP] = ACTIONS(2120), - [anon_sym_AMP_AMP] = ACTIONS(2120), - [anon_sym_PIPE_PIPE] = ACTIONS(2120), - [anon_sym_LT] = ACTIONS(2120), - [anon_sym_GT] = ACTIONS(2120), - [anon_sym_GT_GT] = ACTIONS(2120), - [anon_sym_AMP_GT] = ACTIONS(2120), - [anon_sym_AMP_GT_GT] = ACTIONS(2120), - [anon_sym_LT_AMP] = ACTIONS(2120), - [anon_sym_GT_AMP] = ACTIONS(2120), - [anon_sym_DQUOTE] = ACTIONS(2120), - [sym_raw_string] = ACTIONS(2120), - [anon_sym_DOLLAR] = ACTIONS(2120), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2120), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2120), - [anon_sym_BQUOTE] = ACTIONS(2120), - [anon_sym_LT_LPAREN] = ACTIONS(2120), - [anon_sym_GT_LPAREN] = ACTIONS(2120), - [sym_word] = ACTIONS(2120), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(2120), - [anon_sym_LF] = ACTIONS(2120), - [anon_sym_AMP] = ACTIONS(2120), + [anon_sym_AT] = ACTIONS(2518), + [sym_comment] = ACTIONS(52), }, [1138] = { - [sym_file_descriptor] = ACTIONS(2122), - [sym__concat] = ACTIONS(2122), - [sym_variable_name] = ACTIONS(2122), - [anon_sym_PIPE] = ACTIONS(2124), - [anon_sym_RPAREN] = ACTIONS(2124), - [anon_sym_SEMI_SEMI] = ACTIONS(2124), - [anon_sym_PIPE_AMP] = ACTIONS(2124), - [anon_sym_AMP_AMP] = ACTIONS(2124), - [anon_sym_PIPE_PIPE] = ACTIONS(2124), - [anon_sym_LT] = ACTIONS(2124), - [anon_sym_GT] = ACTIONS(2124), - [anon_sym_GT_GT] = ACTIONS(2124), - [anon_sym_AMP_GT] = ACTIONS(2124), - [anon_sym_AMP_GT_GT] = ACTIONS(2124), - [anon_sym_LT_AMP] = ACTIONS(2124), - [anon_sym_GT_AMP] = ACTIONS(2124), - [anon_sym_DQUOTE] = ACTIONS(2124), - [sym_raw_string] = ACTIONS(2124), - [anon_sym_DOLLAR] = ACTIONS(2124), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2124), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2124), - [anon_sym_BQUOTE] = ACTIONS(2124), - [anon_sym_LT_LPAREN] = ACTIONS(2124), - [anon_sym_GT_LPAREN] = ACTIONS(2124), - [sym_word] = ACTIONS(2124), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(2124), - [anon_sym_LF] = ACTIONS(2124), - [anon_sym_AMP] = ACTIONS(2124), + [sym_concatenation] = STATE(1233), + [sym_string] = STATE(1232), + [sym_simple_expansion] = STATE(1232), + [sym_expansion] = STATE(1232), + [sym_command_substitution] = STATE(1232), + [sym_process_substitution] = STATE(1232), + [anon_sym_DQUOTE] = ACTIONS(82), + [sym_raw_string] = ACTIONS(2520), + [anon_sym_DOLLAR] = ACTIONS(86), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(88), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(90), + [anon_sym_BQUOTE] = ACTIONS(92), + [anon_sym_LT_LPAREN] = ACTIONS(94), + [anon_sym_GT_LPAREN] = ACTIONS(94), + [sym_word] = ACTIONS(2522), + [sym_comment] = ACTIONS(52), }, [1139] = { - [anon_sym_RBRACK] = ACTIONS(2488), + [sym__concat] = ACTIONS(960), + [anon_sym_PIPE] = ACTIONS(1290), + [anon_sym_RPAREN] = ACTIONS(960), + [anon_sym_PIPE_AMP] = ACTIONS(960), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [anon_sym_BQUOTE] = ACTIONS(960), [sym_comment] = ACTIONS(52), }, [1140] = { - [anon_sym_RBRACK] = ACTIONS(2490), + [sym__concat] = ACTIONS(998), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_RPAREN] = ACTIONS(998), + [anon_sym_PIPE_AMP] = ACTIONS(998), + [anon_sym_AMP_AMP] = ACTIONS(998), + [anon_sym_PIPE_PIPE] = ACTIONS(998), + [anon_sym_BQUOTE] = ACTIONS(998), [sym_comment] = ACTIONS(52), }, [1141] = { - [anon_sym_RBRACE] = ACTIONS(2492), + [sym_file_descriptor] = ACTIONS(1362), + [sym__concat] = ACTIONS(1362), + [anon_sym_PIPE] = ACTIONS(1758), + [anon_sym_RPAREN] = ACTIONS(1362), + [anon_sym_PIPE_AMP] = ACTIONS(1362), + [anon_sym_AMP_AMP] = ACTIONS(1362), + [anon_sym_PIPE_PIPE] = ACTIONS(1362), + [anon_sym_LT] = ACTIONS(1758), + [anon_sym_GT] = ACTIONS(1758), + [anon_sym_GT_GT] = ACTIONS(1362), + [anon_sym_AMP_GT] = ACTIONS(1758), + [anon_sym_AMP_GT_GT] = ACTIONS(1362), + [anon_sym_LT_AMP] = ACTIONS(1362), + [anon_sym_GT_AMP] = ACTIONS(1362), + [anon_sym_LT_LT] = ACTIONS(1758), + [anon_sym_LT_LT_DASH] = ACTIONS(1362), + [anon_sym_BQUOTE] = ACTIONS(1362), [sym_comment] = ACTIONS(52), }, [1142] = { - [sym__concat] = ACTIONS(1766), - [anon_sym_SEMI_SEMI] = ACTIONS(1768), - [anon_sym_DQUOTE] = ACTIONS(1768), - [sym_raw_string] = ACTIONS(1768), - [anon_sym_DOLLAR] = ACTIONS(1768), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1768), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1768), - [anon_sym_BQUOTE] = ACTIONS(1768), - [anon_sym_LT_LPAREN] = ACTIONS(1768), - [anon_sym_GT_LPAREN] = ACTIONS(1768), - [sym_word] = ACTIONS(1768), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1768), - [anon_sym_LF] = ACTIONS(1768), - [anon_sym_AMP] = ACTIONS(1768), + [sym_file_descriptor] = ACTIONS(1366), + [sym__concat] = ACTIONS(1366), + [anon_sym_PIPE] = ACTIONS(1760), + [anon_sym_RPAREN] = ACTIONS(1366), + [anon_sym_PIPE_AMP] = ACTIONS(1366), + [anon_sym_AMP_AMP] = ACTIONS(1366), + [anon_sym_PIPE_PIPE] = ACTIONS(1366), + [anon_sym_LT] = ACTIONS(1760), + [anon_sym_GT] = ACTIONS(1760), + [anon_sym_GT_GT] = ACTIONS(1366), + [anon_sym_AMP_GT] = ACTIONS(1760), + [anon_sym_AMP_GT_GT] = ACTIONS(1366), + [anon_sym_LT_AMP] = ACTIONS(1366), + [anon_sym_GT_AMP] = ACTIONS(1366), + [anon_sym_LT_LT] = ACTIONS(1760), + [anon_sym_LT_LT_DASH] = ACTIONS(1366), + [anon_sym_BQUOTE] = ACTIONS(1366), + [sym_comment] = ACTIONS(52), }, [1143] = { - [anon_sym_RBRACE] = ACTIONS(2494), + [anon_sym_AT] = ACTIONS(2524), [sym_comment] = ACTIONS(52), }, [1144] = { - [sym__concat] = ACTIONS(1772), - [anon_sym_SEMI_SEMI] = ACTIONS(1774), - [anon_sym_DQUOTE] = ACTIONS(1774), - [sym_raw_string] = ACTIONS(1774), - [anon_sym_DOLLAR] = ACTIONS(1774), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1774), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1774), - [anon_sym_BQUOTE] = ACTIONS(1774), - [anon_sym_LT_LPAREN] = ACTIONS(1774), - [anon_sym_GT_LPAREN] = ACTIONS(1774), - [sym_word] = ACTIONS(1774), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1774), - [anon_sym_LF] = ACTIONS(1774), - [anon_sym_AMP] = ACTIONS(1774), + [sym_file_descriptor] = ACTIONS(1372), + [sym__concat] = ACTIONS(1372), + [anon_sym_PIPE] = ACTIONS(1764), + [anon_sym_RPAREN] = ACTIONS(1372), + [anon_sym_PIPE_AMP] = ACTIONS(1372), + [anon_sym_AMP_AMP] = ACTIONS(1372), + [anon_sym_PIPE_PIPE] = ACTIONS(1372), + [anon_sym_LT] = ACTIONS(1764), + [anon_sym_GT] = ACTIONS(1764), + [anon_sym_GT_GT] = ACTIONS(1372), + [anon_sym_AMP_GT] = ACTIONS(1764), + [anon_sym_AMP_GT_GT] = ACTIONS(1372), + [anon_sym_LT_AMP] = ACTIONS(1372), + [anon_sym_GT_AMP] = ACTIONS(1372), + [anon_sym_LT_LT] = ACTIONS(1764), + [anon_sym_LT_LT_DASH] = ACTIONS(1372), + [anon_sym_BQUOTE] = ACTIONS(1372), + [sym_comment] = ACTIONS(52), }, [1145] = { - [anon_sym_esac] = ACTIONS(2496), - [anon_sym_DQUOTE] = ACTIONS(2498), - [sym_raw_string] = ACTIONS(2498), - [anon_sym_DOLLAR] = ACTIONS(2496), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2498), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2498), - [anon_sym_BQUOTE] = ACTIONS(2498), - [anon_sym_LT_LPAREN] = ACTIONS(2498), - [anon_sym_GT_LPAREN] = ACTIONS(2498), - [sym_word] = ACTIONS(2500), + [anon_sym_AT] = ACTIONS(2526), [sym_comment] = ACTIONS(52), }, [1146] = { - [aux_sym_concatenation_repeat1] = STATE(344), - [sym__concat] = ACTIONS(586), - [anon_sym_PIPE] = ACTIONS(2502), - [anon_sym_RPAREN] = ACTIONS(2502), + [anon_sym_RBRACK] = ACTIONS(2528), [sym_comment] = ACTIONS(52), }, [1147] = { - [anon_sym_PIPE] = ACTIONS(2502), - [anon_sym_RPAREN] = ACTIONS(2502), + [aux_sym_concatenation_repeat1] = STATE(192), + [sym__concat] = ACTIONS(326), + [anon_sym_RBRACE] = ACTIONS(2530), [sym_comment] = ACTIONS(52), }, [1148] = { + [anon_sym_RBRACE] = ACTIONS(2530), + [sym_comment] = ACTIONS(52), + }, + [1149] = { + [anon_sym_RBRACK] = ACTIONS(2532), + [sym_comment] = ACTIONS(52), + }, + [1150] = { + [aux_sym_concatenation_repeat1] = STATE(192), + [sym__concat] = ACTIONS(326), + [anon_sym_RBRACE] = ACTIONS(2534), + [sym_comment] = ACTIONS(52), + }, + [1151] = { + [anon_sym_RBRACE] = ACTIONS(2534), + [sym_comment] = ACTIONS(52), + }, + [1152] = { + [sym__concat] = ACTIONS(1362), + [anon_sym_PIPE] = ACTIONS(1364), + [anon_sym_RPAREN] = ACTIONS(1364), + [anon_sym_SEMI_SEMI] = ACTIONS(1364), + [anon_sym_PIPE_AMP] = ACTIONS(1364), + [anon_sym_AMP_AMP] = ACTIONS(1364), + [anon_sym_PIPE_PIPE] = ACTIONS(1364), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(1364), + [anon_sym_LF] = ACTIONS(1364), + [anon_sym_AMP] = ACTIONS(1364), + }, + [1153] = { + [sym__concat] = ACTIONS(1366), + [anon_sym_PIPE] = ACTIONS(1368), + [anon_sym_RPAREN] = ACTIONS(1368), + [anon_sym_SEMI_SEMI] = ACTIONS(1368), + [anon_sym_PIPE_AMP] = ACTIONS(1368), + [anon_sym_AMP_AMP] = ACTIONS(1368), + [anon_sym_PIPE_PIPE] = ACTIONS(1368), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(1368), + [anon_sym_LF] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + }, + [1154] = { + [anon_sym_AT] = ACTIONS(2536), + [sym_comment] = ACTIONS(52), + }, + [1155] = { + [sym__concat] = ACTIONS(1372), + [anon_sym_PIPE] = ACTIONS(1374), + [anon_sym_RPAREN] = ACTIONS(1374), + [anon_sym_SEMI_SEMI] = ACTIONS(1374), + [anon_sym_PIPE_AMP] = ACTIONS(1374), + [anon_sym_AMP_AMP] = ACTIONS(1374), + [anon_sym_PIPE_PIPE] = ACTIONS(1374), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(1374), + [anon_sym_LF] = ACTIONS(1374), + [anon_sym_AMP] = ACTIONS(1374), + }, + [1156] = { + [anon_sym_AT] = ACTIONS(2538), + [sym_comment] = ACTIONS(52), + }, + [1157] = { + [anon_sym_RBRACK] = ACTIONS(2540), + [sym_comment] = ACTIONS(52), + }, + [1158] = { + [aux_sym_concatenation_repeat1] = STATE(192), + [sym__concat] = ACTIONS(326), + [anon_sym_RBRACE] = ACTIONS(2542), + [sym_comment] = ACTIONS(52), + }, + [1159] = { + [anon_sym_RBRACE] = ACTIONS(2542), + [sym_comment] = ACTIONS(52), + }, + [1160] = { + [anon_sym_RBRACK] = ACTIONS(2544), + [sym_comment] = ACTIONS(52), + }, + [1161] = { + [aux_sym_concatenation_repeat1] = STATE(192), + [sym__concat] = ACTIONS(326), + [anon_sym_RBRACE] = ACTIONS(2546), + [sym_comment] = ACTIONS(52), + }, + [1162] = { + [anon_sym_RBRACE] = ACTIONS(2546), + [sym_comment] = ACTIONS(52), + }, + [1163] = { + [anon_sym_RBRACK] = ACTIONS(2548), + [sym_comment] = ACTIONS(52), + }, + [1164] = { + [anon_sym_RBRACK] = ACTIONS(2550), + [sym_comment] = ACTIONS(52), + }, + [1165] = { + [anon_sym_RBRACE] = ACTIONS(2552), + [sym_comment] = ACTIONS(52), + }, + [1166] = { + [sym_file_descriptor] = ACTIONS(1818), + [sym__concat] = ACTIONS(1818), + [anon_sym_PIPE] = ACTIONS(1820), + [anon_sym_RPAREN] = ACTIONS(1820), + [anon_sym_SEMI_SEMI] = ACTIONS(1820), + [anon_sym_PIPE_AMP] = ACTIONS(1820), + [anon_sym_AMP_AMP] = ACTIONS(1820), + [anon_sym_PIPE_PIPE] = ACTIONS(1820), + [anon_sym_LT] = ACTIONS(1820), + [anon_sym_GT] = ACTIONS(1820), + [anon_sym_GT_GT] = ACTIONS(1820), + [anon_sym_AMP_GT] = ACTIONS(1820), + [anon_sym_AMP_GT_GT] = ACTIONS(1820), + [anon_sym_LT_AMP] = ACTIONS(1820), + [anon_sym_GT_AMP] = ACTIONS(1820), + [anon_sym_LT_LT] = ACTIONS(1820), + [anon_sym_LT_LT_DASH] = ACTIONS(1820), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(1820), + [anon_sym_LF] = ACTIONS(1820), + [anon_sym_AMP] = ACTIONS(1820), + }, + [1167] = { + [anon_sym_RBRACE] = ACTIONS(2554), + [sym_comment] = ACTIONS(52), + }, + [1168] = { + [sym_file_descriptor] = ACTIONS(1824), + [sym__concat] = ACTIONS(1824), + [anon_sym_PIPE] = ACTIONS(1826), + [anon_sym_RPAREN] = ACTIONS(1826), + [anon_sym_SEMI_SEMI] = ACTIONS(1826), + [anon_sym_PIPE_AMP] = ACTIONS(1826), + [anon_sym_AMP_AMP] = ACTIONS(1826), + [anon_sym_PIPE_PIPE] = ACTIONS(1826), + [anon_sym_LT] = ACTIONS(1826), + [anon_sym_GT] = ACTIONS(1826), + [anon_sym_GT_GT] = ACTIONS(1826), + [anon_sym_AMP_GT] = ACTIONS(1826), + [anon_sym_AMP_GT_GT] = ACTIONS(1826), + [anon_sym_LT_AMP] = ACTIONS(1826), + [anon_sym_GT_AMP] = ACTIONS(1826), + [anon_sym_LT_LT] = ACTIONS(1826), + [anon_sym_LT_LT_DASH] = ACTIONS(1826), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(1826), + [anon_sym_LF] = ACTIONS(1826), + [anon_sym_AMP] = ACTIONS(1826), + }, + [1169] = { + [sym__heredoc_middle] = ACTIONS(1366), + [sym__heredoc_end] = ACTIONS(1366), + [anon_sym_DOLLAR] = ACTIONS(1760), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1366), + [sym_comment] = ACTIONS(52), + }, + [1170] = { + [anon_sym_AT] = ACTIONS(2556), + [sym_comment] = ACTIONS(52), + }, + [1171] = { + [sym__heredoc_middle] = ACTIONS(1372), + [sym__heredoc_end] = ACTIONS(1372), + [anon_sym_DOLLAR] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1372), + [sym_comment] = ACTIONS(52), + }, + [1172] = { + [anon_sym_AT] = ACTIONS(2558), + [sym_comment] = ACTIONS(52), + }, + [1173] = { + [anon_sym_RBRACK] = ACTIONS(2560), + [sym_comment] = ACTIONS(52), + }, + [1174] = { + [aux_sym_concatenation_repeat1] = STATE(192), + [sym__concat] = ACTIONS(326), + [anon_sym_RBRACE] = ACTIONS(2562), + [sym_comment] = ACTIONS(52), + }, + [1175] = { + [anon_sym_RBRACE] = ACTIONS(2562), + [sym_comment] = ACTIONS(52), + }, + [1176] = { + [anon_sym_RBRACK] = ACTIONS(2564), + [sym_comment] = ACTIONS(52), + }, + [1177] = { + [aux_sym_concatenation_repeat1] = STATE(192), + [sym__concat] = ACTIONS(326), + [anon_sym_RBRACE] = ACTIONS(2566), + [sym_comment] = ACTIONS(52), + }, + [1178] = { + [anon_sym_RBRACE] = ACTIONS(2566), + [sym_comment] = ACTIONS(52), + }, + [1179] = { + [anon_sym_RBRACE] = ACTIONS(2568), + [sym_comment] = ACTIONS(52), + }, + [1180] = { + [anon_sym_RBRACE] = ACTIONS(2570), + [sym_comment] = ACTIONS(52), + }, + [1181] = { + [sym__concat] = ACTIONS(2194), + [anon_sym_PIPE] = ACTIONS(2194), + [anon_sym_RPAREN] = ACTIONS(2194), + [anon_sym_RBRACK] = ACTIONS(2194), + [sym_comment] = ACTIONS(52), + }, + [1182] = { + [sym__concat] = ACTIONS(2198), + [anon_sym_PIPE] = ACTIONS(2198), + [anon_sym_RPAREN] = ACTIONS(2198), + [anon_sym_RBRACK] = ACTIONS(2198), + [sym_comment] = ACTIONS(52), + }, + [1183] = { + [anon_sym_RBRACK] = ACTIONS(2572), + [sym_comment] = ACTIONS(52), + }, + [1184] = { + [anon_sym_RBRACK] = ACTIONS(2574), + [sym_comment] = ACTIONS(52), + }, + [1185] = { + [anon_sym_RBRACE] = ACTIONS(2576), + [sym_comment] = ACTIONS(52), + }, + [1186] = { + [sym__concat] = ACTIONS(1818), + [anon_sym_RPAREN] = ACTIONS(1818), + [anon_sym_DQUOTE] = ACTIONS(1818), + [sym_raw_string] = ACTIONS(1818), + [anon_sym_DOLLAR] = ACTIONS(2160), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1818), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1818), + [anon_sym_BQUOTE] = ACTIONS(1818), + [anon_sym_LT_LPAREN] = ACTIONS(1818), + [anon_sym_GT_LPAREN] = ACTIONS(1818), + [sym_word] = ACTIONS(2160), + [sym_comment] = ACTIONS(52), + }, + [1187] = { + [anon_sym_RBRACE] = ACTIONS(2578), + [sym_comment] = ACTIONS(52), + }, + [1188] = { + [sym__concat] = ACTIONS(1824), + [anon_sym_RPAREN] = ACTIONS(1824), + [anon_sym_DQUOTE] = ACTIONS(1824), + [sym_raw_string] = ACTIONS(1824), + [anon_sym_DOLLAR] = ACTIONS(2164), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1824), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1824), + [anon_sym_BQUOTE] = ACTIONS(1824), + [anon_sym_LT_LPAREN] = ACTIONS(1824), + [anon_sym_GT_LPAREN] = ACTIONS(1824), + [sym_word] = ACTIONS(2164), + [sym_comment] = ACTIONS(52), + }, + [1189] = { + [anon_sym_RBRACE] = ACTIONS(2580), + [sym_comment] = ACTIONS(52), + }, + [1190] = { + [anon_sym_RBRACE] = ACTIONS(2582), + [sym_comment] = ACTIONS(52), + }, + [1191] = { + [sym_file_descriptor] = ACTIONS(2194), + [sym__concat] = ACTIONS(2194), + [sym_variable_name] = ACTIONS(2194), + [anon_sym_PIPE] = ACTIONS(2196), + [anon_sym_RPAREN] = ACTIONS(2196), + [anon_sym_SEMI_SEMI] = ACTIONS(2196), + [anon_sym_PIPE_AMP] = ACTIONS(2196), + [anon_sym_AMP_AMP] = ACTIONS(2196), + [anon_sym_PIPE_PIPE] = ACTIONS(2196), + [anon_sym_LT] = ACTIONS(2196), + [anon_sym_GT] = ACTIONS(2196), + [anon_sym_GT_GT] = ACTIONS(2196), + [anon_sym_AMP_GT] = ACTIONS(2196), + [anon_sym_AMP_GT_GT] = ACTIONS(2196), + [anon_sym_LT_AMP] = ACTIONS(2196), + [anon_sym_GT_AMP] = ACTIONS(2196), + [anon_sym_DQUOTE] = ACTIONS(2196), + [sym_raw_string] = ACTIONS(2196), + [anon_sym_DOLLAR] = ACTIONS(2196), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2196), + [anon_sym_BQUOTE] = ACTIONS(2196), + [anon_sym_LT_LPAREN] = ACTIONS(2196), + [anon_sym_GT_LPAREN] = ACTIONS(2196), + [sym_word] = ACTIONS(2196), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(2196), + [anon_sym_LF] = ACTIONS(2196), + [anon_sym_AMP] = ACTIONS(2196), + }, + [1192] = { + [sym_file_descriptor] = ACTIONS(2198), + [sym__concat] = ACTIONS(2198), + [sym_variable_name] = ACTIONS(2198), + [anon_sym_PIPE] = ACTIONS(2200), + [anon_sym_RPAREN] = ACTIONS(2200), + [anon_sym_SEMI_SEMI] = ACTIONS(2200), + [anon_sym_PIPE_AMP] = ACTIONS(2200), + [anon_sym_AMP_AMP] = ACTIONS(2200), + [anon_sym_PIPE_PIPE] = ACTIONS(2200), + [anon_sym_LT] = ACTIONS(2200), + [anon_sym_GT] = ACTIONS(2200), + [anon_sym_GT_GT] = ACTIONS(2200), + [anon_sym_AMP_GT] = ACTIONS(2200), + [anon_sym_AMP_GT_GT] = ACTIONS(2200), + [anon_sym_LT_AMP] = ACTIONS(2200), + [anon_sym_GT_AMP] = ACTIONS(2200), + [anon_sym_DQUOTE] = ACTIONS(2200), + [sym_raw_string] = ACTIONS(2200), + [anon_sym_DOLLAR] = ACTIONS(2200), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2200), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2200), + [anon_sym_BQUOTE] = ACTIONS(2200), + [anon_sym_LT_LPAREN] = ACTIONS(2200), + [anon_sym_GT_LPAREN] = ACTIONS(2200), + [sym_word] = ACTIONS(2200), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(2200), + [anon_sym_LF] = ACTIONS(2200), + [anon_sym_AMP] = ACTIONS(2200), + }, + [1193] = { + [anon_sym_RBRACK] = ACTIONS(2584), + [sym_comment] = ACTIONS(52), + }, + [1194] = { + [anon_sym_RBRACK] = ACTIONS(2586), + [sym_comment] = ACTIONS(52), + }, + [1195] = { + [anon_sym_RBRACE] = ACTIONS(2588), + [sym_comment] = ACTIONS(52), + }, + [1196] = { + [sym__concat] = ACTIONS(1818), + [anon_sym_SEMI_SEMI] = ACTIONS(1820), + [anon_sym_DQUOTE] = ACTIONS(1820), + [sym_raw_string] = ACTIONS(1820), + [anon_sym_DOLLAR] = ACTIONS(1820), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1820), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1820), + [anon_sym_BQUOTE] = ACTIONS(1820), + [anon_sym_LT_LPAREN] = ACTIONS(1820), + [anon_sym_GT_LPAREN] = ACTIONS(1820), + [sym_word] = ACTIONS(1820), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(1820), + [anon_sym_LF] = ACTIONS(1820), + [anon_sym_AMP] = ACTIONS(1820), + }, + [1197] = { + [anon_sym_RBRACE] = ACTIONS(2590), + [sym_comment] = ACTIONS(52), + }, + [1198] = { + [sym__concat] = ACTIONS(1824), + [anon_sym_SEMI_SEMI] = ACTIONS(1826), + [anon_sym_DQUOTE] = ACTIONS(1826), + [sym_raw_string] = ACTIONS(1826), + [anon_sym_DOLLAR] = ACTIONS(1826), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1826), + [anon_sym_BQUOTE] = ACTIONS(1826), + [anon_sym_LT_LPAREN] = ACTIONS(1826), + [anon_sym_GT_LPAREN] = ACTIONS(1826), + [sym_word] = ACTIONS(1826), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(1826), + [anon_sym_LF] = ACTIONS(1826), + [anon_sym_AMP] = ACTIONS(1826), + }, + [1199] = { + [anon_sym_esac] = ACTIONS(2592), + [anon_sym_DQUOTE] = ACTIONS(2594), + [sym_raw_string] = ACTIONS(2594), + [anon_sym_DOLLAR] = ACTIONS(2592), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2594), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2594), + [anon_sym_BQUOTE] = ACTIONS(2594), + [anon_sym_LT_LPAREN] = ACTIONS(2594), + [anon_sym_GT_LPAREN] = ACTIONS(2594), + [sym_word] = ACTIONS(2596), + [sym_comment] = ACTIONS(52), + }, + [1200] = { + [aux_sym_concatenation_repeat1] = STATE(344), + [sym__concat] = ACTIONS(586), + [anon_sym_PIPE] = ACTIONS(2598), + [anon_sym_RPAREN] = ACTIONS(2598), + [sym_comment] = ACTIONS(52), + }, + [1201] = { + [anon_sym_PIPE] = ACTIONS(2598), + [anon_sym_RPAREN] = ACTIONS(2598), + [sym_comment] = ACTIONS(52), + }, + [1202] = { [sym__terminated_statement] = STATE(136), [sym_for_statement] = STATE(23), [sym_while_statement] = STATE(23), @@ -24236,7 +25166,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(2504), + [anon_sym_SEMI_SEMI] = ACTIONS(2600), [anon_sym_function] = ACTIONS(24), [anon_sym_LPAREN] = ACTIONS(26), [anon_sym_LBRACK] = ACTIONS(28), @@ -24259,1129 +25189,1193 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(50), [sym_comment] = ACTIONS(52), }, - [1149] = { - [sym__concat] = ACTIONS(2368), - [anon_sym_in] = ACTIONS(2370), - [anon_sym_SEMI_SEMI] = ACTIONS(2370), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(2370), - [anon_sym_LF] = ACTIONS(2370), - [anon_sym_AMP] = ACTIONS(2370), - }, - [1150] = { - [sym__concat] = ACTIONS(2372), - [anon_sym_in] = ACTIONS(2374), - [anon_sym_SEMI_SEMI] = ACTIONS(2374), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(2374), - [anon_sym_LF] = ACTIONS(2374), - [anon_sym_AMP] = ACTIONS(2374), - }, - [1151] = { - [sym__concat] = ACTIONS(2368), - [anon_sym_RBRACE] = ACTIONS(2368), - [anon_sym_RBRACK] = ACTIONS(2506), - [anon_sym_DQUOTE] = ACTIONS(2368), - [sym_raw_string] = ACTIONS(2368), - [anon_sym_DOLLAR] = ACTIONS(2506), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2368), - [anon_sym_BQUOTE] = ACTIONS(2368), - [anon_sym_LT_LPAREN] = ACTIONS(2368), - [anon_sym_GT_LPAREN] = ACTIONS(2368), - [sym_word] = ACTIONS(2370), - [sym_comment] = ACTIONS(52), - }, - [1152] = { - [sym__concat] = ACTIONS(2372), - [anon_sym_RBRACE] = ACTIONS(2372), - [anon_sym_RBRACK] = ACTIONS(2508), - [anon_sym_DQUOTE] = ACTIONS(2372), - [sym_raw_string] = ACTIONS(2372), - [anon_sym_DOLLAR] = ACTIONS(2508), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2372), - [anon_sym_BQUOTE] = ACTIONS(2372), - [anon_sym_LT_LPAREN] = ACTIONS(2372), - [anon_sym_GT_LPAREN] = ACTIONS(2372), - [sym_word] = ACTIONS(2374), - [sym_comment] = ACTIONS(52), - }, - [1153] = { - [sym__concat] = ACTIONS(2368), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2506), - [anon_sym_DQUOTE] = ACTIONS(2368), - [sym_raw_string] = ACTIONS(2368), - [anon_sym_DOLLAR] = ACTIONS(2506), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2368), - [anon_sym_BQUOTE] = ACTIONS(2368), - [anon_sym_LT_LPAREN] = ACTIONS(2368), - [anon_sym_GT_LPAREN] = ACTIONS(2368), - [sym_word] = ACTIONS(2370), - [sym_comment] = ACTIONS(52), - }, - [1154] = { - [sym__concat] = ACTIONS(2372), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2508), - [anon_sym_DQUOTE] = ACTIONS(2372), - [sym_raw_string] = ACTIONS(2372), - [anon_sym_DOLLAR] = ACTIONS(2508), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2372), - [anon_sym_BQUOTE] = ACTIONS(2372), - [anon_sym_LT_LPAREN] = ACTIONS(2372), - [anon_sym_GT_LPAREN] = ACTIONS(2372), - [sym_word] = ACTIONS(2374), - [sym_comment] = ACTIONS(52), - }, - [1155] = { - [sym_file_descriptor] = ACTIONS(2368), - [sym__concat] = ACTIONS(2368), - [sym_variable_name] = ACTIONS(2368), - [anon_sym_LT] = ACTIONS(2506), - [anon_sym_GT] = ACTIONS(2506), - [anon_sym_GT_GT] = ACTIONS(2368), - [anon_sym_AMP_GT] = ACTIONS(2506), - [anon_sym_AMP_GT_GT] = ACTIONS(2368), - [anon_sym_LT_AMP] = ACTIONS(2368), - [anon_sym_GT_AMP] = ACTIONS(2368), - [anon_sym_DQUOTE] = ACTIONS(2368), - [sym_raw_string] = ACTIONS(2368), - [anon_sym_DOLLAR] = ACTIONS(2506), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2368), - [anon_sym_BQUOTE] = ACTIONS(2368), - [anon_sym_LT_LPAREN] = ACTIONS(2368), - [anon_sym_GT_LPAREN] = ACTIONS(2368), - [sym_word] = ACTIONS(2506), - [sym_comment] = ACTIONS(52), - }, - [1156] = { - [sym_file_descriptor] = ACTIONS(2372), - [sym__concat] = ACTIONS(2372), - [sym_variable_name] = ACTIONS(2372), - [anon_sym_LT] = ACTIONS(2508), - [anon_sym_GT] = ACTIONS(2508), - [anon_sym_GT_GT] = ACTIONS(2372), - [anon_sym_AMP_GT] = ACTIONS(2508), - [anon_sym_AMP_GT_GT] = ACTIONS(2372), - [anon_sym_LT_AMP] = ACTIONS(2372), - [anon_sym_GT_AMP] = ACTIONS(2372), - [anon_sym_DQUOTE] = ACTIONS(2372), - [sym_raw_string] = ACTIONS(2372), - [anon_sym_DOLLAR] = ACTIONS(2508), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2372), - [anon_sym_BQUOTE] = ACTIONS(2372), - [anon_sym_LT_LPAREN] = ACTIONS(2372), - [anon_sym_GT_LPAREN] = ACTIONS(2372), - [sym_word] = ACTIONS(2508), - [sym_comment] = ACTIONS(52), - }, - [1157] = { - [anon_sym_DQUOTE] = ACTIONS(2370), - [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(2506), - [anon_sym_DOLLAR] = ACTIONS(2370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2370), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2370), - [anon_sym_BQUOTE] = ACTIONS(2370), - [sym_comment] = ACTIONS(142), - }, - [1158] = { - [anon_sym_DQUOTE] = ACTIONS(2374), - [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(2508), - [anon_sym_DOLLAR] = ACTIONS(2374), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2374), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2374), - [anon_sym_BQUOTE] = ACTIONS(2374), - [sym_comment] = ACTIONS(142), - }, - [1159] = { - [anon_sym_RBRACK] = ACTIONS(2510), - [sym_comment] = ACTIONS(52), - }, - [1160] = { - [anon_sym_RBRACK] = ACTIONS(2512), - [sym_comment] = ACTIONS(52), - }, - [1161] = { - [anon_sym_RBRACE] = ACTIONS(2514), - [sym_comment] = ACTIONS(52), - }, - [1162] = { - [sym_file_descriptor] = ACTIONS(1766), - [sym__concat] = ACTIONS(1766), - [sym_variable_name] = ACTIONS(1766), - [anon_sym_PIPE] = ACTIONS(2084), - [anon_sym_RPAREN] = ACTIONS(1766), - [anon_sym_PIPE_AMP] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(2084), - [anon_sym_LT] = ACTIONS(2084), - [anon_sym_GT] = ACTIONS(2084), - [anon_sym_GT_GT] = ACTIONS(1766), - [anon_sym_AMP_GT] = ACTIONS(2084), - [anon_sym_AMP_GT_GT] = ACTIONS(1766), - [anon_sym_LT_AMP] = ACTIONS(1766), - [anon_sym_GT_AMP] = ACTIONS(1766), - [anon_sym_DQUOTE] = ACTIONS(1766), - [sym_raw_string] = ACTIONS(1766), - [anon_sym_DOLLAR] = ACTIONS(2084), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1766), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1766), - [anon_sym_BQUOTE] = ACTIONS(1766), - [anon_sym_LT_LPAREN] = ACTIONS(1766), - [anon_sym_GT_LPAREN] = ACTIONS(1766), - [sym_word] = ACTIONS(1768), - [sym_comment] = ACTIONS(52), - }, - [1163] = { - [anon_sym_RBRACE] = ACTIONS(2516), - [sym_comment] = ACTIONS(52), - }, - [1164] = { - [sym_file_descriptor] = ACTIONS(1772), - [sym__concat] = ACTIONS(1772), - [sym_variable_name] = ACTIONS(1772), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(1772), - [anon_sym_PIPE_AMP] = ACTIONS(1772), - [anon_sym_AMP_AMP] = ACTIONS(1772), - [anon_sym_PIPE_PIPE] = ACTIONS(2088), - [anon_sym_LT] = ACTIONS(2088), - [anon_sym_GT] = ACTIONS(2088), - [anon_sym_GT_GT] = ACTIONS(1772), - [anon_sym_AMP_GT] = ACTIONS(2088), - [anon_sym_AMP_GT_GT] = ACTIONS(1772), - [anon_sym_LT_AMP] = ACTIONS(1772), - [anon_sym_GT_AMP] = ACTIONS(1772), - [anon_sym_DQUOTE] = ACTIONS(1772), - [sym_raw_string] = ACTIONS(1772), - [anon_sym_DOLLAR] = ACTIONS(2088), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1772), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1772), - [anon_sym_BQUOTE] = ACTIONS(1772), - [anon_sym_LT_LPAREN] = ACTIONS(1772), - [anon_sym_GT_LPAREN] = ACTIONS(1772), - [sym_word] = ACTIONS(1774), - [sym_comment] = ACTIONS(52), - }, - [1165] = { - [anon_sym_PIPE] = ACTIONS(2518), - [anon_sym_RPAREN] = ACTIONS(2520), - [anon_sym_PIPE_AMP] = ACTIONS(2520), - [anon_sym_AMP_AMP] = ACTIONS(2520), - [anon_sym_PIPE_PIPE] = ACTIONS(2520), - [anon_sym_BQUOTE] = ACTIONS(2520), - [sym_comment] = ACTIONS(52), - }, - [1166] = { - [anon_sym_PIPE] = ACTIONS(2522), - [anon_sym_RPAREN] = ACTIONS(2524), - [anon_sym_PIPE_AMP] = ACTIONS(2524), - [anon_sym_AMP_AMP] = ACTIONS(2524), - [anon_sym_PIPE_PIPE] = ACTIONS(2524), - [anon_sym_BQUOTE] = ACTIONS(2524), - [sym_comment] = ACTIONS(52), - }, - [1167] = { - [sym_file_descriptor] = ACTIONS(2368), - [sym__concat] = ACTIONS(2368), - [anon_sym_PIPE] = ACTIONS(2506), - [anon_sym_RPAREN] = ACTIONS(2368), - [anon_sym_PIPE_AMP] = ACTIONS(2368), - [anon_sym_AMP_AMP] = ACTIONS(2368), - [anon_sym_PIPE_PIPE] = ACTIONS(2506), - [anon_sym_LT] = ACTIONS(2506), - [anon_sym_GT] = ACTIONS(2506), - [anon_sym_GT_GT] = ACTIONS(2368), - [anon_sym_AMP_GT] = ACTIONS(2506), - [anon_sym_AMP_GT_GT] = ACTIONS(2368), - [anon_sym_LT_AMP] = ACTIONS(2368), - [anon_sym_GT_AMP] = ACTIONS(2368), - [anon_sym_LT_LT] = ACTIONS(2506), - [anon_sym_LT_LT_DASH] = ACTIONS(2368), - [anon_sym_DQUOTE] = ACTIONS(2368), - [sym_raw_string] = ACTIONS(2368), - [anon_sym_DOLLAR] = ACTIONS(2506), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2368), - [anon_sym_BQUOTE] = ACTIONS(2368), - [anon_sym_LT_LPAREN] = ACTIONS(2368), - [anon_sym_GT_LPAREN] = ACTIONS(2368), - [sym_word] = ACTIONS(2370), - [sym_comment] = ACTIONS(52), - }, - [1168] = { - [sym_file_descriptor] = ACTIONS(2372), - [sym__concat] = ACTIONS(2372), - [anon_sym_PIPE] = ACTIONS(2508), - [anon_sym_RPAREN] = ACTIONS(2372), - [anon_sym_PIPE_AMP] = ACTIONS(2372), - [anon_sym_AMP_AMP] = ACTIONS(2372), - [anon_sym_PIPE_PIPE] = ACTIONS(2508), - [anon_sym_LT] = ACTIONS(2508), - [anon_sym_GT] = ACTIONS(2508), - [anon_sym_GT_GT] = ACTIONS(2372), - [anon_sym_AMP_GT] = ACTIONS(2508), - [anon_sym_AMP_GT_GT] = ACTIONS(2372), - [anon_sym_LT_AMP] = ACTIONS(2372), - [anon_sym_GT_AMP] = ACTIONS(2372), - [anon_sym_LT_LT] = ACTIONS(2508), - [anon_sym_LT_LT_DASH] = ACTIONS(2372), - [anon_sym_DQUOTE] = ACTIONS(2372), - [sym_raw_string] = ACTIONS(2372), - [anon_sym_DOLLAR] = ACTIONS(2508), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2372), - [anon_sym_BQUOTE] = ACTIONS(2372), - [anon_sym_LT_LPAREN] = ACTIONS(2372), - [anon_sym_GT_LPAREN] = ACTIONS(2372), - [sym_word] = ACTIONS(2374), - [sym_comment] = ACTIONS(52), - }, - [1169] = { - [sym__concat] = ACTIONS(1336), - [anon_sym_PIPE] = ACTIONS(1706), - [anon_sym_RPAREN] = ACTIONS(1336), - [anon_sym_PIPE_AMP] = ACTIONS(1336), - [anon_sym_AMP_AMP] = ACTIONS(1336), - [anon_sym_PIPE_PIPE] = ACTIONS(1336), - [anon_sym_BQUOTE] = ACTIONS(1336), - [sym_comment] = ACTIONS(52), - }, - [1170] = { - [sym__concat] = ACTIONS(1340), - [anon_sym_PIPE] = ACTIONS(1708), - [anon_sym_RPAREN] = ACTIONS(1340), - [anon_sym_PIPE_AMP] = ACTIONS(1340), - [anon_sym_AMP_AMP] = ACTIONS(1340), - [anon_sym_PIPE_PIPE] = ACTIONS(1340), - [anon_sym_BQUOTE] = ACTIONS(1340), - [sym_comment] = ACTIONS(52), - }, - [1171] = { - [anon_sym_AT] = ACTIONS(2526), - [sym_comment] = ACTIONS(52), - }, - [1172] = { - [sym__concat] = ACTIONS(1346), - [anon_sym_PIPE] = ACTIONS(1712), - [anon_sym_RPAREN] = ACTIONS(1346), - [anon_sym_PIPE_AMP] = ACTIONS(1346), - [anon_sym_AMP_AMP] = ACTIONS(1346), - [anon_sym_PIPE_PIPE] = ACTIONS(1346), - [anon_sym_BQUOTE] = ACTIONS(1346), - [sym_comment] = ACTIONS(52), - }, - [1173] = { - [anon_sym_AT] = ACTIONS(2528), - [sym_comment] = ACTIONS(52), - }, - [1174] = { - [anon_sym_RBRACK] = ACTIONS(2530), - [sym_comment] = ACTIONS(52), - }, - [1175] = { - [aux_sym_concatenation_repeat1] = STATE(192), - [sym__concat] = ACTIONS(326), - [anon_sym_RBRACE] = ACTIONS(2532), - [sym_comment] = ACTIONS(52), - }, - [1176] = { - [anon_sym_RBRACE] = ACTIONS(2532), - [sym_comment] = ACTIONS(52), - }, - [1177] = { - [anon_sym_RBRACK] = ACTIONS(2534), - [sym_comment] = ACTIONS(52), - }, - [1178] = { - [aux_sym_concatenation_repeat1] = STATE(192), - [sym__concat] = ACTIONS(326), - [anon_sym_RBRACE] = ACTIONS(2536), - [sym_comment] = ACTIONS(52), - }, - [1179] = { - [anon_sym_RBRACE] = ACTIONS(2536), - [sym_comment] = ACTIONS(52), - }, - [1180] = { - [anon_sym_RBRACK] = ACTIONS(2538), - [sym_comment] = ACTIONS(52), - }, - [1181] = { - [anon_sym_RBRACK] = ACTIONS(2540), - [sym_comment] = ACTIONS(52), - }, - [1182] = { - [anon_sym_RBRACE] = ACTIONS(2542), - [sym_comment] = ACTIONS(52), - }, - [1183] = { - [sym_file_descriptor] = ACTIONS(1766), - [sym__concat] = ACTIONS(1766), - [anon_sym_PIPE] = ACTIONS(2084), - [anon_sym_RPAREN] = ACTIONS(1766), - [anon_sym_PIPE_AMP] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(2084), - [anon_sym_GT] = ACTIONS(2084), - [anon_sym_GT_GT] = ACTIONS(1766), - [anon_sym_AMP_GT] = ACTIONS(2084), - [anon_sym_AMP_GT_GT] = ACTIONS(1766), - [anon_sym_LT_AMP] = ACTIONS(1766), - [anon_sym_GT_AMP] = ACTIONS(1766), - [anon_sym_LT_LT] = ACTIONS(2084), - [anon_sym_LT_LT_DASH] = ACTIONS(1766), - [anon_sym_BQUOTE] = ACTIONS(1766), - [sym_comment] = ACTIONS(52), - }, - [1184] = { - [anon_sym_RBRACE] = ACTIONS(2544), - [sym_comment] = ACTIONS(52), - }, - [1185] = { - [sym_file_descriptor] = ACTIONS(1772), - [sym__concat] = ACTIONS(1772), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(1772), - [anon_sym_PIPE_AMP] = ACTIONS(1772), - [anon_sym_AMP_AMP] = ACTIONS(1772), - [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(2088), - [anon_sym_GT] = ACTIONS(2088), - [anon_sym_GT_GT] = ACTIONS(1772), - [anon_sym_AMP_GT] = ACTIONS(2088), - [anon_sym_AMP_GT_GT] = ACTIONS(1772), - [anon_sym_LT_AMP] = ACTIONS(1772), - [anon_sym_GT_AMP] = ACTIONS(1772), - [anon_sym_LT_LT] = ACTIONS(2088), - [anon_sym_LT_LT_DASH] = ACTIONS(1772), - [anon_sym_BQUOTE] = ACTIONS(1772), - [sym_comment] = ACTIONS(52), - }, - [1186] = { - [anon_sym_RBRACK] = ACTIONS(2546), - [sym_comment] = ACTIONS(52), - }, - [1187] = { - [anon_sym_RBRACK] = ACTIONS(2548), - [sym_comment] = ACTIONS(52), - }, - [1188] = { - [anon_sym_RBRACE] = ACTIONS(2550), - [sym_comment] = ACTIONS(52), - }, - [1189] = { - [sym__concat] = ACTIONS(1766), - [anon_sym_PIPE] = ACTIONS(1768), - [anon_sym_RPAREN] = ACTIONS(1768), - [anon_sym_SEMI_SEMI] = ACTIONS(1768), - [anon_sym_PIPE_AMP] = ACTIONS(1768), - [anon_sym_AMP_AMP] = ACTIONS(1768), - [anon_sym_PIPE_PIPE] = ACTIONS(1768), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1768), - [anon_sym_LF] = ACTIONS(1768), - [anon_sym_AMP] = ACTIONS(1768), - }, - [1190] = { - [anon_sym_RBRACE] = ACTIONS(2552), - [sym_comment] = ACTIONS(52), - }, - [1191] = { - [sym__concat] = ACTIONS(1772), - [anon_sym_PIPE] = ACTIONS(1774), - [anon_sym_RPAREN] = ACTIONS(1774), - [anon_sym_SEMI_SEMI] = ACTIONS(1774), - [anon_sym_PIPE_AMP] = ACTIONS(1774), - [anon_sym_AMP_AMP] = ACTIONS(1774), - [anon_sym_PIPE_PIPE] = ACTIONS(1774), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1774), - [anon_sym_LF] = ACTIONS(1774), - [anon_sym_AMP] = ACTIONS(1774), - }, - [1192] = { - [anon_sym_RBRACE] = ACTIONS(2554), - [sym_comment] = ACTIONS(52), - }, - [1193] = { - [anon_sym_RBRACE] = ACTIONS(2556), - [sym_comment] = ACTIONS(52), - }, - [1194] = { - [sym_file_descriptor] = ACTIONS(2118), - [sym__concat] = ACTIONS(2118), - [anon_sym_PIPE] = ACTIONS(2120), - [anon_sym_RPAREN] = ACTIONS(2120), - [anon_sym_SEMI_SEMI] = ACTIONS(2120), - [anon_sym_PIPE_AMP] = ACTIONS(2120), - [anon_sym_AMP_AMP] = ACTIONS(2120), - [anon_sym_PIPE_PIPE] = ACTIONS(2120), - [anon_sym_LT] = ACTIONS(2120), - [anon_sym_GT] = ACTIONS(2120), - [anon_sym_GT_GT] = ACTIONS(2120), - [anon_sym_AMP_GT] = ACTIONS(2120), - [anon_sym_AMP_GT_GT] = ACTIONS(2120), - [anon_sym_LT_AMP] = ACTIONS(2120), - [anon_sym_GT_AMP] = ACTIONS(2120), - [anon_sym_LT_LT] = ACTIONS(2120), - [anon_sym_LT_LT_DASH] = ACTIONS(2120), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(2120), - [anon_sym_LF] = ACTIONS(2120), - [anon_sym_AMP] = ACTIONS(2120), - }, - [1195] = { - [sym_file_descriptor] = ACTIONS(2122), - [sym__concat] = ACTIONS(2122), - [anon_sym_PIPE] = ACTIONS(2124), - [anon_sym_RPAREN] = ACTIONS(2124), - [anon_sym_SEMI_SEMI] = ACTIONS(2124), - [anon_sym_PIPE_AMP] = ACTIONS(2124), - [anon_sym_AMP_AMP] = ACTIONS(2124), - [anon_sym_PIPE_PIPE] = ACTIONS(2124), - [anon_sym_LT] = ACTIONS(2124), - [anon_sym_GT] = ACTIONS(2124), - [anon_sym_GT_GT] = ACTIONS(2124), - [anon_sym_AMP_GT] = ACTIONS(2124), - [anon_sym_AMP_GT_GT] = ACTIONS(2124), - [anon_sym_LT_AMP] = ACTIONS(2124), - [anon_sym_GT_AMP] = ACTIONS(2124), - [anon_sym_LT_LT] = ACTIONS(2124), - [anon_sym_LT_LT_DASH] = ACTIONS(2124), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(2124), - [anon_sym_LF] = ACTIONS(2124), - [anon_sym_AMP] = ACTIONS(2124), - }, - [1196] = { - [anon_sym_RBRACK] = ACTIONS(2558), - [sym_comment] = ACTIONS(52), - }, - [1197] = { - [anon_sym_RBRACK] = ACTIONS(2560), - [sym_comment] = ACTIONS(52), - }, - [1198] = { - [anon_sym_RBRACE] = ACTIONS(2562), - [sym_comment] = ACTIONS(52), - }, - [1199] = { - [sym__heredoc_middle] = ACTIONS(1766), - [sym__heredoc_end] = ACTIONS(1766), - [anon_sym_DOLLAR] = ACTIONS(2084), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1766), - [sym_comment] = ACTIONS(52), - }, - [1200] = { - [anon_sym_RBRACE] = ACTIONS(2564), - [sym_comment] = ACTIONS(52), - }, - [1201] = { - [sym__heredoc_middle] = ACTIONS(1772), - [sym__heredoc_end] = ACTIONS(1772), - [anon_sym_DOLLAR] = ACTIONS(2088), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1772), - [sym_comment] = ACTIONS(52), - }, - [1202] = { - [sym__concat] = ACTIONS(2368), - [anon_sym_PIPE] = ACTIONS(2368), - [anon_sym_RPAREN] = ACTIONS(2368), - [anon_sym_RBRACK] = ACTIONS(2368), - [sym_comment] = ACTIONS(52), - }, [1203] = { - [sym__concat] = ACTIONS(2372), - [anon_sym_PIPE] = ACTIONS(2372), - [anon_sym_RPAREN] = ACTIONS(2372), - [anon_sym_RBRACK] = ACTIONS(2372), - [sym_comment] = ACTIONS(52), + [sym__concat] = ACTIONS(2456), + [anon_sym_in] = ACTIONS(2458), + [anon_sym_SEMI_SEMI] = ACTIONS(2458), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(2458), + [anon_sym_LF] = ACTIONS(2458), + [anon_sym_AMP] = ACTIONS(2458), }, [1204] = { - [sym_file_descriptor] = ACTIONS(2368), - [sym__concat] = ACTIONS(2368), - [sym_variable_name] = ACTIONS(2368), - [anon_sym_PIPE] = ACTIONS(2370), - [anon_sym_RPAREN] = ACTIONS(2370), - [anon_sym_SEMI_SEMI] = ACTIONS(2370), - [anon_sym_PIPE_AMP] = ACTIONS(2370), - [anon_sym_AMP_AMP] = ACTIONS(2370), - [anon_sym_PIPE_PIPE] = ACTIONS(2370), - [anon_sym_LT] = ACTIONS(2370), - [anon_sym_GT] = ACTIONS(2370), - [anon_sym_GT_GT] = ACTIONS(2370), - [anon_sym_AMP_GT] = ACTIONS(2370), - [anon_sym_AMP_GT_GT] = ACTIONS(2370), - [anon_sym_LT_AMP] = ACTIONS(2370), - [anon_sym_GT_AMP] = ACTIONS(2370), - [anon_sym_DQUOTE] = ACTIONS(2370), - [sym_raw_string] = ACTIONS(2370), - [anon_sym_DOLLAR] = ACTIONS(2370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2370), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2370), - [anon_sym_BQUOTE] = ACTIONS(2370), - [anon_sym_LT_LPAREN] = ACTIONS(2370), - [anon_sym_GT_LPAREN] = ACTIONS(2370), - [sym_word] = ACTIONS(2370), + [sym__concat] = ACTIONS(2460), + [anon_sym_in] = ACTIONS(2462), + [anon_sym_SEMI_SEMI] = ACTIONS(2462), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(2370), - [anon_sym_LF] = ACTIONS(2370), - [anon_sym_AMP] = ACTIONS(2370), + [anon_sym_SEMI] = ACTIONS(2462), + [anon_sym_LF] = ACTIONS(2462), + [anon_sym_AMP] = ACTIONS(2462), }, [1205] = { - [sym_file_descriptor] = ACTIONS(2372), - [sym__concat] = ACTIONS(2372), - [sym_variable_name] = ACTIONS(2372), - [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_DQUOTE] = ACTIONS(2374), - [sym_raw_string] = ACTIONS(2374), - [anon_sym_DOLLAR] = ACTIONS(2374), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2374), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2374), - [anon_sym_BQUOTE] = ACTIONS(2374), - [anon_sym_LT_LPAREN] = ACTIONS(2374), - [anon_sym_GT_LPAREN] = ACTIONS(2374), - [sym_word] = ACTIONS(2374), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(2374), - [anon_sym_LF] = ACTIONS(2374), - [anon_sym_AMP] = ACTIONS(2374), + [sym__concat] = ACTIONS(2456), + [anon_sym_RBRACE] = ACTIONS(2456), + [anon_sym_RBRACK] = ACTIONS(2602), + [anon_sym_DQUOTE] = ACTIONS(2456), + [sym_raw_string] = ACTIONS(2456), + [anon_sym_DOLLAR] = ACTIONS(2602), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2456), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2456), + [anon_sym_BQUOTE] = ACTIONS(2456), + [anon_sym_LT_LPAREN] = ACTIONS(2456), + [anon_sym_GT_LPAREN] = ACTIONS(2456), + [sym_word] = ACTIONS(2458), + [sym_comment] = ACTIONS(52), }, [1206] = { - [anon_sym_RBRACE] = ACTIONS(2566), + [sym__concat] = ACTIONS(2460), + [anon_sym_RBRACE] = ACTIONS(2460), + [anon_sym_RBRACK] = ACTIONS(2604), + [anon_sym_DQUOTE] = ACTIONS(2460), + [sym_raw_string] = ACTIONS(2460), + [anon_sym_DOLLAR] = ACTIONS(2604), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2460), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2460), + [anon_sym_BQUOTE] = ACTIONS(2460), + [anon_sym_LT_LPAREN] = ACTIONS(2460), + [anon_sym_GT_LPAREN] = ACTIONS(2460), + [sym_word] = ACTIONS(2462), [sym_comment] = ACTIONS(52), }, [1207] = { - [anon_sym_RBRACE] = ACTIONS(2568), + [sym__concat] = ACTIONS(2456), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2602), + [anon_sym_DQUOTE] = ACTIONS(2456), + [sym_raw_string] = ACTIONS(2456), + [anon_sym_DOLLAR] = ACTIONS(2602), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2456), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2456), + [anon_sym_BQUOTE] = ACTIONS(2456), + [anon_sym_LT_LPAREN] = ACTIONS(2456), + [anon_sym_GT_LPAREN] = ACTIONS(2456), + [sym_word] = ACTIONS(2458), [sym_comment] = ACTIONS(52), }, [1208] = { - [sym__concat] = ACTIONS(2118), - [anon_sym_SEMI_SEMI] = ACTIONS(2120), - [anon_sym_DQUOTE] = ACTIONS(2120), - [sym_raw_string] = ACTIONS(2120), - [anon_sym_DOLLAR] = ACTIONS(2120), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2120), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2120), - [anon_sym_BQUOTE] = ACTIONS(2120), - [anon_sym_LT_LPAREN] = ACTIONS(2120), - [anon_sym_GT_LPAREN] = ACTIONS(2120), - [sym_word] = ACTIONS(2120), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(2120), - [anon_sym_LF] = ACTIONS(2120), - [anon_sym_AMP] = ACTIONS(2120), + [sym__concat] = ACTIONS(2460), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2604), + [anon_sym_DQUOTE] = ACTIONS(2460), + [sym_raw_string] = ACTIONS(2460), + [anon_sym_DOLLAR] = ACTIONS(2604), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2460), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2460), + [anon_sym_BQUOTE] = ACTIONS(2460), + [anon_sym_LT_LPAREN] = ACTIONS(2460), + [anon_sym_GT_LPAREN] = ACTIONS(2460), + [sym_word] = ACTIONS(2462), + [sym_comment] = ACTIONS(52), }, [1209] = { - [sym__concat] = ACTIONS(2122), - [anon_sym_SEMI_SEMI] = ACTIONS(2124), - [anon_sym_DQUOTE] = ACTIONS(2124), - [sym_raw_string] = ACTIONS(2124), - [anon_sym_DOLLAR] = ACTIONS(2124), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2124), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2124), - [anon_sym_BQUOTE] = ACTIONS(2124), - [anon_sym_LT_LPAREN] = ACTIONS(2124), - [anon_sym_GT_LPAREN] = ACTIONS(2124), - [sym_word] = ACTIONS(2124), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(2124), - [anon_sym_LF] = ACTIONS(2124), - [anon_sym_AMP] = ACTIONS(2124), + [sym_file_descriptor] = ACTIONS(2456), + [sym__concat] = ACTIONS(2456), + [sym_variable_name] = ACTIONS(2456), + [anon_sym_LT] = ACTIONS(2602), + [anon_sym_GT] = ACTIONS(2602), + [anon_sym_GT_GT] = ACTIONS(2456), + [anon_sym_AMP_GT] = ACTIONS(2602), + [anon_sym_AMP_GT_GT] = ACTIONS(2456), + [anon_sym_LT_AMP] = ACTIONS(2456), + [anon_sym_GT_AMP] = ACTIONS(2456), + [anon_sym_DQUOTE] = ACTIONS(2456), + [sym_raw_string] = ACTIONS(2456), + [anon_sym_DOLLAR] = ACTIONS(2602), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2456), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2456), + [anon_sym_BQUOTE] = ACTIONS(2456), + [anon_sym_LT_LPAREN] = ACTIONS(2456), + [anon_sym_GT_LPAREN] = ACTIONS(2456), + [sym_word] = ACTIONS(2602), + [sym_comment] = ACTIONS(52), }, [1210] = { - [anon_sym_esac] = ACTIONS(2570), - [anon_sym_DQUOTE] = ACTIONS(2572), - [sym_raw_string] = ACTIONS(2572), - [anon_sym_DOLLAR] = ACTIONS(2570), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2572), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2572), - [anon_sym_BQUOTE] = ACTIONS(2572), - [anon_sym_LT_LPAREN] = ACTIONS(2572), - [anon_sym_GT_LPAREN] = ACTIONS(2572), - [sym_word] = ACTIONS(2574), + [sym_file_descriptor] = ACTIONS(2460), + [sym__concat] = ACTIONS(2460), + [sym_variable_name] = ACTIONS(2460), + [anon_sym_LT] = ACTIONS(2604), + [anon_sym_GT] = ACTIONS(2604), + [anon_sym_GT_GT] = ACTIONS(2460), + [anon_sym_AMP_GT] = ACTIONS(2604), + [anon_sym_AMP_GT_GT] = ACTIONS(2460), + [anon_sym_LT_AMP] = ACTIONS(2460), + [anon_sym_GT_AMP] = ACTIONS(2460), + [anon_sym_DQUOTE] = ACTIONS(2460), + [sym_raw_string] = ACTIONS(2460), + [anon_sym_DOLLAR] = ACTIONS(2604), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2460), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2460), + [anon_sym_BQUOTE] = ACTIONS(2460), + [anon_sym_LT_LPAREN] = ACTIONS(2460), + [anon_sym_GT_LPAREN] = ACTIONS(2460), + [sym_word] = ACTIONS(2604), [sym_comment] = ACTIONS(52), }, [1211] = { - [anon_sym_RBRACE] = ACTIONS(2576), - [sym_comment] = ACTIONS(52), + [anon_sym_DQUOTE] = ACTIONS(2458), + [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(2602), + [anon_sym_DOLLAR] = ACTIONS(2458), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2458), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2458), + [anon_sym_BQUOTE] = ACTIONS(2458), + [sym_comment] = ACTIONS(142), }, [1212] = { - [anon_sym_RBRACE] = ACTIONS(2578), - [sym_comment] = ACTIONS(52), + [anon_sym_DQUOTE] = ACTIONS(2462), + [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(2604), + [anon_sym_DOLLAR] = ACTIONS(2462), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2462), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2462), + [anon_sym_BQUOTE] = ACTIONS(2462), + [sym_comment] = ACTIONS(142), }, [1213] = { - [sym_file_descriptor] = ACTIONS(2118), - [sym__concat] = ACTIONS(2118), - [sym_variable_name] = ACTIONS(2118), - [anon_sym_PIPE] = ACTIONS(2352), - [anon_sym_RPAREN] = ACTIONS(2118), - [anon_sym_PIPE_AMP] = ACTIONS(2118), - [anon_sym_AMP_AMP] = ACTIONS(2118), - [anon_sym_PIPE_PIPE] = ACTIONS(2352), - [anon_sym_LT] = ACTIONS(2352), - [anon_sym_GT] = ACTIONS(2352), - [anon_sym_GT_GT] = ACTIONS(2118), - [anon_sym_AMP_GT] = ACTIONS(2352), - [anon_sym_AMP_GT_GT] = ACTIONS(2118), - [anon_sym_LT_AMP] = ACTIONS(2118), - [anon_sym_GT_AMP] = ACTIONS(2118), - [anon_sym_DQUOTE] = ACTIONS(2118), - [sym_raw_string] = ACTIONS(2118), - [anon_sym_DOLLAR] = ACTIONS(2352), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2118), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2118), - [anon_sym_BQUOTE] = ACTIONS(2118), - [anon_sym_LT_LPAREN] = ACTIONS(2118), - [anon_sym_GT_LPAREN] = ACTIONS(2118), - [sym_word] = ACTIONS(2120), + [anon_sym_RBRACK] = ACTIONS(2606), [sym_comment] = ACTIONS(52), }, [1214] = { - [sym_file_descriptor] = ACTIONS(2122), - [sym__concat] = ACTIONS(2122), - [sym_variable_name] = ACTIONS(2122), - [anon_sym_PIPE] = ACTIONS(2354), - [anon_sym_RPAREN] = ACTIONS(2122), - [anon_sym_PIPE_AMP] = ACTIONS(2122), - [anon_sym_AMP_AMP] = ACTIONS(2122), - [anon_sym_PIPE_PIPE] = ACTIONS(2354), - [anon_sym_LT] = ACTIONS(2354), - [anon_sym_GT] = ACTIONS(2354), - [anon_sym_GT_GT] = ACTIONS(2122), - [anon_sym_AMP_GT] = ACTIONS(2354), - [anon_sym_AMP_GT_GT] = ACTIONS(2122), - [anon_sym_LT_AMP] = ACTIONS(2122), - [anon_sym_GT_AMP] = ACTIONS(2122), - [anon_sym_DQUOTE] = ACTIONS(2122), - [sym_raw_string] = ACTIONS(2122), - [anon_sym_DOLLAR] = ACTIONS(2354), - [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_word] = ACTIONS(2124), + [anon_sym_RBRACK] = ACTIONS(2608), [sym_comment] = ACTIONS(52), }, [1215] = { - [anon_sym_RBRACK] = ACTIONS(2580), + [anon_sym_RBRACE] = ACTIONS(2610), [sym_comment] = ACTIONS(52), }, [1216] = { - [anon_sym_RBRACK] = ACTIONS(2582), + [sym_file_descriptor] = ACTIONS(1818), + [sym__concat] = ACTIONS(1818), + [sym_variable_name] = ACTIONS(1818), + [anon_sym_PIPE] = ACTIONS(2160), + [anon_sym_RPAREN] = ACTIONS(1818), + [anon_sym_PIPE_AMP] = ACTIONS(1818), + [anon_sym_AMP_AMP] = ACTIONS(1818), + [anon_sym_PIPE_PIPE] = ACTIONS(2160), + [anon_sym_LT] = ACTIONS(2160), + [anon_sym_GT] = ACTIONS(2160), + [anon_sym_GT_GT] = ACTIONS(1818), + [anon_sym_AMP_GT] = ACTIONS(2160), + [anon_sym_AMP_GT_GT] = ACTIONS(1818), + [anon_sym_LT_AMP] = ACTIONS(1818), + [anon_sym_GT_AMP] = ACTIONS(1818), + [anon_sym_DQUOTE] = ACTIONS(1818), + [sym_raw_string] = ACTIONS(1818), + [anon_sym_DOLLAR] = ACTIONS(2160), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1818), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1818), + [anon_sym_BQUOTE] = ACTIONS(1818), + [anon_sym_LT_LPAREN] = ACTIONS(1818), + [anon_sym_GT_LPAREN] = ACTIONS(1818), + [sym_word] = ACTIONS(1820), [sym_comment] = ACTIONS(52), }, [1217] = { - [anon_sym_RBRACE] = ACTIONS(2584), + [anon_sym_RBRACE] = ACTIONS(2612), [sym_comment] = ACTIONS(52), }, [1218] = { - [sym__concat] = ACTIONS(1766), - [anon_sym_PIPE] = ACTIONS(2084), - [anon_sym_RPAREN] = ACTIONS(1766), - [anon_sym_PIPE_AMP] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_BQUOTE] = ACTIONS(1766), + [sym_file_descriptor] = ACTIONS(1824), + [sym__concat] = ACTIONS(1824), + [sym_variable_name] = ACTIONS(1824), + [anon_sym_PIPE] = ACTIONS(2164), + [anon_sym_RPAREN] = ACTIONS(1824), + [anon_sym_PIPE_AMP] = ACTIONS(1824), + [anon_sym_AMP_AMP] = ACTIONS(1824), + [anon_sym_PIPE_PIPE] = ACTIONS(2164), + [anon_sym_LT] = ACTIONS(2164), + [anon_sym_GT] = ACTIONS(2164), + [anon_sym_GT_GT] = ACTIONS(1824), + [anon_sym_AMP_GT] = ACTIONS(2164), + [anon_sym_AMP_GT_GT] = ACTIONS(1824), + [anon_sym_LT_AMP] = ACTIONS(1824), + [anon_sym_GT_AMP] = ACTIONS(1824), + [anon_sym_DQUOTE] = ACTIONS(1824), + [sym_raw_string] = ACTIONS(1824), + [anon_sym_DOLLAR] = ACTIONS(2164), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1824), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1824), + [anon_sym_BQUOTE] = ACTIONS(1824), + [anon_sym_LT_LPAREN] = ACTIONS(1824), + [anon_sym_GT_LPAREN] = ACTIONS(1824), + [sym_word] = ACTIONS(1826), [sym_comment] = ACTIONS(52), }, [1219] = { - [anon_sym_RBRACE] = ACTIONS(2586), + [anon_sym_PIPE] = ACTIONS(2614), + [anon_sym_RPAREN] = ACTIONS(2616), + [anon_sym_PIPE_AMP] = ACTIONS(2616), + [anon_sym_AMP_AMP] = ACTIONS(2616), + [anon_sym_PIPE_PIPE] = ACTIONS(2616), + [anon_sym_BQUOTE] = ACTIONS(2616), [sym_comment] = ACTIONS(52), }, [1220] = { - [sym__concat] = ACTIONS(1772), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(1772), - [anon_sym_PIPE_AMP] = ACTIONS(1772), - [anon_sym_AMP_AMP] = ACTIONS(1772), - [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_BQUOTE] = ACTIONS(1772), + [anon_sym_PIPE] = ACTIONS(2618), + [anon_sym_RPAREN] = ACTIONS(2620), + [anon_sym_PIPE_AMP] = ACTIONS(2620), + [anon_sym_AMP_AMP] = ACTIONS(2620), + [anon_sym_PIPE_PIPE] = ACTIONS(2620), + [anon_sym_BQUOTE] = ACTIONS(2620), [sym_comment] = ACTIONS(52), }, [1221] = { - [anon_sym_RBRACE] = ACTIONS(2588), + [sym_file_descriptor] = ACTIONS(2456), + [sym__concat] = ACTIONS(2456), + [anon_sym_PIPE] = ACTIONS(2602), + [anon_sym_RPAREN] = ACTIONS(2456), + [anon_sym_PIPE_AMP] = ACTIONS(2456), + [anon_sym_AMP_AMP] = ACTIONS(2456), + [anon_sym_PIPE_PIPE] = ACTIONS(2602), + [anon_sym_LT] = ACTIONS(2602), + [anon_sym_GT] = ACTIONS(2602), + [anon_sym_GT_GT] = ACTIONS(2456), + [anon_sym_AMP_GT] = ACTIONS(2602), + [anon_sym_AMP_GT_GT] = ACTIONS(2456), + [anon_sym_LT_AMP] = ACTIONS(2456), + [anon_sym_GT_AMP] = ACTIONS(2456), + [anon_sym_LT_LT] = ACTIONS(2602), + [anon_sym_LT_LT_DASH] = ACTIONS(2456), + [anon_sym_DQUOTE] = ACTIONS(2456), + [sym_raw_string] = ACTIONS(2456), + [anon_sym_DOLLAR] = ACTIONS(2602), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2456), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2456), + [anon_sym_BQUOTE] = ACTIONS(2456), + [anon_sym_LT_LPAREN] = ACTIONS(2456), + [anon_sym_GT_LPAREN] = ACTIONS(2456), + [sym_word] = ACTIONS(2458), [sym_comment] = ACTIONS(52), }, [1222] = { - [anon_sym_RBRACE] = ACTIONS(2590), + [sym_file_descriptor] = ACTIONS(2460), + [sym__concat] = ACTIONS(2460), + [anon_sym_PIPE] = ACTIONS(2604), + [anon_sym_RPAREN] = ACTIONS(2460), + [anon_sym_PIPE_AMP] = ACTIONS(2460), + [anon_sym_AMP_AMP] = ACTIONS(2460), + [anon_sym_PIPE_PIPE] = ACTIONS(2604), + [anon_sym_LT] = ACTIONS(2604), + [anon_sym_GT] = ACTIONS(2604), + [anon_sym_GT_GT] = ACTIONS(2460), + [anon_sym_AMP_GT] = ACTIONS(2604), + [anon_sym_AMP_GT_GT] = ACTIONS(2460), + [anon_sym_LT_AMP] = ACTIONS(2460), + [anon_sym_GT_AMP] = ACTIONS(2460), + [anon_sym_LT_LT] = ACTIONS(2604), + [anon_sym_LT_LT_DASH] = ACTIONS(2460), + [anon_sym_DQUOTE] = ACTIONS(2460), + [sym_raw_string] = ACTIONS(2460), + [anon_sym_DOLLAR] = ACTIONS(2604), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2460), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2460), + [anon_sym_BQUOTE] = ACTIONS(2460), + [anon_sym_LT_LPAREN] = ACTIONS(2460), + [anon_sym_GT_LPAREN] = ACTIONS(2460), + [sym_word] = ACTIONS(2462), [sym_comment] = ACTIONS(52), }, [1223] = { - [sym_file_descriptor] = ACTIONS(2118), - [sym__concat] = ACTIONS(2118), - [anon_sym_PIPE] = ACTIONS(2352), - [anon_sym_RPAREN] = ACTIONS(2118), - [anon_sym_PIPE_AMP] = ACTIONS(2118), - [anon_sym_AMP_AMP] = ACTIONS(2118), - [anon_sym_PIPE_PIPE] = ACTIONS(2118), - [anon_sym_LT] = ACTIONS(2352), - [anon_sym_GT] = ACTIONS(2352), - [anon_sym_GT_GT] = ACTIONS(2118), - [anon_sym_AMP_GT] = ACTIONS(2352), - [anon_sym_AMP_GT_GT] = ACTIONS(2118), - [anon_sym_LT_AMP] = ACTIONS(2118), - [anon_sym_GT_AMP] = ACTIONS(2118), - [anon_sym_LT_LT] = ACTIONS(2352), - [anon_sym_LT_LT_DASH] = ACTIONS(2118), - [anon_sym_BQUOTE] = ACTIONS(2118), + [sym__concat] = ACTIONS(1362), + [anon_sym_PIPE] = ACTIONS(1758), + [anon_sym_RPAREN] = ACTIONS(1362), + [anon_sym_PIPE_AMP] = ACTIONS(1362), + [anon_sym_AMP_AMP] = ACTIONS(1362), + [anon_sym_PIPE_PIPE] = ACTIONS(1362), + [anon_sym_BQUOTE] = ACTIONS(1362), [sym_comment] = ACTIONS(52), }, [1224] = { - [sym_file_descriptor] = ACTIONS(2122), - [sym__concat] = ACTIONS(2122), - [anon_sym_PIPE] = ACTIONS(2354), - [anon_sym_RPAREN] = ACTIONS(2122), - [anon_sym_PIPE_AMP] = ACTIONS(2122), - [anon_sym_AMP_AMP] = ACTIONS(2122), - [anon_sym_PIPE_PIPE] = ACTIONS(2122), - [anon_sym_LT] = ACTIONS(2354), - [anon_sym_GT] = ACTIONS(2354), - [anon_sym_GT_GT] = ACTIONS(2122), - [anon_sym_AMP_GT] = ACTIONS(2354), - [anon_sym_AMP_GT_GT] = ACTIONS(2122), - [anon_sym_LT_AMP] = ACTIONS(2122), - [anon_sym_GT_AMP] = ACTIONS(2122), - [anon_sym_LT_LT] = ACTIONS(2354), - [anon_sym_LT_LT_DASH] = ACTIONS(2122), - [anon_sym_BQUOTE] = ACTIONS(2122), + [sym__concat] = ACTIONS(1366), + [anon_sym_PIPE] = ACTIONS(1760), + [anon_sym_RPAREN] = ACTIONS(1366), + [anon_sym_PIPE_AMP] = ACTIONS(1366), + [anon_sym_AMP_AMP] = ACTIONS(1366), + [anon_sym_PIPE_PIPE] = ACTIONS(1366), + [anon_sym_BQUOTE] = ACTIONS(1366), [sym_comment] = ACTIONS(52), }, [1225] = { - [anon_sym_RBRACE] = ACTIONS(2592), + [anon_sym_AT] = ACTIONS(2622), [sym_comment] = ACTIONS(52), }, [1226] = { - [anon_sym_RBRACE] = ACTIONS(2594), + [sym__concat] = ACTIONS(1372), + [anon_sym_PIPE] = ACTIONS(1764), + [anon_sym_RPAREN] = ACTIONS(1372), + [anon_sym_PIPE_AMP] = ACTIONS(1372), + [anon_sym_AMP_AMP] = ACTIONS(1372), + [anon_sym_PIPE_PIPE] = ACTIONS(1372), + [anon_sym_BQUOTE] = ACTIONS(1372), [sym_comment] = ACTIONS(52), }, [1227] = { - [sym__concat] = ACTIONS(2118), - [anon_sym_PIPE] = ACTIONS(2120), - [anon_sym_RPAREN] = ACTIONS(2120), - [anon_sym_SEMI_SEMI] = ACTIONS(2120), - [anon_sym_PIPE_AMP] = ACTIONS(2120), - [anon_sym_AMP_AMP] = ACTIONS(2120), - [anon_sym_PIPE_PIPE] = ACTIONS(2120), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(2120), - [anon_sym_LF] = ACTIONS(2120), - [anon_sym_AMP] = ACTIONS(2120), + [anon_sym_AT] = ACTIONS(2624), + [sym_comment] = ACTIONS(52), }, [1228] = { - [sym__concat] = ACTIONS(2122), - [anon_sym_PIPE] = ACTIONS(2124), - [anon_sym_RPAREN] = ACTIONS(2124), - [anon_sym_SEMI_SEMI] = ACTIONS(2124), - [anon_sym_PIPE_AMP] = ACTIONS(2124), - [anon_sym_AMP_AMP] = ACTIONS(2124), - [anon_sym_PIPE_PIPE] = ACTIONS(2124), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(2124), - [anon_sym_LF] = ACTIONS(2124), - [anon_sym_AMP] = ACTIONS(2124), + [anon_sym_RBRACK] = ACTIONS(2626), + [sym_comment] = ACTIONS(52), }, [1229] = { - [sym_file_descriptor] = ACTIONS(2368), - [sym__concat] = ACTIONS(2368), - [anon_sym_PIPE] = ACTIONS(2370), - [anon_sym_RPAREN] = ACTIONS(2370), - [anon_sym_SEMI_SEMI] = ACTIONS(2370), - [anon_sym_PIPE_AMP] = ACTIONS(2370), - [anon_sym_AMP_AMP] = ACTIONS(2370), - [anon_sym_PIPE_PIPE] = ACTIONS(2370), - [anon_sym_LT] = ACTIONS(2370), - [anon_sym_GT] = ACTIONS(2370), - [anon_sym_GT_GT] = ACTIONS(2370), - [anon_sym_AMP_GT] = ACTIONS(2370), - [anon_sym_AMP_GT_GT] = ACTIONS(2370), - [anon_sym_LT_AMP] = ACTIONS(2370), - [anon_sym_GT_AMP] = ACTIONS(2370), - [anon_sym_LT_LT] = ACTIONS(2370), - [anon_sym_LT_LT_DASH] = ACTIONS(2370), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(2370), - [anon_sym_LF] = ACTIONS(2370), - [anon_sym_AMP] = ACTIONS(2370), + [aux_sym_concatenation_repeat1] = STATE(192), + [sym__concat] = ACTIONS(326), + [anon_sym_RBRACE] = ACTIONS(2628), + [sym_comment] = ACTIONS(52), }, [1230] = { - [sym_file_descriptor] = ACTIONS(2372), - [sym__concat] = ACTIONS(2372), - [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), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(2374), - [anon_sym_LF] = ACTIONS(2374), - [anon_sym_AMP] = ACTIONS(2374), + [anon_sym_RBRACE] = ACTIONS(2628), + [sym_comment] = ACTIONS(52), }, [1231] = { - [anon_sym_RBRACE] = ACTIONS(2596), + [anon_sym_RBRACK] = ACTIONS(2630), [sym_comment] = ACTIONS(52), }, [1232] = { - [anon_sym_RBRACE] = ACTIONS(2598), + [aux_sym_concatenation_repeat1] = STATE(192), + [sym__concat] = ACTIONS(326), + [anon_sym_RBRACE] = ACTIONS(2632), [sym_comment] = ACTIONS(52), }, [1233] = { - [sym__heredoc_middle] = ACTIONS(2118), - [sym__heredoc_end] = ACTIONS(2118), - [anon_sym_DOLLAR] = ACTIONS(2352), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2118), + [anon_sym_RBRACE] = ACTIONS(2632), [sym_comment] = ACTIONS(52), }, [1234] = { - [sym__heredoc_middle] = ACTIONS(2122), - [sym__heredoc_end] = ACTIONS(2122), - [anon_sym_DOLLAR] = ACTIONS(2354), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2122), + [anon_sym_RBRACK] = ACTIONS(2634), [sym_comment] = ACTIONS(52), }, [1235] = { - [sym__concat] = ACTIONS(2368), - [anon_sym_SEMI_SEMI] = ACTIONS(2370), - [anon_sym_DQUOTE] = ACTIONS(2370), - [sym_raw_string] = ACTIONS(2370), - [anon_sym_DOLLAR] = ACTIONS(2370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2370), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2370), - [anon_sym_BQUOTE] = ACTIONS(2370), - [anon_sym_LT_LPAREN] = ACTIONS(2370), - [anon_sym_GT_LPAREN] = ACTIONS(2370), - [sym_word] = ACTIONS(2370), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(2370), - [anon_sym_LF] = ACTIONS(2370), - [anon_sym_AMP] = ACTIONS(2370), + [anon_sym_RBRACK] = ACTIONS(2636), + [sym_comment] = ACTIONS(52), }, [1236] = { - [sym__concat] = ACTIONS(2372), - [anon_sym_SEMI_SEMI] = ACTIONS(2374), - [anon_sym_DQUOTE] = ACTIONS(2374), - [sym_raw_string] = ACTIONS(2374), - [anon_sym_DOLLAR] = ACTIONS(2374), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2374), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2374), - [anon_sym_BQUOTE] = ACTIONS(2374), - [anon_sym_LT_LPAREN] = ACTIONS(2374), - [anon_sym_GT_LPAREN] = ACTIONS(2374), - [sym_word] = ACTIONS(2374), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(2374), - [anon_sym_LF] = ACTIONS(2374), - [anon_sym_AMP] = ACTIONS(2374), + [anon_sym_RBRACE] = ACTIONS(2638), + [sym_comment] = ACTIONS(52), }, [1237] = { - [sym_file_descriptor] = ACTIONS(2368), - [sym__concat] = ACTIONS(2368), - [sym_variable_name] = ACTIONS(2368), - [anon_sym_PIPE] = ACTIONS(2506), - [anon_sym_RPAREN] = ACTIONS(2368), - [anon_sym_PIPE_AMP] = ACTIONS(2368), - [anon_sym_AMP_AMP] = ACTIONS(2368), - [anon_sym_PIPE_PIPE] = ACTIONS(2506), - [anon_sym_LT] = ACTIONS(2506), - [anon_sym_GT] = ACTIONS(2506), - [anon_sym_GT_GT] = ACTIONS(2368), - [anon_sym_AMP_GT] = ACTIONS(2506), - [anon_sym_AMP_GT_GT] = ACTIONS(2368), - [anon_sym_LT_AMP] = ACTIONS(2368), - [anon_sym_GT_AMP] = ACTIONS(2368), - [anon_sym_DQUOTE] = ACTIONS(2368), - [sym_raw_string] = ACTIONS(2368), - [anon_sym_DOLLAR] = ACTIONS(2506), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2368), - [anon_sym_BQUOTE] = ACTIONS(2368), - [anon_sym_LT_LPAREN] = ACTIONS(2368), - [anon_sym_GT_LPAREN] = ACTIONS(2368), - [sym_word] = ACTIONS(2370), + [sym_file_descriptor] = ACTIONS(1818), + [sym__concat] = ACTIONS(1818), + [anon_sym_PIPE] = ACTIONS(2160), + [anon_sym_RPAREN] = ACTIONS(1818), + [anon_sym_PIPE_AMP] = ACTIONS(1818), + [anon_sym_AMP_AMP] = ACTIONS(1818), + [anon_sym_PIPE_PIPE] = ACTIONS(1818), + [anon_sym_LT] = ACTIONS(2160), + [anon_sym_GT] = ACTIONS(2160), + [anon_sym_GT_GT] = ACTIONS(1818), + [anon_sym_AMP_GT] = ACTIONS(2160), + [anon_sym_AMP_GT_GT] = ACTIONS(1818), + [anon_sym_LT_AMP] = ACTIONS(1818), + [anon_sym_GT_AMP] = ACTIONS(1818), + [anon_sym_LT_LT] = ACTIONS(2160), + [anon_sym_LT_LT_DASH] = ACTIONS(1818), + [anon_sym_BQUOTE] = ACTIONS(1818), [sym_comment] = ACTIONS(52), }, [1238] = { - [sym_file_descriptor] = ACTIONS(2372), - [sym__concat] = ACTIONS(2372), - [sym_variable_name] = ACTIONS(2372), - [anon_sym_PIPE] = ACTIONS(2508), - [anon_sym_RPAREN] = ACTIONS(2372), - [anon_sym_PIPE_AMP] = ACTIONS(2372), - [anon_sym_AMP_AMP] = ACTIONS(2372), - [anon_sym_PIPE_PIPE] = ACTIONS(2508), - [anon_sym_LT] = ACTIONS(2508), - [anon_sym_GT] = ACTIONS(2508), - [anon_sym_GT_GT] = ACTIONS(2372), - [anon_sym_AMP_GT] = ACTIONS(2508), - [anon_sym_AMP_GT_GT] = ACTIONS(2372), - [anon_sym_LT_AMP] = ACTIONS(2372), - [anon_sym_GT_AMP] = ACTIONS(2372), - [anon_sym_DQUOTE] = ACTIONS(2372), - [sym_raw_string] = ACTIONS(2372), - [anon_sym_DOLLAR] = ACTIONS(2508), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2372), - [anon_sym_BQUOTE] = ACTIONS(2372), - [anon_sym_LT_LPAREN] = ACTIONS(2372), - [anon_sym_GT_LPAREN] = ACTIONS(2372), - [sym_word] = ACTIONS(2374), + [anon_sym_RBRACE] = ACTIONS(2640), [sym_comment] = ACTIONS(52), }, [1239] = { - [anon_sym_RBRACE] = ACTIONS(2600), + [sym_file_descriptor] = ACTIONS(1824), + [sym__concat] = ACTIONS(1824), + [anon_sym_PIPE] = ACTIONS(2164), + [anon_sym_RPAREN] = ACTIONS(1824), + [anon_sym_PIPE_AMP] = ACTIONS(1824), + [anon_sym_AMP_AMP] = ACTIONS(1824), + [anon_sym_PIPE_PIPE] = ACTIONS(1824), + [anon_sym_LT] = ACTIONS(2164), + [anon_sym_GT] = ACTIONS(2164), + [anon_sym_GT_GT] = ACTIONS(1824), + [anon_sym_AMP_GT] = ACTIONS(2164), + [anon_sym_AMP_GT_GT] = ACTIONS(1824), + [anon_sym_LT_AMP] = ACTIONS(1824), + [anon_sym_GT_AMP] = ACTIONS(1824), + [anon_sym_LT_LT] = ACTIONS(2164), + [anon_sym_LT_LT_DASH] = ACTIONS(1824), + [anon_sym_BQUOTE] = ACTIONS(1824), [sym_comment] = ACTIONS(52), }, [1240] = { - [anon_sym_RBRACE] = ACTIONS(2602), + [anon_sym_RBRACK] = ACTIONS(2642), [sym_comment] = ACTIONS(52), }, [1241] = { - [sym__concat] = ACTIONS(2118), - [anon_sym_PIPE] = ACTIONS(2352), - [anon_sym_RPAREN] = ACTIONS(2118), - [anon_sym_PIPE_AMP] = ACTIONS(2118), - [anon_sym_AMP_AMP] = ACTIONS(2118), - [anon_sym_PIPE_PIPE] = ACTIONS(2118), - [anon_sym_BQUOTE] = ACTIONS(2118), + [anon_sym_RBRACK] = ACTIONS(2644), [sym_comment] = ACTIONS(52), }, [1242] = { - [sym__concat] = ACTIONS(2122), - [anon_sym_PIPE] = ACTIONS(2354), - [anon_sym_RPAREN] = ACTIONS(2122), - [anon_sym_PIPE_AMP] = ACTIONS(2122), - [anon_sym_AMP_AMP] = ACTIONS(2122), - [anon_sym_PIPE_PIPE] = ACTIONS(2122), - [anon_sym_BQUOTE] = ACTIONS(2122), + [anon_sym_RBRACE] = ACTIONS(2646), [sym_comment] = ACTIONS(52), }, [1243] = { - [sym_file_descriptor] = ACTIONS(2368), - [sym__concat] = ACTIONS(2368), - [anon_sym_PIPE] = ACTIONS(2506), - [anon_sym_RPAREN] = ACTIONS(2368), - [anon_sym_PIPE_AMP] = ACTIONS(2368), - [anon_sym_AMP_AMP] = ACTIONS(2368), - [anon_sym_PIPE_PIPE] = ACTIONS(2368), - [anon_sym_LT] = ACTIONS(2506), - [anon_sym_GT] = ACTIONS(2506), - [anon_sym_GT_GT] = ACTIONS(2368), - [anon_sym_AMP_GT] = ACTIONS(2506), - [anon_sym_AMP_GT_GT] = ACTIONS(2368), - [anon_sym_LT_AMP] = ACTIONS(2368), - [anon_sym_GT_AMP] = ACTIONS(2368), - [anon_sym_LT_LT] = ACTIONS(2506), - [anon_sym_LT_LT_DASH] = ACTIONS(2368), - [anon_sym_BQUOTE] = ACTIONS(2368), - [sym_comment] = ACTIONS(52), + [sym__concat] = ACTIONS(1818), + [anon_sym_PIPE] = ACTIONS(1820), + [anon_sym_RPAREN] = ACTIONS(1820), + [anon_sym_SEMI_SEMI] = ACTIONS(1820), + [anon_sym_PIPE_AMP] = ACTIONS(1820), + [anon_sym_AMP_AMP] = ACTIONS(1820), + [anon_sym_PIPE_PIPE] = ACTIONS(1820), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(1820), + [anon_sym_LF] = ACTIONS(1820), + [anon_sym_AMP] = ACTIONS(1820), }, [1244] = { - [sym_file_descriptor] = ACTIONS(2372), - [sym__concat] = ACTIONS(2372), - [anon_sym_PIPE] = ACTIONS(2508), - [anon_sym_RPAREN] = ACTIONS(2372), - [anon_sym_PIPE_AMP] = ACTIONS(2372), - [anon_sym_AMP_AMP] = ACTIONS(2372), - [anon_sym_PIPE_PIPE] = ACTIONS(2372), - [anon_sym_LT] = ACTIONS(2508), - [anon_sym_GT] = ACTIONS(2508), - [anon_sym_GT_GT] = ACTIONS(2372), - [anon_sym_AMP_GT] = ACTIONS(2508), - [anon_sym_AMP_GT_GT] = ACTIONS(2372), - [anon_sym_LT_AMP] = ACTIONS(2372), - [anon_sym_GT_AMP] = ACTIONS(2372), - [anon_sym_LT_LT] = ACTIONS(2508), - [anon_sym_LT_LT_DASH] = ACTIONS(2372), - [anon_sym_BQUOTE] = ACTIONS(2372), + [anon_sym_RBRACE] = ACTIONS(2648), [sym_comment] = ACTIONS(52), }, [1245] = { - [sym__concat] = ACTIONS(2368), - [anon_sym_PIPE] = ACTIONS(2370), - [anon_sym_RPAREN] = ACTIONS(2370), - [anon_sym_SEMI_SEMI] = ACTIONS(2370), - [anon_sym_PIPE_AMP] = ACTIONS(2370), - [anon_sym_AMP_AMP] = ACTIONS(2370), - [anon_sym_PIPE_PIPE] = ACTIONS(2370), + [sym__concat] = ACTIONS(1824), + [anon_sym_PIPE] = ACTIONS(1826), + [anon_sym_RPAREN] = ACTIONS(1826), + [anon_sym_SEMI_SEMI] = ACTIONS(1826), + [anon_sym_PIPE_AMP] = ACTIONS(1826), + [anon_sym_AMP_AMP] = ACTIONS(1826), + [anon_sym_PIPE_PIPE] = ACTIONS(1826), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(2370), - [anon_sym_LF] = ACTIONS(2370), - [anon_sym_AMP] = ACTIONS(2370), + [anon_sym_SEMI] = ACTIONS(1826), + [anon_sym_LF] = ACTIONS(1826), + [anon_sym_AMP] = ACTIONS(1826), }, [1246] = { - [sym__concat] = ACTIONS(2372), - [anon_sym_PIPE] = ACTIONS(2374), - [anon_sym_RPAREN] = ACTIONS(2374), - [anon_sym_SEMI_SEMI] = ACTIONS(2374), - [anon_sym_PIPE_AMP] = ACTIONS(2374), - [anon_sym_AMP_AMP] = ACTIONS(2374), - [anon_sym_PIPE_PIPE] = ACTIONS(2374), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(2374), - [anon_sym_LF] = ACTIONS(2374), - [anon_sym_AMP] = ACTIONS(2374), + [anon_sym_RBRACE] = ACTIONS(2650), + [sym_comment] = ACTIONS(52), }, [1247] = { - [sym__heredoc_middle] = ACTIONS(2368), - [sym__heredoc_end] = ACTIONS(2368), - [anon_sym_DOLLAR] = ACTIONS(2506), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2368), + [anon_sym_RBRACE] = ACTIONS(2652), [sym_comment] = ACTIONS(52), }, [1248] = { - [sym__heredoc_middle] = ACTIONS(2372), - [sym__heredoc_end] = ACTIONS(2372), - [anon_sym_DOLLAR] = ACTIONS(2508), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2372), - [sym_comment] = ACTIONS(52), + [sym_file_descriptor] = ACTIONS(2194), + [sym__concat] = ACTIONS(2194), + [anon_sym_PIPE] = ACTIONS(2196), + [anon_sym_RPAREN] = ACTIONS(2196), + [anon_sym_SEMI_SEMI] = ACTIONS(2196), + [anon_sym_PIPE_AMP] = ACTIONS(2196), + [anon_sym_AMP_AMP] = ACTIONS(2196), + [anon_sym_PIPE_PIPE] = ACTIONS(2196), + [anon_sym_LT] = ACTIONS(2196), + [anon_sym_GT] = ACTIONS(2196), + [anon_sym_GT_GT] = ACTIONS(2196), + [anon_sym_AMP_GT] = ACTIONS(2196), + [anon_sym_AMP_GT_GT] = ACTIONS(2196), + [anon_sym_LT_AMP] = ACTIONS(2196), + [anon_sym_GT_AMP] = ACTIONS(2196), + [anon_sym_LT_LT] = ACTIONS(2196), + [anon_sym_LT_LT_DASH] = ACTIONS(2196), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(2196), + [anon_sym_LF] = ACTIONS(2196), + [anon_sym_AMP] = ACTIONS(2196), }, [1249] = { - [sym__concat] = ACTIONS(2368), - [anon_sym_PIPE] = ACTIONS(2506), - [anon_sym_RPAREN] = ACTIONS(2368), - [anon_sym_PIPE_AMP] = ACTIONS(2368), - [anon_sym_AMP_AMP] = ACTIONS(2368), - [anon_sym_PIPE_PIPE] = ACTIONS(2368), - [anon_sym_BQUOTE] = ACTIONS(2368), - [sym_comment] = ACTIONS(52), + [sym_file_descriptor] = ACTIONS(2198), + [sym__concat] = ACTIONS(2198), + [anon_sym_PIPE] = ACTIONS(2200), + [anon_sym_RPAREN] = ACTIONS(2200), + [anon_sym_SEMI_SEMI] = ACTIONS(2200), + [anon_sym_PIPE_AMP] = ACTIONS(2200), + [anon_sym_AMP_AMP] = ACTIONS(2200), + [anon_sym_PIPE_PIPE] = ACTIONS(2200), + [anon_sym_LT] = ACTIONS(2200), + [anon_sym_GT] = ACTIONS(2200), + [anon_sym_GT_GT] = ACTIONS(2200), + [anon_sym_AMP_GT] = ACTIONS(2200), + [anon_sym_AMP_GT_GT] = ACTIONS(2200), + [anon_sym_LT_AMP] = ACTIONS(2200), + [anon_sym_GT_AMP] = ACTIONS(2200), + [anon_sym_LT_LT] = ACTIONS(2200), + [anon_sym_LT_LT_DASH] = ACTIONS(2200), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(2200), + [anon_sym_LF] = ACTIONS(2200), + [anon_sym_AMP] = ACTIONS(2200), }, [1250] = { - [sym__concat] = ACTIONS(2372), - [anon_sym_PIPE] = ACTIONS(2508), - [anon_sym_RPAREN] = ACTIONS(2372), - [anon_sym_PIPE_AMP] = ACTIONS(2372), - [anon_sym_AMP_AMP] = ACTIONS(2372), - [anon_sym_PIPE_PIPE] = ACTIONS(2372), - [anon_sym_BQUOTE] = ACTIONS(2372), + [anon_sym_RBRACK] = ACTIONS(2654), + [sym_comment] = ACTIONS(52), + }, + [1251] = { + [anon_sym_RBRACK] = ACTIONS(2656), + [sym_comment] = ACTIONS(52), + }, + [1252] = { + [anon_sym_RBRACE] = ACTIONS(2658), + [sym_comment] = ACTIONS(52), + }, + [1253] = { + [sym__heredoc_middle] = ACTIONS(1818), + [sym__heredoc_end] = ACTIONS(1818), + [anon_sym_DOLLAR] = ACTIONS(2160), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1818), + [sym_comment] = ACTIONS(52), + }, + [1254] = { + [anon_sym_RBRACE] = ACTIONS(2660), + [sym_comment] = ACTIONS(52), + }, + [1255] = { + [sym__heredoc_middle] = ACTIONS(1824), + [sym__heredoc_end] = ACTIONS(1824), + [anon_sym_DOLLAR] = ACTIONS(2164), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1824), + [sym_comment] = ACTIONS(52), + }, + [1256] = { + [sym__concat] = ACTIONS(2456), + [anon_sym_PIPE] = ACTIONS(2456), + [anon_sym_RPAREN] = ACTIONS(2456), + [anon_sym_RBRACK] = ACTIONS(2456), + [sym_comment] = ACTIONS(52), + }, + [1257] = { + [sym__concat] = ACTIONS(2460), + [anon_sym_PIPE] = ACTIONS(2460), + [anon_sym_RPAREN] = ACTIONS(2460), + [anon_sym_RBRACK] = ACTIONS(2460), + [sym_comment] = ACTIONS(52), + }, + [1258] = { + [anon_sym_RBRACE] = ACTIONS(2662), + [sym_comment] = ACTIONS(52), + }, + [1259] = { + [anon_sym_RBRACE] = ACTIONS(2664), + [sym_comment] = ACTIONS(52), + }, + [1260] = { + [sym__concat] = ACTIONS(2194), + [anon_sym_RPAREN] = ACTIONS(2194), + [anon_sym_DQUOTE] = ACTIONS(2194), + [sym_raw_string] = ACTIONS(2194), + [anon_sym_DOLLAR] = ACTIONS(2440), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2194), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2194), + [anon_sym_BQUOTE] = ACTIONS(2194), + [anon_sym_LT_LPAREN] = ACTIONS(2194), + [anon_sym_GT_LPAREN] = ACTIONS(2194), + [sym_word] = ACTIONS(2440), + [sym_comment] = ACTIONS(52), + }, + [1261] = { + [sym__concat] = ACTIONS(2198), + [anon_sym_RPAREN] = ACTIONS(2198), + [anon_sym_DQUOTE] = ACTIONS(2198), + [sym_raw_string] = ACTIONS(2198), + [anon_sym_DOLLAR] = ACTIONS(2442), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2198), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2198), + [anon_sym_BQUOTE] = ACTIONS(2198), + [anon_sym_LT_LPAREN] = ACTIONS(2198), + [anon_sym_GT_LPAREN] = ACTIONS(2198), + [sym_word] = ACTIONS(2442), + [sym_comment] = ACTIONS(52), + }, + [1262] = { + [sym_file_descriptor] = ACTIONS(2456), + [sym__concat] = ACTIONS(2456), + [sym_variable_name] = ACTIONS(2456), + [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_DQUOTE] = ACTIONS(2458), + [sym_raw_string] = ACTIONS(2458), + [anon_sym_DOLLAR] = ACTIONS(2458), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2458), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2458), + [anon_sym_BQUOTE] = ACTIONS(2458), + [anon_sym_LT_LPAREN] = ACTIONS(2458), + [anon_sym_GT_LPAREN] = ACTIONS(2458), + [sym_word] = ACTIONS(2458), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(2458), + [anon_sym_LF] = ACTIONS(2458), + [anon_sym_AMP] = ACTIONS(2458), + }, + [1263] = { + [sym_file_descriptor] = ACTIONS(2460), + [sym__concat] = ACTIONS(2460), + [sym_variable_name] = ACTIONS(2460), + [anon_sym_PIPE] = ACTIONS(2462), + [anon_sym_RPAREN] = ACTIONS(2462), + [anon_sym_SEMI_SEMI] = ACTIONS(2462), + [anon_sym_PIPE_AMP] = ACTIONS(2462), + [anon_sym_AMP_AMP] = ACTIONS(2462), + [anon_sym_PIPE_PIPE] = ACTIONS(2462), + [anon_sym_LT] = ACTIONS(2462), + [anon_sym_GT] = ACTIONS(2462), + [anon_sym_GT_GT] = ACTIONS(2462), + [anon_sym_AMP_GT] = ACTIONS(2462), + [anon_sym_AMP_GT_GT] = ACTIONS(2462), + [anon_sym_LT_AMP] = ACTIONS(2462), + [anon_sym_GT_AMP] = ACTIONS(2462), + [anon_sym_DQUOTE] = ACTIONS(2462), + [sym_raw_string] = ACTIONS(2462), + [anon_sym_DOLLAR] = ACTIONS(2462), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2462), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2462), + [anon_sym_BQUOTE] = ACTIONS(2462), + [anon_sym_LT_LPAREN] = ACTIONS(2462), + [anon_sym_GT_LPAREN] = ACTIONS(2462), + [sym_word] = ACTIONS(2462), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(2462), + [anon_sym_LF] = ACTIONS(2462), + [anon_sym_AMP] = ACTIONS(2462), + }, + [1264] = { + [anon_sym_RBRACE] = ACTIONS(2666), + [sym_comment] = ACTIONS(52), + }, + [1265] = { + [anon_sym_RBRACE] = ACTIONS(2668), + [sym_comment] = ACTIONS(52), + }, + [1266] = { + [sym__concat] = ACTIONS(2194), + [anon_sym_SEMI_SEMI] = ACTIONS(2196), + [anon_sym_DQUOTE] = ACTIONS(2196), + [sym_raw_string] = ACTIONS(2196), + [anon_sym_DOLLAR] = ACTIONS(2196), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2196), + [anon_sym_BQUOTE] = ACTIONS(2196), + [anon_sym_LT_LPAREN] = ACTIONS(2196), + [anon_sym_GT_LPAREN] = ACTIONS(2196), + [sym_word] = ACTIONS(2196), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(2196), + [anon_sym_LF] = ACTIONS(2196), + [anon_sym_AMP] = ACTIONS(2196), + }, + [1267] = { + [sym__concat] = ACTIONS(2198), + [anon_sym_SEMI_SEMI] = ACTIONS(2200), + [anon_sym_DQUOTE] = ACTIONS(2200), + [sym_raw_string] = ACTIONS(2200), + [anon_sym_DOLLAR] = ACTIONS(2200), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2200), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2200), + [anon_sym_BQUOTE] = ACTIONS(2200), + [anon_sym_LT_LPAREN] = ACTIONS(2200), + [anon_sym_GT_LPAREN] = ACTIONS(2200), + [sym_word] = ACTIONS(2200), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(2200), + [anon_sym_LF] = ACTIONS(2200), + [anon_sym_AMP] = ACTIONS(2200), + }, + [1268] = { + [anon_sym_esac] = ACTIONS(2670), + [anon_sym_DQUOTE] = ACTIONS(2672), + [sym_raw_string] = ACTIONS(2672), + [anon_sym_DOLLAR] = ACTIONS(2670), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2672), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2672), + [anon_sym_BQUOTE] = ACTIONS(2672), + [anon_sym_LT_LPAREN] = ACTIONS(2672), + [anon_sym_GT_LPAREN] = ACTIONS(2672), + [sym_word] = ACTIONS(2674), + [sym_comment] = ACTIONS(52), + }, + [1269] = { + [anon_sym_RBRACE] = ACTIONS(2676), + [sym_comment] = ACTIONS(52), + }, + [1270] = { + [anon_sym_RBRACE] = ACTIONS(2678), + [sym_comment] = ACTIONS(52), + }, + [1271] = { + [sym_file_descriptor] = ACTIONS(2194), + [sym__concat] = ACTIONS(2194), + [sym_variable_name] = ACTIONS(2194), + [anon_sym_PIPE] = ACTIONS(2440), + [anon_sym_RPAREN] = ACTIONS(2194), + [anon_sym_PIPE_AMP] = ACTIONS(2194), + [anon_sym_AMP_AMP] = ACTIONS(2194), + [anon_sym_PIPE_PIPE] = ACTIONS(2440), + [anon_sym_LT] = ACTIONS(2440), + [anon_sym_GT] = ACTIONS(2440), + [anon_sym_GT_GT] = ACTIONS(2194), + [anon_sym_AMP_GT] = ACTIONS(2440), + [anon_sym_AMP_GT_GT] = ACTIONS(2194), + [anon_sym_LT_AMP] = ACTIONS(2194), + [anon_sym_GT_AMP] = ACTIONS(2194), + [anon_sym_DQUOTE] = ACTIONS(2194), + [sym_raw_string] = ACTIONS(2194), + [anon_sym_DOLLAR] = ACTIONS(2440), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2194), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2194), + [anon_sym_BQUOTE] = ACTIONS(2194), + [anon_sym_LT_LPAREN] = ACTIONS(2194), + [anon_sym_GT_LPAREN] = ACTIONS(2194), + [sym_word] = ACTIONS(2196), + [sym_comment] = ACTIONS(52), + }, + [1272] = { + [sym_file_descriptor] = ACTIONS(2198), + [sym__concat] = ACTIONS(2198), + [sym_variable_name] = ACTIONS(2198), + [anon_sym_PIPE] = ACTIONS(2442), + [anon_sym_RPAREN] = ACTIONS(2198), + [anon_sym_PIPE_AMP] = ACTIONS(2198), + [anon_sym_AMP_AMP] = ACTIONS(2198), + [anon_sym_PIPE_PIPE] = ACTIONS(2442), + [anon_sym_LT] = ACTIONS(2442), + [anon_sym_GT] = ACTIONS(2442), + [anon_sym_GT_GT] = ACTIONS(2198), + [anon_sym_AMP_GT] = ACTIONS(2442), + [anon_sym_AMP_GT_GT] = ACTIONS(2198), + [anon_sym_LT_AMP] = ACTIONS(2198), + [anon_sym_GT_AMP] = ACTIONS(2198), + [anon_sym_DQUOTE] = ACTIONS(2198), + [sym_raw_string] = ACTIONS(2198), + [anon_sym_DOLLAR] = ACTIONS(2442), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2198), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2198), + [anon_sym_BQUOTE] = ACTIONS(2198), + [anon_sym_LT_LPAREN] = ACTIONS(2198), + [anon_sym_GT_LPAREN] = ACTIONS(2198), + [sym_word] = ACTIONS(2200), + [sym_comment] = ACTIONS(52), + }, + [1273] = { + [anon_sym_RBRACK] = ACTIONS(2680), + [sym_comment] = ACTIONS(52), + }, + [1274] = { + [anon_sym_RBRACK] = ACTIONS(2682), + [sym_comment] = ACTIONS(52), + }, + [1275] = { + [anon_sym_RBRACE] = ACTIONS(2684), + [sym_comment] = ACTIONS(52), + }, + [1276] = { + [sym__concat] = ACTIONS(1818), + [anon_sym_PIPE] = ACTIONS(2160), + [anon_sym_RPAREN] = ACTIONS(1818), + [anon_sym_PIPE_AMP] = ACTIONS(1818), + [anon_sym_AMP_AMP] = ACTIONS(1818), + [anon_sym_PIPE_PIPE] = ACTIONS(1818), + [anon_sym_BQUOTE] = ACTIONS(1818), + [sym_comment] = ACTIONS(52), + }, + [1277] = { + [anon_sym_RBRACE] = ACTIONS(2686), + [sym_comment] = ACTIONS(52), + }, + [1278] = { + [sym__concat] = ACTIONS(1824), + [anon_sym_PIPE] = ACTIONS(2164), + [anon_sym_RPAREN] = ACTIONS(1824), + [anon_sym_PIPE_AMP] = ACTIONS(1824), + [anon_sym_AMP_AMP] = ACTIONS(1824), + [anon_sym_PIPE_PIPE] = ACTIONS(1824), + [anon_sym_BQUOTE] = ACTIONS(1824), + [sym_comment] = ACTIONS(52), + }, + [1279] = { + [anon_sym_RBRACE] = ACTIONS(2688), + [sym_comment] = ACTIONS(52), + }, + [1280] = { + [anon_sym_RBRACE] = ACTIONS(2690), + [sym_comment] = ACTIONS(52), + }, + [1281] = { + [sym_file_descriptor] = ACTIONS(2194), + [sym__concat] = ACTIONS(2194), + [anon_sym_PIPE] = ACTIONS(2440), + [anon_sym_RPAREN] = ACTIONS(2194), + [anon_sym_PIPE_AMP] = ACTIONS(2194), + [anon_sym_AMP_AMP] = ACTIONS(2194), + [anon_sym_PIPE_PIPE] = ACTIONS(2194), + [anon_sym_LT] = ACTIONS(2440), + [anon_sym_GT] = ACTIONS(2440), + [anon_sym_GT_GT] = ACTIONS(2194), + [anon_sym_AMP_GT] = ACTIONS(2440), + [anon_sym_AMP_GT_GT] = ACTIONS(2194), + [anon_sym_LT_AMP] = ACTIONS(2194), + [anon_sym_GT_AMP] = ACTIONS(2194), + [anon_sym_LT_LT] = ACTIONS(2440), + [anon_sym_LT_LT_DASH] = ACTIONS(2194), + [anon_sym_BQUOTE] = ACTIONS(2194), + [sym_comment] = ACTIONS(52), + }, + [1282] = { + [sym_file_descriptor] = ACTIONS(2198), + [sym__concat] = ACTIONS(2198), + [anon_sym_PIPE] = ACTIONS(2442), + [anon_sym_RPAREN] = ACTIONS(2198), + [anon_sym_PIPE_AMP] = ACTIONS(2198), + [anon_sym_AMP_AMP] = ACTIONS(2198), + [anon_sym_PIPE_PIPE] = ACTIONS(2198), + [anon_sym_LT] = ACTIONS(2442), + [anon_sym_GT] = ACTIONS(2442), + [anon_sym_GT_GT] = ACTIONS(2198), + [anon_sym_AMP_GT] = ACTIONS(2442), + [anon_sym_AMP_GT_GT] = ACTIONS(2198), + [anon_sym_LT_AMP] = ACTIONS(2198), + [anon_sym_GT_AMP] = ACTIONS(2198), + [anon_sym_LT_LT] = ACTIONS(2442), + [anon_sym_LT_LT_DASH] = ACTIONS(2198), + [anon_sym_BQUOTE] = ACTIONS(2198), + [sym_comment] = ACTIONS(52), + }, + [1283] = { + [anon_sym_RBRACE] = ACTIONS(2692), + [sym_comment] = ACTIONS(52), + }, + [1284] = { + [anon_sym_RBRACE] = ACTIONS(2694), + [sym_comment] = ACTIONS(52), + }, + [1285] = { + [sym__concat] = ACTIONS(2194), + [anon_sym_PIPE] = ACTIONS(2196), + [anon_sym_RPAREN] = ACTIONS(2196), + [anon_sym_SEMI_SEMI] = ACTIONS(2196), + [anon_sym_PIPE_AMP] = ACTIONS(2196), + [anon_sym_AMP_AMP] = ACTIONS(2196), + [anon_sym_PIPE_PIPE] = ACTIONS(2196), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(2196), + [anon_sym_LF] = ACTIONS(2196), + [anon_sym_AMP] = ACTIONS(2196), + }, + [1286] = { + [sym__concat] = ACTIONS(2198), + [anon_sym_PIPE] = ACTIONS(2200), + [anon_sym_RPAREN] = ACTIONS(2200), + [anon_sym_SEMI_SEMI] = ACTIONS(2200), + [anon_sym_PIPE_AMP] = ACTIONS(2200), + [anon_sym_AMP_AMP] = ACTIONS(2200), + [anon_sym_PIPE_PIPE] = ACTIONS(2200), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(2200), + [anon_sym_LF] = ACTIONS(2200), + [anon_sym_AMP] = ACTIONS(2200), + }, + [1287] = { + [sym_file_descriptor] = ACTIONS(2456), + [sym__concat] = ACTIONS(2456), + [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), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(2458), + [anon_sym_LF] = ACTIONS(2458), + [anon_sym_AMP] = ACTIONS(2458), + }, + [1288] = { + [sym_file_descriptor] = ACTIONS(2460), + [sym__concat] = ACTIONS(2460), + [anon_sym_PIPE] = ACTIONS(2462), + [anon_sym_RPAREN] = ACTIONS(2462), + [anon_sym_SEMI_SEMI] = ACTIONS(2462), + [anon_sym_PIPE_AMP] = ACTIONS(2462), + [anon_sym_AMP_AMP] = ACTIONS(2462), + [anon_sym_PIPE_PIPE] = ACTIONS(2462), + [anon_sym_LT] = ACTIONS(2462), + [anon_sym_GT] = ACTIONS(2462), + [anon_sym_GT_GT] = ACTIONS(2462), + [anon_sym_AMP_GT] = ACTIONS(2462), + [anon_sym_AMP_GT_GT] = ACTIONS(2462), + [anon_sym_LT_AMP] = ACTIONS(2462), + [anon_sym_GT_AMP] = ACTIONS(2462), + [anon_sym_LT_LT] = ACTIONS(2462), + [anon_sym_LT_LT_DASH] = ACTIONS(2462), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(2462), + [anon_sym_LF] = ACTIONS(2462), + [anon_sym_AMP] = ACTIONS(2462), + }, + [1289] = { + [anon_sym_RBRACE] = ACTIONS(2696), + [sym_comment] = ACTIONS(52), + }, + [1290] = { + [anon_sym_RBRACE] = ACTIONS(2698), + [sym_comment] = ACTIONS(52), + }, + [1291] = { + [sym__heredoc_middle] = ACTIONS(2194), + [sym__heredoc_end] = ACTIONS(2194), + [anon_sym_DOLLAR] = ACTIONS(2440), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2194), + [sym_comment] = ACTIONS(52), + }, + [1292] = { + [sym__heredoc_middle] = ACTIONS(2198), + [sym__heredoc_end] = ACTIONS(2198), + [anon_sym_DOLLAR] = ACTIONS(2442), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2198), + [sym_comment] = ACTIONS(52), + }, + [1293] = { + [sym__concat] = ACTIONS(2456), + [anon_sym_RPAREN] = ACTIONS(2456), + [anon_sym_DQUOTE] = ACTIONS(2456), + [sym_raw_string] = ACTIONS(2456), + [anon_sym_DOLLAR] = ACTIONS(2602), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2456), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2456), + [anon_sym_BQUOTE] = ACTIONS(2456), + [anon_sym_LT_LPAREN] = ACTIONS(2456), + [anon_sym_GT_LPAREN] = ACTIONS(2456), + [sym_word] = ACTIONS(2602), + [sym_comment] = ACTIONS(52), + }, + [1294] = { + [sym__concat] = ACTIONS(2460), + [anon_sym_RPAREN] = ACTIONS(2460), + [anon_sym_DQUOTE] = ACTIONS(2460), + [sym_raw_string] = ACTIONS(2460), + [anon_sym_DOLLAR] = ACTIONS(2604), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2460), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2460), + [anon_sym_BQUOTE] = ACTIONS(2460), + [anon_sym_LT_LPAREN] = ACTIONS(2460), + [anon_sym_GT_LPAREN] = ACTIONS(2460), + [sym_word] = ACTIONS(2604), + [sym_comment] = ACTIONS(52), + }, + [1295] = { + [sym__concat] = ACTIONS(2456), + [anon_sym_SEMI_SEMI] = ACTIONS(2458), + [anon_sym_DQUOTE] = ACTIONS(2458), + [sym_raw_string] = ACTIONS(2458), + [anon_sym_DOLLAR] = ACTIONS(2458), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2458), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2458), + [anon_sym_BQUOTE] = ACTIONS(2458), + [anon_sym_LT_LPAREN] = ACTIONS(2458), + [anon_sym_GT_LPAREN] = ACTIONS(2458), + [sym_word] = ACTIONS(2458), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(2458), + [anon_sym_LF] = ACTIONS(2458), + [anon_sym_AMP] = ACTIONS(2458), + }, + [1296] = { + [sym__concat] = ACTIONS(2460), + [anon_sym_SEMI_SEMI] = ACTIONS(2462), + [anon_sym_DQUOTE] = ACTIONS(2462), + [sym_raw_string] = ACTIONS(2462), + [anon_sym_DOLLAR] = ACTIONS(2462), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2462), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2462), + [anon_sym_BQUOTE] = ACTIONS(2462), + [anon_sym_LT_LPAREN] = ACTIONS(2462), + [anon_sym_GT_LPAREN] = ACTIONS(2462), + [sym_word] = ACTIONS(2462), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(2462), + [anon_sym_LF] = ACTIONS(2462), + [anon_sym_AMP] = ACTIONS(2462), + }, + [1297] = { + [sym_file_descriptor] = ACTIONS(2456), + [sym__concat] = ACTIONS(2456), + [sym_variable_name] = ACTIONS(2456), + [anon_sym_PIPE] = ACTIONS(2602), + [anon_sym_RPAREN] = ACTIONS(2456), + [anon_sym_PIPE_AMP] = ACTIONS(2456), + [anon_sym_AMP_AMP] = ACTIONS(2456), + [anon_sym_PIPE_PIPE] = ACTIONS(2602), + [anon_sym_LT] = ACTIONS(2602), + [anon_sym_GT] = ACTIONS(2602), + [anon_sym_GT_GT] = ACTIONS(2456), + [anon_sym_AMP_GT] = ACTIONS(2602), + [anon_sym_AMP_GT_GT] = ACTIONS(2456), + [anon_sym_LT_AMP] = ACTIONS(2456), + [anon_sym_GT_AMP] = ACTIONS(2456), + [anon_sym_DQUOTE] = ACTIONS(2456), + [sym_raw_string] = ACTIONS(2456), + [anon_sym_DOLLAR] = ACTIONS(2602), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2456), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2456), + [anon_sym_BQUOTE] = ACTIONS(2456), + [anon_sym_LT_LPAREN] = ACTIONS(2456), + [anon_sym_GT_LPAREN] = ACTIONS(2456), + [sym_word] = ACTIONS(2458), + [sym_comment] = ACTIONS(52), + }, + [1298] = { + [sym_file_descriptor] = ACTIONS(2460), + [sym__concat] = ACTIONS(2460), + [sym_variable_name] = ACTIONS(2460), + [anon_sym_PIPE] = ACTIONS(2604), + [anon_sym_RPAREN] = ACTIONS(2460), + [anon_sym_PIPE_AMP] = ACTIONS(2460), + [anon_sym_AMP_AMP] = ACTIONS(2460), + [anon_sym_PIPE_PIPE] = ACTIONS(2604), + [anon_sym_LT] = ACTIONS(2604), + [anon_sym_GT] = ACTIONS(2604), + [anon_sym_GT_GT] = ACTIONS(2460), + [anon_sym_AMP_GT] = ACTIONS(2604), + [anon_sym_AMP_GT_GT] = ACTIONS(2460), + [anon_sym_LT_AMP] = ACTIONS(2460), + [anon_sym_GT_AMP] = ACTIONS(2460), + [anon_sym_DQUOTE] = ACTIONS(2460), + [sym_raw_string] = ACTIONS(2460), + [anon_sym_DOLLAR] = ACTIONS(2604), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2460), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2460), + [anon_sym_BQUOTE] = ACTIONS(2460), + [anon_sym_LT_LPAREN] = ACTIONS(2460), + [anon_sym_GT_LPAREN] = ACTIONS(2460), + [sym_word] = ACTIONS(2462), + [sym_comment] = ACTIONS(52), + }, + [1299] = { + [anon_sym_RBRACE] = ACTIONS(2700), + [sym_comment] = ACTIONS(52), + }, + [1300] = { + [anon_sym_RBRACE] = ACTIONS(2702), + [sym_comment] = ACTIONS(52), + }, + [1301] = { + [sym__concat] = ACTIONS(2194), + [anon_sym_PIPE] = ACTIONS(2440), + [anon_sym_RPAREN] = ACTIONS(2194), + [anon_sym_PIPE_AMP] = ACTIONS(2194), + [anon_sym_AMP_AMP] = ACTIONS(2194), + [anon_sym_PIPE_PIPE] = ACTIONS(2194), + [anon_sym_BQUOTE] = ACTIONS(2194), + [sym_comment] = ACTIONS(52), + }, + [1302] = { + [sym__concat] = ACTIONS(2198), + [anon_sym_PIPE] = ACTIONS(2442), + [anon_sym_RPAREN] = ACTIONS(2198), + [anon_sym_PIPE_AMP] = ACTIONS(2198), + [anon_sym_AMP_AMP] = ACTIONS(2198), + [anon_sym_PIPE_PIPE] = ACTIONS(2198), + [anon_sym_BQUOTE] = ACTIONS(2198), + [sym_comment] = ACTIONS(52), + }, + [1303] = { + [sym_file_descriptor] = ACTIONS(2456), + [sym__concat] = ACTIONS(2456), + [anon_sym_PIPE] = ACTIONS(2602), + [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(2602), + [anon_sym_GT] = ACTIONS(2602), + [anon_sym_GT_GT] = ACTIONS(2456), + [anon_sym_AMP_GT] = ACTIONS(2602), + [anon_sym_AMP_GT_GT] = ACTIONS(2456), + [anon_sym_LT_AMP] = ACTIONS(2456), + [anon_sym_GT_AMP] = ACTIONS(2456), + [anon_sym_LT_LT] = ACTIONS(2602), + [anon_sym_LT_LT_DASH] = ACTIONS(2456), + [anon_sym_BQUOTE] = ACTIONS(2456), + [sym_comment] = ACTIONS(52), + }, + [1304] = { + [sym_file_descriptor] = ACTIONS(2460), + [sym__concat] = ACTIONS(2460), + [anon_sym_PIPE] = ACTIONS(2604), + [anon_sym_RPAREN] = ACTIONS(2460), + [anon_sym_PIPE_AMP] = ACTIONS(2460), + [anon_sym_AMP_AMP] = ACTIONS(2460), + [anon_sym_PIPE_PIPE] = ACTIONS(2460), + [anon_sym_LT] = ACTIONS(2604), + [anon_sym_GT] = ACTIONS(2604), + [anon_sym_GT_GT] = ACTIONS(2460), + [anon_sym_AMP_GT] = ACTIONS(2604), + [anon_sym_AMP_GT_GT] = ACTIONS(2460), + [anon_sym_LT_AMP] = ACTIONS(2460), + [anon_sym_GT_AMP] = ACTIONS(2460), + [anon_sym_LT_LT] = ACTIONS(2604), + [anon_sym_LT_LT_DASH] = ACTIONS(2460), + [anon_sym_BQUOTE] = ACTIONS(2460), + [sym_comment] = ACTIONS(52), + }, + [1305] = { + [sym__concat] = ACTIONS(2456), + [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), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(2458), + [anon_sym_LF] = ACTIONS(2458), + [anon_sym_AMP] = ACTIONS(2458), + }, + [1306] = { + [sym__concat] = ACTIONS(2460), + [anon_sym_PIPE] = ACTIONS(2462), + [anon_sym_RPAREN] = ACTIONS(2462), + [anon_sym_SEMI_SEMI] = ACTIONS(2462), + [anon_sym_PIPE_AMP] = ACTIONS(2462), + [anon_sym_AMP_AMP] = ACTIONS(2462), + [anon_sym_PIPE_PIPE] = ACTIONS(2462), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(2462), + [anon_sym_LF] = ACTIONS(2462), + [anon_sym_AMP] = ACTIONS(2462), + }, + [1307] = { + [sym__heredoc_middle] = ACTIONS(2456), + [sym__heredoc_end] = ACTIONS(2456), + [anon_sym_DOLLAR] = ACTIONS(2602), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2456), + [sym_comment] = ACTIONS(52), + }, + [1308] = { + [sym__heredoc_middle] = ACTIONS(2460), + [sym__heredoc_end] = ACTIONS(2460), + [anon_sym_DOLLAR] = ACTIONS(2604), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2460), + [sym_comment] = ACTIONS(52), + }, + [1309] = { + [sym__concat] = ACTIONS(2456), + [anon_sym_PIPE] = ACTIONS(2602), + [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_BQUOTE] = ACTIONS(2456), + [sym_comment] = ACTIONS(52), + }, + [1310] = { + [sym__concat] = ACTIONS(2460), + [anon_sym_PIPE] = ACTIONS(2604), + [anon_sym_RPAREN] = ACTIONS(2460), + [anon_sym_PIPE_AMP] = ACTIONS(2460), + [anon_sym_AMP_AMP] = ACTIONS(2460), + [anon_sym_PIPE_PIPE] = ACTIONS(2460), + [anon_sym_BQUOTE] = ACTIONS(2460), [sym_comment] = ACTIONS(52), }, }; @@ -25690,1005 +26684,1055 @@ static TSParseActionEntry ts_parse_actions[] = { [600] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_environment_variable_assignment, 3), [602] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_environment_variable_assignment, 3), [604] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(357), - [606] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(358), - [608] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(360), - [610] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(362), - [612] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(364), - [614] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(365), - [616] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(364), - [618] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(367), - [620] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(368), - [622] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(376), - [624] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(377), - [626] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(378), - [628] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(379), - [630] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(380), - [632] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(381), - [634] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(382), - [636] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(377), - [638] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(385), - [640] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_while_statement, 3), - [642] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(390), - [644] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(391), - [646] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(392), - [648] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(400), - [650] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(401), - [652] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(401), - [654] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(402), - [656] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(403), - [658] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(404), - [660] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(405), - [662] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(407), + [606] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(358), + [608] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(359), + [610] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(360), + [612] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(361), + [614] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(362), + [616] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(363), + [618] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(364), + [620] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(359), + [622] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(367), + [624] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(369), + [626] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(371), + [628] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(372), + [630] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(371), + [632] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(374), + [634] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(375), + [636] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(383), + [638] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(384), + [640] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(385), + [642] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(386), + [644] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(387), + [646] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(388), + [648] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(389), + [650] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(384), + [652] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(392), + [654] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_while_statement, 3), + [656] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(397), + [658] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(398), + [660] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(399), + [662] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(407), [664] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(408), - [666] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(409), - [668] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(409), + [666] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(408), + [668] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(409), [670] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(410), [672] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(411), - [674] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(412), - [676] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(412), - [678] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(413), - [680] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(414), - [682] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(415), - [684] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 3), - [686] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_subshell, 3), - [688] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(417), - [690] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(417), - [692] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(418), - [694] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_string, 2), - [696] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(419), - [698] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(420), - [700] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(420), - [702] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(421), - [704] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_concatenation, 2), - [706] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 1), - [708] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_simple_expansion, 2), - [710] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(422), - [712] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(424), - [714] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(425), - [716] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(426), - [718] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(426), - [720] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(427), - [722] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(428), - [724] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(429), - [726] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(429), - [728] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(430), - [730] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(431), - [732] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_bracket_command, 3), - [734] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 2), - [736] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), - [738] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), - [740] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(432), - [742] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(433), - [744] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(433), - [746] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(434), - [748] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(435), - [750] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(437), - [752] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(438), - [754] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(439), - [756] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(439), - [758] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(440), + [674] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(412), + [676] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(414), + [678] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(415), + [680] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(416), + [682] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(416), + [684] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(417), + [686] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(418), + [688] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(419), + [690] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(419), + [692] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(420), + [694] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(421), + [696] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(422), + [698] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 3), + [700] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_subshell, 3), + [702] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(424), + [704] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(424), + [706] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(425), + [708] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_string, 2), + [710] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(426), + [712] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(427), + [714] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(427), + [716] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(428), + [718] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_concatenation, 2), + [720] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 1), + [722] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_simple_expansion, 2), + [724] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(429), + [726] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(431), + [728] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(432), + [730] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(433), + [732] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(433), + [734] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(434), + [736] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(435), + [738] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(436), + [740] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(436), + [742] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(437), + [744] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(438), + [746] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_bracket_command, 3), + [748] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 2), + [750] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), + [752] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), + [754] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(439), + [756] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(440), + [758] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(440), [760] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(441), - [762] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(442), - [764] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(442), - [766] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(443), - [768] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(444), - [770] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(445), - [772] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(446), - [774] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(446), - [776] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(447), - [778] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(448), + [762] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(442), + [764] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(444), + [766] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(445), + [768] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(446), + [770] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(446), + [772] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(447), + [774] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(448), + [776] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(449), + [778] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(449), [780] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(450), [782] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(451), - [784] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(452), - [786] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(452), - [788] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(453), + [784] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(452), + [786] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(453), + [788] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(453), [790] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(454), - [792] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(455), - [794] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(455), - [796] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(456), - [798] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(457), - [800] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(458), + [792] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(455), + [794] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(457), + [796] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(458), + [798] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(459), + [800] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(459), [802] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(460), [804] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(461), [806] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(462), [808] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(462), [810] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(463), [812] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(464), - [814] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(465), - [816] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(465), - [818] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(466), - [820] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_string, 3), - [822] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_string, 3), - [824] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_string_repeat1, 2), - [826] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_string_repeat1, 2), - [828] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), - [830] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), - [832] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(467), - [834] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(467), - [836] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(468), - [838] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(469), - [840] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(470), - [842] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(471), - [844] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 3, .alias_sequence_id = 1), - [846] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 3, .alias_sequence_id = 1), - [848] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(472), - [850] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(473), - [852] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(473), - [854] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 3), - [856] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 3), - [858] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(475), - [860] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(476), - [862] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(476), - [864] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(478), - [866] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(479), - [868] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(480), - [870] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(481), - [872] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(482), + [814] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(465), + [816] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(467), + [818] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(468), + [820] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(469), + [822] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(469), + [824] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(470), + [826] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(471), + [828] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(472), + [830] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(472), + [832] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(473), + [834] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_string, 3), + [836] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_string, 3), + [838] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_string_repeat1, 2), + [840] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_string_repeat1, 2), + [842] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), + [844] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), + [846] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(474), + [848] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(474), + [850] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(475), + [852] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(476), + [854] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(477), + [856] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(478), + [858] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 3, .alias_sequence_id = 1), + [860] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 3, .alias_sequence_id = 1), + [862] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(479), + [864] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(480), + [866] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(480), + [868] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 3), + [870] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 3), + [872] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(482), [874] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(483), - [876] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(484), + [876] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(483), [878] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(485), [880] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(486), - [882] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(481), - [884] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(487), - [886] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(488), + [882] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(487), + [884] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(488), + [886] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(489), [888] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(490), - [890] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(491), - [892] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(492), + [890] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(491), + [892] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(492), [894] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(493), - [896] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(495), - [898] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(496), - [900] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(499), - [902] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(500), - [904] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(501), - [906] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(501), - [908] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(502), - [910] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(503), - [912] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(505), - [914] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(506), - [916] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(507), - [918] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(507), - [920] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(508), + [896] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(488), + [898] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(494), + [900] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(495), + [902] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(497), + [904] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(498), + [906] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(499), + [908] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(500), + [910] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(502), + [912] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(503), + [914] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(506), + [916] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(507), + [918] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(508), + [920] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(508), [922] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(509), - [924] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(510), - [926] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(510), - [928] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(511), - [930] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(512), - [932] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(513), - [934] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(514), + [924] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(510), + [926] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(512), + [928] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(513), + [930] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(514), + [932] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(514), + [934] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(515), [936] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(516), - [938] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 2), - [940] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 2), - [942] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(517), - [944] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(517), - [946] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command_substitution, 3), - [948] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command_substitution, 3), - [950] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(523), - [952] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(523), - [954] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(524), - [956] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(525), - [958] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(526), - [960] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(527), - [962] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(528), - [964] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(529), + [938] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(517), + [940] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(517), + [942] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(518), + [944] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(519), + [946] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(520), + [948] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(521), + [950] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(523), + [952] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 2), + [954] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 2), + [956] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(524), + [958] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(524), + [960] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command_substitution, 3), + [962] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command_substitution, 3), + [964] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(530), [966] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(530), - [968] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(525), + [968] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(531), [970] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(532), - [972] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(533), - [974] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 1), - [976] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command, 2), - [978] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command, 2), - [980] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(535), - [982] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(535), - [984] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_process_substitution, 3), - [986] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_process_substitution, 3), - [988] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 2), - [990] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 2), - [992] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(545), - [994] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(546), - [996] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(546), - [998] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(547), - [1000] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(548), - [1002] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(549), - [1004] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(550), - [1006] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(551), - [1008] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(552), + [972] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(533), + [974] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(534), + [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 = false}, SHIFT(537), + [982] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(532), + [984] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(539), + [986] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(540), + [988] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 1), + [990] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command, 2), + [992] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command, 2), + [994] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(542), + [996] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(542), + [998] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_process_substitution, 3), + [1000] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_process_substitution, 3), + [1002] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 2), + [1004] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 2), + [1006] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(552), + [1008] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(553), [1010] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(553), - [1012] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(548), - [1014] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_pipeline, 3), - [1016] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_list, 3, .fragile = true), - [1018] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(555), - [1020] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(555), - [1022] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(557), - [1024] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(559), - [1026] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 2), - [1028] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(561), - [1030] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(562), - [1032] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(561), - [1034] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(564), - [1036] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(565), - [1038] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 1), - [1040] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 1), - [1042] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(573), - [1044] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(574), - [1046] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(575), - [1048] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(576), - [1050] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_heredoc_redirect, 2), - [1052] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_heredoc_redirect, 2), - [1054] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 3), - [1056] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), - [1058] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), - [1060] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(578), - [1062] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(579), - [1064] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(580), - [1066] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(580), - [1068] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(582), - [1070] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(583), - [1072] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(583), - [1074] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subscript, 4), - [1076] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(584), - [1078] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(585), - [1080] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(587), - [1082] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(588), - [1084] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(589), - [1086] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(589), - [1088] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(590), + [1012] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(554), + [1014] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(555), + [1016] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(556), + [1018] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(557), + [1020] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(558), + [1022] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(559), + [1024] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(560), + [1026] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(555), + [1028] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_pipeline, 3), + [1030] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_list, 3, .fragile = true), + [1032] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(562), + [1034] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(562), + [1036] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(564), + [1038] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(566), + [1040] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 2), + [1042] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(568), + [1044] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(569), + [1046] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(568), + [1048] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(571), + [1050] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(572), + [1052] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 1), + [1054] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 1), + [1056] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(580), + [1058] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(581), + [1060] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(582), + [1062] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(583), + [1064] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_heredoc_redirect, 2), + [1066] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_heredoc_redirect, 2), + [1068] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 3), + [1070] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), + [1072] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), + [1074] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(585), + [1076] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(586), + [1078] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(587), + [1080] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(587), + [1082] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(589), + [1084] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(590), + [1086] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(590), + [1088] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subscript, 4), [1090] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(591), - [1092] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(592), - [1094] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(592), - [1096] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(593), - [1098] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(594), - [1100] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array, 2), - [1102] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_array, 2), - [1104] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_array_repeat1, 1), - [1106] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_array_repeat1, 1), - [1108] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(595), - [1110] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(596), - [1112] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(597), - [1114] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(598), - [1116] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(598), - [1118] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(599), - [1120] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(600), - [1122] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(602), - [1124] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(603), - [1126] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(604), - [1128] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(604), - [1130] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(605), - [1132] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(606), - [1134] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(607), - [1136] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(607), - [1138] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(608), - [1140] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(609), - [1142] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(610), - [1144] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(612), - [1146] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(614), - [1148] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(615), - [1150] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(614), - [1152] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(617), - [1154] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(618), - [1156] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(626), - [1158] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(376), - [1160] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(627), - [1162] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(378), - [1164] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(379), - [1166] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(380), - [1168] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(381), - [1170] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(382), - [1172] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_do_group, 2), - [1174] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(629), - [1176] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(630), - [1178] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 4), - [1180] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_else_clause, 1), - [1182] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(637), - [1184] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_if_statement_repeat1, 1), - [1186] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(638), - [1188] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(638), - [1190] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(391), - [1192] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(392), - [1194] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(643), - [1196] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(644), - [1198] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(644), - [1200] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(648), - [1202] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(649), - [1204] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(649), - [1206] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(650), - [1208] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(651), - [1210] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(652), - [1212] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(653), - [1214] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(654), - [1216] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(655), - [1218] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(655), - [1220] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(657), - [1222] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(658), - [1224] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(658), - [1226] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 4), - [1228] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_subshell, 4), - [1230] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(661), - [1232] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_string, 3), - [1234] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_concatenation_repeat1, 2), - [1236] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(662), - [1238] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(662), - [1240] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(663), - [1242] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(664), - [1244] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(665), - [1246] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(666), - [1248] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 3, .alias_sequence_id = 1), - [1250] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(667), - [1252] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(668), - [1254] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(668), - [1256] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 3), - [1258] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(670), - [1260] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(671), - [1262] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(671), - [1264] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command_substitution, 3), - [1266] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_process_substitution, 3), - [1268] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(673), - [1270] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(673), - [1272] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(674), - [1274] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(675), - [1276] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(676), - [1278] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(677), - [1280] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(678), - [1282] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(679), - [1284] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(679), - [1286] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(681), - [1288] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(682), - [1290] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(682), - [1292] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(684), - [1294] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(684), - [1296] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(685), - [1298] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(686), - [1300] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(687), - [1302] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(688), - [1304] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(689), - [1306] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(690), - [1308] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(690), - [1310] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(692), - [1312] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(693), - [1314] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(693), - [1316] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(695), - [1318] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(696), - [1320] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(697), - [1322] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(698), - [1324] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(699), - [1326] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(700), - [1328] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(700), - [1330] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(702), - [1332] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(703), - [1334] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(703), - [1336] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 3), - [1338] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 3), - [1340] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 2), - [1342] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 2), - [1344] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(705), - [1346] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4), - [1348] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4), - [1350] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(706), - [1352] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(707), - [1354] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(708), - [1356] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(709), - [1358] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(710), - [1360] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_environment_variable_assignment, 3), - [1362] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(711), - [1364] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(713), - [1366] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(715), - [1368] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(717), - [1370] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(718), - [1372] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(717), - [1374] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(720), - [1376] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(721), - [1378] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(730), - [1380] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_while_statement, 3), - [1382] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_while_statement, 3), - [1384] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(732), - [1386] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(736), - [1388] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(737), - [1390] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(738), - [1392] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 3), - [1394] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 3), - [1396] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subshell, 3), - [1398] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subshell, 3), - [1400] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(740), - [1402] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(740), - [1404] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(741), - [1406] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bracket_command, 3), - [1408] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bracket_command, 3), - [1410] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(742), - [1412] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(742), - [1414] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(743), - [1416] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(744), - [1418] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(745), - [1420] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(746), - [1422] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(747), - [1424] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(748), - [1426] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(748), - [1428] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(750), - [1430] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(751), - [1432] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(751), - [1434] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_compound_statement, 2), - [1436] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(754), - [1438] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(755), - [1440] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(755), - [1442] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(756), - [1444] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(757), - [1446] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(758), - [1448] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(759), - [1450] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(760), - [1452] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(761), - [1454] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(762), - [1456] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(757), - [1458] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_pipeline, 3), - [1460] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pipeline, 3), - [1462] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_list, 3, .fragile = true), - [1464] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_list, 3, .fragile = true), - [1466] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(764), - [1468] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(764), - [1470] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(766), - [1472] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(768), - [1474] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(770), - [1476] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(771), - [1478] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(770), - [1480] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(773), - [1482] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(774), - [1484] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_heredoc, 1), - [1486] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(782), - [1488] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_heredoc_redirect, 2), - [1490] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command, 3), - [1492] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command, 3), - [1494] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 2), - [1496] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 3), - [1498] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 3), - [1500] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(786), - [1502] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(786), - [1504] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(788), - [1506] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(790), - [1508] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(792), - [1510] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(793), - [1512] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(792), - [1514] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(795), - [1516] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(796), - [1518] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 3), - [1520] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(804), - [1522] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(805), - [1524] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(805), - [1526] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(806), - [1528] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(807), - [1530] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(809), - [1532] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(810), - [1534] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(811), - [1536] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(811), - [1538] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(812), - [1540] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(813), - [1542] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(814), - [1544] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(814), - [1546] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(815), - [1548] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(816), - [1550] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_heredoc_repeat1, 1), - [1552] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_heredoc_repeat1, 1), - [1554] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 2), - [1556] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 2), - [1558] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(817), - [1560] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(818), - [1562] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(817), - [1564] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(820), - [1566] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(821), - [1568] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(823), - [1570] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(824), - [1572] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(825), - [1574] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 4), - [1576] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(827), - [1578] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(827), - [1580] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(828), - [1582] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(829), - [1584] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(830), - [1586] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(831), - [1588] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(832), - [1590] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(833), - [1592] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(833), - [1594] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(835), - [1596] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(836), - [1598] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(836), - [1600] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array, 3), - [1602] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_array, 3), - [1604] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_array_repeat1, 2), - [1606] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_array_repeat1, 2), - [1608] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(838), - [1610] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(838), - [1612] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(839), - [1614] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(840), - [1616] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(841), - [1618] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(842), - [1620] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(843), - [1622] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(844), - [1624] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(844), - [1626] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(846), - [1628] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(847), - [1630] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(847), - [1632] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(849), - [1634] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(850), - [1636] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(850), - [1638] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(851), - [1640] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(852), - [1642] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(854), - [1644] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(855), - [1646] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(856), - [1648] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(856), - [1650] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(857), - [1652] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(858), - [1654] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(859), - [1656] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(859), - [1658] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(860), - [1660] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(861), - [1662] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_do_group, 3), - [1664] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(863), - [1666] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(864), - [1668] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_else_clause, 2), - [1670] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 5), - [1672] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(866), - [1674] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_if_statement_repeat1, 2), - [1676] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 5), - [1678] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(868), - [1680] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(869), - [1682] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_case_statement_repeat1, 1), - [1684] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 1), - [1686] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 1), - [1688] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(871), - [1690] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(874), - [1692] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(875), - [1694] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(876), - [1696] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(877), - [1698] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(878), - [1700] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(879), - [1702] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 5), - [1704] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_subshell, 5), - [1706] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_concatenation_repeat1, 3), - [1708] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 4, .alias_sequence_id = 2), - [1710] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(881), - [1712] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 4), - [1714] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(882), - [1716] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(883), - [1718] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(884), - [1720] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(885), - [1722] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(886), - [1724] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(887), - [1726] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(888), - [1728] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(889), - [1730] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(890), - [1732] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(891), - [1734] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(892), - [1736] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(893), - [1738] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(894), - [1740] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(895), - [1742] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(896), - [1744] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(897), - [1746] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(898), - [1748] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(899), - [1750] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(900), - [1752] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(901), - [1754] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(902), - [1756] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(903), - [1758] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(904), - [1760] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(905), - [1762] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(906), - [1764] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(907), - [1766] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 1), - [1768] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 1), - [1770] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(908), - [1772] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5), - [1774] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5), - [1776] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_array, 2), - [1778] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(909), - [1780] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(910), - [1782] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(911), - [1784] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(911), - [1786] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(912), - [1788] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(913), - [1790] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(915), - [1792] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(916), - [1794] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(917), - [1796] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(917), - [1798] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(918), - [1800] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(919), - [1802] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(920), - [1804] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(920), - [1806] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(921), - [1808] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(922), - [1810] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(923), - [1812] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_group, 2), - [1814] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_group, 2), - [1816] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(924), - [1818] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 4), - [1820] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 4), - [1822] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(925), - [1824] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(925), - [1826] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(928), - [1828] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(930), - [1830] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 4), - [1832] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 4), - [1834] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subshell, 4), - [1836] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subshell, 4), - [1838] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(932), - [1840] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(933), - [1842] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(934), - [1844] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(935), - [1846] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(936), - [1848] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(937), - [1850] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(938), - [1852] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_compound_statement, 3), - [1854] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(940), - [1856] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(940), - [1858] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(942), - [1860] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(944), - [1862] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(946), - [1864] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(947), - [1866] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(946), - [1868] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(949), - [1870] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(950), - [1872] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(958), - [1874] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(959), - [1876] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(959), - [1878] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(960), - [1880] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(961), - [1882] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(963), - [1884] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(964), - [1886] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(965), - [1888] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(965), - [1890] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(966), - [1892] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(967), - [1894] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(968), - [1896] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(968), - [1898] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(969), - [1900] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(970), - [1902] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_heredoc, 2), - [1904] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(971), - [1906] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command, 4), - [1908] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command, 4), - [1910] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(972), - [1912] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(973), - [1914] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(973), - [1916] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(974), - [1918] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(975), - [1920] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(977), - [1922] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(978), - [1924] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(979), - [1926] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(979), - [1928] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(980), - [1930] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(981), - [1932] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(982), - [1934] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(982), - [1936] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(983), - [1938] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(984), - [1940] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(985), - [1942] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(985), - [1944] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(986), - [1946] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(987), - [1948] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(988), - [1950] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(989), - [1952] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(990), - [1954] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(991), - [1956] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(991), - [1958] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(993), - [1960] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(994), - [1962] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(994), - [1964] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(996), - [1966] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(998), - [1968] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(999), - [1970] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1000), - [1972] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1000), - [1974] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1001), - [1976] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1002), - [1978] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1003), - [1980] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1003), - [1982] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_heredoc_repeat1, 2), - [1984] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_heredoc_repeat1, 2), - [1986] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 3), - [1988] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 3), - [1990] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1004), - [1992] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1005), - [1994] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1006), - [1996] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1007), - [1998] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1008), - [2000] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1009), - [2002] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1010), - [2004] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1011), - [2006] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1012), - [2008] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1013), - [2010] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1014), - [2012] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1015), - [2014] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1016), - [2016] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1017), - [2018] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1017), - [2020] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1018), - [2022] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1019), - [2024] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1020), - [2026] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1021), - [2028] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1022), - [2030] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1023), - [2032] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1023), - [2034] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1025), - [2036] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1026), - [2038] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1026), - [2040] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 6), - [2042] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_elif_clause, 3), - [2044] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 6), - [2046] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1029), - [2048] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1030), - [2050] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1030), - [2052] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1032), - [2054] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1034), - [2056] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1035), - [2058] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 6), - [2060] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_case_statement_repeat1, 2), - [2062] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), - [2064] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), - [2066] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1036), - [2068] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1037), - [2070] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1038), - [2072] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1039), - [2074] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1040), - [2076] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 6), - [2078] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1041), - [2080] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1042), - [2082] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1043), - [2084] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 1), - [2086] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1044), - [2088] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 5), - [2090] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1045), - [2092] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1046), - [2094] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1047), - [2096] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1048), - [2098] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1049), - [2100] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1050), - [2102] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1051), - [2104] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1052), - [2106] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1053), - [2108] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1054), - [2110] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1055), - [2112] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1056), - [2114] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1057), - [2116] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1058), - [2118] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 1), - [2120] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 1), - [2122] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6), - [2124] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6), - [2126] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_array, 3), - [2128] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1059), - [2130] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1059), - [2132] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1060), - [2134] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1061), - [2136] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1062), - [2138] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1063), - [2140] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1064), - [2142] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1065), - [2144] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1065), - [2146] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1067), - [2148] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1068), - [2150] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1068), - [2152] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_group, 3), - [2154] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_group, 3), - [2156] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 5), - [2158] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 5), - [2160] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1071), - [2162] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 5), - [2164] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 5), - [2166] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1073), - [2168] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 5), - [2170] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 5), - [2172] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subshell, 5), - [2174] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subshell, 5), - [2176] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1076), - [2178] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1077), - [2180] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1078), - [2182] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1079), - [2184] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1080), - [2186] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1081), - [2188] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1081), - [2190] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1082), - [2192] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1083), - [2194] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1085), - [2196] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1086), - [2198] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1087), - [2200] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1087), - [2202] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1088), - [2204] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1089), - [2206] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1090), - [2208] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1090), - [2210] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1091), - [2212] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1092), - [2214] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1093), - [2216] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1093), - [2218] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1094), - [2220] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1095), - [2222] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1096), - [2224] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1097), - [2226] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1098), - [2228] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1099), - [2230] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1099), - [2232] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1101), - [2234] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1102), - [2236] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1102), - [2238] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_heredoc, 3), - [2240] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1104), - [2242] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1104), - [2244] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1105), - [2246] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1106), - [2248] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1107), - [2250] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1108), - [2252] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1109), - [2254] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1110), - [2256] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1110), - [2258] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1112), - [2260] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1113), - [2262] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1113), - [2264] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1115), - [2266] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1116), - [2268] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1117), - [2270] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1118), - [2272] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1119), - [2274] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1120), - [2276] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1121), - [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 = true, .depends_on_lookahead = false}, SHIFT(1124), - [2284] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1125), - [2286] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1126), - [2288] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1126), - [2290] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1128), - [2292] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1129), - [2294] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1129), - [2296] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1131), - [2298] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1132), - [2300] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1133), - [2302] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1134), - [2304] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1135), - [2306] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1136), - [2308] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1137), - [2310] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1138), - [2312] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1139), - [2314] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1140), - [2316] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1141), - [2318] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1142), - [2320] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1143), - [2322] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1144), - [2324] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_elif_clause, 4), - [2326] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 7), - [2328] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_item_repeat1, 2), - [2330] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 3), - [2332] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 3), - [2334] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 3), - [2336] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1145), - [2338] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1146), - [2340] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1146), - [2342] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 7), - [2344] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1149), - [2346] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1150), - [2348] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1151), - [2350] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1152), - [2352] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 1), - [2354] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 6), - [2356] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1153), - [2358] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1154), - [2360] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1155), - [2362] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1156), - [2364] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1157), - [2366] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1158), - [2368] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 7, .alias_sequence_id = 2), - [2370] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 7, .alias_sequence_id = 2), - [2372] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 7), - [2374] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 7), - [2376] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1159), - [2378] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1160), - [2380] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1161), - [2382] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1162), - [2384] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1163), - [2386] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1164), - [2388] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 6), - [2390] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 6), - [2392] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 6), - [2394] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 6), - [2396] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1165), - [2398] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 6), - [2400] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 6), - [2402] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1166), - [2404] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 6), - [2406] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 6), - [2408] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1167), - [2410] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1168), - [2412] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1169), - [2414] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1169), - [2416] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1170), - [2418] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1171), - [2420] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1172), - [2422] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1173), - [2424] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1174), - [2426] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1175), - [2428] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1175), - [2430] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1177), - [2432] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1178), - [2434] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1178), - [2436] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1180), - [2438] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1181), - [2440] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1182), - [2442] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1183), - [2444] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1184), - [2446] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1185), - [2448] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1186), - [2450] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1187), - [2452] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1188), - [2454] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1189), - [2456] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1190), - [2458] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1191), - [2460] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1192), - [2462] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1193), - [2464] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1194), - [2466] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1195), - [2468] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1196), - [2470] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1197), - [2472] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1198), - [2474] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1199), - [2476] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1200), - [2478] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1201), - [2480] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1202), - [2482] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1203), - [2484] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1204), - [2486] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1205), - [2488] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1206), - [2490] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1207), - [2492] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1208), - [2494] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1209), - [2496] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 4), - [2498] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 4), - [2500] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 4), - [2502] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_item_repeat1, 3), - [2504] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1210), - [2506] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 7, .alias_sequence_id = 2), - [2508] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 7), - [2510] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1211), - [2512] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1212), - [2514] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1213), - [2516] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1214), - [2518] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 7), - [2520] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 7), - [2522] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 7), - [2524] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 7), - [2526] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1215), - [2528] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1216), - [2530] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1217), - [2532] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1218), - [2534] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1219), - [2536] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1220), - [2538] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1221), - [2540] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1222), - [2542] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1223), - [2544] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1224), - [2546] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1225), - [2548] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1226), - [2550] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1227), - [2552] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1228), - [2554] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1229), - [2556] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1230), - [2558] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1231), - [2560] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1232), - [2562] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1233), - [2564] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1234), - [2566] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1235), - [2568] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1236), - [2570] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 5), - [2572] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 5), - [2574] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 5), - [2576] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1237), - [2578] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1238), - [2580] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1239), - [2582] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1240), - [2584] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1241), - [2586] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1242), - [2588] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1243), - [2590] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1244), - [2592] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1245), - [2594] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1246), - [2596] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1247), - [2598] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1248), - [2600] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1249), - [2602] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1250), + [1092] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(592), + [1094] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(594), + [1096] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(595), + [1098] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(596), + [1100] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(596), + [1102] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(597), + [1104] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(598), + [1106] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(599), + [1108] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(599), + [1110] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(600), + [1112] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(601), + [1114] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array, 2), + [1116] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_array, 2), + [1118] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(602), + [1120] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(604), + [1122] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(606), + [1124] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(607), + [1126] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(606), + [1128] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(609), + [1130] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(610), + [1132] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(618), + [1134] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(619), + [1136] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(619), + [1138] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, 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}, SHIFT(623), + [1146] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(624), + [1148] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(626), + [1150] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(627), + [1152] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(628), + [1154] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(628), + [1156] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(629), + [1158] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(630), + [1160] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(631), + [1162] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(631), + [1164] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(632), + [1166] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(633), + [1168] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(634), + [1170] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(636), + [1172] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(638), + [1174] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(639), + [1176] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(638), + [1178] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(641), + [1180] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(642), + [1182] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(650), + [1184] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(383), + [1186] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(651), + [1188] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(385), + [1190] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(386), + [1192] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(387), + [1194] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(388), + [1196] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(389), + [1198] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_do_group, 2), + [1200] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(653), + [1202] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(654), + [1204] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 4), + [1206] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_else_clause, 1), + [1208] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(661), + [1210] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_if_statement_repeat1, 1), + [1212] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(662), + [1214] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(662), + [1216] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(398), + [1218] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(399), + [1220] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(667), + [1222] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(668), + [1224] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(668), + [1226] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(672), + [1228] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(673), + [1230] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(673), + [1232] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(674), + [1234] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(675), + [1236] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(676), + [1238] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(677), + [1240] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(678), + [1242] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(679), + [1244] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(679), + [1246] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(681), + [1248] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(682), + [1250] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(682), + [1252] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 4), + [1254] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_subshell, 4), + [1256] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(685), + [1258] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_string, 3), + [1260] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_concatenation_repeat1, 2), + [1262] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(686), + [1264] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(686), + [1266] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(687), + [1268] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(688), + [1270] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(689), + [1272] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(690), + [1274] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 3, .alias_sequence_id = 1), + [1276] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(691), + [1278] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(692), + [1280] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(692), + [1282] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 3), + [1284] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(694), + [1286] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(695), + [1288] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(695), + [1290] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command_substitution, 3), + [1292] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_process_substitution, 3), + [1294] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(697), + [1296] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(697), + [1298] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(698), + [1300] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(699), + [1302] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(700), + [1304] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(701), + [1306] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(702), + [1308] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(703), + [1310] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(703), + [1312] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(705), + [1314] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(706), + [1316] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(706), + [1318] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(708), + [1320] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(708), + [1322] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(709), + [1324] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(710), + [1326] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(711), + [1328] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(712), + [1330] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(713), + [1332] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(714), + [1334] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(714), + [1336] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(716), + [1338] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(717), + [1340] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(717), + [1342] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(719), + [1344] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(720), + [1346] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(721), + [1348] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(722), + [1350] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(723), + [1352] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(724), + [1354] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(724), + [1356] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(726), + [1358] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(727), + [1360] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(727), + [1362] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 3), + [1364] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 3), + [1366] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 2), + [1368] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 2), + [1370] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(729), + [1372] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4), + [1374] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4), + [1376] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(730), + [1378] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(731), + [1380] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(732), + [1382] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(733), + [1384] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(734), + [1386] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_environment_variable_assignment, 3), + [1388] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(735), + [1390] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(737), + [1392] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(739), + [1394] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(741), + [1396] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(742), + [1398] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(741), + [1400] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(744), + [1402] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(745), + [1404] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(754), + [1406] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_while_statement, 3), + [1408] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_while_statement, 3), + [1410] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(756), + [1412] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(760), + [1414] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(761), + [1416] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(762), + [1418] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 3), + [1420] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 3), + [1422] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subshell, 3), + [1424] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subshell, 3), + [1426] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(764), + [1428] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(764), + [1430] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(765), + [1432] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bracket_command, 3), + [1434] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bracket_command, 3), + [1436] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(766), + [1438] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(766), + [1440] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(767), + [1442] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(768), + [1444] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(769), + [1446] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(770), + [1448] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(771), + [1450] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(772), + [1452] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(772), + [1454] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(774), + [1456] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(775), + [1458] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(775), + [1460] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_compound_statement, 2), + [1462] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(778), + [1464] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(779), + [1466] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(779), + [1468] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(780), + [1470] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(781), + [1472] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(782), + [1474] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(783), + [1476] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(784), + [1478] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(785), + [1480] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(786), + [1482] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(781), + [1484] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_pipeline, 3), + [1486] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pipeline, 3), + [1488] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_list, 3, .fragile = true), + [1490] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_list, 3, .fragile = true), + [1492] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(788), + [1494] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(788), + [1496] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(790), + [1498] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(792), + [1500] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(794), + [1502] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(795), + [1504] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(794), + [1506] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(797), + [1508] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(798), + [1510] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_heredoc, 1), + [1512] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(806), + [1514] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_heredoc_redirect, 2), + [1516] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command, 3), + [1518] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command, 3), + [1520] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 2), + [1522] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 3), + [1524] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 3), + [1526] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(810), + [1528] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(810), + [1530] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(812), + [1532] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(814), + [1534] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(816), + [1536] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(817), + [1538] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(816), + [1540] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(819), + [1542] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(820), + [1544] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 3), + [1546] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(828), + [1548] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(829), + [1550] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(829), + [1552] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(830), + [1554] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(831), + [1556] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(833), + [1558] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(834), + [1560] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(835), + [1562] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(835), + [1564] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(836), + [1566] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(837), + [1568] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(838), + [1570] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(838), + [1572] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(839), + [1574] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(840), + [1576] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_heredoc_repeat1, 1), + [1578] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_heredoc_repeat1, 1), + [1580] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 2), + [1582] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 2), + [1584] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(841), + [1586] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(842), + [1588] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(841), + [1590] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(844), + [1592] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(845), + [1594] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(847), + [1596] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(848), + [1598] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(849), + [1600] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 4), + [1602] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(851), + [1604] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(851), + [1606] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(852), + [1608] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(853), + [1610] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(854), + [1612] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(855), + [1614] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(856), + [1616] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(857), + [1618] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(857), + [1620] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(859), + [1622] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(860), + [1624] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(860), + [1626] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(862), + [1628] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(863), + [1630] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(863), + [1632] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(864), + [1634] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(865), + [1636] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(867), + [1638] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(868), + [1640] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(869), + [1642] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(869), + [1644] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(870), + [1646] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(871), + [1648] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(872), + [1650] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(872), + [1652] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(873), + [1654] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(874), + [1656] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array, 3), + [1658] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_array, 3), + [1660] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(875), + [1662] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(875), + [1664] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(876), + [1666] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(877), + [1668] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(878), + [1670] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(879), + [1672] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(880), + [1674] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(881), + [1676] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(881), + [1678] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(883), + [1680] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(884), + [1682] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(884), + [1684] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(886), + [1686] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(887), + [1688] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(887), + [1690] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(888), + [1692] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(889), + [1694] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(891), + [1696] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(892), + [1698] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(893), + [1700] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(893), + [1702] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(894), + [1704] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(895), + [1706] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(896), + [1708] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(896), + [1710] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(897), + [1712] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(898), + [1714] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_do_group, 3), + [1716] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(900), + [1718] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(901), + [1720] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_else_clause, 2), + [1722] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 5), + [1724] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(903), + [1726] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_if_statement_repeat1, 2), + [1728] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 5), + [1730] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(905), + [1732] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(906), + [1734] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_case_statement_repeat1, 1), + [1736] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 1), + [1738] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 1), + [1740] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(908), + [1742] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(911), + [1744] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(912), + [1746] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(913), + [1748] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(914), + [1750] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(915), + [1752] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(916), + [1754] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 5), + [1756] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_subshell, 5), + [1758] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_concatenation_repeat1, 3), + [1760] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 4, .alias_sequence_id = 2), + [1762] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(918), + [1764] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 4), + [1766] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(919), + [1768] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(920), + [1770] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(921), + [1772] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(922), + [1774] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(923), + [1776] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(924), + [1778] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(925), + [1780] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(926), + [1782] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(927), + [1784] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(928), + [1786] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(929), + [1788] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(930), + [1790] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(931), + [1792] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(932), + [1794] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(933), + [1796] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(934), + [1798] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(935), + [1800] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(936), + [1802] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(937), + [1804] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(938), + [1806] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(939), + [1808] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(940), + [1810] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(941), + [1812] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(942), + [1814] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(943), + [1816] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(944), + [1818] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 1), + [1820] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 1), + [1822] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(945), + [1824] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5), + [1826] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5), + [1828] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_array, 2), + [1830] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(946), + [1832] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(947), + [1834] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(948), + [1836] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(948), + [1838] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(949), + [1840] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(950), + [1842] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(952), + [1844] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(953), + [1846] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(954), + [1848] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(954), + [1850] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(955), + [1852] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(956), + [1854] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(957), + [1856] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(957), + [1858] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(958), + [1860] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(959), + [1862] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(960), + [1864] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_group, 2), + [1866] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_group, 2), + [1868] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(961), + [1870] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 4), + [1872] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 4), + [1874] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(962), + [1876] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(962), + [1878] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(965), + [1880] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(967), + [1882] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 4), + [1884] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 4), + [1886] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subshell, 4), + [1888] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subshell, 4), + [1890] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(969), + [1892] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(970), + [1894] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(971), + [1896] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(972), + [1898] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(973), + [1900] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(974), + [1902] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(975), + [1904] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_compound_statement, 3), + [1906] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(977), + [1908] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(977), + [1910] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(979), + [1912] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(981), + [1914] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(983), + [1916] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(984), + [1918] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(983), + [1920] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(986), + [1922] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(987), + [1924] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(995), + [1926] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(996), + [1928] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(996), + [1930] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(997), + [1932] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(998), + [1934] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1000), + [1936] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1001), + [1938] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1002), + [1940] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1002), + [1942] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1003), + [1944] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1004), + [1946] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1005), + [1948] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1005), + [1950] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1006), + [1952] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1007), + [1954] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_heredoc, 2), + [1956] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1008), + [1958] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command, 4), + [1960] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command, 4), + [1962] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1009), + [1964] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1010), + [1966] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1010), + [1968] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1011), + [1970] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1012), + [1972] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1014), + [1974] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1015), + [1976] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1016), + [1978] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1016), + [1980] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1017), + [1982] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1018), + [1984] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1019), + [1986] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1019), + [1988] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1020), + [1990] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1021), + [1992] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1022), + [1994] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1022), + [1996] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1023), + [1998] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1024), + [2000] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1025), + [2002] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1026), + [2004] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1027), + [2006] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1028), + [2008] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1028), + [2010] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1030), + [2012] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1031), + [2014] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1031), + [2016] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1033), + [2018] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1035), + [2020] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1036), + [2022] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1037), + [2024] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1037), + [2026] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1038), + [2028] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1039), + [2030] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1040), + [2032] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1040), + [2034] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_heredoc_repeat1, 2), + [2036] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_heredoc_repeat1, 2), + [2038] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 3), + [2040] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 3), + [2042] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1041), + [2044] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1042), + [2046] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1043), + [2048] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1044), + [2050] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1045), + [2052] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1046), + [2054] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1047), + [2056] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1048), + [2058] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1048), + [2060] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1049), + [2062] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1050), + [2064] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1051), + [2066] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1052), + [2068] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1053), + [2070] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1054), + [2072] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1054), + [2074] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1056), + [2076] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1057), + [2078] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1057), + [2080] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1059), + [2082] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1060), + [2084] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1061), + [2086] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1062), + [2088] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1063), + [2090] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1064), + [2092] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1065), + [2094] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1065), + [2096] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1066), + [2098] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1067), + [2100] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1068), + [2102] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1069), + [2104] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1070), + [2106] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1071), + [2108] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1071), + [2110] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1073), + [2112] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1074), + [2114] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1074), + [2116] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 6), + [2118] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_elif_clause, 3), + [2120] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 6), + [2122] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1077), + [2124] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1078), + [2126] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1078), + [2128] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1080), + [2130] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1082), + [2132] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1083), + [2134] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 6), + [2136] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_case_statement_repeat1, 2), + [2138] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), + [2140] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), + [2142] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1084), + [2144] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1085), + [2146] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1086), + [2148] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1087), + [2150] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1088), + [2152] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 6), + [2154] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1089), + [2156] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1090), + [2158] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1091), + [2160] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 1), + [2162] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1092), + [2164] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 5), + [2166] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1093), + [2168] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1094), + [2170] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1095), + [2172] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1096), + [2174] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1097), + [2176] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1098), + [2178] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1099), + [2180] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1100), + [2182] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1101), + [2184] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1102), + [2186] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1103), + [2188] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1104), + [2190] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1105), + [2192] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1106), + [2194] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 1), + [2196] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 1), + [2198] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6), + [2200] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6), + [2202] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_array, 3), + [2204] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1107), + [2206] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1107), + [2208] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1108), + [2210] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1109), + [2212] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1110), + [2214] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1111), + [2216] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1112), + [2218] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1113), + [2220] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1113), + [2222] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1115), + [2224] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1116), + [2226] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1116), + [2228] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_group, 3), + [2230] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_group, 3), + [2232] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 5), + [2234] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 5), + [2236] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1119), + [2238] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 5), + [2240] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 5), + [2242] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1121), + [2244] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 5), + [2246] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 5), + [2248] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subshell, 5), + [2250] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subshell, 5), + [2252] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1124), + [2254] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1125), + [2256] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1126), + [2258] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1127), + [2260] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1128), + [2262] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1129), + [2264] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1129), + [2266] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1130), + [2268] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1131), + [2270] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1133), + [2272] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1134), + [2274] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1135), + [2276] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1135), + [2278] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1136), + [2280] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1137), + [2282] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1138), + [2284] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1138), + [2286] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1139), + [2288] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1140), + [2290] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1141), + [2292] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1141), + [2294] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1142), + [2296] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1143), + [2298] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1144), + [2300] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1145), + [2302] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1146), + [2304] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1147), + [2306] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1147), + [2308] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1149), + [2310] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1150), + [2312] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1150), + [2314] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_heredoc, 3), + [2316] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1152), + [2318] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1152), + [2320] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1153), + [2322] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1154), + [2324] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1155), + [2326] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1156), + [2328] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1157), + [2330] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1158), + [2332] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1158), + [2334] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1160), + [2336] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1161), + [2338] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1161), + [2340] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1163), + [2342] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1164), + [2344] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1165), + [2346] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1166), + [2348] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1167), + [2350] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1168), + [2352] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1169), + [2354] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1170), + [2356] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1171), + [2358] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1172), + [2360] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1173), + [2362] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1174), + [2364] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1174), + [2366] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1176), + [2368] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1177), + [2370] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1177), + [2372] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1179), + [2374] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1180), + [2376] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1181), + [2378] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1182), + [2380] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1183), + [2382] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1184), + [2384] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1185), + [2386] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1186), + [2388] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1187), + [2390] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1188), + [2392] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1189), + [2394] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1190), + [2396] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1191), + [2398] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1192), + [2400] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1193), + [2402] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1194), + [2404] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1195), + [2406] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1196), + [2408] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1197), + [2410] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1198), + [2412] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_elif_clause, 4), + [2414] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 7), + [2416] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_item_repeat1, 2), + [2418] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 3), + [2420] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 3), + [2422] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 3), + [2424] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1199), + [2426] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1200), + [2428] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1200), + [2430] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 7), + [2432] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1203), + [2434] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1204), + [2436] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1205), + [2438] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1206), + [2440] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 1), + [2442] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 6), + [2444] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1207), + [2446] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1208), + [2448] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1209), + [2450] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1210), + [2452] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1211), + [2454] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1212), + [2456] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 7, .alias_sequence_id = 2), + [2458] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 7, .alias_sequence_id = 2), + [2460] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 7), + [2462] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 7), + [2464] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1213), + [2466] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1214), + [2468] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1215), + [2470] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1216), + [2472] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1217), + [2474] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1218), + [2476] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 6), + [2478] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 6), + [2480] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 6), + [2482] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 6), + [2484] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1219), + [2486] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 6), + [2488] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 6), + [2490] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1220), + [2492] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 6), + [2494] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 6), + [2496] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1221), + [2498] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1222), + [2500] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1223), + [2502] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1223), + [2504] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1224), + [2506] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1225), + [2508] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1226), + [2510] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1227), + [2512] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1228), + [2514] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1229), + [2516] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1229), + [2518] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1231), + [2520] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1232), + [2522] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1232), + [2524] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1234), + [2526] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1235), + [2528] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1236), + [2530] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1237), + [2532] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1238), + [2534] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1239), + [2536] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1240), + [2538] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1241), + [2540] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1242), + [2542] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1243), + [2544] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1244), + [2546] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1245), + [2548] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1246), + [2550] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1247), + [2552] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1248), + [2554] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1249), + [2556] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1250), + [2558] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1251), + [2560] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1252), + [2562] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1253), + [2564] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1254), + [2566] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1255), + [2568] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1256), + [2570] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1257), + [2572] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1258), + [2574] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1259), + [2576] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1260), + [2578] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1261), + [2580] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1262), + [2582] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1263), + [2584] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1264), + [2586] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1265), + [2588] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1266), + [2590] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1267), + [2592] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 4), + [2594] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 4), + [2596] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 4), + [2598] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_item_repeat1, 3), + [2600] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1268), + [2602] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 7, .alias_sequence_id = 2), + [2604] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 7), + [2606] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1269), + [2608] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1270), + [2610] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1271), + [2612] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1272), + [2614] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 7), + [2616] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 7), + [2618] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 7), + [2620] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 7), + [2622] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1273), + [2624] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1274), + [2626] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1275), + [2628] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1276), + [2630] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1277), + [2632] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1278), + [2634] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1279), + [2636] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1280), + [2638] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1281), + [2640] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1282), + [2642] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1283), + [2644] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1284), + [2646] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1285), + [2648] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1286), + [2650] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1287), + [2652] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1288), + [2654] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1289), + [2656] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1290), + [2658] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1291), + [2660] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1292), + [2662] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1293), + [2664] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1294), + [2666] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1295), + [2668] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1296), + [2670] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 5), + [2672] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 5), + [2674] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 5), + [2676] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1297), + [2678] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1298), + [2680] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1299), + [2682] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1300), + [2684] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1301), + [2686] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1302), + [2688] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1303), + [2690] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1304), + [2692] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1305), + [2694] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1306), + [2696] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1307), + [2698] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1308), + [2700] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1309), + [2702] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1310), }; void *tree_sitter_bash_external_scanner_create(); diff --git a/src/scanner.cc b/src/scanner.cc index 6dc5579..3a7ea80 100644 --- a/src/scanner.cc +++ b/src/scanner.cc @@ -170,14 +170,27 @@ struct Scanner { } } - if (is_number && valid_symbols[FILE_DESCRIPTOR] && (lexer->lookahead == '>' || lexer->lookahead == '<')) { + if (is_number && + valid_symbols[FILE_DESCRIPTOR] && + (lexer->lookahead == '>' || lexer->lookahead == '<')) { lexer->result_symbol = FILE_DESCRIPTOR; return true; } - if (valid_symbols[VARIABLE_NAME] && (lexer->lookahead == '=' || lexer->lookahead == '[')) { - lexer->result_symbol = VARIABLE_NAME; - return true; + if (valid_symbols[VARIABLE_NAME]) { + if (lexer->lookahead == '+') { + lexer->mark_end(lexer); + advance(lexer); + if (lexer->lookahead == '=') { + lexer->result_symbol = VARIABLE_NAME; + return true; + } else { + return false; + } + } else if (lexer->lookahead == '=' || lexer->lookahead == '[') { + lexer->result_symbol = VARIABLE_NAME; + return true; + } } return false;